diff --git a/Assets/Scripts/InteractionEngine/FactHandling/FactOrganizer.cs b/Assets/Scripts/InteractionEngine/FactHandling/FactOrganizer.cs index b6cdd1250de1401be7207f5b67c396a8af24e95c..d7cd3b8966fe13f6cbde385e18cdbcd48a102cd9 100644 --- a/Assets/Scripts/InteractionEngine/FactHandling/FactOrganizer.cs +++ b/Assets/Scripts/InteractionEngine/FactHandling/FactOrganizer.cs @@ -10,13 +10,12 @@ using UnityEditor.Experimental.GraphView; using UnityEngine.InputSystem.Utilities; using UnityEngine.Rendering.VirtualTexturing; +using System.Collections.ObjectModel; //TODO: MMT: move some functionality there //TODO: consequent!= samestep != dependent //TODO: support renamne functionality -//PERF: avoid string as key (general: allocations & dict: hash -> colission? -> strcmp[!]) - /// <summary> /// Organizes (insertion/ deletion / etc. operations) and sepperates <see cref="Fact">Fact</see> spaces. /// Keeps track of insertion/ deletion actions for <see cref="undo"/> and <see cref="redo"/>. @@ -41,14 +40,30 @@ public class FactOrganizer : IJSONsavable<FactOrganizer> /// - <c>Value</c>: <see cref="Gadget"/> Used Gadget /// </summary> [JsonProperty] - protected Dictionary<int, Gadget> WorkflowGadgetDict = new() { {-1, null } }; + protected Dictionary<int, Gadget> WorkflowGadgetDict = new() { { -1, null } }; /// <summary> /// - <c>Key</c>: <see cref="Fact.Id"/> /// - <c>Value</c>: <see cref="Fact"/> /// </summary> + protected IReadOnlyDictionary<string, Fact> MyFactSpace + { + get => GlobalFactDictionary.MyFactSpace(this); + } + [JsonProperty] - protected Dictionary<string, Fact> FactDict; + protected IReadOnlyDictionary<string, Fact> JsonFactSpace + { + get => MyFactSpace; + set => _JsonFactSpace = value; + } + private IReadOnlyDictionary<string, Fact> _JsonFactSpace; + + /// <summary> + /// - <c>Key</c>: <see cref="Fact.Id"/> + /// - <c>Value</c>: <see cref="Fact"/> + /// </summary> + public static IReadOnlyDictionary<string, Fact> AllFacts { get => GlobalFactDictionary.Facts; } /// <summary> /// - <c>Key</c>: <see cref="Fact.Id"/> @@ -185,7 +200,8 @@ public stepnote(FactOrganizer that, string Id, bool samestep, bool creation, Gad stepnote prev = default; - if (samestep) { + if (samestep) + { prev = that.Workflow[that.marker - 1]; // steplink = !first_steptail ? previous.steplink : steproot this.steplink = prev.samestep ? prev.steplink : that.marker - 1; @@ -196,10 +212,11 @@ public stepnote(FactOrganizer that, string Id, bool samestep, bool creation, Gad this.GadgetFlow = new string[0]; this.gadget_rank = -1; - if (gadget != null) + if (gadget != null) { bool new_gadget; - if (new_gadget = !that.GadgetWorkflowDict.ContainsKey(gadget)) { + if (new_gadget = !that.GadgetWorkflowDict.ContainsKey(gadget)) + { that.GadgetWorkflowDict.Add(gadget, (that.marker, that.marker)); that.WorkflowGadgetDict.Add(that.marker, gadget); } @@ -215,7 +232,7 @@ public stepnote(FactOrganizer that, string Id, bool samestep, bool creation, Gad stepnote gadget_prev = set_workflow ? default /*unused then*/ : that.Workflow[gadget_entree.last_occurrence]; - if ( set_workflow || gadget_prev.GadgetFlow == null + if (set_workflow || gadget_prev.GadgetFlow == null || !gadget_prev.GadgetFlow.SequenceEqual(gadget.Workflow.ToArray())) { this.GadgetFlow = gadget.Workflow.ToArray(); @@ -226,7 +243,7 @@ public stepnote(FactOrganizer that, string Id, bool samestep, bool creation, Gad } /// <summary> - /// Each <see cref="Fact"/> entry in <see cref="FactDict"/> has a corresponding <see cref="meta"/> entry in <see cref="MetaInf"/>. + /// Each <see cref="Fact"/> entry in <see cref="MyFactSpace"/> has a corresponding <see cref="meta"/> entry in <see cref="MetaInf"/>. /// The <see cref="meta"/> struct is a collection of %meta-variables. /// <seealsocref="PruneWorkflow"/> /// </summary> @@ -273,35 +290,40 @@ static FactOrganizer() /// </summary> public FactOrganizer() { - FactDict = new Dictionary<string, Fact>(); + GlobalFactDictionary.NewFactSpace(this); this.invoke = false; } + ~FactOrganizer() + { + GlobalFactDictionary.FactSpaceDelete(this); + } + /// <summary> /// Standard Constructor for empty, ready to use <see cref="FactOrganizer"/> /// </summary> /// <param name="invoke">sets <see cref="invoke"/>.</param> - public FactOrganizer(bool invoke = false) + public FactOrganizer(bool invoke = false) : this() { - FactDict = new Dictionary<string, Fact>(); this.invoke = invoke; } /// <summary> /// Used to parse read-in <see cref="FactOrganizer"/> by <see cref="JsonReader"/> and make <see cref="Fact.Id"/> conform. + /// Also poppulates <see cref="OldToNewURI"/> /// </summary> /// <param name="target">to be parsed into, will be overwritten. /// If <c><paramref name="invoke"/> = true</c>, <paramref name="target"/> should be <see cref="StageStatic.stage.factState"/>, outherwise <see cref="InvokeFactEvent(bool, string)"/> will cause <see cref="Exception">Exceptions</see> when it invokes Events of <see cref="CommunicationEvents"/></param> /// <param name="source">instance to be parsed</param> /// <param name="invoke">see <see cref="invoke"/></param> - /// <param name="old_to_new">generated to map <c>Key</c> <see cref="Fact.Id"/> of <paramref name="source"/> to corresponding <c>Value</c> <see cref="Fact.Id"/> of <paramref name="target"/></param>. - public static T ReInitializeFactOrganizer<T> - (T source, bool invoke, out Dictionary<string, string> old_to_new) - where T : FactOrganizer, new() + /// <param name="old_to_new">Generated to map <c>Key</c> outdated <see cref="Fact.Id"/>s to corresponding <c>Value</c> updatated <see cref="Fact.Id"/>s.</param> + public static T ReInitializeFactOrganizer<T>(T source, bool invoke, out Dictionary<string, string> old_to_new) + where T : FactOrganizer, new() { // TODO: other strategy needed when MMT save/load supported - // map old URIs to new ones - Dictionary<string, string> _old_to_new = new(); + IReadOnlyDictionary<string, Fact> source_Dict = source._JsonFactSpace ?? source.MyFactSpace; + + Dictionary<string, string> _old_to_new = new(); // initiate T target = new() @@ -309,16 +331,21 @@ public static T ReInitializeFactOrganizer<T> invoke = invoke, MaxLabelId = source.MaxLabelId, UnusedLabelIds = source.UnusedLabelIds, - FactDict = new Dictionary<string, Fact>(), }; // work ExposedSolutionFacts foreach (var element in source.ImmutableFacts) { - Fact ExposedFact = ReInitializeFact(source.FactDict[element]); - target.Add(ExposedFact, out _, - target.Workflow[target.MetaInf[element].workflow_id].samestep, - null, null, isImmutable: true); + try + { + Fact ExposedFact = ReInitializeFact(source_Dict[element]); + target.Add(ExposedFact, out _, false, null, null, isImmutable: true); + } + catch (Exception ex) + { + Debug.LogWarningFormat("Could not Instantiate Immutable Fact: {0}", source_Dict[element]); + Debug.LogException(ex); + } } // work Workflow @@ -333,23 +360,19 @@ public static T ReInitializeFactOrganizer<T> if (init_gadget != null && init_gadget != default(Gadget)) used_gadget = init_gadget; - used_gadget.Workflow = s_step.GadgetFlow?.Select(uri => _old_to_new[uri]).ToList() ?? new(); + used_gadget.Workflow = s_step.GadgetFlow.Select(uri => _old_to_new[uri]).ToList(); } if (s_step.creation) // Add { - Fact add = _old_to_new.ContainsKey(s_step.Id) - ? target.FactDict[_old_to_new[s_step.Id]] - : ReInitializeFact(source.FactDict[s_step.Id]); - + Fact add = ReInitializeFact(source_Dict[s_step.Id]); target.Add(add, out _, s_step.samestep, used_gadget, s_step.scroll_label); } - else if (_old_to_new.ContainsKey(s_step.Id)) + else if (_old_to_new.TryGetValue(s_step.Id, out string remove_Id)) // Remove { - Fact remove = target.FactDict[_old_to_new[s_step.Id]]; - target.Remove(remove, s_step.samestep, used_gadget); + target.Remove(remove_Id, s_step.samestep, used_gadget); } stepnote t_step = target.Workflow[i]; @@ -365,11 +388,13 @@ public static T ReInitializeFactOrganizer<T> old_to_new = _old_to_new; return target; - Fact ReInitializeFact(Fact old_Fact) { + if (_old_to_new.TryGetValue(old_Fact.Id, out string newId)) + return target[newId]; + Fact new_Fact = old_Fact.GetType() - .GetConstructor(new Type[] { old_Fact.GetType(), _old_to_new.GetType(), typeof(FactOrganizer) }) + .GetConstructor(new Type[] { old_Fact.GetType(), typeof(Dictionary<string, string>), typeof(FactOrganizer) }) .Invoke(new object[] { old_Fact, _old_to_new, target }) as Fact; @@ -380,21 +405,21 @@ Fact ReInitializeFact(Fact old_Fact) } /// <summary> - /// wrappes <c><see cref="FactDict"/>[<paramref name="id"/>]</c> + /// wrappes <c><see cref="MyFactSpace"/>[<paramref name="id"/>]</c> /// <seealso cref="ContainsKey(string)"/> /// </summary> - /// <param name="id">a <see cref="Fact.Id"/> in <see cref="FactDict"/></param> - /// <returns><c><see cref="FactDict"/>[<paramref name="id"/>]</c></returns> - public Fact this[string id] { get => FactDict[id]; } + /// <param name="id">a <see cref="Fact.Id"/> in <see cref="MyFactSpace"/></param> + /// <returns><c><see cref="MyFactSpace"/>[<paramref name="id"/>]</c></returns> + public Fact this[string id] { get => MyFactSpace[id]; } /// <summary> - /// Exposes <see cref="Dictionary{TKey, TValue}.TryGetValue(TKey, out TValue)"/> of <see cref="FactDict"/> + /// Exposes <see cref="Dictionary{TKey, TValue}.TryGetValue(TKey, out TValue)"/> of <see cref="MyFactSpace"/> /// </summary> /// <param name="URI"><see cref="Fact.Id"/> to search for</param> /// <param name="found"><see cref="Fact"/> iff found, else <c>null</c></param> /// <returns>wehter <see cref="Fact"/> with <see cref="Fact.Id"/> was found</returns> public bool TryGetFact(string URI, out Fact found) - => FactDict.TryGetValue(URI, out found); + => MyFactSpace.TryGetValue(URI, out found); /// <summary> /// Exposes contens of <see cref="MetaInf"/> @@ -412,23 +437,23 @@ public bool TryGetFact(string URI, out Fact found) public stepnote GetWorkflow(int index) => Workflow[index]; /// <summary> - /// wrappes <c><see cref="FactDict"/>.ContainsKey(<paramref name="id"/>)</c> + /// wrappes <c><see cref="MyFactSpace"/>.ContainsKey(<paramref name="id"/>)</c> /// </summary> /// <param name="id">a <see cref="Fact.Id"/></param> - /// <returns><c><see cref="FactDict"/>.ContainsKey(<paramref name="id"/>)</c></returns> - public bool ContainsKey(string id) => FactDict.ContainsKey(id); + /// <returns><c><see cref="MyFactSpace"/>.ContainsKey(<paramref name="id"/>)</c></returns> + public bool ContainsKey(string id) => MyFactSpace.ContainsKey(id); /// <summary> - /// Looks up if there is a <paramref name="label"/> <see cref="Fact.Label"/> in <see cref="FactDict"/>.Values + /// Looks up if there is a <paramref name="label"/> <see cref="Fact.Label"/> in <see cref="MyFactSpace"/>.Values /// </summary> /// <param name="label">supposed <see cref="Fact.Label"/> to be checked</param> - /// <returns><c>true</c> iff <see cref="FactDict"/> conatains a <c>Value</c> <see cref="Fact"/>, where <see cref="Fact.Label"/> == <paramref name="label"/>.</returns> + /// <returns><c>true</c> iff <see cref="MyFactSpace"/> conatains a <c>Value</c> <see cref="Fact"/>, where <see cref="Fact.Label"/> == <paramref name="label"/>.</returns> public bool ContainsLabel(string label) { if (string.IsNullOrEmpty(label)) return false; - var hit = FactDict.FirstOrDefault(e => e.Value.Label == label); + var hit = MyFactSpace.FirstOrDefault(e => e.Value.Label == label); return !hit.Equals(default); } @@ -440,16 +465,16 @@ public bool ContainsLabel(string label) /// <param name="search">to be searched for</param> /// <param name="found"><see cref="Fact.Id"/> if return value is <c>true</c></param> /// <param name="exact"><c>true</c> iff <paramref name="found"/> == <paramref name="search"/><see cref="Fact.Id">.Id</see></param> - /// <returns><c>true</c> iff the exact same or an equivalent <see cref="Fact"/> to <paramref name="search"/> was found in <see cref="FactDict"/></returns> + /// <returns><c>true</c> iff the exact same or an equivalent <see cref="Fact"/> to <paramref name="search"/> was found in <see cref="MyFactSpace"/></returns> private bool FindEquivalent(Fact search, out string found, out bool exact) { - if (exact = FactDict.ContainsKey(search.Id)) + if (exact = MyFactSpace.ContainsKey(search.Id)) { found = search.Id; return true; } - foreach (var entry in FactDict) + foreach (var entry in MyFactSpace) { if (entry.Value.Equivalent(search)) { @@ -507,7 +532,7 @@ private void PruneWorkflow(stepnote not_me) stepnote last = Workflow[i]; if (last.gadget_rank == MetaInf[last.Id].workflow_id - && last.gadget_rank != not_me.gadget_rank) + && last.gadget_rank != not_me.gadget_rank) { // Remove Gadget, if its the first time it's beeing used GadgetWorkflowDict.Remove(WorkflowGadgetDict[last.gadget_rank]); WorkflowGadgetDict.Remove(last.gadget_rank); @@ -517,8 +542,7 @@ private void PruneWorkflow(stepnote not_me) && MetaInf[last.Id].workflow_id == i) // remove for good, if original creation gets pruned { - this[last.Id].delete(); - FactDict.Remove(last.Id); + GlobalFactDictionary.FactSpaceRemove(this, last.Id); MetaInf.Remove(last.Id); } } @@ -549,10 +573,6 @@ public string Add(Fact value, out bool exists, bool samestep, Gadget gadget, str if (exists = FindEquivalent(value, out key, out bool exact)) { - if (!exact) - // no longer needed - value.delete(); - if (exists = MetaInf[key].active) //Fact in Scene? // desired outcome already achieved return key; @@ -560,13 +580,12 @@ public string Add(Fact value, out bool exists, bool samestep, Gadget gadget, str if (MetaInf[key].workflow_id > marker) // update meta data: everything >= marker will be pruned (except this Fact) MetaInf[key] = new meta(marker, true, isImmutable); - } else // brand new Fact { key = value.Id; - FactDict.Add(key, value); + GlobalFactDictionary.FactSpaceAdd(this, value); MetaInf.Add(key, new meta(marker, true, isImmutable)); } @@ -606,7 +625,7 @@ public bool Remove(Fact value, bool samestep, Gadget gadget, bool deleteSolution public bool Remove(string key, bool samestep, Gadget gadget, bool deleteImmutables = false) //no reset check needed (impossible state) { - if (!FactDict.ContainsKey(key)) + if (!MyFactSpace.ContainsKey(key)) return false; if (!deleteImmutables && MetaInf[key].isImmutable) @@ -715,7 +734,8 @@ public void undo() if (soft_resetted) fastforward(); // revert softreset - else if (backlog < worksteps) { + else if (backlog < worksteps) + { backlog++; stepnote last = Workflow[--marker]; @@ -764,9 +784,10 @@ public void redo() /// <seealso cref="hardreset(bool)"/> public void Clear() { - FactDict.Clear(); + GlobalFactDictionary.FactSpaceClear(this); MetaInf.Clear(); Workflow.Clear(); + ImmutableFacts.Clear(); GadgetWorkflowDict.Clear(); marker = 0; @@ -783,12 +804,11 @@ public void Clear() /// <param name="invoke_event">if set to <c>true</c> *and* <see cref="invoke"/> set to <c>true</c> will invoke <see cref="CommunicationEvents.RemoveFactEvent"/></param> public void hardreset(bool invoke_event = true) { - foreach (var entry in FactDict) - { - if (invoke_event && invoke && MetaInf[entry.Key].active) - CommunicationEvents.RemoveFactEvent.Invoke(entry.Value); - entry.Value.delete(); - } + if (invoke_event && invoke) + foreach (var entry in MyFactSpace) + if (MetaInf[entry.Key].active) + CommunicationEvents.RemoveFactEvent.Invoke(entry.Value); + this.Clear(); } @@ -827,30 +847,20 @@ FactOrganizer IJSONsavable<FactOrganizer>._IJPostProcess(FactOrganizer raw_paylo /// Call this after assigning a stored instance in an empty world, that was not drawn. /// <see cref="redo">Redoes</see>/ draws everything from <see cref="marker"/> = 0 to <paramref name="draw_all"/><c> ? worksteps : backlog</c> /// </summary> - /// <remarks>Does not invoke <see cref="softreset"/> or <see cref="undo"/> in any way and thus may trigger <see cref="Exception">Exceptions</see> or undefined behaviour if any <see cref="Fact"/> in <see cref="FactDict"/> is already drawn.</remarks> + /// <remarks>Does not invoke <see cref="softreset"/> or <see cref="undo"/> in any way and thus may trigger <see cref="Exception">Exceptions</see> or undefined behaviour if any <see cref="Fact"/> in <see cref="MyFactSpace"/> is already drawn.</remarks> public void Draw(bool draw_all = false) { // TODO: see issue #58 // TODO: communication with MMT - foreach (var key in FactDict.Keys) - { - // update active info if needed - meta info = MetaInf[key]; - //if (info.active) - //{ - // info.active = false; - // MetaInf[key] = info; - //} - if (info.isImmutable) - InvokeFactEvent(true, key); // sets info.active = true - } + foreach (var key in ImmutableFacts) + InvokeFactEvent(true, key); // sets info.active = true marker = 0; var stop = draw_all ? worksteps : backlog; backlog = worksteps; - while(backlog > stop) + while (backlog > stop) redo(); // resets info.active } @@ -860,7 +870,7 @@ public void Draw(bool draw_all = false) /// <param name="force_invoke">if set <c>true</c>, invokes <see cref="CommunicationEvents.RemoveFactEvent"/> for every <see cref="Fact"/> regardles of <see cref="meta.active"/> status or <see cref="invoke"/></param> public void Undraw(bool force_invoke = false) { - foreach (var entry in FactDict) + foreach (var entry in MyFactSpace) { if (force_invoke || (invoke && MetaInf[entry.Key].active)) CommunicationEvents.RemoveFactEvent.Invoke(entry.Value); @@ -886,10 +896,10 @@ private void InvokeFactEvent(bool creation, string Id) CommunicationEvents.RemoveFactEvent.Invoke(this[Id]); if (creation) - // undo freeLabel() - _ = FactDict[Id].Label; + // undo freeLabel() + _ = MyFactSpace[Id].Label; else - FactDict[Id].freeAutoLabel(); + MyFactSpace[Id].freeAutoLabel(); } /// <summary> @@ -910,7 +920,7 @@ public bool DynamiclySolved( List<List<string>> Solution_L = new(); int MissingElementsCount = 0; - var activeList = FactDict.Values.Where(f => MetaInf[f.Id].active); + var activeList = MyFactSpace.Values.Where(f => MetaInf[f.Id].active); foreach (var ValidationSet in MinimalSolution.ValidationSet) { @@ -922,13 +932,13 @@ public bool DynamiclySolved( // check by MasterIds // ALL Masters must relate - var part_minimal = + var part_minimal = ValidationSet.MasterIDs.Select(URI => MinimalSolution[URI]); var part_solution = relateList.Where(active => part_minimal.Contains(active, ValidationSet.Comparer.SetSearchRight())) .ToList(); // needed for some reason - + var part_missing = part_minimal.Except(part_solution, ValidationSet.Comparer.SetSearchLeft()); @@ -959,12 +969,76 @@ public bool DynamiclySolved( public IEnumerable<Gadget> GetUsedGadgets() => GadgetWorkflowDict.Keys; public int GetNumberOfGadgets() => GadgetWorkflowDict.Count; - + public IEnumerable<string> GetUsedScrolls() => Workflow.Where(sn => MetaInf[sn.Id].active && sn.scroll_label != null).Select(sn => sn.scroll_label).Distinct(); public int GetNumberOfScrolls() => GetUsedScrolls().Count(); - public int GetNumberOfFacts() => FactDict.Count; + public int GetNumberOfFacts() => MyFactSpace.Count; + + protected static class GlobalFactDictionary + { + /// <summary> + /// - <c>Key</c>: <see cref="Fact.Id"/> + /// - <c>Value</c>: <see cref="Fact"/> + /// </summary> + private static Dictionary<string, Fact> FactDict = new(); + + public static IReadOnlyDictionary<string, Fact> Facts { get => FactDict; } + + private static Dictionary<string, uint> FactReferences = new(); + + + private static Dictionary<FactOrganizer, Dictionary<string, Fact>> FactSpaces = new(); + + public static IReadOnlyDictionary<string, Fact> MyFactSpace(FactOrganizer me) + => FactSpaces[me]; + + public static void NewFactSpace(FactOrganizer me) + { + FactSpaces.Add(me, new()); + } + + public static void FactSpaceClear(FactOrganizer me) + { + if (!FactSpaces.ContainsKey(me)) + return; + + foreach (string key in FactSpaces[me].Keys.ToArray()) + FactSpaceRemove(me, key); + } + public static void FactSpaceDelete(FactOrganizer me) + { + FactSpaceClear(me); + FactSpaces.Remove(me); + } + + public static void FactSpaceAdd(FactOrganizer me, Fact fact) + { + if (!FactDict.ContainsKey(fact.Id)) + { + FactDict.Add(fact.Id, fact); + FactReferences.Add(fact.Id, 1); + } + else + FactReferences[fact.Id]++; + + if (!FactSpaces.ContainsKey(me)) + FactSpaces.Add(me, new()); + + FactSpaces[me].Add(fact.Id, fact); + } + + public static void FactSpaceRemove(FactOrganizer me, string key) + { + FactSpaces[me].Remove(key); + + if (FactReferences[key] == 1) + FactDict.Remove(key); + else + FactReferences[key]--; + } + } } \ No newline at end of file diff --git a/Assets/Scripts/InteractionEngine/FactHandling/Facts/AbstractLineFact.cs b/Assets/Scripts/InteractionEngine/FactHandling/Facts/AbstractLineFact.cs index 05faf6d83d8f71cf9cc467c8950a575b0d86bb02..7435fa2f6ce93105a41c79d4eb7aed2a35a2800f 100644 --- a/Assets/Scripts/InteractionEngine/FactHandling/Facts/AbstractLineFact.cs +++ b/Assets/Scripts/InteractionEngine/FactHandling/Facts/AbstractLineFact.cs @@ -225,12 +225,7 @@ protected override bool EquivalentWrapped(LineFact f1, LineFact f2) //(f1.Pid1 == f2.Pid2 && f1.Pid2 == f2.Pid1)) return true; - PointFact p1f1 = (PointFact)_Facts[f1.Pid1]; - PointFact p2f1 = (PointFact)_Facts[f1.Pid2]; - PointFact p1f2 = (PointFact)_Facts[f2.Pid1]; - PointFact p2f2 = (PointFact)_Facts[f2.Pid2]; - - return (p1f1.Equivalent(p1f2) && p2f1.Equivalent(p2f2)) + return (f1.Point1.Equivalent(f2.Point1) && f1.Point2.Equivalent(f2.Point2)) ;//|| (p1f1.Equivalent(p2f2) && p2f1.Equivalent(p1f2)); } } diff --git a/Assets/Scripts/InteractionEngine/FactHandling/Facts/Fact.cs b/Assets/Scripts/InteractionEngine/FactHandling/Facts/Fact.cs index aeb14c133ae3a0b0f68869b719853658d4666038..e9931839a8a21d0e2b2116e9917e387cdefb934b 100644 --- a/Assets/Scripts/InteractionEngine/FactHandling/Facts/Fact.cs +++ b/Assets/Scripts/InteractionEngine/FactHandling/Facts/Fact.cs @@ -129,7 +129,7 @@ public static bool sendAdd(string path, string body, out string uri) [JsonSubtypes.KnownSubType(typeof(AttachedPositionFunction), nameof(AttachedPositionFunction))] //[JsonSubtypes.KnownSubType(typeof(FunctionFact<T0, TResult>), "FunctionFact<T0, TResult>")] //TODO: generics? [JsonSubtypes.KnownSubType(typeof(FunctionFact<float, float>), "FunctionFact<System.Single, System.Single>")] -[JsonSubtypes.KnownSubType(typeof(FunctionFactFloat <Vector3>), "FunctionFact<System.Single, UnityEngine.Vector3>")] +[JsonSubtypes.KnownSubType(typeof(FunctionFactFloat<Vector3>), "FunctionFact<System.Single, UnityEngine.Vector3>")] public abstract class Fact { /// <summary> @@ -304,15 +304,11 @@ public bool rename(string newLabel) /// <summary> /// Frees ressources e.g. <see cref="Label"/> and will eventually delete %Fact Server-Side in far-near future when feature is supported. /// </summary> - /// <param name="keep_clean">when set to <c>true</c> will upkeep <see cref="Label"/> organization.</param> - - // TODO? replace by ~Fact() { } - public virtual void delete(bool keep_clean = true) + ~Fact() { //TODO: MMT: delete over there - if (keep_clean) - freeAutoLabel(); + freeAutoLabel(); if (VerboseURI) Debug.Log("Server removed Fact:\n" + this.Id); @@ -607,7 +603,7 @@ private void init(string pid, string rid) RecalulateTransform(); SOMDoc tp = new OMA( - new OMS(MMT_OMS_URI.Ded), + new OMS(MMT_OMS_URI.Ded), new List<SOMDoc> { new OMA( new OMS(MMT_OMS_URI.OnLine), @@ -618,7 +614,7 @@ private void init(string pid, string rid) SOMDoc df = null; - MMTSymbolDeclaration mmtDecl = new (this.Label, tp, df); + MMTSymbolDeclaration mmtDecl = new(this.Label, tp, df); AddFactResponse.sendAdd(mmtDecl, out this._URI); } @@ -730,7 +726,7 @@ public class AngleFact : FactWrappedCRTP<AngleFact> /// </summary> public string Pid1, Pid2, Pid3; /// @} - + [JsonIgnore] public PointFact Point1 { get => (PointFact)_Facts[Pid1]; } [JsonIgnore] @@ -1320,8 +1316,8 @@ public ParallelLineFact(string Lid1, string Lid2, string backendURI, FactOrganiz if (parallel_lines_OMA.arguments[0] is OMS) { // Normaler Fall - lineAUri = ((OMS) parallel_lines_OMA.arguments[0]).uri; - lineBUri = ((OMS) parallel_lines_OMA.arguments[1]).uri; + lineAUri = ((OMS)parallel_lines_OMA.arguments[0]).uri; + lineBUri = ((OMS)parallel_lines_OMA.arguments[1]).uri; } else // TODO: Second case might be redundant by now { @@ -1343,7 +1339,7 @@ public ParallelLineFact(string Lid1, string Lid2, string backendURI, FactOrganiz } /// \copydoc Fact.generateLabel - protected override string generateLabel() + protected override string generateLabel() => _Facts[Lid1].Label + "||" + _Facts[Lid2].Label; /// <summary> @@ -1375,11 +1371,11 @@ private MMTDeclaration generateParallelLineDeclaration(string l1URI, string l2UR } /// \copydoc Fact.hasDependentFacts - public override Boolean hasDependentFacts() + public override Boolean hasDependentFacts() => true; /// \copydoc Fact.getDependentFactIds - public override string[] getDependentFactIds() + public override string[] getDependentFactIds() => new string[] { Lid1, Lid2 }; /// \copydoc Fact.instantiateDisplay(GameObject, Transform) @@ -1711,13 +1707,13 @@ public OnCircleFact(string pid, string cid, FactOrganizer organizer) : base(orga private void init(string pid, string cid) { this.Pid = pid; - this.Cid = cid;; + this.Cid = cid; ; RecalulateTransform(); - SOMDoc tp = + SOMDoc tp = new OMA( - new OMS(MMT_OMS_URI.Ded), + new OMS(MMT_OMS_URI.Ded), new List<SOMDoc> { new OMA( new OMS(MMT_OMS_URI.OnCircle), @@ -2647,10 +2643,10 @@ protected override string generateLabel() private MMTDeclaration generateMMTDeclaration(string c1URI, string l1URI) { SOMDoc tp = new OMA( - new OMS(MMT_OMS_URI.Ded), + new OMS(MMT_OMS_URI.Ded), new List<SOMDoc>{ new OMA( - new OMS(MMT_OMS_URI.OrthoCircleLine), + new OMS(MMT_OMS_URI.OrthoCircleLine), new List<SOMDoc>{ new OMS(c1URI), new OMS(l1URI), @@ -2743,7 +2739,7 @@ public TruncatedConeVolumeFact() : base() /// <param name="fact">Fact to be copied</param> /// <param name="old_to_new"><c>Dictionary</c> mapping <paramref name="fact"/>.<see cref="getDependentFactIds"/> in <paramref name="fact"/>.<see cref="Fact._Facts"/> to corresponding <see cref="Fact.Id"/> in <paramref name="organizer"/> </param> /// <param name="organizer">sets <see cref="_Facts"/></param> - public TruncatedConeVolumeFact(TruncatedConeVolumeFact fact, Dictionary<string, string> old_to_new, FactOrganizer organizer) : base(fact, organizer) + public TruncatedConeVolumeFact(TruncatedConeVolumeFact fact, Dictionary<string, string> old_to_new, FactOrganizer organizer) : base(fact, organizer) => init(old_to_new[fact.Cid1], old_to_new[fact.Cid2], fact.vol, old_to_new[fact.unequalCirclesProof], fact.proof); /// <summary> @@ -2754,7 +2750,7 @@ public TruncatedConeVolumeFact(TruncatedConeVolumeFact fact, Dictionary<string, /// <param name="vol">sets <see cref="vol"/></param> /// <param name="proof">sets <see cref="proof"/></param> /// <param name="organizer">sets <see cref="Fact._Facts"/></param> - public TruncatedConeVolumeFact(string cid1, string cid2, float vol, string unequalproof, OMA proof, FactOrganizer organizer) : base(organizer) + public TruncatedConeVolumeFact(string cid1, string cid2, float vol, string unequalproof, OMA proof, FactOrganizer organizer) : base(organizer) => init(cid1, cid2, vol, unequalproof, proof); /// <summary> @@ -2829,7 +2825,7 @@ public TruncatedConeVolumeFact(string Cid1, string Cid2, float volume, string un } /// \copydoc Fact.generateLabel - protected override string generateLabel() + protected override string generateLabel() => "V(" + _Facts[Cid1].Label + "," + _Facts[Cid2].Label + ")"; /// <summary> @@ -2860,11 +2856,11 @@ private MMTDeclaration generateMMTDeclaration(string c1URI, string c2URI, float } /// \copydoc Fact.hasDependentFacts - public override Boolean hasDependentFacts() + public override Boolean hasDependentFacts() => true; /// \copydoc Fact.getDependentFactIds - public override string[] getDependentFactIds() + public override string[] getDependentFactIds() => new string[] { Cid1, Cid2 }; /// \copydoc Fact.instantiateDisplay(GameObject, Transform) @@ -2936,7 +2932,7 @@ public CylinderVolumeFact() : base() /// <param name="fact">Fact to be copied</param> /// <param name="old_to_new"><c>Dictionary</c> mapping <paramref name="fact"/>.<see cref="getDependentFactIds"/> in <paramref name="fact"/>.<see cref="Fact._Facts"/> to corresponding <see cref="Fact.Id"/> in <paramref name="organizer"/> </param> /// <param name="organizer">sets <see cref="_Facts"/></param> - public CylinderVolumeFact(CylinderVolumeFact fact, Dictionary<string, string> old_to_new, FactOrganizer organizer) : base(fact, organizer) + public CylinderVolumeFact(CylinderVolumeFact fact, Dictionary<string, string> old_to_new, FactOrganizer organizer) : base(fact, organizer) => init(old_to_new[fact.Cid1], old_to_new[fact.Cid2], fact.vol, old_to_new[fact.equalCirclesProof], fact.proof); /// <summary> @@ -2947,7 +2943,7 @@ public CylinderVolumeFact(CylinderVolumeFact fact, Dictionary<string, string> ol /// <param name="vol">sets <see cref="vol"/></param> /// <param name="proof">sets <see cref="proof"/></param> /// <param name="organizer">sets <see cref="Fact._Facts"/></param> - public CylinderVolumeFact(string cid1, string cid2, float vol, string eqProof, OMA proof, FactOrganizer organizer) : base(organizer) + public CylinderVolumeFact(string cid1, string cid2, float vol, string eqProof, OMA proof, FactOrganizer organizer) : base(organizer) => init(cid1, cid2, vol, eqProof, proof); /// <summary> @@ -3119,7 +3115,7 @@ public EqualCirclesFact() : base() /// <param name="fact">Fact to be copied</param> /// <param name="old_to_new"><c>Dictionary</c> mapping <paramref name="fact"/>.<see cref="getDependentFactIds"/> in <paramref name="fact"/>.<see cref="Fact._Facts"/> to corresponding <see cref="Fact.Id"/> in <paramref name="organizer"/> </param> /// <param name="organizer">sets <see cref="_Facts"/></param> - public EqualCirclesFact(EqualCirclesFact fact, Dictionary<string, string> old_to_new, FactOrganizer organizer) : base(fact, organizer) + public EqualCirclesFact(EqualCirclesFact fact, Dictionary<string, string> old_to_new, FactOrganizer organizer) : base(fact, organizer) => init(old_to_new[fact.Cid1], old_to_new[fact.Cid2]); /// <summary> @@ -3203,7 +3199,7 @@ public EqualCirclesFact(string Cid1, string Cid2, string backendURI, FactOrganiz } /// \copydoc Fact.generateLabel - protected override string generateLabel() + protected override string generateLabel() => _Facts[Cid1].Label + " ≠" + _Facts[Cid2].Label; /// <summary> @@ -3215,10 +3211,10 @@ protected override string generateLabel() private MMTDeclaration generateEqualCirclesFactDeclaration(string c1URI, string c2URI) { SOMDoc tp = new OMA( - new OMS(MMT_OMS_URI.Ded), + new OMS(MMT_OMS_URI.Ded), new List<SOMDoc> { new OMA( - new OMS(MMT_OMS_URI.EqualityCircles), + new OMS(MMT_OMS_URI.EqualityCircles), new List<SOMDoc> { new OMS(c1URI), new OMS(c2URI), @@ -3254,7 +3250,7 @@ public override GameObject instantiateDisplay(GameObject prefab, Transform trans } /// \copydoc Fact.GetHashCode - public override int GetHashCode() + public override int GetHashCode() => this.Cid1.GetHashCode() ^ this.Cid2.GetHashCode(); /// \copydoc Fact.Equivalent(Fact, Fact) @@ -3301,7 +3297,7 @@ public UnEqualCirclesFact() : base() /// <param name="fact">Fact to be copied</param> /// <param name="old_to_new"><c>Dictionary</c> mapping <paramref name="fact"/>.<see cref="getDependentFactIds"/> in <paramref name="fact"/>.<see cref="Fact._Facts"/> to corresponding <see cref="Fact.Id"/> in <paramref name="organizer"/> </param> /// <param name="organizer">sets <see cref="_Facts"/></param> - public UnEqualCirclesFact(UnEqualCirclesFact fact, Dictionary<string, string> old_to_new, FactOrganizer organizer) : base(fact, organizer) + public UnEqualCirclesFact(UnEqualCirclesFact fact, Dictionary<string, string> old_to_new, FactOrganizer organizer) : base(fact, organizer) => init(old_to_new[fact.Cid1], old_to_new[fact.Cid2]); /// <summary> @@ -3397,9 +3393,9 @@ protected override string generateLabel() private MMTDeclaration generateUnEqualCirclesFactDeclaration(string c1URI, string c2URI) { SOMDoc tp = new OMA( - new OMS(MMT_OMS_URI.Ded), + new OMS(MMT_OMS_URI.Ded), new List<SOMDoc> { - new OMA(new OMS(MMT_OMS_URI.UnEqualityCircles), + new OMA(new OMS(MMT_OMS_URI.UnEqualityCircles), new List<SOMDoc> { new OMS(c1URI), new OMS(c2URI), @@ -3407,17 +3403,17 @@ private MMTDeclaration generateUnEqualCirclesFactDeclaration(string c1URI, strin SOMDoc df = null; - MMTSymbolDeclaration mmtDecl = new (this.Label, tp, df); + MMTSymbolDeclaration mmtDecl = new(this.Label, tp, df); AddFactResponse.sendAdd(mmtDecl, out this._URI); return mmtDecl; } /// \copydoc Fact.hasDependentFacts - public override Boolean hasDependentFacts() + public override Boolean hasDependentFacts() => true; /// \copydoc Fact.getDependentFactIds - public override string[] getDependentFactIds() + public override string[] getDependentFactIds() => new string[] { Cid1, Cid2 }; /// \copydoc Fact.instantiateDisplay(GameObject, Transform) diff --git a/Assets/Scripts/InteractionEngine/FactHandling/SolutionOrganizer.cs b/Assets/Scripts/InteractionEngine/FactHandling/SolutionOrganizer.cs index 9f5d52c256091ace04dd82ad0e3e5e5b7269ae42..6e5ca448ff57fa4ab99574dbf20b04145dd947e6 100644 --- a/Assets/Scripts/InteractionEngine/FactHandling/SolutionOrganizer.cs +++ b/Assets/Scripts/InteractionEngine/FactHandling/SolutionOrganizer.cs @@ -38,8 +38,8 @@ public class SubSolution // needs to be public for JSONWriter { /// <summary> - /// entails <b>{<see cref="FactOrganizer.FactDict">SolutionOrganizer.FacDict.Values</see>}</b> <br/> - /// <see cref="FactOrganizer.FactDict">SolutionFacts</see> to relate from. + /// entails <b>{<see cref="FactOrganizer.MyFactSpace">SolutionOrganizer.FacDict.Values</see>}</b> <br/> + /// <see cref="FactOrganizer.MyFactSpace">SolutionFacts</see> to relate from. /// </summary> public HashSet<string> MasterIDs = new HashSet<string>(); @@ -62,7 +62,7 @@ public class SubSolution public List<int> RelationIndex = new List<int>(); /// <summary> - /// Comparer defining relation between <see cref="FactOrganizer.FactDict">SolutionFacts</see> and LevelFacts (<see cref="StageStatic.stage.factState"/>) + /// Comparer defining relation between <see cref="FactOrganizer.MyFactSpace">SolutionFacts</see> and LevelFacts (<see cref="StageStatic.stage.factState"/>) /// </summary> [JsonIgnore] public FactComparer Comparer = new FactEquivalentsComparer(); @@ -148,9 +148,7 @@ SolutionOrganizer IJSONsavable<SolutionOrganizer>._IJPostProcess(SolutionOrganiz if (raw_payload == null) return raw_payload; - SolutionOrganizer payload = - ReInitializeFactOrganizer<SolutionOrganizer> - (raw_payload, false, out Dictionary<string, string> old_to_new); + SolutionOrganizer payload = ReInitializeFactOrganizer<SolutionOrganizer> (raw_payload, false, out Dictionary<string, string> old_to_new); // Parse and add foreach (var element in raw_payload.ValidationSet) @@ -159,8 +157,9 @@ SolutionOrganizer IJSONsavable<SolutionOrganizer>._IJPostProcess(SolutionOrganiz payload.ValidationSet.Add(element); } - foreach (var element in raw_payload.ExposedSolutionFacts) - payload.ExposedSolutionFacts.Add(old_to_new[element]); + payload.ExposedSolutionFacts = raw_payload.ExposedSolutionFacts + .Select(fid => old_to_new[fid]) + .ToList(); return payload; } diff --git a/Assets/Scripts/InteractionEngine/TBD/AttachedPositionFunctionBehaviour.cs b/Assets/Scripts/InteractionEngine/TBD/AttachedPositionFunctionBehaviour.cs index 613859a5be79a1d88a01b31668f9a37d05d470ad..8769339a196286ca21f4d6540d75b4b27ca8d3ce 100644 --- a/Assets/Scripts/InteractionEngine/TBD/AttachedPositionFunctionBehaviour.cs +++ b/Assets/Scripts/InteractionEngine/TBD/AttachedPositionFunctionBehaviour.cs @@ -21,17 +21,20 @@ public bool done get => _done; private set { - if (value && repeat) + if (value) { + if(!repeat) + Destroy(gameObject); + Reset(); StartExecution(); } else - _done = value; + _done = value; // false } } - public bool repeat = true; + public bool repeat = false; public bool executing { @@ -75,14 +78,17 @@ void Update() if (time > f_t_to_pos[active_func_ind].Domain.t_n) { - time = f_t_to_pos[active_func_ind].Domain.t_n - time; active_func_ind++; - } - if (!executing) - { - done = true; - return; + if (!executing) + { + done = true; + return; + } + + time = f_t_to_pos[active_func_ind - 1].Domain.t_n + + f_t_to_pos[active_func_ind + 0].Domain.t_0 + - time; } transform.position = f_t_to_pos[active_func_ind].Function(time); @@ -92,7 +98,7 @@ void Update() public void Reset() { active_func_ind = -1; - time = 0; + time = f_t_to_pos.FirstOrDefault().Domain.t_0; transform.position = startcondition.position; done = false; } diff --git a/Assets/Scripts/InteractionEngine/TBD/CanonBallCalculator.cs b/Assets/Scripts/InteractionEngine/TBD/CanonBallCalculator.cs index 7b3bc4281010aadf7ca93170ea1e4f9459dbc1d9..108abe857807b6df0bb9c4b8cefe0e0ae1a9f791 100644 --- a/Assets/Scripts/InteractionEngine/TBD/CanonBallCalculator.cs +++ b/Assets/Scripts/InteractionEngine/TBD/CanonBallCalculator.cs @@ -132,11 +132,13 @@ float SolveForDistanceOnPlane(Vector3 Pos, Vector3 Vel, LineFact Top, float t) for (int i = 0; i < MaxIter; i++) { + pos = UpdatePos(pos, vel, (float) Math3d.vectorPrecission); //minimum step + var hits = Walls .Select(w => (w, tarr: SolveForTime(pos, vel, w.Topology))) .SelectMany(wt => new[] { (wt.w, t: wt.tarr.Item1), (wt.w, t: wt.tarr.Item2) }) - .Where(wt => wt.t > Math3d.vectorPrecission) - .Select(wt => (w:wt.w, t: wt.t, x: SolveForDistanceOnPlane(pos, vel, wt.w.Topology, wt.t))) + .Where(wt => wt.t >= 0) + .Select(wt => (wt.w, wt.t, x: SolveForDistanceOnPlane(pos, vel, wt.w.Topology, wt.t))) .Where(wt => { float dist = SolveForDistanceOnPlane(pos, vel, wt.w.Topology, wt.t); @@ -149,19 +151,19 @@ float SolveForDistanceOnPlane(Vector3 Pos, Vector3 Vel, LineFact Top, float t) ? hits[0] : (default(Wall), float.PositiveInfinity, default); - Result.Add(new (BuildOMA(pos, vel), (0, next_t), FactOrganizer)); + Result.Add(new (BuildOMA(pos, vel), (-(float)Math3d.vectorPrecission, next_t), FactOrganizer)); if (hits.Length == 0) break; pos = UpdatePos(pos, vel, next_t); - vel = UpdateVel(vel, next_t); + Vector3 vel_at_bounce = UpdateVel(vel, next_t); Vector3 LineFactNorm = Vector3.Cross(PlaneNorm, next_Wall.Topology.Dir); - float bounce_angle_cos = Mathf.Abs(Vector3.Dot(vel.normalized, LineFactNorm)); + float bounce_angle_cos = Mathf.Abs(Vector3.Dot(vel_at_bounce.normalized, LineFactNorm)); float bounce_fac = 1 - (1 - next_Wall.Bounce) * (Mathf.Acos(bounce_angle_cos) / 2 / Mathf.PI); - vel = bounce_fac * Vector3.Reflect(vel, LineFactNorm); + vel = bounce_fac * Vector3.Reflect(vel_at_bounce, LineFactNorm); } return Result; diff --git a/Assets/Scripts/InventoryStuff/DisplayFacts.cs b/Assets/Scripts/InventoryStuff/DisplayFacts.cs index de2d1d974148a750d7cfd4c8a644b430d9b981cb..e8293934591d3358cfd9de32d4601a1b5bbb229e 100644 --- a/Assets/Scripts/InventoryStuff/DisplayFacts.cs +++ b/Assets/Scripts/InventoryStuff/DisplayFacts.cs @@ -108,7 +108,7 @@ public void AddFact(Fact fact) // create display var display = CreateDisplay(transform, fact); display.transform.localPosition = Vector3.zero; - displayedFacts.Add(fact.Id, display); + displayedFacts.TryAdd(fact.Id, display); // disable if showOnlyFavorites is true and fact is no favorite display.transform.parent.gameObject.SetActive(!(showOnlyFavorites && !display.GetComponent<FactFavorisation>().IsFavorite)); diff --git a/Assets/Scripts/Loading/Stage.cs b/Assets/Scripts/Loading/Stage.cs index b639b8901da07f59853b4781c2ed0ad3d316f7dd..ec8a0dee30a5d54569d522753a5649ef472a1e55 100644 --- a/Assets/Scripts/Loading/Stage.cs +++ b/Assets/Scripts/Loading/Stage.cs @@ -383,6 +383,7 @@ public bool LoadSavegames() if (!ret) _ = player_record; //init + player_record.CopyExposedSolutionFacts(this); return ret; } diff --git a/Assets/Stages/CanonBall A.JSON b/Assets/Stages/CanonBall A.JSON index 4eb87b0cfe100ee223d9cbd84757ac35d458769a..a19d270fe05feb67f013c184f29ed95b32d91fae 100644 --- a/Assets/Stages/CanonBall A.JSON +++ b/Assets/Stages/CanonBall A.JSON @@ -7,1172 +7,9066 @@ "solution": { "ValidationSet": [], "ExposedSolutionFacts": [ - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5558", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5561", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5564", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5567", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5570", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5573", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5576", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5579", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5582", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5585", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5588", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5591", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5592", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.715, 18.639) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.3575, -24.0345) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2859924)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.418, 11.76532) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.81013, -15.33226) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1896955)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.62, 8.856853) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.56049, -14.95858) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.5920918)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.6872, 0) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -20.71589, 14.50145) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2233716)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.815126, 3.239212) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.088061, -26.67258) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1214435)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.874923, -2.384186E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -0.1032848, 26.66929) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1209298)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.790701, 3.225111) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 22.11182, -14.23284) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2265964)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.549308, -2.384186E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.28769, 13.8026) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6978087)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.62, 9.631574) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -12.11062, 13.43478) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.3298803)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.09118, 14.06344) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.80479, 19.21664) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2891534)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.5809, 19.62) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.57104, -19.0131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.8358453)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.661715, 3.727991) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -22.95221, -3.161415) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1949807)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.490116E-08, 3.111576) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.96413, -3.046878) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1255537)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.931463, 2.729029) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.473647, 20.59326) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2774679)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.905, 8.442996) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.513967, 19.74212) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.56615)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2110889, 19.62) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.88789, -19.42103) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01922107)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.841706E-09, 19.24671) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.849987, -15.51724) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.027901)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.914383, 3.296518) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -13.78543, 6.561788) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2599138)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.960464E-08, 5.002018) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.5477, 5.843759) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 2.339293)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.189739, 18.67228) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.211595, -4.33007) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 2.099828)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.905001, 9.579883) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.256, -4.279988) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.349196)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.16284, 3.805339) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.279988, -1.979609) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.134112)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.536743E-07, 1.560241) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.84159, -1.907133) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.8181087)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.859114, -3.576279E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.534343, 1.828338) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.856556)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.083937, 3.394411) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.135024, -10.71493) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.3167926)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.281738, -2.384186E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.105723, 10.5122) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2705758)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.980232E-08, 2.844347) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.460365, 8.035274) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.520972)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 15.06577) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.288472, 6.773072) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6724024)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.010711, 19.62) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -0.3073506, -6.763281) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6096942)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 15.49647) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.301509, -5.701818) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.080838)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 9.333727) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.05344, -4.359509) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.8263894)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 5.731075) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.099188, -3.333203) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6318427)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 3.625015) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.369584, -2.548508) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.4830957)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 2.393842) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.811742, -1.948544) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.3693664)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 1.674116) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.385226, -1.489822) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.282411)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 1.253373) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.059119, -1.139092) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2159265)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 1.007413) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8097838, -0.8709294) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1650936)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.490116E-08, 0.8636284) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.6191465, -0.6658972) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1262276)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.7795739) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4733882, -0.5091332) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.09651136)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.7304367) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3619443, -0.3892742) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.07379089)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.862645E-09, 0.7017118) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2767362, -0.2976321) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0564192)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6849197) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2115875, -0.2275642) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.04313712)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6751032) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1617761, -0.1739916) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.03298188)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6693646) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1236911, -0.1330309) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.02521736)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.66601) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.09457205, -0.1017131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01928075)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.164153E-10, 0.6640489) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.07230812, -0.07776801) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01474172)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6629024) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0552855, -0.05946004) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01127125)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6622322) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04227031, -0.04546209) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.008617802)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6618404) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03231913, -0.03475951) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.006589018)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6616114) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02471064, -0.02657651) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.005037847)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6614775) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01889331, -0.02031993) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.003851848)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613992) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01444549, -0.01553626) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.002945055)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613535) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01104477, -0.01187875) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.002251737)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613267) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.008444633, -0.009082278) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.001721638)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613111) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006456617, -0.006944149) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.001316334)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.661302) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004936615, -0.005309373) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.001006445)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612966) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003774448, -0.004059452) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0007695103)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612935) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002885876, -0.003103785) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.000588354)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612917) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00220649, -0.002373099) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.000449845)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612906) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001687043, -0.00181443) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0003439435)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.684342E-14, 0.66129) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001289883, -0.001387281) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0002629731)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612896) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0009862219, -0.00106069) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0002010646)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612894) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0007540478, -0.0008109849) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0001537304)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612893) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0005765316, -0.0006200647) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0001175396)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0004408059, -0.0004740905) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 8.986868E-05)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0003370324, -0.0003624812) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 6.871201E-05)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.000257689, -0.0002771467) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 5.253599E-05)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001970245, -0.0002119015) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 4.016809E-05)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001506414, -0.0001620161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 3.071181E-05)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.440892E-16, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001151777, -0.0001238746) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 2.348171E-05)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.220446E-16, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.80629E-05, -9.471237E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.79537E-05)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.733131E-05, -7.24154E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.372708E-05)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.148033E-05, -5.536753E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.049548E-05)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.936095E-05, -4.233303E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, Infinity)", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5592{t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.715, 18.639) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.3575, -24.0345) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2859924), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.418, 11.76532) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.81013, -15.33226) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1896955), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.62, 8.856853) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.56049, -14.95858) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.5920918), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.6872, 0) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -20.71589, 14.50145) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2233716), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.815126, 3.239212) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.088061, -26.67258) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1214435), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.874923, -2.384186E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -0.1032848, 26.66929) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1209298), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.790701, 3.225111) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 22.11182, -14.23284) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2265964), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.549308, -2.384186E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.28769, 13.8026) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6978087), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.62, 9.631574) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -12.11062, 13.43478) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.3298803), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.09118, 14.06344) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.80479, 19.21664) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2891534), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.5809, 19.62) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.57104, -19.0131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.8358453), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.661715, 3.727991) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -22.95221, -3.161415) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1949807), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.490116E-08, 3.111576) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.96413, -3.046878) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1255537), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.931463, 2.729029) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.473647, 20.59326) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2774679), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.905, 8.442996) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.513967, 19.74212) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.56615), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2110889, 19.62) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.88789, -19.42103) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01922107), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.841706E-09, 19.24671) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.849987, -15.51724) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.027901), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.914383, 3.296518) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -13.78543, 6.561788) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2599138), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.960464E-08, 5.002018) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.5477, 5.843759) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 2.339293), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.189739, 18.67228) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.211595, -4.33007) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 2.099828), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.905001, 9.579883) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.256, -4.279988) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.349196), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.16284, 3.805339) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.279988, -1.979609) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.134112), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.536743E-07, 1.560241) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.84159, -1.907133) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.8181087), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.859114, -3.576279E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.534343, 1.828338) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.856556), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.083937, 3.394411) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.135024, -10.71493) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.3167926), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.281738, -2.384186E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.105723, 10.5122) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2705758), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.980232E-08, 2.844347) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.460365, 8.035274) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.520972), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 15.06577) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.288472, 6.773072) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6724024), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.010711, 19.62) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -0.3073506, -6.763281) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6096942), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 15.49647) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.301509, -5.701818) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.080838), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 9.333727) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.05344, -4.359509) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.8263894), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 5.731075) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.099188, -3.333203) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6318427), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 3.625015) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.369584, -2.548508) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.4830957), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 2.393842) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.811742, -1.948544) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.3693664), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 1.674116) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.385226, -1.489822) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.282411), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 1.253373) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.059119, -1.139092) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2159265), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 1.007413) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8097838, -0.8709294) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1650936), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.490116E-08, 0.8636284) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.6191465, -0.6658972) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1262276), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.7795739) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4733882, -0.5091332) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.09651136), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.7304367) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3619443, -0.3892742) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.07379089), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.862645E-09, 0.7017118) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2767362, -0.2976321) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0564192), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6849197) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2115875, -0.2275642) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.04313712), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6751032) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1617761, -0.1739916) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.03298188), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6693646) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1236911, -0.1330309) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.02521736), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.66601) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.09457205, -0.1017131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01928075), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.164153E-10, 0.6640489) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.07230812, -0.07776801) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01474172), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6629024) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0552855, -0.05946004) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01127125), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6622322) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04227031, -0.04546209) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.008617802), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6618404) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03231913, -0.03475951) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.006589018), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6616114) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02471064, -0.02657651) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.005037847), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6614775) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01889331, -0.02031993) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.003851848), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613992) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01444549, -0.01553626) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.002945055), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613535) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01104477, -0.01187875) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.002251737), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613267) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.008444633, -0.009082278) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.001721638), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613111) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006456617, -0.006944149) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.001316334), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.661302) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004936615, -0.005309373) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.001006445), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612966) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003774448, -0.004059452) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0007695103), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612935) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002885876, -0.003103785) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.000588354), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612917) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00220649, -0.002373099) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.000449845), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612906) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001687043, -0.00181443) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0003439435), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.684342E-14, 0.66129) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001289883, -0.001387281) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0002629731), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612896) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0009862219, -0.00106069) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0002010646), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612894) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0007540478, -0.0008109849) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0001537304), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612893) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0005765316, -0.0006200647) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0001175396), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0004408059, -0.0004740905) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 8.986868E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0003370324, -0.0003624812) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 6.871201E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.000257689, -0.0002771467) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 5.253599E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001970245, -0.0002119015) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 4.016809E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001506414, -0.0001620161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 3.071181E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.440892E-16, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001151777, -0.0001238746) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 2.348171E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.220446E-16, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.80629E-05, -9.471237E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.79537E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.733131E-05, -7.24154E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.372708E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.148033E-05, -5.536753E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.049548E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.936095E-05, -4.233303E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, Infinity)}" + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1626", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1629", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1632", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1635", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1638", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1641", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1644", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1647", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1650", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1653", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1656", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1659", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1660", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.71507, 18.63876) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.3575, -24.0345) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2859854)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.41822, 11.76509) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 18.17429, -15.64585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1854527)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61984, 8.863367) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -16.15633, -15.4558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5734656)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.74145, 0.0001512584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -21.45141, 15.22121) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2155912)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.888747, 3.281431) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.38822, -27.80841) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1180014)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.984262, 0.0002780475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2305991, 27.80475) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1191256)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.94236, 3.31239) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.42652, -14.6) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2268761)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.005012, 0.0001435129) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 20.87433, 14.37513) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.590435)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 8.487865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -14.8994, 14.20093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.691238)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.977393, 18.30397) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.09713, -11.65444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3922241)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.28206, 13.7326) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4603704, -22.11528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6209553)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.67658, 0.0002202752) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.608852, 22.02752) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2200489)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.20507, 4.847275) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 22.02752, -7.767531) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3665375)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61982, 2.000106) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -18.31479, -7.718225) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2591408)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.54411, 7.497284E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -20.45319, 7.56881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.456389)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.187777, 3.454145) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.839626, -25.07086) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1377753)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.290042, 0.0002493555) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.159229, 24.9594) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.09993961)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.525736, 2.494487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.48746, -19.46407) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1281586)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.686502, 0.0001922491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.05069, 19.24876) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4696551)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.14276, 9.040274) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.946, -19.53067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4628757)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.025051, 0.0001932228) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.32156, 19.32228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1378767)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.819405, 2.664044) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.37134, -24.0291) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1108674)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.687296, 0.0002391654) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.249614, 23.91654) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1568838)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.704151, 3.752287) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.28331, -6.928161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5415995)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.87577, 6.724003E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.62621, 6.795529) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.226729)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 1.540878) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.30014, 6.750589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4426361)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.8865, 4.528736) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.750587, -19.6424) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2305592)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.18222, 0.0001952448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.472753, 19.57217) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.002434)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.7369, 19.6198) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.33831, -19.48888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7929868)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.419057, 4.16536) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -23.02034, -1.586958) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2246498)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.000250105, 3.808835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 24.99714, -1.572675) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1788682)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.314614, 3.527739) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.09929, 20.58879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7816031)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.211795, 19.61979) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.427216, -20.55026) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9547223)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.058162, 0.0002044376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.902648, 20.44376) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2043911)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.442544, 4.178548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.22719, -17.90403) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.233386)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.262522, 0.0001770008) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.84221, 17.74776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4721227)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.28793, 8.379155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -12.22817, -14.21008) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5896627)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.371777, 0.0001400589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -17.75392, 14.00589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1808783)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001780728, 2.53363) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.78795, 12.75767) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.339301)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.02542, 19.61987) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.623549, -12.68671) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5710809)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.06627, 12.37468) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.29918, -5.410871) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3758278)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61992, 10.34107) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.537445, -5.357656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5498449)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.99255, 7.395328) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.80683, 13.73323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8901526)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.497512, 19.61986) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.42943, -13.59016) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104124)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.085816, 16.76016) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.285142, -16.85733) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.698581)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001051595, 4.983803) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.49216, -14.57131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3420286)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.014989, 0.0001446568) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.085127, 14.46568) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2505379)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482346, 3.624316) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.64452, -3.182668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.138767)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.79832, 3.069148E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.42739, 3.140674) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.261231)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.31868, 3.961057) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.140674, -8.945286) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4428095)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.74761, 8.878566E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.200725, 8.92625) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3679302)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.64192, 3.284277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.92625, -4.81012) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.682785)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.44996, 4.729227E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212746, 4.776911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9691768)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.98726, 4.629645) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.776911, -7.294877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6346434)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.04329, 7.224429E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.444419, 7.272113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5074097)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.04758, 3.689949) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.272113, -6.422107) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5745698)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.60665, 6.348934E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.629092, 6.396618) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7429182)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.10979, 4.752171) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.396617, -5.658934) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8397644)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.0224, 5.582916E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.83225, 5.630599) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6312054)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.91168, 3.55404) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.630599, -8.024374) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4429057)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.44332, 7.9564E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.282444, 8.004084) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5421413)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.697, 4.339384) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.004084, -4.035961) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.07518)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.63257, 3.904473E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.520668, 3.99984) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7227589)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.2485, 2.890863) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.99984, -9.610931) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3007891)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.00784, 9.546617E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.047284, 9.5943) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3548257)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.762, 3.404376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.594299, -2.433555) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.398931)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.58459, 2.345659E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.060983, 2.393343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.173249)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.068203, 2.807865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.631238, -14.47211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.194019)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.790921, 0.0001436155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.477002, 14.36155) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104654)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.190275E-05, 3.022877) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.196284, 12.33656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.345361)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.148965, 19.61988) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.971041, -12.26093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3268713)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.422212E-05, 15.61202) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.41034, -11.11049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.40516)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.727924, 0.0001111375) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.321439, 11.01838) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.106372)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.326775E-05, 1.172253) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.329431, 9.469191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.290414)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.318291E-05, 13.39154) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.31834, 10.94849) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5688878)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.575984, 19.61989) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.733199, -10.92106) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9225922)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.242024E-05, 9.544113) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.289756, -9.387285) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.016706)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.324602, 9.331409E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.662205, 9.331409) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2665415)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.402976E-05, 2.487381) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.397064, 8.023324) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.100329)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.64054E-05, 11.31575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.640589, 6.898616) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9461036)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.206955E-05, 17.84262) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.207005, 6.253925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2842029)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.799516, 19.61994) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.413935, -6.231718) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5728211)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.801053E-05, 16.05022) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.813024, -5.650228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7773848)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.303209E-05, 11.65777) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.279417, -4.859393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6685966)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.844296E-05, 8.408755) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.820503, -4.179256) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5750363)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.4377E-05, 6.005496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.425828, -3.594323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4945723)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086349E-05, 4.227811) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086398, -3.091268) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4253715)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.794431E-05, 2.912848) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.79448, -2.658629) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3658572)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543375E-05, 1.940146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543425, -2.28655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3146735)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.330442E-05, 1.220609) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.327511, -1.966554) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2706544)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.141771E-05, 0.688336) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.14182, -1.69135) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.232797)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.820731E-06, 0.2945802) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.9821221, -1.454668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2002388)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.44729E-06, 0.003286785) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8447781, -1.251116) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002627082)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002202011, 1.239552E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8114513, 1.239575) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1681041)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.204322E-06, 0.2084007) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.7204813, 1.066187) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1468971)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.197441E-06, 0.3650296) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.6197932, 0.9170609) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1263695)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.331456E-06, 0.480926) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.5331947, 0.7888028) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1087143)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582926E-06, 0.5666869) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4587142, 0.6784922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0935297)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.946068E-06, 0.6301519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3946559, 0.5836178) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.08046991)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.391399E-06, 0.6771206) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3395615, 0.5020194) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.06923762)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.921276E-06, 0.7118835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2921766, 0.4318393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0595771)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.513734E-06, 0.737615) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2514225, 0.3714797) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0512684)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.163221E-06, 0.7566634) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2163712, 0.3195664) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.04412237)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.862688E-06, 0.7707661) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1862247, 0.2749174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03797631)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.602478E-06, 0.7812089) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1602968, 0.2365163) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03269029)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.379015E-06, 0.7889427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1379971, 0.2034888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02814396)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.18792E-06, 0.7946714) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1188178, 0.175083) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02423381)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.022733E-06, 0.7989158) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1023224, 0.150652) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02087083)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.80862E-07, 0.8020613) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.08813525, 0.1296397) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01797844)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.589597E-07, 0.8043932) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.07593338, 0.1115677) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0154908)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.537832E-07, 0.8061224) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.06543901, 0.09602457) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01335127)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.63641E-07, 0.8074053) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.05641315, 0.08265641) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01151113)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.85955E-07, 0.8083575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04865037, 0.07115889) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.009928506)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.192195E-07, 0.8090646) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04197391, 0.06127021) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.008567349)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.617982E-07, 0.80959) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03623178, 0.05276527) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.007396676)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.124417E-07, 0.8099808) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03129322, 0.04545041) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.006389831)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.699823E-07, 0.8102716) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02704583, 0.03915911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.005523895)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.334384E-07, 0.8104883) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0233929, 0.03374812) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004779152)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.020291E-07, 0.8106499) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02025124, 0.02909426) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004138645)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.750029E-07, 0.8107705) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01754934, 0.02509158) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003587792)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.517663E-07, 0.8108608) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01522568, 0.02164893) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003114051)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.317795E-07, 0.8109283) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01322737, 0.01868795) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002706637)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.145984E-07, 0.8109791) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01150889, 0.01614122) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002356275)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.982086E-08, 0.8110173) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01003114, 0.01395076) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002054987)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.711405E-08, 0.8110461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.008760455, 0.0120667) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001795915)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.618684E-08, 0.8110679) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007667916, 0.01044615) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001573159)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.679592E-08, 0.8110844) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006728643, 0.009052214) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381649)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.872202E-08, 0.811097) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005921252, 0.007853162) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001217024)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.178306E-08, 0.8111066) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005227356, 0.006821695) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075536)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582106E-08, 0.811114) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004631156, 0.005934337) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009539629)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.070063E-08, 0.8111197) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004119067, 0.005170891) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008495366)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.630378E-08, 0.8111242) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003679428, 0.004513982) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007598784)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.253185E-08, 0.8111277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003302213, 0.003948665) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006829454)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.929792E-08, 0.8111305) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00297882, 0.003462082) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006169838)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.652802E-08, 0.8111327) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002701863, 0.003043171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000560488)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.415967E-08, 0.8111344) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002465006, 0.002682415) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005121666)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.213766E-08, 0.8111358) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002262817, 0.002371624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004709127)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.041587E-08, 0.8111369) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002090637, 0.002103754) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000435777)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.895421E-08, 0.8111378) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001944477, 0.001872743) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004059467)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.771862E-08, 0.8111386) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001820918, 0.001673379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003807253)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.667983E-08, 0.8111392) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001717033, 0.001501177) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003595165)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.58127E-08, 0.8111398) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001630314, 0.001352282) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003418096)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.509563E-08, 0.8111402) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001558613, 0.001223379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003271669)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.451029E-08, 0.8111407) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001500085, 0.001111624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003152128)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.404092E-08, 0.811141) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001453148, 0.001014572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003056248)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367392E-08, 0.8111413) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00141644, 0.0009301305) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002981256)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.339735E-08, 0.8111416) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001388788, 0.0008565031) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000292476)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.320126E-08, 0.8111418) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001369179, 0.0007921541) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002884693)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.307687E-08, 0.8111421) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001356734, 0.0007357697) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002859265)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.30164E-08, 0.8111423) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350693, 0.0006862283) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002846919)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.301342E-08, 0.8111425) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350389, 0.000642572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00028463)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.306193E-08, 0.8111427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001355246, 0.0006039842) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002856223)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.3157E-08, 0.8111429) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001364753, 0.0005697685) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000287565)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.329415E-08, 0.811143) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001378465, 0.0005393313) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002903669)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.346938E-08, 0.8111432) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001395991, 0.0005121662) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002939476)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367931E-08, 0.8111434) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001416981, 0.0004878413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002982362)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.392084E-08, 0.8111435) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001441131, 0.0004659877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00030317)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.419115E-08, 0.8111436) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001468168, 0.0004462903) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000308693)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.448797E-08, 0.8111438) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001497847, 0.000428479) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003147557)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.480899E-08, 0.8111439) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001529955, 0.0004123223) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003213138)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.515247E-08, 0.811144) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001564297, 0.0003976213) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003283278)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.551645E-08, 0.8111441) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001600701, 0.0003842046) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003357622)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.589954E-08, 0.8111442) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001639009, 0.0003719244) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003435851)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.630033E-08, 0.8111444) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001679083, 0.0003606528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003517679)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.671746E-08, 0.8111445) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001720796, 0.0003502789) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003602849)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.71499E-08, 0.8111446) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001764034, 0.0003407062) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003691125)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.759643E-08, 0.8111447) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001808693, 0.0003318506) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003782297)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.805629E-08, 0.8111448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001854679, 0.0003236387) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003876172)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.852857E-08, 0.8111449) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001901907, 0.000316006) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003972576)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.901248E-08, 0.8111451) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001950298, 0.0003088959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004071349)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.950731E-08, 0.8111452) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001999781, 0.0003022585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004172344)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.00124E-08, 0.8111453) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00205029, 0.0002960498) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000427543)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.052722E-08, 0.8111454) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002101766, 0.0002902308) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004380484)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.105105E-08, 0.8111455) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002154155, 0.0002847669) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004487394)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.158354E-08, 0.8111457) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002207404, 0.0002796271) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004596055)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212418E-08, 0.8111458) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002261468, 0.000274784) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004706375)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.267253E-08, 0.8111459) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002316303, 0.0002702131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004818264)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.322831E-08, 0.811146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002371869, 0.0002658922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004931641)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.37908E-08, 0.8111461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00242813, 0.0002618015) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005046431)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.43599E-08, 0.8111463) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002485052, 0.0002579232) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005162564)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.493551E-08, 0.8111464) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002542601, 0.0002542413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005279974)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.551699E-08, 0.8111465) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002600749, 0.0002507411) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005398603)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.610406E-08, 0.8111466) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002659468, 0.0002474094) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005518393)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.669681E-08, 0.8111467) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002718731, 0.0002442343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005639291)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.729477E-08, 0.8111469) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002778516, 0.0002412049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005761249)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.789739E-08, 0.811147) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0028388, 0.0002383113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005884222)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.850522E-08, 0.8111471) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00289956, 0.0002355444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006008164)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.911729E-08, 0.8111472) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002960779, 0.0002328959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006133038)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.973374E-08, 0.8111473) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003022436, 0.0002303582) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006258803)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.035464E-08, 0.8111475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003084514, 0.0002279245) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006385426)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.097946E-08, 0.8111476) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003146996, 0.0002255881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000651287)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.16084E-08, 0.8111477) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003209868, 0.0002233434) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006641107)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.224065E-08, 0.8111478) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003273115, 0.0002211848) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006770107)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.28765E-08, 0.811148) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003336722, 0.0002191074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006899839)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.351627E-08, 0.8111482) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003400677, 0.0002171064) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007030278)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.415894E-08, 0.8111483) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003464967, 0.0002151776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007161399)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.48053E-08, 0.8111485) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00352958, 0.0002133171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007293177)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.545456E-08, 0.8111487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003594506, 0.0002115211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007425591)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.610684E-08, 0.8111489) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003659734, 0.0002097862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007558619)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.676226E-08, 0.8111491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003725253, 0.0002081093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007692242)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.741983E-08, 0.8111492) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003791056, 0.0002064873) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007826439)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.808081E-08, 0.8111494) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003857131, 0.0002049174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007961191)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.874399E-08, 0.8111496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003923472, 0.0002033971) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008096482)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.941041E-08, 0.8111498) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003990068, 0.000201924) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008232295)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.007862E-08, 0.81115) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004056912, 0.0002004957) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008368612)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.074971E-08, 0.8111501) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004123999, 0.0001991102) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008505422)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.142292E-08, 0.8111503) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004191319, 0.0001977655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008642707)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.209819E-08, 0.8111505) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004258869, 0.0001964597) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008780457)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.277588E-08, 0.8111507) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004326638, 0.000195191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008918655)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.345571E-08, 0.8111508) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004394621, 0.0001939578) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009057288)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.413718E-08, 0.811151) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004462813, 0.0001927586) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009196345)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482203E-08, 0.8111512) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004531207, 0.0001915918) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009335818)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.550752E-08, 0.8111514) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004599802, 0.0001904562) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009475693)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.619537E-08, 0.8111516) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004668587, 0.0001893503) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009615958)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.688509E-08, 0.8111517) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004737559, 0.000188273) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009756604)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.757619E-08, 0.8111519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004806715, 0.0001872231) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009897621)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.826996E-08, 0.8111521) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004876046, 0.0001861995) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0010039)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.896458E-08, 0.8111523) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004945554, 0.0001852013) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001018073)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.966179E-08, 0.8111525) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005015229, 0.0001842272) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001032281)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.036019E-08, 0.8111526) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005085069, 0.0001832766) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001046522)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.105976E-08, 0.8111528) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005155072, 0.0001823483) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001060796)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.176225E-08, 0.811153) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005225229, 0.0001814417) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075102)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.246446E-08, 0.8111532) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005295542, 0.0001805559) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001089439)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.316955E-08, 0.8111534) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005366005, 0.0001796902) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001103807)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.387609E-08, 0.8111535) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005436614, 0.0001788438) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001118205)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.458318E-08, 0.8111537) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005507368, 0.0001780161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001132632)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.529209E-08, 0.8111539) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005578259, 0.0001772063) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001147087)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.60024E-08, 0.8111541) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00564929, 0.0001764139) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00116157)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.671448E-08, 0.8111542) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005720453, 0.0001756383) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001176081)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.742698E-08, 0.8111544) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005791748, 0.0001748788) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001190618)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.814076E-08, 0.8111546) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005863171, 0.0001741351) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001205181)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.885625E-08, 0.8111548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00593472, 0.0001734065) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00121977)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.957342E-08, 0.8111551) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006006392, 0.0001726925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001234384)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.029135E-08, 0.8111553) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006078185, 0.0001719927) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001249023)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.101046E-08, 0.8111556) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006150096, 0.0001713067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001263685)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.173074E-08, 0.8111558) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006222124, 0.0001706339) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001278372)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.245215E-08, 0.811156) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006294266, 0.0001699741) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001293081)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.317561E-08, 0.8111563) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00636652, 0.0001693267) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001307814)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.389834E-08, 0.8111565) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006438884, 0.0001686915) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001322569)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.462306E-08, 0.8111567) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006511356, 0.000168068) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001337345)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.534971E-08, 0.811157) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00658393, 0.0001674558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001352143)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.607561E-08, 0.8111572) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006656611, 0.0001668547) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001366962)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.68043E-08, 0.8111575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00672939, 0.0001662643) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381801)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.753218E-08, 0.8111577) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006802268, 0.0001656843) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001396661)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.826195E-08, 0.8111579) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006875245, 0.0001651144) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00141154)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.899268E-08, 0.8111582) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006948318, 0.0001645544) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001426439)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.972437E-08, 0.8111584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007021488, 0.000164004) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001441358)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.045605E-08, 0.8111587) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007094746, 0.0001634628) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001456295)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.118957E-08, 0.8111589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007168098, 0.0001629307) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001471251)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.192487E-08, 0.8111591) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007241537, 0.0001624074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001486225)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.266016E-08, 0.8111594) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007315067, 0.0001618926) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001501217)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.339725E-08, 0.8111596) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007388685, 0.0001613862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001516227)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.413337E-08, 0.8111598) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007462387, 0.0001608879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001531254)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.487125E-08, 0.8111601) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007536175, 0.0001603975) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001546299)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.560991E-08, 0.8111603) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007610042, 0.0001599148) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001561359)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.634941E-08, 0.8111606) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007683991, 0.0001594396) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001576437)", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1660{t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.71507, 18.63876) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.3575, -24.0345) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2859854), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.41822, 11.76509) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 18.17429, -15.64585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1854527), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61984, 8.863367) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -16.15633, -15.4558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5734656), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.74145, 0.0001512584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -21.45141, 15.22121) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2155912), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.888747, 3.281431) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.38822, -27.80841) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1180014), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.984262, 0.0002780475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2305991, 27.80475) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1191256), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.94236, 3.31239) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.42652, -14.6) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2268761), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.005012, 0.0001435129) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 20.87433, 14.37513) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.590435), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 8.487865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -14.8994, 14.20093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.691238), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.977393, 18.30397) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.09713, -11.65444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3922241), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.28206, 13.7326) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4603704, -22.11528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6209553), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.67658, 0.0002202752) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.608852, 22.02752) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2200489), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.20507, 4.847275) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 22.02752, -7.767531) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3665375), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61982, 2.000106) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -18.31479, -7.718225) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2591408), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.54411, 7.497284E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -20.45319, 7.56881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.456389), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.187777, 3.454145) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.839626, -25.07086) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1377753), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.290042, 0.0002493555) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.159229, 24.9594) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.09993961), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.525736, 2.494487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.48746, -19.46407) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1281586), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.686502, 0.0001922491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.05069, 19.24876) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4696551), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.14276, 9.040274) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.946, -19.53067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4628757), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.025051, 0.0001932228) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.32156, 19.32228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1378767), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.819405, 2.664044) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.37134, -24.0291) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1108674), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.687296, 0.0002391654) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.249614, 23.91654) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1568838), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.704151, 3.752287) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.28331, -6.928161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5415995), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.87577, 6.724003E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.62621, 6.795529) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.226729), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 1.540878) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.30014, 6.750589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4426361), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.8865, 4.528736) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.750587, -19.6424) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2305592), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.18222, 0.0001952448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.472753, 19.57217) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.002434), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.7369, 19.6198) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.33831, -19.48888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7929868), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.419057, 4.16536) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -23.02034, -1.586958) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2246498), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.000250105, 3.808835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 24.99714, -1.572675) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1788682), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.314614, 3.527739) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.09929, 20.58879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7816031), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.211795, 19.61979) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.427216, -20.55026) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9547223), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.058162, 0.0002044376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.902648, 20.44376) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2043911), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.442544, 4.178548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.22719, -17.90403) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.233386), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.262522, 0.0001770008) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.84221, 17.74776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4721227), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.28793, 8.379155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -12.22817, -14.21008) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5896627), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.371777, 0.0001400589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -17.75392, 14.00589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1808783), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001780728, 2.53363) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.78795, 12.75767) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.339301), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.02542, 19.61987) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.623549, -12.68671) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5710809), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.06627, 12.37468) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.29918, -5.410871) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3758278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61992, 10.34107) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.537445, -5.357656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5498449), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.99255, 7.395328) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.80683, 13.73323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8901526), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.497512, 19.61986) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.42943, -13.59016) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104124), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.085816, 16.76016) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.285142, -16.85733) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.698581), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001051595, 4.983803) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.49216, -14.57131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3420286), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.014989, 0.0001446568) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.085127, 14.46568) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2505379), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482346, 3.624316) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.64452, -3.182668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.138767), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.79832, 3.069148E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.42739, 3.140674) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.261231), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.31868, 3.961057) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.140674, -8.945286) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4428095), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.74761, 8.878566E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.200725, 8.92625) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3679302), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.64192, 3.284277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.92625, -4.81012) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.682785), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.44996, 4.729227E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212746, 4.776911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9691768), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.98726, 4.629645) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.776911, -7.294877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6346434), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.04329, 7.224429E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.444419, 7.272113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5074097), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.04758, 3.689949) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.272113, -6.422107) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5745698), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.60665, 6.348934E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.629092, 6.396618) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7429182), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.10979, 4.752171) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.396617, -5.658934) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8397644), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.0224, 5.582916E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.83225, 5.630599) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6312054), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.91168, 3.55404) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.630599, -8.024374) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4429057), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.44332, 7.9564E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.282444, 8.004084) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5421413), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.697, 4.339384) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.004084, -4.035961) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.07518), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.63257, 3.904473E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.520668, 3.99984) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7227589), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.2485, 2.890863) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.99984, -9.610931) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3007891), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.00784, 9.546617E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.047284, 9.5943) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3548257), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.762, 3.404376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.594299, -2.433555) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.398931), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.58459, 2.345659E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.060983, 2.393343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.173249), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.068203, 2.807865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.631238, -14.47211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.194019), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.790921, 0.0001436155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.477002, 14.36155) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104654), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.190275E-05, 3.022877) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.196284, 12.33656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.345361), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.148965, 19.61988) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.971041, -12.26093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3268713), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.422212E-05, 15.61202) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.41034, -11.11049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.40516), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.727924, 0.0001111375) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.321439, 11.01838) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.106372), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.326775E-05, 1.172253) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.329431, 9.469191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.290414), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.318291E-05, 13.39154) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.31834, 10.94849) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5688878), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.575984, 19.61989) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.733199, -10.92106) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9225922), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.242024E-05, 9.544113) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.289756, -9.387285) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.016706), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.324602, 9.331409E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.662205, 9.331409) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2665415), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.402976E-05, 2.487381) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.397064, 8.023324) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.100329), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.64054E-05, 11.31575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.640589, 6.898616) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9461036), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.206955E-05, 17.84262) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.207005, 6.253925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2842029), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.799516, 19.61994) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.413935, -6.231718) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5728211), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.801053E-05, 16.05022) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.813024, -5.650228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7773848), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.303209E-05, 11.65777) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.279417, -4.859393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6685966), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.844296E-05, 8.408755) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.820503, -4.179256) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5750363), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.4377E-05, 6.005496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.425828, -3.594323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4945723), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086349E-05, 4.227811) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086398, -3.091268) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4253715), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.794431E-05, 2.912848) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.79448, -2.658629) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3658572), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543375E-05, 1.940146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543425, -2.28655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3146735), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.330442E-05, 1.220609) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.327511, -1.966554) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2706544), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.141771E-05, 0.688336) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.14182, -1.69135) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.232797), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.820731E-06, 0.2945802) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.9821221, -1.454668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2002388), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.44729E-06, 0.003286785) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8447781, -1.251116) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002627082), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002202011, 1.239552E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8114513, 1.239575) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1681041), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.204322E-06, 0.2084007) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.7204813, 1.066187) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1468971), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.197441E-06, 0.3650296) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.6197932, 0.9170609) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1263695), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.331456E-06, 0.480926) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.5331947, 0.7888028) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1087143), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582926E-06, 0.5666869) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4587142, 0.6784922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0935297), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.946068E-06, 0.6301519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3946559, 0.5836178) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.08046991), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.391399E-06, 0.6771206) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3395615, 0.5020194) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.06923762), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.921276E-06, 0.7118835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2921766, 0.4318393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0595771), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.513734E-06, 0.737615) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2514225, 0.3714797) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0512684), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.163221E-06, 0.7566634) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2163712, 0.3195664) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.04412237), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.862688E-06, 0.7707661) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1862247, 0.2749174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03797631), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.602478E-06, 0.7812089) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1602968, 0.2365163) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03269029), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.379015E-06, 0.7889427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1379971, 0.2034888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02814396), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.18792E-06, 0.7946714) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1188178, 0.175083) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02423381), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.022733E-06, 0.7989158) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1023224, 0.150652) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02087083), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.80862E-07, 0.8020613) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.08813525, 0.1296397) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01797844), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.589597E-07, 0.8043932) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.07593338, 0.1115677) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0154908), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.537832E-07, 0.8061224) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.06543901, 0.09602457) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01335127), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.63641E-07, 0.8074053) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.05641315, 0.08265641) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01151113), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.85955E-07, 0.8083575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04865037, 0.07115889) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.009928506), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.192195E-07, 0.8090646) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04197391, 0.06127021) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.008567349), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.617982E-07, 0.80959) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03623178, 0.05276527) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.007396676), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.124417E-07, 0.8099808) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03129322, 0.04545041) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.006389831), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.699823E-07, 0.8102716) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02704583, 0.03915911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.005523895), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.334384E-07, 0.8104883) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0233929, 0.03374812) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004779152), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.020291E-07, 0.8106499) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02025124, 0.02909426) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004138645), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.750029E-07, 0.8107705) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01754934, 0.02509158) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003587792), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.517663E-07, 0.8108608) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01522568, 0.02164893) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003114051), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.317795E-07, 0.8109283) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01322737, 0.01868795) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002706637), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.145984E-07, 0.8109791) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01150889, 0.01614122) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002356275), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.982086E-08, 0.8110173) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01003114, 0.01395076) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002054987), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.711405E-08, 0.8110461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.008760455, 0.0120667) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001795915), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.618684E-08, 0.8110679) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007667916, 0.01044615) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001573159), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.679592E-08, 0.8110844) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006728643, 0.009052214) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381649), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.872202E-08, 0.811097) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005921252, 0.007853162) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001217024), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.178306E-08, 0.8111066) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005227356, 0.006821695) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075536), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582106E-08, 0.811114) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004631156, 0.005934337) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009539629), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.070063E-08, 0.8111197) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004119067, 0.005170891) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008495366), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.630378E-08, 0.8111242) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003679428, 0.004513982) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007598784), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.253185E-08, 0.8111277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003302213, 0.003948665) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006829454), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.929792E-08, 0.8111305) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00297882, 0.003462082) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006169838), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.652802E-08, 0.8111327) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002701863, 0.003043171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000560488), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.415967E-08, 0.8111344) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002465006, 0.002682415) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005121666), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.213766E-08, 0.8111358) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002262817, 0.002371624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004709127), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.041587E-08, 0.8111369) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002090637, 0.002103754) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000435777), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.895421E-08, 0.8111378) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001944477, 0.001872743) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004059467), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.771862E-08, 0.8111386) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001820918, 0.001673379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003807253), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.667983E-08, 0.8111392) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001717033, 0.001501177) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003595165), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.58127E-08, 0.8111398) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001630314, 0.001352282) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003418096), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.509563E-08, 0.8111402) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001558613, 0.001223379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003271669), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.451029E-08, 0.8111407) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001500085, 0.001111624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003152128), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.404092E-08, 0.811141) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001453148, 0.001014572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003056248), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367392E-08, 0.8111413) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00141644, 0.0009301305) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002981256), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.339735E-08, 0.8111416) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001388788, 0.0008565031) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000292476), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.320126E-08, 0.8111418) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001369179, 0.0007921541) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002884693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.307687E-08, 0.8111421) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001356734, 0.0007357697) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002859265), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.30164E-08, 0.8111423) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350693, 0.0006862283) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002846919), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.301342E-08, 0.8111425) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350389, 0.000642572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00028463), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.306193E-08, 0.8111427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001355246, 0.0006039842) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002856223), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.3157E-08, 0.8111429) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001364753, 0.0005697685) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000287565), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.329415E-08, 0.811143) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001378465, 0.0005393313) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002903669), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.346938E-08, 0.8111432) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001395991, 0.0005121662) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002939476), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367931E-08, 0.8111434) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001416981, 0.0004878413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002982362), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.392084E-08, 0.8111435) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001441131, 0.0004659877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00030317), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.419115E-08, 0.8111436) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001468168, 0.0004462903) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000308693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.448797E-08, 0.8111438) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001497847, 0.000428479) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003147557), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.480899E-08, 0.8111439) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001529955, 0.0004123223) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003213138), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.515247E-08, 0.811144) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001564297, 0.0003976213) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003283278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.551645E-08, 0.8111441) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001600701, 0.0003842046) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003357622), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.589954E-08, 0.8111442) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001639009, 0.0003719244) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003435851), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.630033E-08, 0.8111444) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001679083, 0.0003606528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003517679), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.671746E-08, 0.8111445) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001720796, 0.0003502789) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003602849), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.71499E-08, 0.8111446) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001764034, 0.0003407062) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003691125), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.759643E-08, 0.8111447) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001808693, 0.0003318506) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003782297), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.805629E-08, 0.8111448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001854679, 0.0003236387) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003876172), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.852857E-08, 0.8111449) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001901907, 0.000316006) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003972576), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.901248E-08, 0.8111451) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001950298, 0.0003088959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004071349), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.950731E-08, 0.8111452) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001999781, 0.0003022585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004172344), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.00124E-08, 0.8111453) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00205029, 0.0002960498) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000427543), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.052722E-08, 0.8111454) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002101766, 0.0002902308) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004380484), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.105105E-08, 0.8111455) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002154155, 0.0002847669) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004487394), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.158354E-08, 0.8111457) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002207404, 0.0002796271) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004596055), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212418E-08, 0.8111458) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002261468, 0.000274784) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004706375), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.267253E-08, 0.8111459) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002316303, 0.0002702131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004818264), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.322831E-08, 0.811146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002371869, 0.0002658922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004931641), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.37908E-08, 0.8111461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00242813, 0.0002618015) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005046431), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.43599E-08, 0.8111463) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002485052, 0.0002579232) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005162564), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.493551E-08, 0.8111464) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002542601, 0.0002542413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005279974), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.551699E-08, 0.8111465) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002600749, 0.0002507411) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005398603), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.610406E-08, 0.8111466) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002659468, 0.0002474094) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005518393), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.669681E-08, 0.8111467) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002718731, 0.0002442343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005639291), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.729477E-08, 0.8111469) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002778516, 0.0002412049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005761249), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.789739E-08, 0.811147) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0028388, 0.0002383113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005884222), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.850522E-08, 0.8111471) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00289956, 0.0002355444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006008164), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.911729E-08, 0.8111472) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002960779, 0.0002328959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006133038), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.973374E-08, 0.8111473) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003022436, 0.0002303582) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006258803), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.035464E-08, 0.8111475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003084514, 0.0002279245) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006385426), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.097946E-08, 0.8111476) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003146996, 0.0002255881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000651287), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.16084E-08, 0.8111477) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003209868, 0.0002233434) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006641107), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.224065E-08, 0.8111478) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003273115, 0.0002211848) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006770107), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.28765E-08, 0.811148) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003336722, 0.0002191074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006899839), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.351627E-08, 0.8111482) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003400677, 0.0002171064) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007030278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.415894E-08, 0.8111483) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003464967, 0.0002151776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007161399), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.48053E-08, 0.8111485) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00352958, 0.0002133171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007293177), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.545456E-08, 0.8111487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003594506, 0.0002115211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007425591), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.610684E-08, 0.8111489) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003659734, 0.0002097862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007558619), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.676226E-08, 0.8111491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003725253, 0.0002081093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007692242), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.741983E-08, 0.8111492) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003791056, 0.0002064873) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007826439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.808081E-08, 0.8111494) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003857131, 0.0002049174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007961191), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.874399E-08, 0.8111496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003923472, 0.0002033971) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008096482), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.941041E-08, 0.8111498) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003990068, 0.000201924) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008232295), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.007862E-08, 0.81115) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004056912, 0.0002004957) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008368612), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.074971E-08, 0.8111501) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004123999, 0.0001991102) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008505422), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.142292E-08, 0.8111503) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004191319, 0.0001977655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008642707), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.209819E-08, 0.8111505) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004258869, 0.0001964597) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008780457), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.277588E-08, 0.8111507) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004326638, 0.000195191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008918655), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.345571E-08, 0.8111508) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004394621, 0.0001939578) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009057288), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.413718E-08, 0.811151) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004462813, 0.0001927586) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009196345), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482203E-08, 0.8111512) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004531207, 0.0001915918) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009335818), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.550752E-08, 0.8111514) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004599802, 0.0001904562) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009475693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.619537E-08, 0.8111516) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004668587, 0.0001893503) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009615958), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.688509E-08, 0.8111517) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004737559, 0.000188273) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009756604), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.757619E-08, 0.8111519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004806715, 0.0001872231) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009897621), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.826996E-08, 0.8111521) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004876046, 0.0001861995) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0010039), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.896458E-08, 0.8111523) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004945554, 0.0001852013) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001018073), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.966179E-08, 0.8111525) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005015229, 0.0001842272) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001032281), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.036019E-08, 0.8111526) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005085069, 0.0001832766) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001046522), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.105976E-08, 0.8111528) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005155072, 0.0001823483) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001060796), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.176225E-08, 0.811153) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005225229, 0.0001814417) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075102), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.246446E-08, 0.8111532) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005295542, 0.0001805559) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001089439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.316955E-08, 0.8111534) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005366005, 0.0001796902) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001103807), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.387609E-08, 0.8111535) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005436614, 0.0001788438) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001118205), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.458318E-08, 0.8111537) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005507368, 0.0001780161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001132632), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.529209E-08, 0.8111539) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005578259, 0.0001772063) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001147087), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.60024E-08, 0.8111541) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00564929, 0.0001764139) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00116157), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.671448E-08, 0.8111542) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005720453, 0.0001756383) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001176081), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.742698E-08, 0.8111544) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005791748, 0.0001748788) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001190618), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.814076E-08, 0.8111546) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005863171, 0.0001741351) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001205181), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.885625E-08, 0.8111548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00593472, 0.0001734065) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00121977), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.957342E-08, 0.8111551) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006006392, 0.0001726925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001234384), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.029135E-08, 0.8111553) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006078185, 0.0001719927) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001249023), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.101046E-08, 0.8111556) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006150096, 0.0001713067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001263685), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.173074E-08, 0.8111558) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006222124, 0.0001706339) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001278372), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.245215E-08, 0.811156) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006294266, 0.0001699741) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001293081), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.317561E-08, 0.8111563) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00636652, 0.0001693267) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001307814), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.389834E-08, 0.8111565) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006438884, 0.0001686915) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001322569), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.462306E-08, 0.8111567) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006511356, 0.000168068) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001337345), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.534971E-08, 0.811157) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00658393, 0.0001674558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001352143), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.607561E-08, 0.8111572) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006656611, 0.0001668547) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001366962), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.68043E-08, 0.8111575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00672939, 0.0001662643) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381801), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.753218E-08, 0.8111577) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006802268, 0.0001656843) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001396661), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.826195E-08, 0.8111579) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006875245, 0.0001651144) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00141154), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.899268E-08, 0.8111582) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006948318, 0.0001645544) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001426439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.972437E-08, 0.8111584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007021488, 0.000164004) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001441358), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.045605E-08, 0.8111587) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007094746, 0.0001634628) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001456295), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.118957E-08, 0.8111589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007168098, 0.0001629307) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001471251), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.192487E-08, 0.8111591) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007241537, 0.0001624074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001486225), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.266016E-08, 0.8111594) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007315067, 0.0001618926) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001501217), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.339725E-08, 0.8111596) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007388685, 0.0001613862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001516227), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.413337E-08, 0.8111598) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007462387, 0.0001608879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001531254), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.487125E-08, 0.8111601) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007536175, 0.0001603975) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001546299), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.560991E-08, 0.8111603) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007610042, 0.0001599148) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001561359), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.634941E-08, 0.8111606) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007683991, 0.0001594396) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001576437)}" ], "WorkflowGadgetDict": { "-1": null }, - "FactDict": { - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5556": { - "Point": { - "x": 0.0, - "y": 0.0, - "z": 12.2625, - "normalized": { - "x": 0.0, - "y": 0.0, - "z": 1.0, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "magnitude": 12.2625, - "sqrMagnitude": 150.3689 - }, - "Normal": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5556", - "Label": "A", - "hasCustomLabel": false, - "LabelId": 1 + "MetaInf": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1624": { + "workflow_id": 0, + "active": true, + "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5557": { - "Point": { - "x": 0.0, - "y": 0.0, - "z": 14.715, - "normalized": { - "x": 0.0, - "y": 0.0, - "z": 1.0, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "magnitude": 14.715, - "sqrMagnitude": 216.531235 - }, - "Normal": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5557", - "Label": "B", - "hasCustomLabel": false, - "LabelId": 2 + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1625": { + "workflow_id": 1, + "active": true, + "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5558": { - "s_type": "LineFact", - "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5556", - "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5557", - "Dir": { - "x": 0.0, - "y": 0.0, - "z": -1.0, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5558", - "Label": "[AB]", - "hasCustomLabel": false, - "LabelId": 0 + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1626": { + "workflow_id": 2, + "active": true, + "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5559": { - "Point": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "magnitude": 0.0, - "sqrMagnitude": 0.0 - }, - "Normal": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5559", - "Label": "C", - "hasCustomLabel": false, - "LabelId": 3 + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1627": { + "workflow_id": 3, + "active": true, + "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5560": { - "Point": { - "x": 0.0, - "y": 19.6199989, - "z": -8.576174E-07, - "normalized": { - "x": 0.0, - "y": 1.0, - "z": -4.371139E-08, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "magnitude": 19.6199989, - "sqrMagnitude": 384.944366 - }, - "Normal": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5560", - "Label": "D", - "hasCustomLabel": false, - "LabelId": 4 + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1628": { + "workflow_id": 4, + "active": true, + "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5561": { - "s_type": "LineFact", - "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5559", - "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5560", - "Dir": { - "x": 0.0, - "y": -1.0, - "z": 4.371139E-08, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5561", - "Label": "[CD]", - "hasCustomLabel": false, - "LabelId": 0 + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1629": { + "workflow_id": 5, + "active": true, + "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5562": { - "Point": { - "x": 0.0, - "y": 0.0, - "z": 19.6199989, - "normalized": { - "x": 0.0, - "y": 0.0, - "z": 1.0, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "magnitude": 19.6199989, - "sqrMagnitude": 384.944366 - }, - "Normal": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5562", - "Label": "E", - "hasCustomLabel": false, - "LabelId": 5 + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1630": { + "workflow_id": 6, + "active": true, + "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5563": { - "Point": { - "x": 0.0, - "y": 19.6199989, - "z": 19.6199989, - "normalized": { - "x": 0.0, - "y": 0.707106769, - "z": 0.707106769, - "magnitude": 1.0, - "sqrMagnitude": 0.99999994 - }, - "magnitude": 27.7468681, - "sqrMagnitude": 769.888733 - }, - "Normal": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5563", - "Label": "F", - "hasCustomLabel": false, - "LabelId": 6 + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1631": { + "workflow_id": 7, + "active": true, + "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5564": { - "s_type": "LineFact", - "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5562", - "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5563", - "Dir": { - "x": 0.0, - "y": -1.0, - "z": 0.0, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5564", - "Label": "[EF]", - "hasCustomLabel": false, - "LabelId": 0 + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1632": { + "workflow_id": 8, + "active": true, + "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5567": { - "s_type": "LineFact", - "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5560", - "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5563", - "Dir": { - "x": 0.0, - "y": 0.0, - "z": -1.0, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5567", - "Label": "[DF]", - "hasCustomLabel": false, - "LabelId": 0 + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1635": { + "workflow_id": 9, + "active": true, + "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5568": { - "Point": { - "x": 0.0, - "y": 9.809999, - "z": 2.45249987, - "normalized": { - "x": 0.0, - "y": 0.970142543, - "z": 0.242535636, - "magnitude": 1.0, - "sqrMagnitude": 1.00000012 - }, - "magnitude": 10.1119156, - "sqrMagnitude": 102.250847 - }, - "Normal": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5568", - "Label": "G", - "hasCustomLabel": false, - "LabelId": 7 + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1636": { + "workflow_id": 10, + "active": true, + "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5569": { - "Point": { - "x": 0.0, - "y": 13.2783585, - "z": 5.920859, - "normalized": { - "x": 0.0, - "y": 0.913316548, - "z": 0.407250524, - "magnitude": 1.0, - "sqrMagnitude": 1.00000012 - }, - "magnitude": 14.5386162, - "sqrMagnitude": 211.371368 - }, - "Normal": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5569", - "Label": "H", - "hasCustomLabel": false, - "LabelId": 8 + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1637": { + "workflow_id": 11, + "active": true, + "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5570": { - "s_type": "LineFact", - "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5568", - "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5569", - "Dir": { - "x": 0.0, - "y": -0.707106769, - "z": -0.707106769, - "magnitude": 1.0, - "sqrMagnitude": 0.99999994 - }, - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5570", - "Label": "[GH]", - "hasCustomLabel": false, - "LabelId": 0 + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1638": { + "workflow_id": 12, + "active": true, + "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5571": { - "Point": { - "x": 0.0, - "y": 4.90499973, - "z": 7.3575, - "normalized": { - "x": 0.0, - "y": 0.5547002, - "z": 0.8320503, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "magnitude": 8.842614, - "sqrMagnitude": 78.19183 - }, - "Normal": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5571", - "Label": "I", - "hasCustomLabel": false, - "LabelId": 9 + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1639": { + "workflow_id": 13, + "active": true, + "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5572": { - "Point": { - "x": 0.0, - "y": 4.90499973, - "z": 9.809999, - "normalized": { - "x": 0.0, - "y": 0.4472136, - "z": 0.8944272, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "magnitude": 10.9679127, - "sqrMagnitude": 120.295113 - }, - "Normal": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5572", - "Label": "J", - "hasCustomLabel": false, - "LabelId": 10 + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1640": { + "workflow_id": 14, + "active": true, + "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5573": { - "s_type": "LineFact", - "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5571", - "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5572", - "Dir": { - "x": 0.0, - "y": 0.0, - "z": -1.0, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5573", - "Label": "[IJ]", - "hasCustomLabel": false, - "LabelId": 0 + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1641": { + "workflow_id": 15, + "active": true, + "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5574": { - "Point": { - "x": 0.0, - "y": 9.809999, - "z": 9.809999, - "normalized": { - "x": 0.0, - "y": 0.707106769, - "z": 0.707106769, - "magnitude": 1.0, - "sqrMagnitude": 0.99999994 - }, - "magnitude": 13.8734341, - "sqrMagnitude": 192.472183 - }, - "Normal": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5574", - "Label": "K", - "hasCustomLabel": false, - "LabelId": 11 + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1642": { + "workflow_id": 16, + "active": true, + "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5575": { - "Point": { - "x": 0.0, - "y": 14.0578547, - "z": 7.3574996, - "normalized": { - "x": 0.0, - "y": 0.8859905, - "z": 0.4637034, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "magnitude": 15.8668232, - "sqrMagnitude": 251.756073 - }, - "Normal": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5575", - "Label": "L", - "hasCustomLabel": false, - "LabelId": 12 + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1643": { + "workflow_id": 17, + "active": true, + "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5576": { - "s_type": "LineFact", - "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5574", - "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5575", - "Dir": { - "x": 0.0, - "y": -0.8660255, - "z": 0.49999994, - "normalized": { - "x": 0.0, - "y": -0.8660254, - "z": 0.499999881, - "normalized": { - "x": 0.0, - "y": -0.866025448, - "z": 0.4999999, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "magnitude": 0.99999994, - "sqrMagnitude": 0.9999999 - }, - "magnitude": 1.00000012, - "sqrMagnitude": 1.00000012 - }, - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5576", - "Label": "[KL]", - "hasCustomLabel": false, - "LabelId": 0 + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1644": { + "workflow_id": 18, + "active": true, + "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5577": { - "Point": { - "x": 0.0, - "y": 14.715, - "z": 14.715, - "normalized": { - "x": 0.0, - "y": 0.7071068, - "z": 0.7071068, - "normalized": { - "x": 0.0, - "y": 0.707106769, - "z": 0.707106769, - "magnitude": 1.0, - "sqrMagnitude": 0.99999994 - }, - "magnitude": 1.00000012, - "sqrMagnitude": 1.00000012 - }, - "magnitude": 20.8101521, - "sqrMagnitude": 433.062469 - }, - "Normal": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5577", - "Label": "M", - "hasCustomLabel": false, - "LabelId": 13 + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1645": { + "workflow_id": 19, + "active": true, + "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5578": { - "Point": { - "x": 0.0, - "y": 16.677, - "z": 11.3167162, - "normalized": { - "x": 0.0, - "y": 0.8274716, - "z": 0.5615076, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "magnitude": 20.1541653, - "sqrMagnitude": 406.1904 - }, - "Normal": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5578", - "Label": "N", - "hasCustomLabel": false, - "LabelId": 14 + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1646": { + "workflow_id": 20, + "active": true, + "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5579": { - "s_type": "LineFact", - "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5577", - "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5578", - "Dir": { - "x": 0.0, - "y": -0.49999994, - "z": 0.8660254, - "normalized": { - "x": 0.0, - "y": -0.49999997, - "z": 0.866025448, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "magnitude": 0.99999994, - "sqrMagnitude": 0.99999994 - }, - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5579", - "Label": "[MN]", - "hasCustomLabel": false, - "LabelId": 0 + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1647": { + "workflow_id": 21, + "active": true, + "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5580": { - "Point": { - "x": 0.0, - "y": 4.90499973, - "z": 14.715, - "normalized": { - "x": 0.0, - "y": 0.316227734, - "z": 0.9486833, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "magnitude": 15.510972, - "sqrMagnitude": 240.590256 - }, - "Normal": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5580", - "Label": "O", - "hasCustomLabel": false, - "LabelId": 15 + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1648": { + "workflow_id": 22, + "active": true, + "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5581": { - "Point": { - "x": 0.0, - "y": 7.3575, - "z": 18.9628544, - "normalized": { - "x": 0.0, - "y": 0.3617226, - "z": 0.9322858, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "magnitude": 20.3401737, - "sqrMagnitude": 413.722656 - }, - "Normal": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5581", - "Label": "P", - "hasCustomLabel": false, - "LabelId": 16 + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1649": { + "workflow_id": 23, + "active": true, + "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5582": { - "s_type": "LineFact", - "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5580", - "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5581", - "Dir": { - "x": 0.0, - "y": -0.5000001, - "z": -0.8660254, - "magnitude": 1.0, - "sqrMagnitude": 1.00000012 - }, - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5582", - "Label": "[OP]", - "hasCustomLabel": false, - "LabelId": 0 + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1650": { + "workflow_id": 24, + "active": true, + "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5583": { - "Point": { - "x": 0.0, - "y": 2.45249987, - "z": 2.45249987, - "normalized": { - "x": 0.0, - "y": 0.707106769, - "z": 0.707106769, - "magnitude": 1.0, - "sqrMagnitude": 0.99999994 - }, - "magnitude": 3.46835852, - "sqrMagnitude": 12.0295115 - }, - "Normal": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5583", - "Label": "Q", - "hasCustomLabel": false, - "LabelId": 17 + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1651": { + "workflow_id": 25, + "active": true, + "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5584": { - "Point": { - "x": 0.0, - "y": 6.70035458, - "z": 4.90499973, - "normalized": { - "x": 0.0, - "y": 0.806898236, - "z": 0.5906905, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "magnitude": 8.303841, - "sqrMagnitude": 68.95377 - }, - "Normal": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5584", - "Label": "R", - "hasCustomLabel": false, - "LabelId": 18 + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1652": { + "workflow_id": 26, + "active": true, + "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5585": { - "s_type": "LineFact", - "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5583", - "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5584", - "Dir": { - "x": 0.0, - "y": -0.8660254, - "z": -0.49999994, - "normalized": { - "x": 0.0, - "y": -0.866025448, - "z": -0.49999997, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "magnitude": 0.99999994, - "sqrMagnitude": 0.99999994 - }, - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5585", - "Label": "[QR]", - "hasCustomLabel": false, - "LabelId": 0 + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1653": { + "workflow_id": 27, + "active": true, + "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5588": { - "s_type": "LineFact", - "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5557", - "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5562", - "Dir": { - "x": 0.0, - "y": 0.0, - "z": -1.0, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5588", - "Label": "[BE]", - "hasCustomLabel": false, - "LabelId": 0 + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1656": { + "workflow_id": 28, + "active": true, + "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5591": { - "s_type": "LineFact", - "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5559", - "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5556", - "Dir": { - "x": 0.0, - "y": 0.0, - "z": -1.0, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5591", - "Label": "[CA]", - "hasCustomLabel": false, - "LabelId": 0 + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1659": { + "workflow_id": 29, + "active": true, + "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5592": { - "Point": { - "x": 0.0, - "y": 14.715, - "z": 18.639, - "normalized": { - "x": 0.0, - "y": 0.6196443, - "z": 0.7848828, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "magnitude": 23.7474957, - "sqrMagnitude": 563.943542 - }, - "Normal": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5592", - "Label": "S", - "hasCustomLabel": false, - "LabelId": 19 + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1660": { + "workflow_id": 30, + "active": true, + "isImmutable": false }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.715, 18.639) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.3575, -24.0345) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2859924)": { - "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", - "Function_SOMDoc": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "Add" - }, - "arguments": [ - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "UnityEngine.Vector3" - }, - "arguments": [ - { - "kind": "OMF", - "float": 0.0 - }, - { - "kind": "OMF", - "float": 14.715 - }, - { - "kind": "OMF", - "float": 18.639 - } - ] - }, - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "Add" - }, - "arguments": [ - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "Multiply" - }, - "arguments": [ - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "UnityEngine.Vector3" - }, - "arguments": [ - { - "kind": "OMF", - "float": 0.0 - }, - { - "kind": "OMF", - "float": 7.3575 - }, - { - "kind": "OMF", - "float": -24.0345 - } - ] - }, - { - "kind": "OMV", - "name": "t", - "typeString": "System.Single" - } - ] - }, - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "Multiply" - }, - "arguments": [ - { - "kind": "OMF", - "float": 0.5 - }, - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "Multiply" - }, - "arguments": [ - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "UnityEngine.Vector3" - }, - "arguments": [ - { - "kind": "OMF", - "float": 0.0 - }, - { - "kind": "OMF", - "float": -9.809999 - }, - { - "kind": "OMF", - "float": 0.0 - } - ] - }, - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "Multiply" - }, - "arguments": [ - { - "kind": "OMV", - "name": "t", - "typeString": "System.Single" - }, - { - "kind": "OMV", - "name": "t", - "typeString": "System.Single" - } - ] - } - ] - } - ] - } - ] - } - ] - }, - "Domain": { - "Item1": 0.0, - "Item2": 0.2859924 - }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.715, 18.639) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.3575, -24.0345) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2859924)", - "Label": "T", - "hasCustomLabel": false, - "LabelId": 20 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.71507, 18.63876) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.3575, -24.0345) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2859854)": { + "workflow_id": 31, + "active": true, + "isImmutable": false }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.418, 11.76532) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.81013, -15.33226) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1896955)": { - "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", - "Function_SOMDoc": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "Add" - }, - "arguments": [ - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "UnityEngine.Vector3" - }, - "arguments": [ - { - "kind": "OMF", - "float": 0.0 - }, - { - "kind": "OMF", - "float": 16.4180012 - }, - { - "kind": "OMF", - "float": 11.7653151 - } - ] - }, - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "Add" - }, - "arguments": [ - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "Multiply" - }, - "arguments": [ - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "UnityEngine.Vector3" - }, - "arguments": [ - { - "kind": "OMF", - "float": 0.0 - }, - { - "kind": "OMF", - "float": 17.8101254 - }, - { - "kind": "OMF", - "float": -15.3322639 - } - ] - }, - { - "kind": "OMV", - "name": "t", - "typeString": "System.Single" - } - ] - }, - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "Multiply" - }, - "arguments": [ - { - "kind": "OMF", - "float": 0.5 - }, - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "Multiply" - }, - "arguments": [ - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "UnityEngine.Vector3" - }, - "arguments": [ - { - "kind": "OMF", - "float": 0.0 - }, - { - "kind": "OMF", - "float": -9.809999 - }, - { - "kind": "OMF", - "float": 0.0 - } - ] - }, - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "Multiply" - }, - "arguments": [ - { - "kind": "OMV", - "name": "t", - "typeString": "System.Single" - }, - { - "kind": "OMV", - "name": "t", - "typeString": "System.Single" - } - ] - } - ] - } - ] - } - ] - } - ] - }, - "Domain": { - "Item1": 0.0, - "Item2": 0.189695537 - }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.418, 11.76532) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.81013, -15.33226) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1896955)", - "Label": "U", - "hasCustomLabel": false, - "LabelId": 21 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.41822, 11.76509) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 18.17429, -15.64585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1854527)": { + "workflow_id": 32, + "active": true, + "isImmutable": false }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.62, 8.856853) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.56049, -14.95858) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.5920918)": { - "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", - "Function_SOMDoc": { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "Add" - }, - "arguments": [ - { - "kind": "OMA", - "applicant": { - "kind": "OMS", - "uri": "UnityEngine.Vector3" - }, - "arguments": [ - { - "kind": "OMF", - "float": 0.0 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61984, 8.863367) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -16.15633, -15.4558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5734656)": { + "workflow_id": 33, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.74145, 0.0001512584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -21.45141, 15.22121) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2155912)": { + "workflow_id": 34, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.888747, 3.281431) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.38822, -27.80841) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1180014)": { + "workflow_id": 35, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.984262, 0.0002780475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2305991, 27.80475) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1191256)": { + "workflow_id": 36, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.94236, 3.31239) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.42652, -14.6) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2268761)": { + "workflow_id": 37, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.005012, 0.0001435129) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 20.87433, 14.37513) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.590435)": { + "workflow_id": 38, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 8.487865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -14.8994, 14.20093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.691238)": { + "workflow_id": 39, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.977393, 18.30397) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.09713, -11.65444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3922241)": { + "workflow_id": 40, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.28206, 13.7326) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4603704, -22.11528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6209553)": { + "workflow_id": 41, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.67658, 0.0002202752) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.608852, 22.02752) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2200489)": { + "workflow_id": 42, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.20507, 4.847275) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 22.02752, -7.767531) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3665375)": { + "workflow_id": 43, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61982, 2.000106) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -18.31479, -7.718225) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2591408)": { + "workflow_id": 44, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.54411, 7.497284E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -20.45319, 7.56881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.456389)": { + "workflow_id": 45, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.187777, 3.454145) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.839626, -25.07086) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1377753)": { + "workflow_id": 46, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.290042, 0.0002493555) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.159229, 24.9594) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.09993961)": { + "workflow_id": 47, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.525736, 2.494487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.48746, -19.46407) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1281586)": { + "workflow_id": 48, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.686502, 0.0001922491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.05069, 19.24876) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4696551)": { + "workflow_id": 49, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.14276, 9.040274) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.946, -19.53067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4628757)": { + "workflow_id": 50, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.025051, 0.0001932228) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.32156, 19.32228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1378767)": { + "workflow_id": 51, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.819405, 2.664044) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.37134, -24.0291) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1108674)": { + "workflow_id": 52, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.687296, 0.0002391654) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.249614, 23.91654) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1568838)": { + "workflow_id": 53, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.704151, 3.752287) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.28331, -6.928161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5415995)": { + "workflow_id": 54, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.87577, 6.724003E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.62621, 6.795529) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.226729)": { + "workflow_id": 55, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 1.540878) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.30014, 6.750589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4426361)": { + "workflow_id": 56, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.8865, 4.528736) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.750587, -19.6424) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2305592)": { + "workflow_id": 57, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.18222, 0.0001952448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.472753, 19.57217) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.002434)": { + "workflow_id": 58, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.7369, 19.6198) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.33831, -19.48888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7929868)": { + "workflow_id": 59, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.419057, 4.16536) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -23.02034, -1.586958) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2246498)": { + "workflow_id": 60, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.000250105, 3.808835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 24.99714, -1.572675) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1788682)": { + "workflow_id": 61, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.314614, 3.527739) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.09929, 20.58879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7816031)": { + "workflow_id": 62, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.211795, 19.61979) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.427216, -20.55026) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9547223)": { + "workflow_id": 63, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.058162, 0.0002044376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.902648, 20.44376) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2043911)": { + "workflow_id": 64, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.442544, 4.178548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.22719, -17.90403) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.233386)": { + "workflow_id": 65, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.262522, 0.0001770008) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.84221, 17.74776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4721227)": { + "workflow_id": 66, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.28793, 8.379155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -12.22817, -14.21008) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5896627)": { + "workflow_id": 67, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.371777, 0.0001400589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -17.75392, 14.00589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1808783)": { + "workflow_id": 68, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001780728, 2.53363) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.78795, 12.75767) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.339301)": { + "workflow_id": 69, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.02542, 19.61987) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.623549, -12.68671) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5710809)": { + "workflow_id": 70, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.06627, 12.37468) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.29918, -5.410871) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3758278)": { + "workflow_id": 71, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61992, 10.34107) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.537445, -5.357656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5498449)": { + "workflow_id": 72, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.99255, 7.395328) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.80683, 13.73323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8901526)": { + "workflow_id": 73, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.497512, 19.61986) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.42943, -13.59016) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104124)": { + "workflow_id": 74, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.085816, 16.76016) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.285142, -16.85733) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.698581)": { + "workflow_id": 75, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001051595, 4.983803) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.49216, -14.57131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3420286)": { + "workflow_id": 76, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.014989, 0.0001446568) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.085127, 14.46568) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2505379)": { + "workflow_id": 77, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482346, 3.624316) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.64452, -3.182668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.138767)": { + "workflow_id": 78, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.79832, 3.069148E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.42739, 3.140674) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.261231)": { + "workflow_id": 79, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.31868, 3.961057) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.140674, -8.945286) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4428095)": { + "workflow_id": 80, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.74761, 8.878566E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.200725, 8.92625) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3679302)": { + "workflow_id": 81, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.64192, 3.284277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.92625, -4.81012) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.682785)": { + "workflow_id": 82, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.44996, 4.729227E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212746, 4.776911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9691768)": { + "workflow_id": 83, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.98726, 4.629645) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.776911, -7.294877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6346434)": { + "workflow_id": 84, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.04329, 7.224429E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.444419, 7.272113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5074097)": { + "workflow_id": 85, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.04758, 3.689949) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.272113, -6.422107) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5745698)": { + "workflow_id": 86, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.60665, 6.348934E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.629092, 6.396618) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7429182)": { + "workflow_id": 87, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.10979, 4.752171) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.396617, -5.658934) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8397644)": { + "workflow_id": 88, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.0224, 5.582916E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.83225, 5.630599) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6312054)": { + "workflow_id": 89, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.91168, 3.55404) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.630599, -8.024374) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4429057)": { + "workflow_id": 90, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.44332, 7.9564E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.282444, 8.004084) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5421413)": { + "workflow_id": 91, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.697, 4.339384) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.004084, -4.035961) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.07518)": { + "workflow_id": 92, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.63257, 3.904473E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.520668, 3.99984) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7227589)": { + "workflow_id": 93, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.2485, 2.890863) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.99984, -9.610931) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3007891)": { + "workflow_id": 94, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.00784, 9.546617E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.047284, 9.5943) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3548257)": { + "workflow_id": 95, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.762, 3.404376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.594299, -2.433555) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.398931)": { + "workflow_id": 96, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.58459, 2.345659E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.060983, 2.393343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.173249)": { + "workflow_id": 97, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.068203, 2.807865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.631238, -14.47211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.194019)": { + "workflow_id": 98, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.790921, 0.0001436155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.477002, 14.36155) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104654)": { + "workflow_id": 99, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.190275E-05, 3.022877) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.196284, 12.33656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.345361)": { + "workflow_id": 100, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.148965, 19.61988) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.971041, -12.26093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3268713)": { + "workflow_id": 101, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.422212E-05, 15.61202) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.41034, -11.11049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.40516)": { + "workflow_id": 102, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.727924, 0.0001111375) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.321439, 11.01838) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.106372)": { + "workflow_id": 103, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.326775E-05, 1.172253) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.329431, 9.469191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.290414)": { + "workflow_id": 104, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.318291E-05, 13.39154) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.31834, 10.94849) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5688878)": { + "workflow_id": 105, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.575984, 19.61989) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.733199, -10.92106) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9225922)": { + "workflow_id": 106, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.242024E-05, 9.544113) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.289756, -9.387285) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.016706)": { + "workflow_id": 107, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.324602, 9.331409E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.662205, 9.331409) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2665415)": { + "workflow_id": 108, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.402976E-05, 2.487381) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.397064, 8.023324) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.100329)": { + "workflow_id": 109, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.64054E-05, 11.31575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.640589, 6.898616) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9461036)": { + "workflow_id": 110, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.206955E-05, 17.84262) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.207005, 6.253925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2842029)": { + "workflow_id": 111, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.799516, 19.61994) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.413935, -6.231718) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5728211)": { + "workflow_id": 112, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.801053E-05, 16.05022) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.813024, -5.650228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7773848)": { + "workflow_id": 113, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.303209E-05, 11.65777) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.279417, -4.859393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6685966)": { + "workflow_id": 114, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.844296E-05, 8.408755) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.820503, -4.179256) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5750363)": { + "workflow_id": 115, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.4377E-05, 6.005496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.425828, -3.594323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4945723)": { + "workflow_id": 116, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086349E-05, 4.227811) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086398, -3.091268) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4253715)": { + "workflow_id": 117, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.794431E-05, 2.912848) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.79448, -2.658629) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3658572)": { + "workflow_id": 118, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543375E-05, 1.940146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543425, -2.28655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3146735)": { + "workflow_id": 119, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.330442E-05, 1.220609) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.327511, -1.966554) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2706544)": { + "workflow_id": 120, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.141771E-05, 0.688336) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.14182, -1.69135) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.232797)": { + "workflow_id": 121, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.820731E-06, 0.2945802) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.9821221, -1.454668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2002388)": { + "workflow_id": 122, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.44729E-06, 0.003286785) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8447781, -1.251116) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002627082)": { + "workflow_id": 123, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002202011, 1.239552E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8114513, 1.239575) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1681041)": { + "workflow_id": 124, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.204322E-06, 0.2084007) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.7204813, 1.066187) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1468971)": { + "workflow_id": 125, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.197441E-06, 0.3650296) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.6197932, 0.9170609) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1263695)": { + "workflow_id": 126, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.331456E-06, 0.480926) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.5331947, 0.7888028) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1087143)": { + "workflow_id": 127, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582926E-06, 0.5666869) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4587142, 0.6784922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0935297)": { + "workflow_id": 128, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.946068E-06, 0.6301519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3946559, 0.5836178) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.08046991)": { + "workflow_id": 129, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.391399E-06, 0.6771206) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3395615, 0.5020194) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.06923762)": { + "workflow_id": 130, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.921276E-06, 0.7118835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2921766, 0.4318393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0595771)": { + "workflow_id": 131, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.513734E-06, 0.737615) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2514225, 0.3714797) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0512684)": { + "workflow_id": 132, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.163221E-06, 0.7566634) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2163712, 0.3195664) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.04412237)": { + "workflow_id": 133, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.862688E-06, 0.7707661) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1862247, 0.2749174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03797631)": { + "workflow_id": 134, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.602478E-06, 0.7812089) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1602968, 0.2365163) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03269029)": { + "workflow_id": 135, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.379015E-06, 0.7889427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1379971, 0.2034888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02814396)": { + "workflow_id": 136, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.18792E-06, 0.7946714) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1188178, 0.175083) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02423381)": { + "workflow_id": 137, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.022733E-06, 0.7989158) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1023224, 0.150652) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02087083)": { + "workflow_id": 138, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.80862E-07, 0.8020613) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.08813525, 0.1296397) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01797844)": { + "workflow_id": 139, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.589597E-07, 0.8043932) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.07593338, 0.1115677) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0154908)": { + "workflow_id": 140, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.537832E-07, 0.8061224) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.06543901, 0.09602457) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01335127)": { + "workflow_id": 141, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.63641E-07, 0.8074053) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.05641315, 0.08265641) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01151113)": { + "workflow_id": 142, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.85955E-07, 0.8083575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04865037, 0.07115889) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.009928506)": { + "workflow_id": 143, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.192195E-07, 0.8090646) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04197391, 0.06127021) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.008567349)": { + "workflow_id": 144, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.617982E-07, 0.80959) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03623178, 0.05276527) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.007396676)": { + "workflow_id": 145, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.124417E-07, 0.8099808) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03129322, 0.04545041) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.006389831)": { + "workflow_id": 146, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.699823E-07, 0.8102716) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02704583, 0.03915911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.005523895)": { + "workflow_id": 147, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.334384E-07, 0.8104883) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0233929, 0.03374812) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004779152)": { + "workflow_id": 148, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.020291E-07, 0.8106499) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02025124, 0.02909426) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004138645)": { + "workflow_id": 149, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.750029E-07, 0.8107705) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01754934, 0.02509158) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003587792)": { + "workflow_id": 150, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.517663E-07, 0.8108608) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01522568, 0.02164893) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003114051)": { + "workflow_id": 151, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.317795E-07, 0.8109283) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01322737, 0.01868795) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002706637)": { + "workflow_id": 152, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.145984E-07, 0.8109791) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01150889, 0.01614122) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002356275)": { + "workflow_id": 153, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.982086E-08, 0.8110173) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01003114, 0.01395076) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002054987)": { + "workflow_id": 154, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.711405E-08, 0.8110461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.008760455, 0.0120667) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001795915)": { + "workflow_id": 155, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.618684E-08, 0.8110679) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007667916, 0.01044615) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001573159)": { + "workflow_id": 156, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.679592E-08, 0.8110844) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006728643, 0.009052214) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381649)": { + "workflow_id": 157, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.872202E-08, 0.811097) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005921252, 0.007853162) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001217024)": { + "workflow_id": 158, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.178306E-08, 0.8111066) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005227356, 0.006821695) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075536)": { + "workflow_id": 159, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582106E-08, 0.811114) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004631156, 0.005934337) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009539629)": { + "workflow_id": 160, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.070063E-08, 0.8111197) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004119067, 0.005170891) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008495366)": { + "workflow_id": 161, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.630378E-08, 0.8111242) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003679428, 0.004513982) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007598784)": { + "workflow_id": 162, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.253185E-08, 0.8111277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003302213, 0.003948665) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006829454)": { + "workflow_id": 163, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.929792E-08, 0.8111305) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00297882, 0.003462082) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006169838)": { + "workflow_id": 164, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.652802E-08, 0.8111327) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002701863, 0.003043171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000560488)": { + "workflow_id": 165, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.415967E-08, 0.8111344) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002465006, 0.002682415) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005121666)": { + "workflow_id": 166, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.213766E-08, 0.8111358) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002262817, 0.002371624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004709127)": { + "workflow_id": 167, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.041587E-08, 0.8111369) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002090637, 0.002103754) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000435777)": { + "workflow_id": 168, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.895421E-08, 0.8111378) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001944477, 0.001872743) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004059467)": { + "workflow_id": 169, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.771862E-08, 0.8111386) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001820918, 0.001673379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003807253)": { + "workflow_id": 170, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.667983E-08, 0.8111392) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001717033, 0.001501177) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003595165)": { + "workflow_id": 171, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.58127E-08, 0.8111398) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001630314, 0.001352282) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003418096)": { + "workflow_id": 172, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.509563E-08, 0.8111402) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001558613, 0.001223379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003271669)": { + "workflow_id": 173, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.451029E-08, 0.8111407) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001500085, 0.001111624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003152128)": { + "workflow_id": 174, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.404092E-08, 0.811141) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001453148, 0.001014572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003056248)": { + "workflow_id": 175, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367392E-08, 0.8111413) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00141644, 0.0009301305) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002981256)": { + "workflow_id": 176, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.339735E-08, 0.8111416) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001388788, 0.0008565031) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000292476)": { + "workflow_id": 177, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.320126E-08, 0.8111418) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001369179, 0.0007921541) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002884693)": { + "workflow_id": 178, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.307687E-08, 0.8111421) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001356734, 0.0007357697) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002859265)": { + "workflow_id": 179, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.30164E-08, 0.8111423) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350693, 0.0006862283) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002846919)": { + "workflow_id": 180, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.301342E-08, 0.8111425) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350389, 0.000642572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00028463)": { + "workflow_id": 181, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.306193E-08, 0.8111427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001355246, 0.0006039842) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002856223)": { + "workflow_id": 182, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.3157E-08, 0.8111429) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001364753, 0.0005697685) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000287565)": { + "workflow_id": 183, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.329415E-08, 0.811143) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001378465, 0.0005393313) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002903669)": { + "workflow_id": 184, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.346938E-08, 0.8111432) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001395991, 0.0005121662) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002939476)": { + "workflow_id": 185, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367931E-08, 0.8111434) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001416981, 0.0004878413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002982362)": { + "workflow_id": 186, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.392084E-08, 0.8111435) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001441131, 0.0004659877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00030317)": { + "workflow_id": 187, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.419115E-08, 0.8111436) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001468168, 0.0004462903) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000308693)": { + "workflow_id": 188, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.448797E-08, 0.8111438) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001497847, 0.000428479) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003147557)": { + "workflow_id": 189, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.480899E-08, 0.8111439) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001529955, 0.0004123223) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003213138)": { + "workflow_id": 190, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.515247E-08, 0.811144) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001564297, 0.0003976213) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003283278)": { + "workflow_id": 191, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.551645E-08, 0.8111441) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001600701, 0.0003842046) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003357622)": { + "workflow_id": 192, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.589954E-08, 0.8111442) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001639009, 0.0003719244) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003435851)": { + "workflow_id": 193, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.630033E-08, 0.8111444) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001679083, 0.0003606528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003517679)": { + "workflow_id": 194, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.671746E-08, 0.8111445) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001720796, 0.0003502789) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003602849)": { + "workflow_id": 195, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.71499E-08, 0.8111446) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001764034, 0.0003407062) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003691125)": { + "workflow_id": 196, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.759643E-08, 0.8111447) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001808693, 0.0003318506) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003782297)": { + "workflow_id": 197, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.805629E-08, 0.8111448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001854679, 0.0003236387) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003876172)": { + "workflow_id": 198, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.852857E-08, 0.8111449) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001901907, 0.000316006) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003972576)": { + "workflow_id": 199, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.901248E-08, 0.8111451) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001950298, 0.0003088959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004071349)": { + "workflow_id": 200, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.950731E-08, 0.8111452) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001999781, 0.0003022585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004172344)": { + "workflow_id": 201, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.00124E-08, 0.8111453) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00205029, 0.0002960498) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000427543)": { + "workflow_id": 202, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.052722E-08, 0.8111454) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002101766, 0.0002902308) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004380484)": { + "workflow_id": 203, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.105105E-08, 0.8111455) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002154155, 0.0002847669) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004487394)": { + "workflow_id": 204, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.158354E-08, 0.8111457) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002207404, 0.0002796271) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004596055)": { + "workflow_id": 205, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212418E-08, 0.8111458) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002261468, 0.000274784) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004706375)": { + "workflow_id": 206, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.267253E-08, 0.8111459) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002316303, 0.0002702131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004818264)": { + "workflow_id": 207, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.322831E-08, 0.811146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002371869, 0.0002658922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004931641)": { + "workflow_id": 208, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.37908E-08, 0.8111461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00242813, 0.0002618015) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005046431)": { + "workflow_id": 209, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.43599E-08, 0.8111463) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002485052, 0.0002579232) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005162564)": { + "workflow_id": 210, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.493551E-08, 0.8111464) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002542601, 0.0002542413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005279974)": { + "workflow_id": 211, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.551699E-08, 0.8111465) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002600749, 0.0002507411) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005398603)": { + "workflow_id": 212, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.610406E-08, 0.8111466) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002659468, 0.0002474094) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005518393)": { + "workflow_id": 213, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.669681E-08, 0.8111467) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002718731, 0.0002442343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005639291)": { + "workflow_id": 214, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.729477E-08, 0.8111469) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002778516, 0.0002412049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005761249)": { + "workflow_id": 215, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.789739E-08, 0.811147) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0028388, 0.0002383113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005884222)": { + "workflow_id": 216, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.850522E-08, 0.8111471) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00289956, 0.0002355444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006008164)": { + "workflow_id": 217, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.911729E-08, 0.8111472) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002960779, 0.0002328959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006133038)": { + "workflow_id": 218, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.973374E-08, 0.8111473) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003022436, 0.0002303582) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006258803)": { + "workflow_id": 219, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.035464E-08, 0.8111475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003084514, 0.0002279245) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006385426)": { + "workflow_id": 220, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.097946E-08, 0.8111476) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003146996, 0.0002255881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000651287)": { + "workflow_id": 221, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.16084E-08, 0.8111477) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003209868, 0.0002233434) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006641107)": { + "workflow_id": 222, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.224065E-08, 0.8111478) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003273115, 0.0002211848) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006770107)": { + "workflow_id": 223, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.28765E-08, 0.811148) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003336722, 0.0002191074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006899839)": { + "workflow_id": 224, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.351627E-08, 0.8111482) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003400677, 0.0002171064) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007030278)": { + "workflow_id": 225, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.415894E-08, 0.8111483) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003464967, 0.0002151776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007161399)": { + "workflow_id": 226, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.48053E-08, 0.8111485) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00352958, 0.0002133171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007293177)": { + "workflow_id": 227, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.545456E-08, 0.8111487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003594506, 0.0002115211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007425591)": { + "workflow_id": 228, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.610684E-08, 0.8111489) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003659734, 0.0002097862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007558619)": { + "workflow_id": 229, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.676226E-08, 0.8111491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003725253, 0.0002081093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007692242)": { + "workflow_id": 230, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.741983E-08, 0.8111492) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003791056, 0.0002064873) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007826439)": { + "workflow_id": 231, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.808081E-08, 0.8111494) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003857131, 0.0002049174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007961191)": { + "workflow_id": 232, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.874399E-08, 0.8111496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003923472, 0.0002033971) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008096482)": { + "workflow_id": 233, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.941041E-08, 0.8111498) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003990068, 0.000201924) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008232295)": { + "workflow_id": 234, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.007862E-08, 0.81115) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004056912, 0.0002004957) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008368612)": { + "workflow_id": 235, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.074971E-08, 0.8111501) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004123999, 0.0001991102) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008505422)": { + "workflow_id": 236, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.142292E-08, 0.8111503) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004191319, 0.0001977655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008642707)": { + "workflow_id": 237, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.209819E-08, 0.8111505) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004258869, 0.0001964597) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008780457)": { + "workflow_id": 238, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.277588E-08, 0.8111507) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004326638, 0.000195191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008918655)": { + "workflow_id": 239, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.345571E-08, 0.8111508) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004394621, 0.0001939578) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009057288)": { + "workflow_id": 240, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.413718E-08, 0.811151) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004462813, 0.0001927586) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009196345)": { + "workflow_id": 241, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482203E-08, 0.8111512) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004531207, 0.0001915918) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009335818)": { + "workflow_id": 242, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.550752E-08, 0.8111514) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004599802, 0.0001904562) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009475693)": { + "workflow_id": 243, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.619537E-08, 0.8111516) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004668587, 0.0001893503) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009615958)": { + "workflow_id": 244, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.688509E-08, 0.8111517) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004737559, 0.000188273) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009756604)": { + "workflow_id": 245, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.757619E-08, 0.8111519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004806715, 0.0001872231) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009897621)": { + "workflow_id": 246, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.826996E-08, 0.8111521) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004876046, 0.0001861995) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0010039)": { + "workflow_id": 247, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.896458E-08, 0.8111523) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004945554, 0.0001852013) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001018073)": { + "workflow_id": 248, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.966179E-08, 0.8111525) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005015229, 0.0001842272) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001032281)": { + "workflow_id": 249, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.036019E-08, 0.8111526) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005085069, 0.0001832766) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001046522)": { + "workflow_id": 250, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.105976E-08, 0.8111528) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005155072, 0.0001823483) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001060796)": { + "workflow_id": 251, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.176225E-08, 0.811153) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005225229, 0.0001814417) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075102)": { + "workflow_id": 252, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.246446E-08, 0.8111532) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005295542, 0.0001805559) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001089439)": { + "workflow_id": 253, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.316955E-08, 0.8111534) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005366005, 0.0001796902) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001103807)": { + "workflow_id": 254, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.387609E-08, 0.8111535) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005436614, 0.0001788438) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001118205)": { + "workflow_id": 255, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.458318E-08, 0.8111537) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005507368, 0.0001780161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001132632)": { + "workflow_id": 256, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.529209E-08, 0.8111539) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005578259, 0.0001772063) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001147087)": { + "workflow_id": 257, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.60024E-08, 0.8111541) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00564929, 0.0001764139) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00116157)": { + "workflow_id": 258, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.671448E-08, 0.8111542) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005720453, 0.0001756383) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001176081)": { + "workflow_id": 259, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.742698E-08, 0.8111544) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005791748, 0.0001748788) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001190618)": { + "workflow_id": 260, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.814076E-08, 0.8111546) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005863171, 0.0001741351) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001205181)": { + "workflow_id": 261, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.885625E-08, 0.8111548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00593472, 0.0001734065) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00121977)": { + "workflow_id": 262, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.957342E-08, 0.8111551) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006006392, 0.0001726925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001234384)": { + "workflow_id": 263, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.029135E-08, 0.8111553) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006078185, 0.0001719927) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001249023)": { + "workflow_id": 264, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.101046E-08, 0.8111556) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006150096, 0.0001713067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001263685)": { + "workflow_id": 265, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.173074E-08, 0.8111558) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006222124, 0.0001706339) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001278372)": { + "workflow_id": 266, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.245215E-08, 0.811156) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006294266, 0.0001699741) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001293081)": { + "workflow_id": 267, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.317561E-08, 0.8111563) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00636652, 0.0001693267) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001307814)": { + "workflow_id": 268, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.389834E-08, 0.8111565) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006438884, 0.0001686915) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001322569)": { + "workflow_id": 269, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.462306E-08, 0.8111567) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006511356, 0.000168068) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001337345)": { + "workflow_id": 270, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.534971E-08, 0.811157) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00658393, 0.0001674558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001352143)": { + "workflow_id": 271, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.607561E-08, 0.8111572) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006656611, 0.0001668547) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001366962)": { + "workflow_id": 272, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.68043E-08, 0.8111575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00672939, 0.0001662643) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381801)": { + "workflow_id": 273, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.753218E-08, 0.8111577) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006802268, 0.0001656843) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001396661)": { + "workflow_id": 274, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.826195E-08, 0.8111579) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006875245, 0.0001651144) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00141154)": { + "workflow_id": 275, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.899268E-08, 0.8111582) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006948318, 0.0001645544) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001426439)": { + "workflow_id": 276, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.972437E-08, 0.8111584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007021488, 0.000164004) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001441358)": { + "workflow_id": 277, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.045605E-08, 0.8111587) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007094746, 0.0001634628) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001456295)": { + "workflow_id": 278, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.118957E-08, 0.8111589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007168098, 0.0001629307) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001471251)": { + "workflow_id": 279, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.192487E-08, 0.8111591) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007241537, 0.0001624074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001486225)": { + "workflow_id": 280, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.266016E-08, 0.8111594) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007315067, 0.0001618926) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001501217)": { + "workflow_id": 281, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.339725E-08, 0.8111596) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007388685, 0.0001613862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001516227)": { + "workflow_id": 282, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.413337E-08, 0.8111598) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007462387, 0.0001608879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001531254)": { + "workflow_id": 283, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.487125E-08, 0.8111601) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007536175, 0.0001603975) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001546299)": { + "workflow_id": 284, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.560991E-08, 0.8111603) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007610042, 0.0001599148) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001561359)": { + "workflow_id": 285, + "active": true, + "isImmutable": false + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.634941E-08, 0.8111606) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007683991, 0.0001594396) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001576437)": { + "workflow_id": 286, + "active": true, + "isImmutable": false + }, + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1660{t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.71507, 18.63876) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.3575, -24.0345) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2859854), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.41822, 11.76509) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 18.17429, -15.64585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1854527), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61984, 8.863367) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -16.15633, -15.4558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5734656), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.74145, 0.0001512584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -21.45141, 15.22121) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2155912), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.888747, 3.281431) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.38822, -27.80841) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1180014), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.984262, 0.0002780475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2305991, 27.80475) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1191256), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.94236, 3.31239) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.42652, -14.6) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2268761), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.005012, 0.0001435129) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 20.87433, 14.37513) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.590435), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 8.487865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -14.8994, 14.20093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.691238), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.977393, 18.30397) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.09713, -11.65444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3922241), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.28206, 13.7326) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4603704, -22.11528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6209553), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.67658, 0.0002202752) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.608852, 22.02752) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2200489), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.20507, 4.847275) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 22.02752, -7.767531) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3665375), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61982, 2.000106) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -18.31479, -7.718225) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2591408), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.54411, 7.497284E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -20.45319, 7.56881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.456389), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.187777, 3.454145) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.839626, -25.07086) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1377753), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.290042, 0.0002493555) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.159229, 24.9594) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.09993961), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.525736, 2.494487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.48746, -19.46407) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1281586), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.686502, 0.0001922491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.05069, 19.24876) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4696551), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.14276, 9.040274) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.946, -19.53067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4628757), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.025051, 0.0001932228) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.32156, 19.32228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1378767), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.819405, 2.664044) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.37134, -24.0291) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1108674), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.687296, 0.0002391654) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.249614, 23.91654) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1568838), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.704151, 3.752287) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.28331, -6.928161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5415995), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.87577, 6.724003E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.62621, 6.795529) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.226729), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 1.540878) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.30014, 6.750589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4426361), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.8865, 4.528736) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.750587, -19.6424) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2305592), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.18222, 0.0001952448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.472753, 19.57217) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.002434), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.7369, 19.6198) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.33831, -19.48888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7929868), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.419057, 4.16536) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -23.02034, -1.586958) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2246498), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.000250105, 3.808835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 24.99714, -1.572675) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1788682), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.314614, 3.527739) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.09929, 20.58879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7816031), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.211795, 19.61979) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.427216, -20.55026) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9547223), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.058162, 0.0002044376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.902648, 20.44376) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2043911), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.442544, 4.178548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.22719, -17.90403) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.233386), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.262522, 0.0001770008) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.84221, 17.74776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4721227), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.28793, 8.379155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -12.22817, -14.21008) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5896627), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.371777, 0.0001400589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -17.75392, 14.00589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1808783), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001780728, 2.53363) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.78795, 12.75767) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.339301), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.02542, 19.61987) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.623549, -12.68671) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5710809), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.06627, 12.37468) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.29918, -5.410871) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3758278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61992, 10.34107) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.537445, -5.357656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5498449), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.99255, 7.395328) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.80683, 13.73323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8901526), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.497512, 19.61986) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.42943, -13.59016) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104124), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.085816, 16.76016) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.285142, -16.85733) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.698581), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001051595, 4.983803) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.49216, -14.57131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3420286), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.014989, 0.0001446568) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.085127, 14.46568) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2505379), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482346, 3.624316) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.64452, -3.182668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.138767), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.79832, 3.069148E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.42739, 3.140674) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.261231), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.31868, 3.961057) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.140674, -8.945286) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4428095), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.74761, 8.878566E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.200725, 8.92625) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3679302), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.64192, 3.284277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.92625, -4.81012) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.682785), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.44996, 4.729227E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212746, 4.776911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9691768), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.98726, 4.629645) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.776911, -7.294877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6346434), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.04329, 7.224429E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.444419, 7.272113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5074097), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.04758, 3.689949) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.272113, -6.422107) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5745698), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.60665, 6.348934E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.629092, 6.396618) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7429182), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.10979, 4.752171) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.396617, -5.658934) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8397644), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.0224, 5.582916E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.83225, 5.630599) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6312054), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.91168, 3.55404) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.630599, -8.024374) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4429057), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.44332, 7.9564E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.282444, 8.004084) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5421413), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.697, 4.339384) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.004084, -4.035961) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.07518), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.63257, 3.904473E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.520668, 3.99984) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7227589), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.2485, 2.890863) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.99984, -9.610931) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3007891), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.00784, 9.546617E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.047284, 9.5943) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3548257), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.762, 3.404376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.594299, -2.433555) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.398931), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.58459, 2.345659E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.060983, 2.393343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.173249), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.068203, 2.807865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.631238, -14.47211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.194019), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.790921, 0.0001436155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.477002, 14.36155) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104654), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.190275E-05, 3.022877) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.196284, 12.33656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.345361), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.148965, 19.61988) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.971041, -12.26093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3268713), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.422212E-05, 15.61202) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.41034, -11.11049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.40516), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.727924, 0.0001111375) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.321439, 11.01838) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.106372), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.326775E-05, 1.172253) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.329431, 9.469191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.290414), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.318291E-05, 13.39154) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.31834, 10.94849) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5688878), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.575984, 19.61989) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.733199, -10.92106) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9225922), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.242024E-05, 9.544113) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.289756, -9.387285) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.016706), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.324602, 9.331409E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.662205, 9.331409) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2665415), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.402976E-05, 2.487381) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.397064, 8.023324) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.100329), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.64054E-05, 11.31575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.640589, 6.898616) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9461036), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.206955E-05, 17.84262) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.207005, 6.253925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2842029), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.799516, 19.61994) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.413935, -6.231718) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5728211), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.801053E-05, 16.05022) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.813024, -5.650228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7773848), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.303209E-05, 11.65777) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.279417, -4.859393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6685966), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.844296E-05, 8.408755) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.820503, -4.179256) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5750363), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.4377E-05, 6.005496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.425828, -3.594323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4945723), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086349E-05, 4.227811) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086398, -3.091268) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4253715), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.794431E-05, 2.912848) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.79448, -2.658629) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3658572), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543375E-05, 1.940146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543425, -2.28655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3146735), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.330442E-05, 1.220609) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.327511, -1.966554) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2706544), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.141771E-05, 0.688336) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.14182, -1.69135) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.232797), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.820731E-06, 0.2945802) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.9821221, -1.454668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2002388), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.44729E-06, 0.003286785) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8447781, -1.251116) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002627082), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002202011, 1.239552E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8114513, 1.239575) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1681041), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.204322E-06, 0.2084007) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.7204813, 1.066187) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1468971), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.197441E-06, 0.3650296) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.6197932, 0.9170609) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1263695), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.331456E-06, 0.480926) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.5331947, 0.7888028) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1087143), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582926E-06, 0.5666869) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4587142, 0.6784922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0935297), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.946068E-06, 0.6301519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3946559, 0.5836178) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.08046991), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.391399E-06, 0.6771206) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3395615, 0.5020194) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.06923762), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.921276E-06, 0.7118835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2921766, 0.4318393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0595771), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.513734E-06, 0.737615) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2514225, 0.3714797) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0512684), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.163221E-06, 0.7566634) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2163712, 0.3195664) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.04412237), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.862688E-06, 0.7707661) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1862247, 0.2749174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03797631), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.602478E-06, 0.7812089) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1602968, 0.2365163) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03269029), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.379015E-06, 0.7889427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1379971, 0.2034888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02814396), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.18792E-06, 0.7946714) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1188178, 0.175083) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02423381), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.022733E-06, 0.7989158) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1023224, 0.150652) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02087083), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.80862E-07, 0.8020613) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.08813525, 0.1296397) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01797844), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.589597E-07, 0.8043932) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.07593338, 0.1115677) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0154908), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.537832E-07, 0.8061224) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.06543901, 0.09602457) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01335127), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.63641E-07, 0.8074053) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.05641315, 0.08265641) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01151113), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.85955E-07, 0.8083575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04865037, 0.07115889) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.009928506), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.192195E-07, 0.8090646) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04197391, 0.06127021) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.008567349), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.617982E-07, 0.80959) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03623178, 0.05276527) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.007396676), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.124417E-07, 0.8099808) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03129322, 0.04545041) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.006389831), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.699823E-07, 0.8102716) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02704583, 0.03915911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.005523895), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.334384E-07, 0.8104883) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0233929, 0.03374812) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004779152), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.020291E-07, 0.8106499) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02025124, 0.02909426) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004138645), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.750029E-07, 0.8107705) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01754934, 0.02509158) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003587792), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.517663E-07, 0.8108608) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01522568, 0.02164893) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003114051), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.317795E-07, 0.8109283) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01322737, 0.01868795) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002706637), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.145984E-07, 0.8109791) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01150889, 0.01614122) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002356275), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.982086E-08, 0.8110173) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01003114, 0.01395076) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002054987), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.711405E-08, 0.8110461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.008760455, 0.0120667) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001795915), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.618684E-08, 0.8110679) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007667916, 0.01044615) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001573159), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.679592E-08, 0.8110844) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006728643, 0.009052214) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381649), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.872202E-08, 0.811097) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005921252, 0.007853162) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001217024), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.178306E-08, 0.8111066) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005227356, 0.006821695) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075536), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582106E-08, 0.811114) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004631156, 0.005934337) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009539629), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.070063E-08, 0.8111197) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004119067, 0.005170891) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008495366), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.630378E-08, 0.8111242) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003679428, 0.004513982) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007598784), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.253185E-08, 0.8111277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003302213, 0.003948665) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006829454), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.929792E-08, 0.8111305) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00297882, 0.003462082) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006169838), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.652802E-08, 0.8111327) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002701863, 0.003043171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000560488), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.415967E-08, 0.8111344) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002465006, 0.002682415) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005121666), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.213766E-08, 0.8111358) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002262817, 0.002371624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004709127), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.041587E-08, 0.8111369) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002090637, 0.002103754) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000435777), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.895421E-08, 0.8111378) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001944477, 0.001872743) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004059467), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.771862E-08, 0.8111386) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001820918, 0.001673379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003807253), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.667983E-08, 0.8111392) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001717033, 0.001501177) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003595165), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.58127E-08, 0.8111398) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001630314, 0.001352282) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003418096), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.509563E-08, 0.8111402) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001558613, 0.001223379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003271669), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.451029E-08, 0.8111407) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001500085, 0.001111624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003152128), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.404092E-08, 0.811141) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001453148, 0.001014572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003056248), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367392E-08, 0.8111413) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00141644, 0.0009301305) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002981256), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.339735E-08, 0.8111416) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001388788, 0.0008565031) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000292476), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.320126E-08, 0.8111418) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001369179, 0.0007921541) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002884693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.307687E-08, 0.8111421) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001356734, 0.0007357697) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002859265), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.30164E-08, 0.8111423) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350693, 0.0006862283) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002846919), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.301342E-08, 0.8111425) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350389, 0.000642572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00028463), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.306193E-08, 0.8111427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001355246, 0.0006039842) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002856223), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.3157E-08, 0.8111429) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001364753, 0.0005697685) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000287565), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.329415E-08, 0.811143) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001378465, 0.0005393313) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002903669), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.346938E-08, 0.8111432) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001395991, 0.0005121662) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002939476), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367931E-08, 0.8111434) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001416981, 0.0004878413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002982362), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.392084E-08, 0.8111435) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001441131, 0.0004659877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00030317), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.419115E-08, 0.8111436) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001468168, 0.0004462903) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000308693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.448797E-08, 0.8111438) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001497847, 0.000428479) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003147557), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.480899E-08, 0.8111439) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001529955, 0.0004123223) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003213138), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.515247E-08, 0.811144) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001564297, 0.0003976213) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003283278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.551645E-08, 0.8111441) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001600701, 0.0003842046) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003357622), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.589954E-08, 0.8111442) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001639009, 0.0003719244) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003435851), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.630033E-08, 0.8111444) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001679083, 0.0003606528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003517679), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.671746E-08, 0.8111445) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001720796, 0.0003502789) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003602849), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.71499E-08, 0.8111446) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001764034, 0.0003407062) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003691125), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.759643E-08, 0.8111447) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001808693, 0.0003318506) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003782297), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.805629E-08, 0.8111448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001854679, 0.0003236387) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003876172), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.852857E-08, 0.8111449) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001901907, 0.000316006) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003972576), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.901248E-08, 0.8111451) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001950298, 0.0003088959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004071349), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.950731E-08, 0.8111452) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001999781, 0.0003022585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004172344), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.00124E-08, 0.8111453) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00205029, 0.0002960498) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000427543), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.052722E-08, 0.8111454) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002101766, 0.0002902308) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004380484), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.105105E-08, 0.8111455) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002154155, 0.0002847669) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004487394), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.158354E-08, 0.8111457) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002207404, 0.0002796271) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004596055), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212418E-08, 0.8111458) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002261468, 0.000274784) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004706375), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.267253E-08, 0.8111459) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002316303, 0.0002702131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004818264), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.322831E-08, 0.811146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002371869, 0.0002658922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004931641), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.37908E-08, 0.8111461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00242813, 0.0002618015) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005046431), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.43599E-08, 0.8111463) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002485052, 0.0002579232) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005162564), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.493551E-08, 0.8111464) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002542601, 0.0002542413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005279974), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.551699E-08, 0.8111465) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002600749, 0.0002507411) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005398603), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.610406E-08, 0.8111466) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002659468, 0.0002474094) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005518393), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.669681E-08, 0.8111467) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002718731, 0.0002442343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005639291), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.729477E-08, 0.8111469) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002778516, 0.0002412049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005761249), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.789739E-08, 0.811147) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0028388, 0.0002383113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005884222), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.850522E-08, 0.8111471) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00289956, 0.0002355444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006008164), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.911729E-08, 0.8111472) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002960779, 0.0002328959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006133038), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.973374E-08, 0.8111473) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003022436, 0.0002303582) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006258803), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.035464E-08, 0.8111475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003084514, 0.0002279245) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006385426), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.097946E-08, 0.8111476) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003146996, 0.0002255881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000651287), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.16084E-08, 0.8111477) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003209868, 0.0002233434) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006641107), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.224065E-08, 0.8111478) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003273115, 0.0002211848) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006770107), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.28765E-08, 0.811148) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003336722, 0.0002191074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006899839), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.351627E-08, 0.8111482) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003400677, 0.0002171064) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007030278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.415894E-08, 0.8111483) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003464967, 0.0002151776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007161399), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.48053E-08, 0.8111485) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00352958, 0.0002133171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007293177), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.545456E-08, 0.8111487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003594506, 0.0002115211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007425591), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.610684E-08, 0.8111489) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003659734, 0.0002097862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007558619), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.676226E-08, 0.8111491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003725253, 0.0002081093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007692242), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.741983E-08, 0.8111492) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003791056, 0.0002064873) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007826439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.808081E-08, 0.8111494) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003857131, 0.0002049174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007961191), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.874399E-08, 0.8111496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003923472, 0.0002033971) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008096482), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.941041E-08, 0.8111498) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003990068, 0.000201924) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008232295), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.007862E-08, 0.81115) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004056912, 0.0002004957) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008368612), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.074971E-08, 0.8111501) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004123999, 0.0001991102) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008505422), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.142292E-08, 0.8111503) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004191319, 0.0001977655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008642707), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.209819E-08, 0.8111505) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004258869, 0.0001964597) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008780457), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.277588E-08, 0.8111507) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004326638, 0.000195191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008918655), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.345571E-08, 0.8111508) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004394621, 0.0001939578) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009057288), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.413718E-08, 0.811151) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004462813, 0.0001927586) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009196345), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482203E-08, 0.8111512) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004531207, 0.0001915918) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009335818), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.550752E-08, 0.8111514) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004599802, 0.0001904562) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009475693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.619537E-08, 0.8111516) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004668587, 0.0001893503) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009615958), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.688509E-08, 0.8111517) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004737559, 0.000188273) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009756604), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.757619E-08, 0.8111519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004806715, 0.0001872231) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009897621), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.826996E-08, 0.8111521) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004876046, 0.0001861995) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0010039), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.896458E-08, 0.8111523) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004945554, 0.0001852013) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001018073), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.966179E-08, 0.8111525) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005015229, 0.0001842272) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001032281), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.036019E-08, 0.8111526) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005085069, 0.0001832766) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001046522), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.105976E-08, 0.8111528) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005155072, 0.0001823483) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001060796), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.176225E-08, 0.811153) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005225229, 0.0001814417) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075102), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.246446E-08, 0.8111532) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005295542, 0.0001805559) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001089439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.316955E-08, 0.8111534) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005366005, 0.0001796902) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001103807), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.387609E-08, 0.8111535) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005436614, 0.0001788438) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001118205), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.458318E-08, 0.8111537) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005507368, 0.0001780161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001132632), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.529209E-08, 0.8111539) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005578259, 0.0001772063) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001147087), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.60024E-08, 0.8111541) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00564929, 0.0001764139) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00116157), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.671448E-08, 0.8111542) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005720453, 0.0001756383) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001176081), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.742698E-08, 0.8111544) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005791748, 0.0001748788) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001190618), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.814076E-08, 0.8111546) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005863171, 0.0001741351) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001205181), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.885625E-08, 0.8111548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00593472, 0.0001734065) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00121977), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.957342E-08, 0.8111551) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006006392, 0.0001726925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001234384), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.029135E-08, 0.8111553) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006078185, 0.0001719927) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001249023), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.101046E-08, 0.8111556) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006150096, 0.0001713067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001263685), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.173074E-08, 0.8111558) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006222124, 0.0001706339) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001278372), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.245215E-08, 0.811156) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006294266, 0.0001699741) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001293081), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.317561E-08, 0.8111563) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00636652, 0.0001693267) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001307814), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.389834E-08, 0.8111565) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006438884, 0.0001686915) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001322569), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.462306E-08, 0.8111567) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006511356, 0.000168068) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001337345), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.534971E-08, 0.811157) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00658393, 0.0001674558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001352143), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.607561E-08, 0.8111572) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006656611, 0.0001668547) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001366962), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.68043E-08, 0.8111575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00672939, 0.0001662643) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381801), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.753218E-08, 0.8111577) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006802268, 0.0001656843) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001396661), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.826195E-08, 0.8111579) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006875245, 0.0001651144) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00141154), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.899268E-08, 0.8111582) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006948318, 0.0001645544) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001426439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.972437E-08, 0.8111584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007021488, 0.000164004) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001441358), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.045605E-08, 0.8111587) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007094746, 0.0001634628) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001456295), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.118957E-08, 0.8111589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007168098, 0.0001629307) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001471251), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.192487E-08, 0.8111591) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007241537, 0.0001624074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001486225), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.266016E-08, 0.8111594) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007315067, 0.0001618926) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001501217), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.339725E-08, 0.8111596) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007388685, 0.0001613862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001516227), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.413337E-08, 0.8111598) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007462387, 0.0001608879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001531254), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.487125E-08, 0.8111601) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007536175, 0.0001603975) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001546299), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.560991E-08, 0.8111603) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007610042, 0.0001599148) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001561359), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.634941E-08, 0.8111606) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007683991, 0.0001594396) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001576437)}": { + "workflow_id": 287, + "active": true, + "isImmutable": false + } + }, + "Workflow": [ + { + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1624", + "samestep": false, + "steplink": 3, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1625", + "samestep": true, + "steplink": 0, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1626", + "samestep": true, + "steplink": 0, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1627", + "samestep": false, + "steplink": 6, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1628", + "samestep": true, + "steplink": 3, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1629", + "samestep": true, + "steplink": 3, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1630", + "samestep": false, + "steplink": 10, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1631", + "samestep": true, + "steplink": 6, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1632", + "samestep": true, + "steplink": 6, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1635", + "samestep": true, + "steplink": 6, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1636", + "samestep": false, + "steplink": 13, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1637", + "samestep": true, + "steplink": 10, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1638", + "samestep": true, + "steplink": 10, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1639", + "samestep": false, + "steplink": 16, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1640", + "samestep": true, + "steplink": 13, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1641", + "samestep": true, + "steplink": 13, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1642", + "samestep": false, + "steplink": 19, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1643", + "samestep": true, + "steplink": 16, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1644", + "samestep": true, + "steplink": 16, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1645", + "samestep": false, + "steplink": 22, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1646", + "samestep": true, + "steplink": 19, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1647", + "samestep": true, + "steplink": 19, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1648", + "samestep": false, + "steplink": 25, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1649", + "samestep": true, + "steplink": 22, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1650", + "samestep": true, + "steplink": 22, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1651", + "samestep": false, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1652", + "samestep": true, + "steplink": 25, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1653", + "samestep": true, + "steplink": 25, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1656", + "samestep": true, + "steplink": 25, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1659", + "samestep": true, + "steplink": 25, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1660", + "samestep": false, + "steplink": 288, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.71507, 18.63876) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.3575, -24.0345) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2859854)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.41822, 11.76509) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 18.17429, -15.64585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1854527)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61984, 8.863367) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -16.15633, -15.4558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5734656)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.74145, 0.0001512584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -21.45141, 15.22121) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2155912)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.888747, 3.281431) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.38822, -27.80841) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1180014)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.984262, 0.0002780475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2305991, 27.80475) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1191256)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.94236, 3.31239) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.42652, -14.6) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2268761)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.005012, 0.0001435129) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 20.87433, 14.37513) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.590435)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 8.487865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -14.8994, 14.20093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.691238)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.977393, 18.30397) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.09713, -11.65444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3922241)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.28206, 13.7326) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4603704, -22.11528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6209553)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.67658, 0.0002202752) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.608852, 22.02752) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2200489)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.20507, 4.847275) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 22.02752, -7.767531) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3665375)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61982, 2.000106) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -18.31479, -7.718225) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2591408)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.54411, 7.497284E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -20.45319, 7.56881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.456389)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.187777, 3.454145) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.839626, -25.07086) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1377753)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.290042, 0.0002493555) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.159229, 24.9594) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.09993961)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.525736, 2.494487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.48746, -19.46407) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1281586)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.686502, 0.0001922491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.05069, 19.24876) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4696551)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.14276, 9.040274) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.946, -19.53067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4628757)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.025051, 0.0001932228) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.32156, 19.32228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1378767)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.819405, 2.664044) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.37134, -24.0291) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1108674)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.687296, 0.0002391654) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.249614, 23.91654) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1568838)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.704151, 3.752287) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.28331, -6.928161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5415995)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.87577, 6.724003E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.62621, 6.795529) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.226729)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 1.540878) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.30014, 6.750589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4426361)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.8865, 4.528736) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.750587, -19.6424) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2305592)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.18222, 0.0001952448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.472753, 19.57217) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.002434)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.7369, 19.6198) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.33831, -19.48888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7929868)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.419057, 4.16536) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -23.02034, -1.586958) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2246498)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.000250105, 3.808835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 24.99714, -1.572675) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1788682)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.314614, 3.527739) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.09929, 20.58879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7816031)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.211795, 19.61979) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.427216, -20.55026) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9547223)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.058162, 0.0002044376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.902648, 20.44376) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2043911)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.442544, 4.178548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.22719, -17.90403) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.233386)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.262522, 0.0001770008) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.84221, 17.74776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4721227)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.28793, 8.379155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -12.22817, -14.21008) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5896627)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.371777, 0.0001400589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -17.75392, 14.00589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1808783)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001780728, 2.53363) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.78795, 12.75767) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.339301)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.02542, 19.61987) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.623549, -12.68671) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5710809)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.06627, 12.37468) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.29918, -5.410871) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3758278)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61992, 10.34107) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.537445, -5.357656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5498449)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.99255, 7.395328) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.80683, 13.73323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8901526)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.497512, 19.61986) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.42943, -13.59016) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104124)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.085816, 16.76016) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.285142, -16.85733) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.698581)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001051595, 4.983803) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.49216, -14.57131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3420286)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.014989, 0.0001446568) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.085127, 14.46568) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2505379)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482346, 3.624316) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.64452, -3.182668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.138767)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.79832, 3.069148E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.42739, 3.140674) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.261231)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.31868, 3.961057) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.140674, -8.945286) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4428095)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.74761, 8.878566E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.200725, 8.92625) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3679302)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.64192, 3.284277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.92625, -4.81012) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.682785)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.44996, 4.729227E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212746, 4.776911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9691768)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.98726, 4.629645) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.776911, -7.294877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6346434)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.04329, 7.224429E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.444419, 7.272113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5074097)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.04758, 3.689949) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.272113, -6.422107) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5745698)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.60665, 6.348934E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.629092, 6.396618) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7429182)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.10979, 4.752171) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.396617, -5.658934) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8397644)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.0224, 5.582916E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.83225, 5.630599) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6312054)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.91168, 3.55404) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.630599, -8.024374) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4429057)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.44332, 7.9564E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.282444, 8.004084) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5421413)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.697, 4.339384) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.004084, -4.035961) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.07518)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.63257, 3.904473E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.520668, 3.99984) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7227589)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.2485, 2.890863) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.99984, -9.610931) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3007891)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.00784, 9.546617E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.047284, 9.5943) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3548257)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.762, 3.404376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.594299, -2.433555) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.398931)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.58459, 2.345659E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.060983, 2.393343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.173249)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.068203, 2.807865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.631238, -14.47211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.194019)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.790921, 0.0001436155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.477002, 14.36155) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104654)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.190275E-05, 3.022877) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.196284, 12.33656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.345361)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.148965, 19.61988) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.971041, -12.26093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3268713)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.422212E-05, 15.61202) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.41034, -11.11049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.40516)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.727924, 0.0001111375) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.321439, 11.01838) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.106372)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.326775E-05, 1.172253) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.329431, 9.469191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.290414)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.318291E-05, 13.39154) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.31834, 10.94849) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5688878)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.575984, 19.61989) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.733199, -10.92106) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9225922)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.242024E-05, 9.544113) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.289756, -9.387285) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.016706)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.324602, 9.331409E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.662205, 9.331409) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2665415)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.402976E-05, 2.487381) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.397064, 8.023324) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.100329)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.64054E-05, 11.31575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.640589, 6.898616) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9461036)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.206955E-05, 17.84262) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.207005, 6.253925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2842029)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.799516, 19.61994) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.413935, -6.231718) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5728211)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.801053E-05, 16.05022) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.813024, -5.650228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7773848)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.303209E-05, 11.65777) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.279417, -4.859393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6685966)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.844296E-05, 8.408755) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.820503, -4.179256) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5750363)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.4377E-05, 6.005496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.425828, -3.594323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4945723)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086349E-05, 4.227811) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086398, -3.091268) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4253715)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.794431E-05, 2.912848) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.79448, -2.658629) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3658572)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543375E-05, 1.940146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543425, -2.28655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3146735)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.330442E-05, 1.220609) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.327511, -1.966554) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2706544)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.141771E-05, 0.688336) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.14182, -1.69135) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.232797)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.820731E-06, 0.2945802) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.9821221, -1.454668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2002388)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.44729E-06, 0.003286785) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8447781, -1.251116) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002627082)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002202011, 1.239552E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8114513, 1.239575) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1681041)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.204322E-06, 0.2084007) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.7204813, 1.066187) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1468971)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.197441E-06, 0.3650296) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.6197932, 0.9170609) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1263695)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.331456E-06, 0.480926) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.5331947, 0.7888028) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1087143)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582926E-06, 0.5666869) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4587142, 0.6784922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0935297)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.946068E-06, 0.6301519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3946559, 0.5836178) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.08046991)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.391399E-06, 0.6771206) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3395615, 0.5020194) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.06923762)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.921276E-06, 0.7118835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2921766, 0.4318393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0595771)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.513734E-06, 0.737615) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2514225, 0.3714797) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0512684)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.163221E-06, 0.7566634) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2163712, 0.3195664) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.04412237)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.862688E-06, 0.7707661) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1862247, 0.2749174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03797631)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.602478E-06, 0.7812089) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1602968, 0.2365163) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03269029)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.379015E-06, 0.7889427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1379971, 0.2034888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02814396)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.18792E-06, 0.7946714) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1188178, 0.175083) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02423381)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.022733E-06, 0.7989158) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1023224, 0.150652) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02087083)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.80862E-07, 0.8020613) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.08813525, 0.1296397) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01797844)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.589597E-07, 0.8043932) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.07593338, 0.1115677) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0154908)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.537832E-07, 0.8061224) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.06543901, 0.09602457) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01335127)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.63641E-07, 0.8074053) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.05641315, 0.08265641) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01151113)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.85955E-07, 0.8083575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04865037, 0.07115889) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.009928506)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.192195E-07, 0.8090646) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04197391, 0.06127021) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.008567349)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.617982E-07, 0.80959) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03623178, 0.05276527) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.007396676)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.124417E-07, 0.8099808) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03129322, 0.04545041) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.006389831)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.699823E-07, 0.8102716) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02704583, 0.03915911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.005523895)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.334384E-07, 0.8104883) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0233929, 0.03374812) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004779152)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.020291E-07, 0.8106499) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02025124, 0.02909426) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004138645)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.750029E-07, 0.8107705) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01754934, 0.02509158) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003587792)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.517663E-07, 0.8108608) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01522568, 0.02164893) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003114051)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.317795E-07, 0.8109283) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01322737, 0.01868795) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002706637)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.145984E-07, 0.8109791) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01150889, 0.01614122) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002356275)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.982086E-08, 0.8110173) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01003114, 0.01395076) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002054987)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.711405E-08, 0.8110461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.008760455, 0.0120667) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001795915)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.618684E-08, 0.8110679) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007667916, 0.01044615) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001573159)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.679592E-08, 0.8110844) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006728643, 0.009052214) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381649)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.872202E-08, 0.811097) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005921252, 0.007853162) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001217024)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.178306E-08, 0.8111066) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005227356, 0.006821695) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075536)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582106E-08, 0.811114) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004631156, 0.005934337) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009539629)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.070063E-08, 0.8111197) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004119067, 0.005170891) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008495366)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.630378E-08, 0.8111242) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003679428, 0.004513982) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007598784)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.253185E-08, 0.8111277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003302213, 0.003948665) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006829454)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.929792E-08, 0.8111305) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00297882, 0.003462082) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006169838)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.652802E-08, 0.8111327) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002701863, 0.003043171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000560488)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.415967E-08, 0.8111344) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002465006, 0.002682415) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005121666)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.213766E-08, 0.8111358) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002262817, 0.002371624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004709127)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.041587E-08, 0.8111369) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002090637, 0.002103754) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000435777)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.895421E-08, 0.8111378) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001944477, 0.001872743) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004059467)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.771862E-08, 0.8111386) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001820918, 0.001673379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003807253)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.667983E-08, 0.8111392) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001717033, 0.001501177) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003595165)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.58127E-08, 0.8111398) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001630314, 0.001352282) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003418096)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.509563E-08, 0.8111402) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001558613, 0.001223379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003271669)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.451029E-08, 0.8111407) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001500085, 0.001111624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003152128)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.404092E-08, 0.811141) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001453148, 0.001014572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003056248)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367392E-08, 0.8111413) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00141644, 0.0009301305) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002981256)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.339735E-08, 0.8111416) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001388788, 0.0008565031) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000292476)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.320126E-08, 0.8111418) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001369179, 0.0007921541) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002884693)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.307687E-08, 0.8111421) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001356734, 0.0007357697) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002859265)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.30164E-08, 0.8111423) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350693, 0.0006862283) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002846919)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.301342E-08, 0.8111425) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350389, 0.000642572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00028463)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.306193E-08, 0.8111427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001355246, 0.0006039842) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002856223)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.3157E-08, 0.8111429) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001364753, 0.0005697685) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000287565)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.329415E-08, 0.811143) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001378465, 0.0005393313) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002903669)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.346938E-08, 0.8111432) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001395991, 0.0005121662) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002939476)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367931E-08, 0.8111434) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001416981, 0.0004878413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002982362)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.392084E-08, 0.8111435) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001441131, 0.0004659877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00030317)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.419115E-08, 0.8111436) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001468168, 0.0004462903) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000308693)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.448797E-08, 0.8111438) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001497847, 0.000428479) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003147557)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.480899E-08, 0.8111439) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001529955, 0.0004123223) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003213138)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.515247E-08, 0.811144) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001564297, 0.0003976213) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003283278)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.551645E-08, 0.8111441) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001600701, 0.0003842046) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003357622)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.589954E-08, 0.8111442) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001639009, 0.0003719244) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003435851)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.630033E-08, 0.8111444) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001679083, 0.0003606528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003517679)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.671746E-08, 0.8111445) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001720796, 0.0003502789) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003602849)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.71499E-08, 0.8111446) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001764034, 0.0003407062) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003691125)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.759643E-08, 0.8111447) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001808693, 0.0003318506) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003782297)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.805629E-08, 0.8111448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001854679, 0.0003236387) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003876172)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.852857E-08, 0.8111449) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001901907, 0.000316006) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003972576)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.901248E-08, 0.8111451) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001950298, 0.0003088959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004071349)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.950731E-08, 0.8111452) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001999781, 0.0003022585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004172344)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.00124E-08, 0.8111453) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00205029, 0.0002960498) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000427543)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.052722E-08, 0.8111454) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002101766, 0.0002902308) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004380484)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.105105E-08, 0.8111455) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002154155, 0.0002847669) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004487394)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.158354E-08, 0.8111457) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002207404, 0.0002796271) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004596055)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212418E-08, 0.8111458) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002261468, 0.000274784) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004706375)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.267253E-08, 0.8111459) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002316303, 0.0002702131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004818264)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.322831E-08, 0.811146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002371869, 0.0002658922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004931641)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.37908E-08, 0.8111461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00242813, 0.0002618015) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005046431)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.43599E-08, 0.8111463) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002485052, 0.0002579232) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005162564)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.493551E-08, 0.8111464) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002542601, 0.0002542413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005279974)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.551699E-08, 0.8111465) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002600749, 0.0002507411) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005398603)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.610406E-08, 0.8111466) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002659468, 0.0002474094) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005518393)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.669681E-08, 0.8111467) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002718731, 0.0002442343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005639291)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.729477E-08, 0.8111469) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002778516, 0.0002412049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005761249)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.789739E-08, 0.811147) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0028388, 0.0002383113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005884222)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.850522E-08, 0.8111471) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00289956, 0.0002355444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006008164)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.911729E-08, 0.8111472) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002960779, 0.0002328959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006133038)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.973374E-08, 0.8111473) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003022436, 0.0002303582) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006258803)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.035464E-08, 0.8111475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003084514, 0.0002279245) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006385426)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.097946E-08, 0.8111476) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003146996, 0.0002255881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000651287)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.16084E-08, 0.8111477) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003209868, 0.0002233434) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006641107)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.224065E-08, 0.8111478) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003273115, 0.0002211848) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006770107)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.28765E-08, 0.811148) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003336722, 0.0002191074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006899839)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.351627E-08, 0.8111482) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003400677, 0.0002171064) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007030278)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.415894E-08, 0.8111483) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003464967, 0.0002151776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007161399)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.48053E-08, 0.8111485) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00352958, 0.0002133171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007293177)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.545456E-08, 0.8111487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003594506, 0.0002115211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007425591)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.610684E-08, 0.8111489) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003659734, 0.0002097862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007558619)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.676226E-08, 0.8111491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003725253, 0.0002081093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007692242)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.741983E-08, 0.8111492) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003791056, 0.0002064873) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007826439)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.808081E-08, 0.8111494) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003857131, 0.0002049174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007961191)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.874399E-08, 0.8111496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003923472, 0.0002033971) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008096482)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.941041E-08, 0.8111498) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003990068, 0.000201924) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008232295)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.007862E-08, 0.81115) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004056912, 0.0002004957) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008368612)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.074971E-08, 0.8111501) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004123999, 0.0001991102) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008505422)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.142292E-08, 0.8111503) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004191319, 0.0001977655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008642707)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.209819E-08, 0.8111505) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004258869, 0.0001964597) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008780457)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.277588E-08, 0.8111507) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004326638, 0.000195191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008918655)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.345571E-08, 0.8111508) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004394621, 0.0001939578) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009057288)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.413718E-08, 0.811151) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004462813, 0.0001927586) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009196345)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482203E-08, 0.8111512) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004531207, 0.0001915918) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009335818)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.550752E-08, 0.8111514) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004599802, 0.0001904562) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009475693)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.619537E-08, 0.8111516) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004668587, 0.0001893503) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009615958)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.688509E-08, 0.8111517) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004737559, 0.000188273) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009756604)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.757619E-08, 0.8111519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004806715, 0.0001872231) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009897621)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.826996E-08, 0.8111521) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004876046, 0.0001861995) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0010039)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.896458E-08, 0.8111523) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004945554, 0.0001852013) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001018073)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.966179E-08, 0.8111525) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005015229, 0.0001842272) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001032281)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.036019E-08, 0.8111526) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005085069, 0.0001832766) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001046522)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.105976E-08, 0.8111528) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005155072, 0.0001823483) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001060796)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.176225E-08, 0.811153) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005225229, 0.0001814417) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075102)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.246446E-08, 0.8111532) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005295542, 0.0001805559) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001089439)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.316955E-08, 0.8111534) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005366005, 0.0001796902) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001103807)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.387609E-08, 0.8111535) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005436614, 0.0001788438) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001118205)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.458318E-08, 0.8111537) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005507368, 0.0001780161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001132632)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.529209E-08, 0.8111539) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005578259, 0.0001772063) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001147087)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.60024E-08, 0.8111541) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00564929, 0.0001764139) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00116157)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.671448E-08, 0.8111542) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005720453, 0.0001756383) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001176081)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.742698E-08, 0.8111544) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005791748, 0.0001748788) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001190618)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.814076E-08, 0.8111546) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005863171, 0.0001741351) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001205181)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.885625E-08, 0.8111548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00593472, 0.0001734065) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00121977)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.957342E-08, 0.8111551) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006006392, 0.0001726925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001234384)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.029135E-08, 0.8111553) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006078185, 0.0001719927) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001249023)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.101046E-08, 0.8111556) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006150096, 0.0001713067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001263685)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.173074E-08, 0.8111558) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006222124, 0.0001706339) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001278372)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.245215E-08, 0.811156) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006294266, 0.0001699741) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001293081)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.317561E-08, 0.8111563) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00636652, 0.0001693267) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001307814)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.389834E-08, 0.8111565) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006438884, 0.0001686915) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001322569)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.462306E-08, 0.8111567) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006511356, 0.000168068) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001337345)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.534971E-08, 0.811157) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00658393, 0.0001674558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001352143)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.607561E-08, 0.8111572) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006656611, 0.0001668547) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001366962)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.68043E-08, 0.8111575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00672939, 0.0001662643) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381801)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.753218E-08, 0.8111577) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006802268, 0.0001656843) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001396661)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.826195E-08, 0.8111579) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006875245, 0.0001651144) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00141154)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.899268E-08, 0.8111582) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006948318, 0.0001645544) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001426439)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.972437E-08, 0.8111584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007021488, 0.000164004) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001441358)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.045605E-08, 0.8111587) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007094746, 0.0001634628) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001456295)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.118957E-08, 0.8111589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007168098, 0.0001629307) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001471251)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.192487E-08, 0.8111591) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007241537, 0.0001624074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001486225)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.266016E-08, 0.8111594) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007315067, 0.0001618926) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001501217)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.339725E-08, 0.8111596) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007388685, 0.0001613862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001516227)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.413337E-08, 0.8111598) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007462387, 0.0001608879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001531254)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.487125E-08, 0.8111601) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007536175, 0.0001603975) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001546299)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.560991E-08, 0.8111603) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007610042, 0.0001599148) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001561359)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.634941E-08, 0.8111606) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007683991, 0.0001594396) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001576437)", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1660{t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.71507, 18.63876) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.3575, -24.0345) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2859854), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.41822, 11.76509) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 18.17429, -15.64585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1854527), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61984, 8.863367) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -16.15633, -15.4558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5734656), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.74145, 0.0001512584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -21.45141, 15.22121) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2155912), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.888747, 3.281431) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.38822, -27.80841) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1180014), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.984262, 0.0002780475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2305991, 27.80475) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1191256), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.94236, 3.31239) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.42652, -14.6) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2268761), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.005012, 0.0001435129) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 20.87433, 14.37513) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.590435), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 8.487865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -14.8994, 14.20093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.691238), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.977393, 18.30397) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.09713, -11.65444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3922241), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.28206, 13.7326) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4603704, -22.11528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6209553), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.67658, 0.0002202752) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.608852, 22.02752) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2200489), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.20507, 4.847275) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 22.02752, -7.767531) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3665375), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61982, 2.000106) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -18.31479, -7.718225) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2591408), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.54411, 7.497284E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -20.45319, 7.56881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.456389), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.187777, 3.454145) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.839626, -25.07086) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1377753), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.290042, 0.0002493555) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.159229, 24.9594) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.09993961), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.525736, 2.494487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.48746, -19.46407) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1281586), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.686502, 0.0001922491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.05069, 19.24876) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4696551), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.14276, 9.040274) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.946, -19.53067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4628757), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.025051, 0.0001932228) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.32156, 19.32228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1378767), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.819405, 2.664044) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.37134, -24.0291) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1108674), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.687296, 0.0002391654) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.249614, 23.91654) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1568838), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.704151, 3.752287) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.28331, -6.928161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5415995), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.87577, 6.724003E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.62621, 6.795529) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.226729), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 1.540878) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.30014, 6.750589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4426361), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.8865, 4.528736) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.750587, -19.6424) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2305592), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.18222, 0.0001952448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.472753, 19.57217) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.002434), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.7369, 19.6198) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.33831, -19.48888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7929868), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.419057, 4.16536) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -23.02034, -1.586958) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2246498), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.000250105, 3.808835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 24.99714, -1.572675) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1788682), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.314614, 3.527739) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.09929, 20.58879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7816031), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.211795, 19.61979) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.427216, -20.55026) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9547223), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.058162, 0.0002044376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.902648, 20.44376) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2043911), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.442544, 4.178548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.22719, -17.90403) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.233386), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.262522, 0.0001770008) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.84221, 17.74776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4721227), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.28793, 8.379155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -12.22817, -14.21008) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5896627), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.371777, 0.0001400589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -17.75392, 14.00589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1808783), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001780728, 2.53363) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.78795, 12.75767) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.339301), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.02542, 19.61987) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.623549, -12.68671) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5710809), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.06627, 12.37468) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.29918, -5.410871) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3758278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61992, 10.34107) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.537445, -5.357656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5498449), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.99255, 7.395328) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.80683, 13.73323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8901526), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.497512, 19.61986) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.42943, -13.59016) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104124), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.085816, 16.76016) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.285142, -16.85733) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.698581), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001051595, 4.983803) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.49216, -14.57131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3420286), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.014989, 0.0001446568) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.085127, 14.46568) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2505379), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482346, 3.624316) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.64452, -3.182668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.138767), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.79832, 3.069148E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.42739, 3.140674) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.261231), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.31868, 3.961057) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.140674, -8.945286) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4428095), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.74761, 8.878566E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.200725, 8.92625) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3679302), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.64192, 3.284277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.92625, -4.81012) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.682785), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.44996, 4.729227E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212746, 4.776911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9691768), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.98726, 4.629645) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.776911, -7.294877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6346434), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.04329, 7.224429E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.444419, 7.272113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5074097), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.04758, 3.689949) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.272113, -6.422107) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5745698), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.60665, 6.348934E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.629092, 6.396618) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7429182), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.10979, 4.752171) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.396617, -5.658934) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8397644), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.0224, 5.582916E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.83225, 5.630599) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6312054), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.91168, 3.55404) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.630599, -8.024374) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4429057), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.44332, 7.9564E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.282444, 8.004084) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5421413), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.697, 4.339384) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.004084, -4.035961) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.07518), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.63257, 3.904473E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.520668, 3.99984) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7227589), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.2485, 2.890863) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.99984, -9.610931) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3007891), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.00784, 9.546617E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.047284, 9.5943) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3548257), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.762, 3.404376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.594299, -2.433555) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.398931), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.58459, 2.345659E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.060983, 2.393343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.173249), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.068203, 2.807865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.631238, -14.47211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.194019), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.790921, 0.0001436155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.477002, 14.36155) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104654), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.190275E-05, 3.022877) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.196284, 12.33656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.345361), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.148965, 19.61988) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.971041, -12.26093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3268713), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.422212E-05, 15.61202) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.41034, -11.11049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.40516), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.727924, 0.0001111375) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.321439, 11.01838) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.106372), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.326775E-05, 1.172253) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.329431, 9.469191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.290414), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.318291E-05, 13.39154) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.31834, 10.94849) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5688878), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.575984, 19.61989) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.733199, -10.92106) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9225922), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.242024E-05, 9.544113) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.289756, -9.387285) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.016706), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.324602, 9.331409E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.662205, 9.331409) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2665415), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.402976E-05, 2.487381) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.397064, 8.023324) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.100329), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.64054E-05, 11.31575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.640589, 6.898616) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9461036), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.206955E-05, 17.84262) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.207005, 6.253925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2842029), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.799516, 19.61994) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.413935, -6.231718) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5728211), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.801053E-05, 16.05022) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.813024, -5.650228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7773848), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.303209E-05, 11.65777) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.279417, -4.859393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6685966), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.844296E-05, 8.408755) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.820503, -4.179256) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5750363), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.4377E-05, 6.005496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.425828, -3.594323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4945723), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086349E-05, 4.227811) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086398, -3.091268) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4253715), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.794431E-05, 2.912848) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.79448, -2.658629) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3658572), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543375E-05, 1.940146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543425, -2.28655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3146735), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.330442E-05, 1.220609) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.327511, -1.966554) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2706544), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.141771E-05, 0.688336) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.14182, -1.69135) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.232797), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.820731E-06, 0.2945802) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.9821221, -1.454668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2002388), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.44729E-06, 0.003286785) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8447781, -1.251116) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002627082), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002202011, 1.239552E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8114513, 1.239575) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1681041), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.204322E-06, 0.2084007) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.7204813, 1.066187) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1468971), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.197441E-06, 0.3650296) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.6197932, 0.9170609) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1263695), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.331456E-06, 0.480926) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.5331947, 0.7888028) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1087143), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582926E-06, 0.5666869) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4587142, 0.6784922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0935297), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.946068E-06, 0.6301519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3946559, 0.5836178) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.08046991), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.391399E-06, 0.6771206) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3395615, 0.5020194) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.06923762), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.921276E-06, 0.7118835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2921766, 0.4318393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0595771), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.513734E-06, 0.737615) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2514225, 0.3714797) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0512684), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.163221E-06, 0.7566634) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2163712, 0.3195664) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.04412237), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.862688E-06, 0.7707661) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1862247, 0.2749174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03797631), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.602478E-06, 0.7812089) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1602968, 0.2365163) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03269029), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.379015E-06, 0.7889427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1379971, 0.2034888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02814396), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.18792E-06, 0.7946714) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1188178, 0.175083) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02423381), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.022733E-06, 0.7989158) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1023224, 0.150652) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02087083), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.80862E-07, 0.8020613) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.08813525, 0.1296397) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01797844), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.589597E-07, 0.8043932) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.07593338, 0.1115677) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0154908), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.537832E-07, 0.8061224) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.06543901, 0.09602457) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01335127), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.63641E-07, 0.8074053) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.05641315, 0.08265641) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01151113), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.85955E-07, 0.8083575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04865037, 0.07115889) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.009928506), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.192195E-07, 0.8090646) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04197391, 0.06127021) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.008567349), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.617982E-07, 0.80959) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03623178, 0.05276527) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.007396676), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.124417E-07, 0.8099808) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03129322, 0.04545041) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.006389831), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.699823E-07, 0.8102716) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02704583, 0.03915911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.005523895), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.334384E-07, 0.8104883) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0233929, 0.03374812) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004779152), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.020291E-07, 0.8106499) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02025124, 0.02909426) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004138645), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.750029E-07, 0.8107705) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01754934, 0.02509158) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003587792), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.517663E-07, 0.8108608) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01522568, 0.02164893) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003114051), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.317795E-07, 0.8109283) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01322737, 0.01868795) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002706637), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.145984E-07, 0.8109791) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01150889, 0.01614122) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002356275), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.982086E-08, 0.8110173) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01003114, 0.01395076) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002054987), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.711405E-08, 0.8110461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.008760455, 0.0120667) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001795915), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.618684E-08, 0.8110679) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007667916, 0.01044615) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001573159), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.679592E-08, 0.8110844) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006728643, 0.009052214) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381649), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.872202E-08, 0.811097) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005921252, 0.007853162) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001217024), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.178306E-08, 0.8111066) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005227356, 0.006821695) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075536), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582106E-08, 0.811114) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004631156, 0.005934337) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009539629), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.070063E-08, 0.8111197) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004119067, 0.005170891) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008495366), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.630378E-08, 0.8111242) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003679428, 0.004513982) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007598784), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.253185E-08, 0.8111277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003302213, 0.003948665) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006829454), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.929792E-08, 0.8111305) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00297882, 0.003462082) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006169838), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.652802E-08, 0.8111327) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002701863, 0.003043171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000560488), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.415967E-08, 0.8111344) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002465006, 0.002682415) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005121666), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.213766E-08, 0.8111358) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002262817, 0.002371624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004709127), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.041587E-08, 0.8111369) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002090637, 0.002103754) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000435777), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.895421E-08, 0.8111378) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001944477, 0.001872743) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004059467), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.771862E-08, 0.8111386) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001820918, 0.001673379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003807253), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.667983E-08, 0.8111392) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001717033, 0.001501177) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003595165), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.58127E-08, 0.8111398) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001630314, 0.001352282) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003418096), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.509563E-08, 0.8111402) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001558613, 0.001223379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003271669), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.451029E-08, 0.8111407) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001500085, 0.001111624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003152128), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.404092E-08, 0.811141) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001453148, 0.001014572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003056248), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367392E-08, 0.8111413) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00141644, 0.0009301305) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002981256), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.339735E-08, 0.8111416) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001388788, 0.0008565031) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000292476), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.320126E-08, 0.8111418) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001369179, 0.0007921541) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002884693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.307687E-08, 0.8111421) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001356734, 0.0007357697) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002859265), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.30164E-08, 0.8111423) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350693, 0.0006862283) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002846919), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.301342E-08, 0.8111425) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350389, 0.000642572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00028463), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.306193E-08, 0.8111427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001355246, 0.0006039842) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002856223), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.3157E-08, 0.8111429) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001364753, 0.0005697685) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000287565), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.329415E-08, 0.811143) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001378465, 0.0005393313) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002903669), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.346938E-08, 0.8111432) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001395991, 0.0005121662) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002939476), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367931E-08, 0.8111434) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001416981, 0.0004878413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002982362), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.392084E-08, 0.8111435) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001441131, 0.0004659877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00030317), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.419115E-08, 0.8111436) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001468168, 0.0004462903) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000308693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.448797E-08, 0.8111438) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001497847, 0.000428479) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003147557), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.480899E-08, 0.8111439) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001529955, 0.0004123223) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003213138), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.515247E-08, 0.811144) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001564297, 0.0003976213) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003283278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.551645E-08, 0.8111441) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001600701, 0.0003842046) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003357622), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.589954E-08, 0.8111442) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001639009, 0.0003719244) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003435851), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.630033E-08, 0.8111444) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001679083, 0.0003606528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003517679), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.671746E-08, 0.8111445) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001720796, 0.0003502789) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003602849), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.71499E-08, 0.8111446) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001764034, 0.0003407062) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003691125), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.759643E-08, 0.8111447) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001808693, 0.0003318506) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003782297), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.805629E-08, 0.8111448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001854679, 0.0003236387) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003876172), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.852857E-08, 0.8111449) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001901907, 0.000316006) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003972576), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.901248E-08, 0.8111451) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001950298, 0.0003088959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004071349), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.950731E-08, 0.8111452) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001999781, 0.0003022585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004172344), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.00124E-08, 0.8111453) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00205029, 0.0002960498) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000427543), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.052722E-08, 0.8111454) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002101766, 0.0002902308) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004380484), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.105105E-08, 0.8111455) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002154155, 0.0002847669) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004487394), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.158354E-08, 0.8111457) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002207404, 0.0002796271) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004596055), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212418E-08, 0.8111458) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002261468, 0.000274784) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004706375), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.267253E-08, 0.8111459) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002316303, 0.0002702131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004818264), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.322831E-08, 0.811146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002371869, 0.0002658922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004931641), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.37908E-08, 0.8111461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00242813, 0.0002618015) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005046431), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.43599E-08, 0.8111463) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002485052, 0.0002579232) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005162564), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.493551E-08, 0.8111464) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002542601, 0.0002542413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005279974), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.551699E-08, 0.8111465) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002600749, 0.0002507411) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005398603), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.610406E-08, 0.8111466) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002659468, 0.0002474094) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005518393), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.669681E-08, 0.8111467) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002718731, 0.0002442343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005639291), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.729477E-08, 0.8111469) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002778516, 0.0002412049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005761249), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.789739E-08, 0.811147) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0028388, 0.0002383113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005884222), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.850522E-08, 0.8111471) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00289956, 0.0002355444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006008164), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.911729E-08, 0.8111472) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002960779, 0.0002328959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006133038), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.973374E-08, 0.8111473) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003022436, 0.0002303582) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006258803), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.035464E-08, 0.8111475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003084514, 0.0002279245) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006385426), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.097946E-08, 0.8111476) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003146996, 0.0002255881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000651287), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.16084E-08, 0.8111477) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003209868, 0.0002233434) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006641107), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.224065E-08, 0.8111478) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003273115, 0.0002211848) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006770107), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.28765E-08, 0.811148) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003336722, 0.0002191074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006899839), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.351627E-08, 0.8111482) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003400677, 0.0002171064) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007030278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.415894E-08, 0.8111483) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003464967, 0.0002151776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007161399), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.48053E-08, 0.8111485) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00352958, 0.0002133171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007293177), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.545456E-08, 0.8111487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003594506, 0.0002115211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007425591), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.610684E-08, 0.8111489) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003659734, 0.0002097862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007558619), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.676226E-08, 0.8111491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003725253, 0.0002081093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007692242), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.741983E-08, 0.8111492) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003791056, 0.0002064873) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007826439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.808081E-08, 0.8111494) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003857131, 0.0002049174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007961191), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.874399E-08, 0.8111496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003923472, 0.0002033971) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008096482), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.941041E-08, 0.8111498) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003990068, 0.000201924) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008232295), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.007862E-08, 0.81115) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004056912, 0.0002004957) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008368612), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.074971E-08, 0.8111501) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004123999, 0.0001991102) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008505422), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.142292E-08, 0.8111503) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004191319, 0.0001977655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008642707), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.209819E-08, 0.8111505) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004258869, 0.0001964597) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008780457), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.277588E-08, 0.8111507) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004326638, 0.000195191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008918655), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.345571E-08, 0.8111508) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004394621, 0.0001939578) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009057288), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.413718E-08, 0.811151) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004462813, 0.0001927586) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009196345), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482203E-08, 0.8111512) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004531207, 0.0001915918) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009335818), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.550752E-08, 0.8111514) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004599802, 0.0001904562) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009475693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.619537E-08, 0.8111516) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004668587, 0.0001893503) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009615958), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.688509E-08, 0.8111517) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004737559, 0.000188273) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009756604), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.757619E-08, 0.8111519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004806715, 0.0001872231) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009897621), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.826996E-08, 0.8111521) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004876046, 0.0001861995) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0010039), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.896458E-08, 0.8111523) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004945554, 0.0001852013) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001018073), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.966179E-08, 0.8111525) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005015229, 0.0001842272) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001032281), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.036019E-08, 0.8111526) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005085069, 0.0001832766) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001046522), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.105976E-08, 0.8111528) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005155072, 0.0001823483) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001060796), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.176225E-08, 0.811153) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005225229, 0.0001814417) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075102), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.246446E-08, 0.8111532) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005295542, 0.0001805559) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001089439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.316955E-08, 0.8111534) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005366005, 0.0001796902) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001103807), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.387609E-08, 0.8111535) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005436614, 0.0001788438) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001118205), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.458318E-08, 0.8111537) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005507368, 0.0001780161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001132632), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.529209E-08, 0.8111539) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005578259, 0.0001772063) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001147087), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.60024E-08, 0.8111541) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00564929, 0.0001764139) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00116157), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.671448E-08, 0.8111542) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005720453, 0.0001756383) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001176081), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.742698E-08, 0.8111544) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005791748, 0.0001748788) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001190618), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.814076E-08, 0.8111546) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005863171, 0.0001741351) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001205181), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.885625E-08, 0.8111548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00593472, 0.0001734065) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00121977), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.957342E-08, 0.8111551) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006006392, 0.0001726925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001234384), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.029135E-08, 0.8111553) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006078185, 0.0001719927) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001249023), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.101046E-08, 0.8111556) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006150096, 0.0001713067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001263685), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.173074E-08, 0.8111558) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006222124, 0.0001706339) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001278372), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.245215E-08, 0.811156) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006294266, 0.0001699741) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001293081), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.317561E-08, 0.8111563) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00636652, 0.0001693267) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001307814), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.389834E-08, 0.8111565) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006438884, 0.0001686915) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001322569), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.462306E-08, 0.8111567) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006511356, 0.000168068) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001337345), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.534971E-08, 0.811157) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00658393, 0.0001674558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001352143), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.607561E-08, 0.8111572) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006656611, 0.0001668547) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001366962), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.68043E-08, 0.8111575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00672939, 0.0001662643) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381801), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.753218E-08, 0.8111577) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006802268, 0.0001656843) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001396661), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.826195E-08, 0.8111579) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006875245, 0.0001651144) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00141154), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.899268E-08, 0.8111582) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006948318, 0.0001645544) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001426439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.972437E-08, 0.8111584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007021488, 0.000164004) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001441358), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.045605E-08, 0.8111587) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007094746, 0.0001634628) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001456295), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.118957E-08, 0.8111589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007168098, 0.0001629307) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001471251), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.192487E-08, 0.8111591) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007241537, 0.0001624074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001486225), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.266016E-08, 0.8111594) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007315067, 0.0001618926) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001501217), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.339725E-08, 0.8111596) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007388685, 0.0001613862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001516227), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.413337E-08, 0.8111598) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007462387, 0.0001608879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001531254), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.487125E-08, 0.8111601) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007536175, 0.0001603975) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001546299), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.560991E-08, 0.8111603) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007610042, 0.0001599148) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001561359), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.634941E-08, 0.8111606) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007683991, 0.0001594396) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001576437)}", + "samestep": true, + "steplink": 30, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + } + ], + "marker": 288, + "worksteps": 10, + "backlog": 0, + "soft_resetted": false, + "invoke": true, + "MaxLabelId": 282, + "UnusedLabelIds": [], + "JsonFactSpace": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1624": { + "Point": { + "x": 0.0, + "y": 0.0, + "z": 12.2625, + "normalized": { + "x": 0.0, + "y": 0.0, + "z": 1.0, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "magnitude": 12.2625, + "sqrMagnitude": 150.3689 + }, + "Normal": { + "x": 0.0, + "y": 1.0, + "z": 0.0, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "s_type": "PointFact", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1624", + "Label": "A", + "hasCustomLabel": false, + "LabelId": 1 + }, + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1625": { + "Point": { + "x": 0.0, + "y": 0.0, + "z": 14.715, + "normalized": { + "x": 0.0, + "y": 0.0, + "z": 1.0, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "magnitude": 14.715, + "sqrMagnitude": 216.531235 + }, + "Normal": { + "x": 0.0, + "y": 1.0, + "z": 0.0, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "s_type": "PointFact", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1625", + "Label": "B", + "hasCustomLabel": false, + "LabelId": 2 + }, + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1626": { + "s_type": "LineFact", + "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1624", + "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1625", + "Dir": { + "x": 0.0, + "y": 0.0, + "z": -1.0, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1626", + "Label": "[AB]", + "hasCustomLabel": false, + "LabelId": 0 + }, + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1627": { + "Point": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "magnitude": 0.0, + "sqrMagnitude": 0.0 + }, + "Normal": { + "x": 0.0, + "y": 1.0, + "z": 0.0, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "s_type": "PointFact", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1627", + "Label": "C", + "hasCustomLabel": false, + "LabelId": 3 + }, + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1628": { + "Point": { + "x": 0.0, + "y": 19.6199989, + "z": -8.576174E-07, + "normalized": { + "x": 0.0, + "y": 1.0, + "z": -4.371139E-08, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "magnitude": 19.6199989, + "sqrMagnitude": 384.944366 + }, + "Normal": { + "x": 0.0, + "y": 1.0, + "z": 0.0, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "s_type": "PointFact", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1628", + "Label": "D", + "hasCustomLabel": false, + "LabelId": 4 + }, + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1629": { + "s_type": "LineFact", + "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1627", + "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1628", + "Dir": { + "x": 0.0, + "y": -1.0, + "z": 4.371139E-08, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1629", + "Label": "[CD]", + "hasCustomLabel": false, + "LabelId": 0 + }, + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1630": { + "Point": { + "x": 0.0, + "y": 0.0, + "z": 19.6199989, + "normalized": { + "x": 0.0, + "y": 0.0, + "z": 1.0, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "magnitude": 19.6199989, + "sqrMagnitude": 384.944366 + }, + "Normal": { + "x": 0.0, + "y": 1.0, + "z": 0.0, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "s_type": "PointFact", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1630", + "Label": "E", + "hasCustomLabel": false, + "LabelId": 5 + }, + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1631": { + "Point": { + "x": 0.0, + "y": 19.6199989, + "z": 19.6199989, + "normalized": { + "x": 0.0, + "y": 0.707106769, + "z": 0.707106769, + "magnitude": 1.0, + "sqrMagnitude": 0.99999994 + }, + "magnitude": 27.7468681, + "sqrMagnitude": 769.888733 + }, + "Normal": { + "x": 0.0, + "y": 1.0, + "z": 0.0, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "s_type": "PointFact", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1631", + "Label": "F", + "hasCustomLabel": false, + "LabelId": 6 + }, + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1632": { + "s_type": "LineFact", + "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1630", + "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1631", + "Dir": { + "x": 0.0, + "y": -1.0, + "z": 0.0, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1632", + "Label": "[EF]", + "hasCustomLabel": false, + "LabelId": 0 + }, + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1635": { + "s_type": "LineFact", + "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1628", + "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1631", + "Dir": { + "x": 0.0, + "y": 0.0, + "z": -1.0, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1635", + "Label": "[DF]", + "hasCustomLabel": false, + "LabelId": 0 + }, + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1636": { + "Point": { + "x": 0.0, + "y": 9.809999, + "z": 2.45249987, + "normalized": { + "x": 0.0, + "y": 0.970142543, + "z": 0.242535636, + "magnitude": 1.0, + "sqrMagnitude": 1.00000012 + }, + "magnitude": 10.1119156, + "sqrMagnitude": 102.250847 + }, + "Normal": { + "x": 0.0, + "y": 1.0, + "z": 0.0, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "s_type": "PointFact", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1636", + "Label": "I", + "hasCustomLabel": false, + "LabelId": 9 + }, + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1637": { + "Point": { + "x": 0.0, + "y": 13.2783585, + "z": 5.920859, + "normalized": { + "x": 0.0, + "y": 0.913316548, + "z": 0.407250524, + "magnitude": 1.0, + "sqrMagnitude": 1.00000012 + }, + "magnitude": 14.5386162, + "sqrMagnitude": 211.371368 + }, + "Normal": { + "x": 0.0, + "y": 1.0, + "z": 0.0, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "s_type": "PointFact", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1637", + "Label": "J", + "hasCustomLabel": false, + "LabelId": 10 + }, + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1638": { + "s_type": "LineFact", + "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1636", + "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1637", + "Dir": { + "x": 0.0, + "y": -0.707106769, + "z": -0.707106769, + "magnitude": 1.0, + "sqrMagnitude": 0.99999994 + }, + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1638", + "Label": "[IJ]", + "hasCustomLabel": false, + "LabelId": 0 + }, + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1639": { + "Point": { + "x": 0.0, + "y": 4.90499973, + "z": 7.3575, + "normalized": { + "x": 0.0, + "y": 0.5547002, + "z": 0.8320503, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "magnitude": 8.842614, + "sqrMagnitude": 78.19183 + }, + "Normal": { + "x": 0.0, + "y": 1.0, + "z": 0.0, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "s_type": "PointFact", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1639", + "Label": "K", + "hasCustomLabel": false, + "LabelId": 11 + }, + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1640": { + "Point": { + "x": 0.0, + "y": 4.90499973, + "z": 9.809999, + "normalized": { + "x": 0.0, + "y": 0.4472136, + "z": 0.8944272, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "magnitude": 10.9679127, + "sqrMagnitude": 120.295113 + }, + "Normal": { + "x": 0.0, + "y": 1.0, + "z": 0.0, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "s_type": "PointFact", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1640", + "Label": "L", + "hasCustomLabel": false, + "LabelId": 12 + }, + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1641": { + "s_type": "LineFact", + "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1639", + "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1640", + "Dir": { + "x": 0.0, + "y": 0.0, + "z": -1.0, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1641", + "Label": "[KL]", + "hasCustomLabel": false, + "LabelId": 0 + }, + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1642": { + "Point": { + "x": 0.0, + "y": 9.809999, + "z": 9.809999, + "normalized": { + "x": 0.0, + "y": 0.707106769, + "z": 0.707106769, + "magnitude": 1.0, + "sqrMagnitude": 0.99999994 + }, + "magnitude": 13.8734341, + "sqrMagnitude": 192.472183 + }, + "Normal": { + "x": 0.0, + "y": 1.0, + "z": 0.0, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "s_type": "PointFact", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1642", + "Label": "M", + "hasCustomLabel": false, + "LabelId": 13 + }, + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1643": { + "Point": { + "x": 0.0, + "y": 14.0578547, + "z": 7.3574996, + "normalized": { + "x": 0.0, + "y": 0.8859905, + "z": 0.4637034, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "magnitude": 15.8668232, + "sqrMagnitude": 251.756073 + }, + "Normal": { + "x": 0.0, + "y": 1.0, + "z": 0.0, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "s_type": "PointFact", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1643", + "Label": "N", + "hasCustomLabel": false, + "LabelId": 14 + }, + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1644": { + "s_type": "LineFact", + "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1642", + "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1643", + "Dir": { + "x": 0.0, + "y": -0.8660255, + "z": 0.49999994, + "normalized": { + "x": 0.0, + "y": -0.8660254, + "z": 0.499999881, + "normalized": { + "x": 0.0, + "y": -0.866025448, + "z": 0.4999999, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "magnitude": 0.99999994, + "sqrMagnitude": 0.9999999 + }, + "magnitude": 1.00000012, + "sqrMagnitude": 1.00000012 + }, + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1644", + "Label": "[MN]", + "hasCustomLabel": false, + "LabelId": 0 + }, + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1645": { + "Point": { + "x": 0.0, + "y": 14.715, + "z": 14.715, + "normalized": { + "x": 0.0, + "y": 0.7071068, + "z": 0.7071068, + "normalized": { + "x": 0.0, + "y": 0.707106769, + "z": 0.707106769, + "magnitude": 1.0, + "sqrMagnitude": 0.99999994 + }, + "magnitude": 1.00000012, + "sqrMagnitude": 1.00000012 + }, + "magnitude": 20.8101521, + "sqrMagnitude": 433.062469 + }, + "Normal": { + "x": 0.0, + "y": 1.0, + "z": 0.0, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "s_type": "PointFact", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1645", + "Label": "O", + "hasCustomLabel": false, + "LabelId": 15 + }, + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1646": { + "Point": { + "x": 0.0, + "y": 16.677, + "z": 11.3167162, + "normalized": { + "x": 0.0, + "y": 0.8274716, + "z": 0.5615076, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "magnitude": 20.1541653, + "sqrMagnitude": 406.1904 + }, + "Normal": { + "x": 0.0, + "y": 1.0, + "z": 0.0, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "s_type": "PointFact", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1646", + "Label": "P", + "hasCustomLabel": false, + "LabelId": 16 + }, + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1647": { + "s_type": "LineFact", + "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1645", + "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1646", + "Dir": { + "x": 0.0, + "y": -0.49999994, + "z": 0.8660254, + "normalized": { + "x": 0.0, + "y": -0.49999997, + "z": 0.866025448, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "magnitude": 0.99999994, + "sqrMagnitude": 0.99999994 + }, + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1647", + "Label": "[OP]", + "hasCustomLabel": false, + "LabelId": 0 + }, + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1648": { + "Point": { + "x": 0.0, + "y": 4.90499973, + "z": 14.715, + "normalized": { + "x": 0.0, + "y": 0.316227734, + "z": 0.9486833, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "magnitude": 15.510972, + "sqrMagnitude": 240.590256 + }, + "Normal": { + "x": 0.0, + "y": 1.0, + "z": 0.0, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "s_type": "PointFact", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1648", + "Label": "Q", + "hasCustomLabel": false, + "LabelId": 17 + }, + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1649": { + "Point": { + "x": 0.0, + "y": 7.3575, + "z": 18.9628544, + "normalized": { + "x": 0.0, + "y": 0.3617226, + "z": 0.9322858, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "magnitude": 20.3401737, + "sqrMagnitude": 413.722656 + }, + "Normal": { + "x": 0.0, + "y": 1.0, + "z": 0.0, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "s_type": "PointFact", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1649", + "Label": "R", + "hasCustomLabel": false, + "LabelId": 18 + }, + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1650": { + "s_type": "LineFact", + "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1648", + "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1649", + "Dir": { + "x": 0.0, + "y": -0.5000001, + "z": -0.8660254, + "magnitude": 1.0, + "sqrMagnitude": 1.00000012 + }, + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1650", + "Label": "[QR]", + "hasCustomLabel": false, + "LabelId": 0 + }, + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1651": { + "Point": { + "x": 0.0, + "y": 2.45249987, + "z": 2.45249987, + "normalized": { + "x": 0.0, + "y": 0.707106769, + "z": 0.707106769, + "magnitude": 1.0, + "sqrMagnitude": 0.99999994 + }, + "magnitude": 3.46835852, + "sqrMagnitude": 12.0295115 + }, + "Normal": { + "x": 0.0, + "y": 1.0, + "z": 0.0, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "s_type": "PointFact", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1651", + "Label": "S", + "hasCustomLabel": false, + "LabelId": 19 + }, + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1652": { + "Point": { + "x": 0.0, + "y": 6.70035458, + "z": 4.90499973, + "normalized": { + "x": 0.0, + "y": 0.806898236, + "z": 0.5906905, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "magnitude": 8.303841, + "sqrMagnitude": 68.95377 + }, + "Normal": { + "x": 0.0, + "y": 1.0, + "z": 0.0, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "s_type": "PointFact", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1652", + "Label": "T", + "hasCustomLabel": false, + "LabelId": 20 + }, + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1653": { + "s_type": "LineFact", + "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1651", + "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1652", + "Dir": { + "x": 0.0, + "y": -0.8660254, + "z": -0.49999994, + "normalized": { + "x": 0.0, + "y": -0.866025448, + "z": -0.49999997, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "magnitude": 0.99999994, + "sqrMagnitude": 0.99999994 + }, + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1653", + "Label": "[ST]", + "hasCustomLabel": false, + "LabelId": 0 + }, + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1656": { + "s_type": "LineFact", + "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1625", + "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1630", + "Dir": { + "x": 0.0, + "y": 0.0, + "z": -1.0, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1656", + "Label": "[BE]", + "hasCustomLabel": false, + "LabelId": 0 + }, + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1659": { + "s_type": "LineFact", + "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1627", + "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1624", + "Dir": { + "x": 0.0, + "y": 0.0, + "z": -1.0, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1659", + "Label": "[CA]", + "hasCustomLabel": false, + "LabelId": 0 + }, + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1660": { + "Point": { + "x": 0.0, + "y": 14.715, + "z": 18.639, + "normalized": { + "x": 0.0, + "y": 0.6196443, + "z": 0.7848828, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "magnitude": 23.7474957, + "sqrMagnitude": 563.943542 + }, + "Normal": { + "x": 0.0, + "y": 1.0, + "z": 0.0, + "magnitude": 1.0, + "sqrMagnitude": 1.0 + }, + "s_type": "PointFact", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1660", + "Label": "Y", + "hasCustomLabel": false, + "LabelId": 25 + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.71507, 18.63876) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.3575, -24.0345) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2859854)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 14.7150736 + }, + { + "kind": "OMF", + "float": 18.63876 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 7.3575 + }, + { + "kind": "OMF", + "float": -24.0345 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.2859854 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.71507, 18.63876) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.3575, -24.0345) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2859854)", + "Label": "Z", + "hasCustomLabel": false, + "LabelId": 26 + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.41822, 11.76509) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 18.17429, -15.64585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1854527)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 16.4182243 + }, + { + "kind": "OMF", + "float": 11.7650871 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 18.1742916 + }, + { + "kind": "OMF", + "float": -15.645853 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.185452655 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.41822, 11.76509) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 18.17429, -15.64585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1854527)", + "Label": "[", + "hasCustomLabel": false, + "LabelId": 27 + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61984, 8.863367) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -16.15633, -15.4558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5734656)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 19.6198368 + }, + { + "kind": "OMF", + "float": 8.863367 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -16.156332 + }, + { + "kind": "OMF", + "float": -15.4557972 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.5734656 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61984, 8.863367) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -16.15633, -15.4558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5734656)", + "Label": "\\", + "hasCustomLabel": false, + "LabelId": 28 + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.74145, 0.0001512584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -21.45141, 15.22121) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2155912)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 8.74145 + }, + { + "kind": "OMF", + "float": 0.000151258384 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -21.4514122 + }, + { + "kind": "OMF", + "float": 15.2212067 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.215591177 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.74145, 0.0001512584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -21.45141, 15.22121) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2155912)", + "Label": "]", + "hasCustomLabel": false, + "LabelId": 29 + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.888747, 3.281431) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.38822, -27.80841) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1180014)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 3.8887465 + }, + { + "kind": "OMF", + "float": 3.281431 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.38822043 + }, + { + "kind": "OMF", + "float": -27.8084145 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.118001372 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.888747, 3.281431) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.38822, -27.80841) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1180014)", + "Label": "^", + "hasCustomLabel": false, + "LabelId": 30 + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.984262, 0.0002780475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2305991, 27.80475) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1191256)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 3.984262 + }, + { + "kind": "OMF", + "float": 0.000278047461 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.230599061 + }, + { + "kind": "OMF", + "float": 27.8047466 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.11912562 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.984262, 0.0002780475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2305991, 27.80475) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1191256)", + "Label": "_", + "hasCustomLabel": false, + "LabelId": 31 + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.94236, 3.31239) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.42652, -14.6) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2268761)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 3.94236016 + }, + { + "kind": "OMF", + "float": 3.31238985 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 23.42652 + }, + { + "kind": "OMF", + "float": -14.5999994 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.22687605 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.94236, 3.31239) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.42652, -14.6) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2268761)", + "Label": "`", + "hasCustomLabel": false, + "LabelId": 32 + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.005012, 0.0001435129) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 20.87433, 14.37513) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.590435)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 9.005012 + }, + { + "kind": "OMF", + "float": 0.00014351288 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 20.8743324 + }, + { + "kind": "OMF", + "float": 14.37513 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.590435 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.005012, 0.0001435129) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 20.87433, 14.37513) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.590435)", + "Label": "a", + "hasCustomLabel": false, + "LabelId": 33 + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 8.487865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -14.8994, 14.20093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.691238)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 19.61985 + }, + { + "kind": "OMF", + "float": 8.487865 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -14.8993988 + }, + { + "kind": "OMF", + "float": 14.2009315 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.691238 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 8.487865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -14.8994, 14.20093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.691238)", + "Label": "b", + "hasCustomLabel": false, + "LabelId": 34 + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.977393, 18.30397) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.09713, -11.65444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3922241)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 6.977393 + }, + { + "kind": "OMF", + "float": 18.3039722 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 23.0971317 + }, + { + "kind": "OMF", + "float": -11.6544352 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.3922241 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.977393, 18.30397) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.09713, -11.65444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3922241)", + "Label": "c", + "hasCustomLabel": false, + "LabelId": 35 + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.28206, 13.7326) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4603704, -22.11528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6209553)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 15.2820644 + }, + { + "kind": "OMF", + "float": 13.7326012 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.460370362 + }, + { + "kind": "OMF", + "float": -22.1152821 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.6209553 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.28206, 13.7326) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4603704, -22.11528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6209553)", + "Label": "d", + "hasCustomLabel": false, + "LabelId": 36 + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.67658, 0.0002202752) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.608852, 22.02752) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2200489)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 13.6765814 + }, + { + "kind": "OMF", + "float": 0.000220275222 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -5.60885239 + }, + { + "kind": "OMF", + "float": 22.027523 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.2200489 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.67658, 0.0002202752) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.608852, 22.02752) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2200489)", + "Label": "e", + "hasCustomLabel": false, + "LabelId": 37 + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.20507, 4.847275) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 22.02752, -7.767531) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3665375)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 12.2050724 + }, + { + "kind": "OMF", + "float": 4.847275 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 22.0275211 + }, + { + "kind": "OMF", + "float": -7.767531 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.366537482 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.20507, 4.847275) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 22.02752, -7.767531) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3665375)", + "Label": "f", + "hasCustomLabel": false, + "LabelId": 38 + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61982, 2.000106) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -18.31479, -7.718225) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2591408)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 19.6198158 + }, + { + "kind": "OMF", + "float": 2.00010633 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -18.31479 + }, + { + "kind": "OMF", + "float": -7.71822548 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.2591408 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61982, 2.000106) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -18.31479, -7.718225) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2591408)", + "Label": "g", + "hasCustomLabel": false, + "LabelId": 39 + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.54411, 7.497284E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -20.45319, 7.56881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.456389)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 14.5441122 + }, + { + "kind": "OMF", + "float": 7.49728351E-05 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -20.45319 + }, + { + "kind": "OMF", + "float": 7.56880951 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.45638898 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.54411, 7.497284E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -20.45319, 7.56881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.456389)", + "Label": "h", + "hasCustomLabel": false, + "LabelId": 40 + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.187777, 3.454145) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.839626, -25.07086) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1377753)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 4.187777 + }, + { + "kind": "OMF", + "float": 3.45414519 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -5.83962631 + }, + { + "kind": "OMF", + "float": -25.0708561 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.137775332 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.187777, 3.454145) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.839626, -25.07086) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1377753)", + "Label": "i", + "hasCustomLabel": false, + "LabelId": 41 + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.290042, 0.0002493555) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.159229, 24.9594) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.09993961)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 3.29004216 + }, + { + "kind": "OMF", + "float": 0.000249355537 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -7.15922928 + }, + { + "kind": "OMF", + "float": 24.9593964 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.09993961 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.290042, 0.0002493555) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.159229, 24.9594) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.09993961)", + "Label": "j", + "hasCustomLabel": false, + "LabelId": 42 + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.525736, 2.494487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.48746, -19.46407) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1281586)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 2.52573562 + }, + { + "kind": "OMF", + "float": 2.494487 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 17.4874649 + }, + { + "kind": "OMF", + "float": -19.46407 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.128158569 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.525736, 2.494487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.48746, -19.46407) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1281586)", + "Label": "k", + "hasCustomLabel": false, + "LabelId": 43 + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.686502, 0.0001922491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.05069, 19.24876) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4696551)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 4.686502 + }, + { + "kind": "OMF", + "float": 0.000192249136 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 16.0506916 + }, + { + "kind": "OMF", + "float": 19.2487564 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.4696551 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.686502, 0.0001922491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.05069, 19.24876) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4696551)", + "Label": "l", + "hasCustomLabel": false, + "LabelId": 44 + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.14276, 9.040274) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.946, -19.53067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4628757)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 11.1427565 + }, + { + "kind": "OMF", + "float": 9.040274 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -10.946 + }, + { + "kind": "OMF", + "float": -19.5306721 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.462875724 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.14276, 9.040274) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.946, -19.53067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4628757)", + "Label": "m", + "hasCustomLabel": false, + "LabelId": 45 + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.025051, 0.0001932228) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.32156, 19.32228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1378767)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 5.02505064 + }, + { + "kind": "OMF", + "float": 0.000193222761 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -15.3215618 + }, + { + "kind": "OMF", + "float": 19.3222771 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.13787666 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.025051, 0.0001932228) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.32156, 19.32228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1378767)", + "Label": "n", + "hasCustomLabel": false, + "LabelId": 46 + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.819405, 2.664044) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.37134, -24.0291) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1108674)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 2.81940484 + }, + { + "kind": "OMF", + "float": 2.664044 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 8.37134 + }, + { + "kind": "OMF", + "float": -24.0291 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.1108674 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.819405, 2.664044) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.37134, -24.0291) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1108674)", + "Label": "o", + "hasCustomLabel": false, + "LabelId": 47 + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.687296, 0.0002391654) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.249614, 23.91654) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1568838)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 3.687296 + }, + { + "kind": "OMF", + "float": 0.000239165427 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 7.249614 + }, + { + "kind": "OMF", + "float": 23.916544 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.156883776 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.687296, 0.0002391654) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.249614, 23.91654) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1568838)", + "Label": "p", + "hasCustomLabel": false, + "LabelId": 48 + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.704151, 3.752287) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.28331, -6.928161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5415995)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 4.704151 + }, + { + "kind": "OMF", + "float": 3.75228739 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 23.2833118 + }, + { + "kind": "OMF", + "float": -6.92816067 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.541599452 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.704151, 3.752287) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.28331, -6.928161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5415995)", + "Label": "q", + "hasCustomLabel": false, + "LabelId": 49 + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.87577, 6.724003E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.62621, 6.795529) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.226729)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 15.8757734 + }, + { + "kind": "OMF", + "float": 6.72400347E-05 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 17.62621 + }, + { + "kind": "OMF", + "float": 6.79552937 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.226728961 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.87577, 6.724003E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.62621, 6.795529) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.226729)", + "Label": "r", + "hasCustomLabel": false, + "LabelId": 50 + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 1.540878) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.30014, 6.750589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4426361)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 }, { "kind": "OMF", - "float": 19.6199989 + "float": 19.6198483 }, { "kind": "OMF", - "float": 8.85685349 + "float": 1.540878 } ] }, @@ -1203,11 +9097,11 @@ }, { "kind": "OMF", - "float": -15.5604935 + "float": -15.3001423 }, { "kind": "OMF", - "float": -14.9585819 + "float": 6.75058937 } ] }, @@ -1285,15 +9179,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.5920918 + "Item1": -1E-05, + "Item2": 0.4426361 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.62, 8.856853) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.56049, -14.95858) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.5920918)", - "Label": "V", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 1.540878) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.30014, 6.750589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4426361)", + "Label": "s", "hasCustomLabel": false, - "LabelId": 22 + "LabelId": 51 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.6872, 0) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -20.71589, 14.50145) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2233716)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.8865, 4.528736) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.750587, -19.6424) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2305592)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -1315,11 +9209,11 @@ }, { "kind": "OMF", - "float": 8.6872 + "float": 11.8865 }, { "kind": "OMF", - "float": 0.0 + "float": 4.528736 } ] }, @@ -1350,11 +9244,11 @@ }, { "kind": "OMF", - "float": -20.7158852 + "float": 6.75058746 }, { "kind": "OMF", - "float": 14.5014544 + "float": -19.6424 } ] }, @@ -1432,15 +9326,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.22337155 + "Item1": -1E-05, + "Item2": 0.23055923 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.6872, 0) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -20.71589, 14.50145) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2233716)", - "Label": "W", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.8865, 4.528736) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.750587, -19.6424) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2305592)", + "Label": "t", "hasCustomLabel": false, - "LabelId": 23 + "LabelId": 52 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.815126, 3.239212) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.088061, -26.67258) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1214435)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.18222, 0.0001952448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.472753, 19.57217) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.002434)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -1462,11 +9356,11 @@ }, { "kind": "OMF", - "float": 3.815126 + "float": 13.1822176 }, { "kind": "OMF", - "float": 3.23921227 + "float": 0.000195244822 } ] }, @@ -1497,11 +9391,11 @@ }, { "kind": "OMF", - "float": 1.08806109 + "float": 4.472753 }, { "kind": "OMF", - "float": -26.67258 + "float": 19.5721664 } ] }, @@ -1579,15 +9473,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.121443532 + "Item1": -1E-05, + "Item2": 1.0024339 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.815126, 3.239212) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.088061, -26.67258) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1214435)", - "Label": "X", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.18222, 0.0001952448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.472753, 19.57217) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.002434)", + "Label": "u", "hasCustomLabel": false, - "LabelId": 24 + "LabelId": 53 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.874923, -2.384186E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -0.1032848, 26.66929) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1209298)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.7369, 19.6198) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.33831, -19.48888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7929868)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -1609,11 +9503,11 @@ }, { "kind": "OMF", - "float": 3.87492251 + "float": 12.7368984 }, { "kind": "OMF", - "float": -2.38418579E-07 + "float": 19.6198025 } ] }, @@ -1644,11 +9538,11 @@ }, { "kind": "OMF", - "float": -0.103284776 + "float": -5.33831024 }, { "kind": "OMF", - "float": 26.66929 + "float": -19.488884 } ] }, @@ -1726,15 +9620,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.12092977 + "Item1": -1E-05, + "Item2": 0.792986751 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.874923, -2.384186E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -0.1032848, 26.66929) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1209298)", - "Label": "Y", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.7369, 19.6198) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.33831, -19.48888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7929868)", + "Label": "v", "hasCustomLabel": false, - "LabelId": 25 + "LabelId": 54 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.790701, 3.225111) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 22.11182, -14.23284) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2265964)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.419057, 4.16536) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -23.02034, -1.586958) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2246498)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -1756,11 +9650,11 @@ }, { "kind": "OMF", - "float": 3.79070139 + "float": 5.41905737 }, { "kind": "OMF", - "float": 3.225111 + "float": 4.16536 } ] }, @@ -1791,11 +9685,11 @@ }, { "kind": "OMF", - "float": 22.1118164 + "float": -23.0203381 }, { "kind": "OMF", - "float": -14.2328424 + "float": -1.58695757 } ] }, @@ -1873,15 +9767,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.22659643 + "Item1": -1E-05, + "Item2": 0.224649787 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.790701, 3.225111) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 22.11182, -14.23284) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2265964)", - "Label": "Z", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.419057, 4.16536) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -23.02034, -1.586958) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2246498)", + "Label": "w", "hasCustomLabel": false, - "LabelId": 26 + "LabelId": 55 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.549308, -2.384186E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.28769, 13.8026) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6978087)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.000250105, 3.808835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 24.99714, -1.572675) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1788682)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -1903,11 +9797,11 @@ }, { "kind": "OMF", - "float": 8.549308 + "float": 0.000250105 }, { "kind": "OMF", - "float": -2.38418579E-07 + "float": 3.80883455 } ] }, @@ -1938,11 +9832,11 @@ }, { "kind": "OMF", - "float": 19.28769 + "float": 24.9971371 }, { "kind": "OMF", - "float": 13.802599 + "float": -1.57267511 } ] }, @@ -2020,15 +9914,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.6978087 + "Item1": -1E-05, + "Item2": 0.17886816 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.549308, -2.384186E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.28769, 13.8026) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6978087)", - "Label": "[", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.000250105, 3.808835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 24.99714, -1.572675) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1788682)", + "Label": "x", "hasCustomLabel": false, - "LabelId": 27 + "LabelId": 56 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.62, 9.631574) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -12.11062, 13.43478) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.3298803)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.314614, 3.527739) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.09929, 20.58879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7816031)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -2050,11 +9944,11 @@ }, { "kind": "OMF", - "float": 19.6199989 + "float": 4.314614 }, { "kind": "OMF", - "float": 9.631574 + "float": 3.527739 } ] }, @@ -2085,11 +9979,11 @@ }, { "kind": "OMF", - "float": -12.1106205 + "float": 10.0992918 }, { "kind": "OMF", - "float": 13.43478 + "float": 20.5887871 } ] }, @@ -2167,15 +10061,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.3298803 + "Item1": -1E-05, + "Item2": 0.7816031 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.62, 9.631574) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -12.11062, 13.43478) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.3298803)", - "Label": "\\", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.314614, 3.527739) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.09929, 20.58879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7816031)", + "Label": "y", "hasCustomLabel": false, - "LabelId": 28 + "LabelId": 57 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.09118, 14.06344) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.80479, 19.21664) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2891534)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.211795, 19.61979) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.427216, -20.55026) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9547223)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -2197,11 +10091,11 @@ }, { "kind": "OMF", - "float": 15.091177 + "float": 9.211795 }, { "kind": "OMF", - "float": 14.0634422 + "float": 19.6197929 } ] }, @@ -2232,11 +10126,11 @@ }, { "kind": "OMF", - "float": -3.80478954 + "float": 2.427216 }, { "kind": "OMF", - "float": 19.2166386 + "float": -20.5502625 } ] }, @@ -2314,15 +10208,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.289153427 + "Item1": -1E-05, + "Item2": 0.9547223 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.09118, 14.06344) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.80479, 19.21664) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2891534)", - "Label": "]", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.211795, 19.61979) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.427216, -20.55026) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9547223)", + "Label": "z", "hasCustomLabel": false, - "LabelId": 29 + "LabelId": 58 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.5809, 19.62) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.57104, -19.0131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.8358453)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.058162, 0.0002044376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.902648, 20.44376) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2043911)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -2344,11 +10238,11 @@ }, { "kind": "OMF", - "float": 13.5809031 + "float": 7.05816174 }, { "kind": "OMF", - "float": 19.6199989 + "float": 0.000204437616 } ] }, @@ -2379,11 +10273,11 @@ }, { "kind": "OMF", - "float": -6.57103968 + "float": -6.902648 }, { "kind": "OMF", - "float": -19.0130978 + "float": 20.4437618 } ] }, @@ -2461,15 +10355,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.8358453 + "Item1": -1E-05, + "Item2": 0.204391062 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.5809, 19.62) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.57104, -19.0131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.8358453)", - "Label": "^", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.058162, 0.0002044376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.902648, 20.44376) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2043911)", + "Label": "{", "hasCustomLabel": false, - "LabelId": 30 + "LabelId": 59 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.661715, 3.727991) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -22.95221, -3.161415) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1949807)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.442544, 4.178548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.22719, -17.90403) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.233386)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -2491,11 +10385,11 @@ }, { "kind": "OMF", - "float": 4.66171455 + "float": 5.44254446 }, { "kind": "OMF", - "float": 3.727991 + "float": 4.178548 } ] }, @@ -2526,11 +10420,11 @@ }, { "kind": "OMF", - "float": -22.95221 + "float": 13.2271862 }, { "kind": "OMF", - "float": -3.16141462 + "float": -17.904026 } ] }, @@ -2608,15 +10502,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.194980741 + "Item1": -1E-05, + "Item2": 0.23338595 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.661715, 3.727991) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -22.95221, -3.161415) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1949807)", - "Label": "_", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.442544, 4.178548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.22719, -17.90403) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.233386)", + "Label": "|", "hasCustomLabel": false, - "LabelId": 31 + "LabelId": 60 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.490116E-08, 3.111576) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.96413, -3.046878) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1255537)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.262522, 0.0001770008) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.84221, 17.74776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4721227)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -2638,11 +10532,11 @@ }, { "kind": "OMF", - "float": -1.49011612E-08 + "float": 8.262522 }, { "kind": "OMF", - "float": 3.111576 + "float": 0.000177000751 } ] }, @@ -2673,11 +10567,11 @@ }, { "kind": "OMF", - "float": 23.9641266 + "float": 10.842207 }, { "kind": "OMF", - "float": -3.046878 + "float": 17.7477589 } ] }, @@ -2755,15 +10649,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.125553668 + "Item1": -1E-05, + "Item2": 0.4721227 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.490116E-08, 3.111576) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.96413, -3.046878) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1255537)", - "Label": "`", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.262522, 0.0001770008) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.84221, 17.74776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4721227)", + "Label": "}", "hasCustomLabel": false, - "LabelId": 32 + "LabelId": 61 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.931463, 2.729029) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.473647, 20.59326) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2774679)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.28793, 8.379155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -12.22817, -14.21008) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5896627)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -2785,11 +10679,11 @@ }, { "kind": "OMF", - "float": 2.931463 + "float": 12.2879286 }, { "kind": "OMF", - "float": 2.72902942 + "float": 8.379155 } ] }, @@ -2820,11 +10714,11 @@ }, { "kind": "OMF", - "float": 8.473647 + "float": -12.22817 }, { "kind": "OMF", - "float": 20.593256 + "float": -14.210083 } ] }, @@ -2902,15 +10796,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.277467877 + "Item1": -1E-05, + "Item2": 0.5896627 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.931463, 2.729029) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.473647, 20.59326) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2774679)", - "Label": "a", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.28793, 8.379155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -12.22817, -14.21008) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5896627)", + "Label": "~", "hasCustomLabel": false, - "LabelId": 33 + "LabelId": 62 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.905, 8.442996) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.513967, 19.74212) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.56615)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.371777, 0.0001400589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -17.75392, 14.00589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1808783)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -2932,11 +10826,11 @@ }, { "kind": "OMF", - "float": 4.90499973 + "float": 3.37177682 }, { "kind": "OMF", - "float": 8.442996 + "float": 0.000140058924 } ] }, @@ -2967,11 +10861,11 @@ }, { "kind": "OMF", - "float": -5.51396656 + "float": -17.7539234 }, { "kind": "OMF", - "float": 19.7421246 + "float": 14.0058928 } ] }, @@ -3049,15 +10943,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.56614995 + "Item1": -1E-05, + "Item2": 0.180878326 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.905, 8.442996) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.513967, 19.74212) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.56615)", - "Label": "b", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.371777, 0.0001400589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -17.75392, 14.00589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1808783)", + "Label": "", "hasCustomLabel": false, - "LabelId": 34 + "LabelId": 63 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2110889, 19.62) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.88789, -19.42103) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01922107)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001780728, 2.53363) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.78795, 12.75767) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.339301)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -3079,11 +10973,11 @@ }, { "kind": "OMF", - "float": 0.2110889 + "float": 0.000178072762 }, { "kind": "OMF", - "float": 19.6199989 + "float": 2.53363 } ] }, @@ -3114,11 +11008,11 @@ }, { "kind": "OMF", - "float": -10.8878851 + "float": 17.7879543 }, { "kind": "OMF", - "float": -19.42103 + "float": 12.7576733 } ] }, @@ -3196,15 +11090,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.0192210656 + "Item1": -1E-05, + "Item2": 1.33930135 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2110889, 19.62) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.88789, -19.42103) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01922107)", - "Label": "c", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001780728, 2.53363) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.78795, 12.75767) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.339301)", + "Label": "€", "hasCustomLabel": false, - "LabelId": 35 + "LabelId": 64 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.841706E-09, 19.24671) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.849987, -15.51724) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.027901)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.02542, 19.61987) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.623549, -12.68671) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5710809)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -3226,11 +11120,11 @@ }, { "kind": "OMF", - "float": -3.84170562E-09 + "float": 15.0254183 }, { "kind": "OMF", - "float": 19.246706 + "float": 19.6198711 } ] }, @@ -3261,11 +11155,11 @@ }, { "kind": "OMF", - "float": 8.849987 + "float": 4.62354851 }, { "kind": "OMF", - "float": -15.5172424 + "float": -12.6867123 } ] }, @@ -3343,15 +11237,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 1.02790093 + "Item1": -1E-05, + "Item2": 0.571080863 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.841706E-09, 19.24671) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.849987, -15.51724) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.027901)", - "Label": "d", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.02542, 19.61987) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.623549, -12.68671) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5710809)", + "Label": "Â", "hasCustomLabel": false, - "LabelId": 36 + "LabelId": 65 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.914383, 3.296518) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -13.78543, 6.561788) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2599138)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.06627, 12.37468) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.29918, -5.410871) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3758278)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -3373,11 +11267,11 @@ }, { "kind": "OMF", - "float": 3.91438341 + "float": 16.066267 }, { "kind": "OMF", - "float": 3.29651833 + "float": 12.3746786 } ] }, @@ -3408,11 +11302,11 @@ }, { "kind": "OMF", - "float": -13.7854347 + "float": 11.299181 }, { "kind": "OMF", - "float": 6.561788 + "float": -5.41087055 } ] }, @@ -3490,15 +11384,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.259913832 + "Item1": -1E-05, + "Item2": 0.37582776 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.914383, 3.296518) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -13.78543, 6.561788) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2599138)", - "Label": "e", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.06627, 12.37468) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.29918, -5.410871) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3758278)", + "Label": "‚", "hasCustomLabel": false, - "LabelId": 37 + "LabelId": 66 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.960464E-08, 5.002018) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.5477, 5.843759) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 2.339293)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61992, 10.34107) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.537445, -5.357656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5498449)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -3520,11 +11414,11 @@ }, { "kind": "OMF", - "float": -5.96046448E-08 + "float": 19.6199226 }, { "kind": "OMF", - "float": 5.002018 + "float": 10.34107 } ] }, @@ -3555,11 +11449,11 @@ }, { "kind": "OMF", - "float": 14.547699 + "float": -7.537445 }, { "kind": "OMF", - "float": 5.843759 + "float": -5.35765553 } ] }, @@ -3637,15 +11531,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 2.33929324 + "Item1": -1E-05, + "Item2": 0.549844861 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.960464E-08, 5.002018) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.5477, 5.843759) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 2.339293)", - "Label": "f", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61992, 10.34107) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.537445, -5.357656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5498449)", + "Label": "ƒ", "hasCustomLabel": false, - "LabelId": 38 + "LabelId": 67 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.189739, 18.67228) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.211595, -4.33007) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 2.099828)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.99255, 7.395328) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.80683, 13.73323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8901526)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -3667,11 +11561,11 @@ }, { "kind": "OMF", - "float": 7.189739 + "float": 13.9925537 }, { "kind": "OMF", - "float": 18.6722832 + "float": 7.395328 } ] }, @@ -3702,11 +11596,11 @@ }, { "kind": "OMF", - "float": 9.211595 + "float": -1.80683029 }, { "kind": "OMF", - "float": -4.33006954 + "float": 13.73323 } ] }, @@ -3784,15 +11678,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 2.09982777 + "Item1": -1E-05, + "Item2": 0.890152633 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.189739, 18.67228) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.211595, -4.33007) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 2.099828)", - "Label": "g", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.99255, 7.395328) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.80683, 13.73323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8901526)", + "Label": "„", "hasCustomLabel": false, - "LabelId": 39 + "LabelId": 68 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.905001, 9.579883) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.256, -4.279988) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.349196)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.497512, 19.61986) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.42943, -13.59016) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104124)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -3814,11 +11708,11 @@ }, { "kind": "OMF", - "float": 4.90500069 + "float": 8.497512 }, { "kind": "OMF", - "float": 9.579883 + "float": 19.6198635 } ] }, @@ -3849,11 +11743,11 @@ }, { "kind": "OMF", - "float": 11.2560043 + "float": -10.4294338 }, { "kind": "OMF", - "float": -4.279988 + "float": -13.5901613 } ] }, @@ -3931,15 +11825,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 1.3491962 + "Item1": -1E-05, + "Item2": 0.210412368 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.905001, 9.579883) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.256, -4.279988) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.349196)", - "Label": "h", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.497512, 19.61986) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.42943, -13.59016) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104124)", + "Label": "\u0085", "hasCustomLabel": false, - "LabelId": 40 + "LabelId": 69 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.16284, 3.805339) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.279988, -1.979609) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.134112)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.085816, 16.76016) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.285142, -16.85733) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.698581)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -3961,11 +11855,11 @@ }, { "kind": "OMF", - "float": 11.1628389 + "float": 6.08581638 }, { "kind": "OMF", - "float": 3.80533934 + "float": 16.7601585 } ] }, @@ -3996,11 +11890,11 @@ }, { "kind": "OMF", - "float": -4.279988 + "float": -5.28514242 }, { "kind": "OMF", - "float": -1.97960949 + "float": -16.8573284 } ] }, @@ -4078,15 +11972,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 1.13411152 + "Item1": -1E-05, + "Item2": 0.69858104 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.16284, 3.805339) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.279988, -1.979609) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.134112)", - "Label": "i", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.085816, 16.76016) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.285142, -16.85733) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.698581)", + "Label": "†", "hasCustomLabel": false, - "LabelId": 41 + "LabelId": 70 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.536743E-07, 1.560241) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.84159, -1.907133) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.8181087)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001051595, 4.983803) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.49216, -14.57131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3420286)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -4108,11 +12002,11 @@ }, { "kind": "OMF", - "float": 9.536743E-07 + "float": 0.00010515951 }, { "kind": "OMF", - "float": 1.56024146 + "float": 4.983803 } ] }, @@ -4143,11 +12037,11 @@ }, { "kind": "OMF", - "float": 14.8415947 + "float": 10.4921579 }, { "kind": "OMF", - "float": -1.90713263 + "float": -14.5713062 } ] }, @@ -4225,15 +12119,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.818108737 + "Item1": -1E-05, + "Item2": 0.342028558 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.536743E-07, 1.560241) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.84159, -1.907133) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.8181087)", - "Label": "j", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001051595, 4.983803) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.49216, -14.57131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3420286)", + "Label": "‡", "hasCustomLabel": false, - "LabelId": 42 + "LabelId": 71 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.859114, -3.576279E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.534343, 1.828338) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.856556)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.014989, 0.0001446568) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.085127, 14.46568) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2505379)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -4255,11 +12149,11 @@ }, { "kind": "OMF", - "float": 8.859114 + "float": 3.01498938 }, { "kind": "OMF", - "float": -3.57627869E-07 + "float": 0.000144656835 } ] }, @@ -4290,11 +12184,11 @@ }, { "kind": "OMF", - "float": 6.53434324 + "float": 7.085127 }, { "kind": "OMF", - "float": 1.82833779 + "float": 14.4656839 } ] }, @@ -4372,15 +12266,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 1.8565557 + "Item1": -1E-05, + "Item2": 0.250537932 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.859114, -3.576279E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.534343, 1.828338) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.856556)", - "Label": "k", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.014989, 0.0001446568) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.085127, 14.46568) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2505379)", + "Label": "ˆ", "hasCustomLabel": false, - "LabelId": 43 + "LabelId": 72 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.083937, 3.394411) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.135024, -10.71493) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.3167926)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482346, 3.624316) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.64452, -3.182668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.138767)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -4402,11 +12296,11 @@ }, { "kind": "OMF", - "float": 4.08393669 + "float": 4.48234558 }, { "kind": "OMF", - "float": 3.39441061 + "float": 3.6243155 } ] }, @@ -4437,11 +12331,11 @@ }, { "kind": "OMF", - "float": -4.135024 + "float": 14.6445169 }, { "kind": "OMF", - "float": -10.7149305 + "float": -3.18266773 } ] }, @@ -4519,15 +12413,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.3167926 + "Item1": -1E-05, + "Item2": 1.13876677 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.083937, 3.394411) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.135024, -10.71493) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.3167926)", - "Label": "l", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482346, 3.624316) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.64452, -3.182668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.138767)", + "Label": "‰", "hasCustomLabel": false, - "LabelId": 44 + "LabelId": 73 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.281738, -2.384186E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.105723, 10.5122) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2705758)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.79832, 3.069148E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.42739, 3.140674) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.261231)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -4549,11 +12443,11 @@ }, { "kind": "OMF", - "float": 2.2817378 + "float": 14.798316 }, { "kind": "OMF", - "float": -2.38418579E-07 + "float": 3.06914844E-05 } ] }, @@ -4584,11 +12478,11 @@ }, { "kind": "OMF", - "float": -7.105723 + "float": 3.42738962 }, { "kind": "OMF", - "float": 10.5121994 + "float": 3.140674 } ] }, @@ -4666,15 +12560,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.2705758 + "Item1": -1E-05, + "Item2": 1.261231 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.281738, -2.384186E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.105723, 10.5122) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2705758)", - "Label": "m", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.79832, 3.069148E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.42739, 3.140674) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.261231)", + "Label": "Š", "hasCustomLabel": false, - "LabelId": 45 + "LabelId": 74 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.980232E-08, 2.844347) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.460365, 8.035274) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.520972)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.31868, 3.961057) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.140674, -8.945286) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4428095)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -4696,11 +12590,11 @@ }, { "kind": "OMF", - "float": -2.98023224E-08 + "float": 11.3186769 }, { "kind": "OMF", - "float": 2.84434652 + "float": 3.96105671 } ] }, @@ -4731,11 +12625,11 @@ }, { "kind": "OMF", - "float": 7.460365 + "float": 3.140674 }, { "kind": "OMF", - "float": 8.035274 + "float": -8.945286 } ] }, @@ -4813,15 +12707,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 1.52097154 + "Item1": -1E-05, + "Item2": 0.442809463 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.980232E-08, 2.844347) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.460365, 8.035274) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.520972)", - "Label": "n", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.31868, 3.961057) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.140674, -8.945286) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4428095)", + "Label": "‹", "hasCustomLabel": false, - "LabelId": 46 + "LabelId": 75 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 15.06577) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.288472, 6.773072) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6724024)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.74761, 8.878566E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.200725, 8.92625) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3679302)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -4843,11 +12737,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 11.747611 }, { "kind": "OMF", - "float": 15.0657692 + "float": 8.878566E-05 } ] }, @@ -4878,11 +12772,11 @@ }, { "kind": "OMF", - "float": 6.2884717 + "float": -1.20072508 }, { "kind": "OMF", - "float": 6.77307224 + "float": 8.9262495 } ] }, @@ -4960,15 +12854,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.6724024 + "Item1": -1E-05, + "Item2": 0.3679302 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 15.06577) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.288472, 6.773072) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6724024)", - "Label": "o", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.74761, 8.878566E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.200725, 8.92625) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3679302)", + "Label": "ÂŒ", "hasCustomLabel": false, - "LabelId": 47 + "LabelId": 76 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.010711, 19.62) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -0.3073506, -6.763281) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6096942)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.64192, 3.284277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.92625, -4.81012) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.682785)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -4990,11 +12884,11 @@ }, { "kind": "OMF", - "float": 2.01071072 + "float": 10.6419153 }, { "kind": "OMF", - "float": 19.6199989 + "float": 3.28427744 } ] }, @@ -5025,11 +12919,11 @@ }, { "kind": "OMF", - "float": -0.3073506 + "float": 8.9262495 }, { "kind": "OMF", - "float": -6.76328135 + "float": -4.81012 } ] }, @@ -5107,15 +13001,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.6096942 + "Item1": -1E-05, + "Item2": 0.682785034 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.010711, 19.62) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -0.3073506, -6.763281) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6096942)", - "Label": "p", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.64192, 3.284277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.92625, -4.81012) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.682785)", + "Label": "Â", "hasCustomLabel": false, - "LabelId": 48 + "LabelId": 77 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 15.49647) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.301509, -5.701818) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.080838)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.44996, 4.729227E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212746, 4.776911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9691768)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -5137,11 +13031,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 14.44996 }, { "kind": "OMF", - "float": 15.4964657 + "float": 4.729227E-05 } ] }, @@ -5172,11 +13066,11 @@ }, { "kind": "OMF", - "float": 5.301509 + "float": 2.21274638 }, { "kind": "OMF", - "float": -5.70181751 + "float": 4.776911 } ] }, @@ -5254,15 +13148,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 1.08083773 + "Item1": -1E-05, + "Item2": 0.969176769 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 15.49647) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.301509, -5.701818) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.080838)", - "Label": "q", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.44996, 4.729227E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212746, 4.776911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9691768)", + "Label": "ÂŽ", "hasCustomLabel": false, - "LabelId": 49 + "LabelId": 78 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 9.333727) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.05344, -4.359509) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.8263894)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.98726, 4.629645) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.776911, -7.294877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6346434)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -5284,11 +13178,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 11.9872646 }, { "kind": "OMF", - "float": 9.333727 + "float": 4.62964535 } ] }, @@ -5319,11 +13213,11 @@ }, { "kind": "OMF", - "float": 4.05343962 + "float": 4.776911 }, { "kind": "OMF", - "float": -4.35950851 + "float": -7.294877 } ] }, @@ -5401,15 +13295,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.8263894 + "Item1": -1E-05, + "Item2": 0.634643435 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 9.333727) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.05344, -4.359509) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.8263894)", - "Label": "r", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.98726, 4.629645) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.776911, -7.294877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6346434)", + "Label": "Â", "hasCustomLabel": false, - "LabelId": 50 + "LabelId": 79 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 5.731075) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.099188, -3.333203) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6318427)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.04329, 7.224429E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.444419, 7.272113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5074097)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -5431,11 +13325,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 13.0432882 }, { "kind": "OMF", - "float": 5.73107529 + "float": 7.224429E-05 } ] }, @@ -5466,11 +13360,11 @@ }, { "kind": "OMF", - "float": 3.099188 + "float": -1.44441855 }, { "kind": "OMF", - "float": -3.33320284 + "float": 7.272113 } ] }, @@ -5548,15 +13442,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.6318427 + "Item1": -1E-05, + "Item2": 0.5074097 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 5.731075) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.099188, -3.333203) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6318427)", - "Label": "s", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.04329, 7.224429E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.444419, 7.272113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5074097)", + "Label": "Â", "hasCustomLabel": false, - "LabelId": 51 + "LabelId": 80 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 3.625015) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.369584, -2.548508) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.4830957)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.04758, 3.689949) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.272113, -6.422107) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5745698)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -5578,11 +13472,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 11.0475845 }, { "kind": "OMF", - "float": 3.6250155 + "float": 3.68994856 } ] }, @@ -5613,11 +13507,11 @@ }, { "kind": "OMF", - "float": 2.36958432 + "float": 7.272113 }, { "kind": "OMF", - "float": -2.548508 + "float": -6.422107 } ] }, @@ -5695,15 +13589,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.4830957 + "Item1": -1E-05, + "Item2": 0.5745698 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 3.625015) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.369584, -2.548508) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.4830957)", - "Label": "t", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.04758, 3.689949) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.272113, -6.422107) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5745698)", + "Label": "‘", "hasCustomLabel": false, - "LabelId": 52 + "LabelId": 81 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 2.393842) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.811742, -1.948544) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.3693664)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.60665, 6.348934E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.629092, 6.396618) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7429182)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -5725,11 +13619,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 13.6066484 }, { "kind": "OMF", - "float": 2.39384222 + "float": 6.348934E-05 } ] }, @@ -5760,11 +13654,11 @@ }, { "kind": "OMF", - "float": 1.81174219 + "float": 1.62909234 }, { "kind": "OMF", - "float": -1.948544 + "float": 6.396618 } ] }, @@ -5842,15 +13736,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.3693664 + "Item1": -1E-05, + "Item2": 0.7429182 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 2.393842) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.811742, -1.948544) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.3693664)", - "Label": "u", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.60665, 6.348934E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.629092, 6.396618) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7429182)", + "Label": "Â’", "hasCustomLabel": false, - "LabelId": 53 + "LabelId": 82 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 1.674116) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.385226, -1.489822) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.282411)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.10979, 4.752171) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.396617, -5.658934) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8397644)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -5872,11 +13766,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 12.1097908 }, { "kind": "OMF", - "float": 1.67411554 + "float": 4.75217056 } ] }, @@ -5907,11 +13801,11 @@ }, { "kind": "OMF", - "float": 1.385226 + "float": 6.396617 }, { "kind": "OMF", - "float": -1.48982227 + "float": -5.658934 } ] }, @@ -5989,15 +13883,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.282411039 + "Item1": -1E-05, + "Item2": 0.839764357 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 1.674116) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.385226, -1.489822) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.282411)", - "Label": "v", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.10979, 4.752171) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.396617, -5.658934) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8397644)", + "Label": "“", "hasCustomLabel": false, - "LabelId": 54 + "LabelId": 83 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 1.253373) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.059119, -1.139092) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2159265)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.0224, 5.582916E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.83225, 5.630599) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6312054)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -6019,11 +13913,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 14.022397 }, { "kind": "OMF", - "float": 1.25337327 + "float": 5.58291576E-05 } ] }, @@ -6054,11 +13948,11 @@ }, { "kind": "OMF", - "float": 1.05911922 + "float": -1.83225 }, { "kind": "OMF", - "float": -1.13909173 + "float": 5.6305995 } ] }, @@ -6136,15 +14030,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.215926453 + "Item1": -1E-05, + "Item2": 0.6312054 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 1.253373) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.059119, -1.139092) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2159265)", - "Label": "w", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.0224, 5.582916E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.83225, 5.630599) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6312054)", + "Label": "”", "hasCustomLabel": false, - "LabelId": 55 + "LabelId": 84 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 1.007413) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8097838, -0.8709294) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1650936)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.91168, 3.55404) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.630599, -8.024374) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4429057)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -6166,11 +14060,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 10.9116764 }, { "kind": "OMF", - "float": 1.00741327 + "float": 3.55404019 } ] }, @@ -6201,11 +14095,11 @@ }, { "kind": "OMF", - "float": 0.8097838 + "float": 5.630599 }, { "kind": "OMF", - "float": -0.87092936 + "float": -8.024374 } ] }, @@ -6283,15 +14177,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.165093556 + "Item1": -1E-05, + "Item2": 0.442905664 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 1.007413) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8097838, -0.8709294) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1650936)", - "Label": "x", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.91168, 3.55404) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.630599, -8.024374) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4429057)", + "Label": "•", "hasCustomLabel": false, - "LabelId": 56 + "LabelId": 85 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.490116E-08, 0.8636284) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.6191465, -0.6658972) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1262276)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.44332, 7.9564E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.282444, 8.004084) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5421413)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -6313,11 +14207,11 @@ }, { "kind": "OMF", - "float": -1.49011612E-08 + "float": 12.4433212 }, { "kind": "OMF", - "float": 0.863628447 + "float": 7.9564E-05 } ] }, @@ -6348,11 +14242,11 @@ }, { "kind": "OMF", - "float": 0.619146466 + "float": 1.28244436 }, { "kind": "OMF", - "float": -0.6658972 + "float": 8.004084 } ] }, @@ -6430,15 +14324,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.1262276 + "Item1": -1E-05, + "Item2": 0.5421413 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.490116E-08, 0.8636284) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.6191465, -0.6658972) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1262276)", - "Label": "y", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.44332, 7.9564E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.282444, 8.004084) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5421413)", + "Label": "–", "hasCustomLabel": false, - "LabelId": 57 + "LabelId": 86 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.7795739) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4733882, -0.5091332) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.09651136)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.697, 4.339384) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.004084, -4.035961) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.07518)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -6460,11 +14354,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 11.6970034 }, { "kind": "OMF", - "float": 0.779573858 + "float": 4.3393836 } ] }, @@ -6495,11 +14389,11 @@ }, { "kind": "OMF", - "float": 0.473388225 + "float": 8.004084 }, { "kind": "OMF", - "float": -0.50913316 + "float": -4.035961 } ] }, @@ -6577,15 +14471,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.096511364 + "Item1": -1E-05, + "Item2": 1.07517993 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.7795739) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4733882, -0.5091332) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.09651136)", - "Label": "z", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.697, 4.339384) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.004084, -4.035961) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.07518)", + "Label": "—", "hasCustomLabel": false, - "LabelId": 58 + "LabelId": 87 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.7304367) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3619443, -0.3892742) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.07379089)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.63257, 3.904473E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.520668, 3.99984) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7227589)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -6607,11 +14501,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 14.63257 }, { "kind": "OMF", - "float": 0.730436742 + "float": 3.904473E-05 } ] }, @@ -6642,11 +14536,11 @@ }, { "kind": "OMF", - "float": 0.361944258 + "float": -2.520668 }, { "kind": "OMF", - "float": -0.38927418 + "float": 3.9998405 } ] }, @@ -6724,15 +14618,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.0737908855 + "Item1": -1E-05, + "Item2": 0.7227589 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.7304367) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3619443, -0.3892742) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.07379089)", - "Label": "{", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.63257, 3.904473E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.520668, 3.99984) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7227589)", + "Label": "˜", "hasCustomLabel": false, - "LabelId": 59 + "LabelId": 88 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.862645E-09, 0.7017118) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2767362, -0.2976321) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0564192)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.2485, 2.890863) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.99984, -9.610931) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3007891)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -6754,11 +14648,11 @@ }, { "kind": "OMF", - "float": -1.86264515E-09 + "float": 10.2484989 }, { "kind": "OMF", - "float": 0.701711833 + "float": 2.89086318 } ] }, @@ -6789,11 +14683,11 @@ }, { "kind": "OMF", - "float": 0.2767362 + "float": 3.99983978 }, { "kind": "OMF", - "float": -0.297632128 + "float": -9.610931 } ] }, @@ -6871,15 +14765,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.0564192 + "Item1": -1E-05, + "Item2": 0.300789118 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.862645E-09, 0.7017118) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2767362, -0.2976321) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0564192)", - "Label": "|", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.2485, 2.890863) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.99984, -9.610931) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3007891)", + "Label": "™", "hasCustomLabel": false, - "LabelId": 60 + "LabelId": 89 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6849197) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2115875, -0.2275642) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.04313712)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.00784, 9.546617E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.047284, 9.5943) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3548257)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -6901,11 +14795,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 11.0078421 }, { "kind": "OMF", - "float": 0.684919655 + "float": 9.546617E-05 } ] }, @@ -6936,11 +14830,11 @@ }, { "kind": "OMF", - "float": 0.211587548 + "float": 1.04728413 }, { "kind": "OMF", - "float": -0.227564245 + "float": 9.5943 } ] }, @@ -7018,15 +14912,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.04313712 + "Item1": -1E-05, + "Item2": 0.354825735 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6849197) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2115875, -0.2275642) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.04313712)", - "Label": "}", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.00784, 9.546617E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.047284, 9.5943) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3548257)", + "Label": "š", "hasCustomLabel": false, - "LabelId": 61 + "LabelId": 90 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6751032) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1617761, -0.1739916) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.03298188)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.762, 3.404376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.594299, -2.433555) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.398931)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -7048,11 +14942,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 10.7619953 }, { "kind": "OMF", - "float": 0.6751032 + "float": 3.40437579 } ] }, @@ -7083,11 +14977,11 @@ }, { "kind": "OMF", - "float": 0.1617761 + "float": 9.594299 }, { "kind": "OMF", - "float": -0.173991591 + "float": -2.43355513 } ] }, @@ -7165,15 +15059,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.0329818763 + "Item1": -1E-05, + "Item2": 1.39893126 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6751032) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1617761, -0.1739916) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.03298188)", - "Label": "~", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.762, 3.404376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.594299, -2.433555) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.398931)", + "Label": "›", "hasCustomLabel": false, - "LabelId": 62 + "LabelId": 91 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6693646) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1236911, -0.1330309) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.02521736)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.58459, 2.345659E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.060983, 2.393343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.173249)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -7195,11 +15089,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 14.5845938 }, { "kind": "OMF", - "float": 0.669364631 + "float": 2.34565923E-05 } ] }, @@ -7230,11 +15124,11 @@ }, { "kind": "OMF", - "float": 0.123691134 + "float": -4.060983 }, { "kind": "OMF", - "float": -0.133030891 + "float": 2.393343 } ] }, @@ -7312,15 +15206,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.025217358 + "Item1": -1E-05, + "Item2": 1.17324853 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6693646) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1236911, -0.1330309) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.02521736)", - "Label": "", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.58459, 2.345659E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.060983, 2.393343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.173249)", + "Label": "Âœ", "hasCustomLabel": false, - "LabelId": 63 + "LabelId": 92 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.66601) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.09457205, -0.1017131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01928075)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.068203, 2.807865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.631238, -14.47211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.194019)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -7342,11 +15236,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 3.06820345 }, { "kind": "OMF", - "float": 0.666009963 + "float": 2.80786467 } ] }, @@ -7377,11 +15271,11 @@ }, { "kind": "OMF", - "float": 0.09457205 + "float": -5.63123846 }, { "kind": "OMF", - "float": -0.101713061 + "float": -14.4721127 } ] }, @@ -7459,15 +15353,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.0192807466 + "Item1": -1E-05, + "Item2": 0.19401899 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.66601) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.09457205, -0.1017131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01928075)", - "Label": "€", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.068203, 2.807865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.631238, -14.47211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.194019)", + "Label": "Â", "hasCustomLabel": false, - "LabelId": 64 + "LabelId": 93 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.164153E-10, 0.6640489) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.07230812, -0.07776801) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01474172)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.790921, 0.0001436155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.477002, 14.36155) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104654)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -7489,11 +15383,11 @@ }, { "kind": "OMF", - "float": -1.16415322E-10 + "float": 1.79092085 }, { "kind": "OMF", - "float": 0.664048851 + "float": 0.000143615514 } ] }, @@ -7524,11 +15418,11 @@ }, { "kind": "OMF", - "float": 0.07230812 + "float": -7.47700167 }, { "kind": "OMF", - "float": -0.0777680054 + "float": 14.3615513 } ] }, @@ -7606,15 +15500,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.0147417169 + "Item1": -1E-05, + "Item2": 0.210465446 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.164153E-10, 0.6640489) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.07230812, -0.07776801) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01474172)", - "Label": "Â", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.790921, 0.0001436155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.477002, 14.36155) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104654)", + "Label": "ž", "hasCustomLabel": false, - "LabelId": 65 + "LabelId": 94 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6629024) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0552855, -0.05946004) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01127125)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.190275E-05, 3.022877) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.196284, 12.33656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.345361)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -7636,11 +15530,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 8.190275E-05 }, { "kind": "OMF", - "float": 0.6629024 + "float": 3.022877 } ] }, @@ -7671,11 +15565,11 @@ }, { "kind": "OMF", - "float": 0.0552855 + "float": 8.196284 }, { "kind": "OMF", - "float": -0.05946004 + "float": 12.33656 } ] }, @@ -7753,15 +15647,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.0112712542 + "Item1": -1E-05, + "Item2": 1.34536064 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6629024) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0552855, -0.05946004) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01127125)", - "Label": "‚", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.190275E-05, 3.022877) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.196284, 12.33656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.345361)", + "Label": "Ÿ", "hasCustomLabel": false, - "LabelId": 66 + "LabelId": 95 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6622322) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04227031, -0.04546209) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.008617802)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.148965, 19.61988) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.971041, -12.26093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3268713)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -7783,11 +15677,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 2.14896464 }, { "kind": "OMF", - "float": 0.6622322 + "float": 19.6198769 } ] }, @@ -7818,11 +15712,11 @@ }, { "kind": "OMF", - "float": 0.0422703139 + "float": -4.97104073 }, { "kind": "OMF", - "float": -0.0454620942 + "float": -12.260932 } ] }, @@ -7900,15 +15794,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.008617802 + "Item1": -1E-05, + "Item2": 0.3268713 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6622322) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04227031, -0.04546209) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.008617802)", - "Label": "ƒ", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.148965, 19.61988) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.971041, -12.26093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3268713)", + "Label": " ", "hasCustomLabel": false, - "LabelId": 67 + "LabelId": 96 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6618404) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03231913, -0.03475951) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.006589018)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.422212E-05, 15.61202) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.41034, -11.11049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.40516)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -7930,11 +15824,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 7.422212E-05 }, { "kind": "OMF", - "float": 0.661840439 + "float": 15.6120186 } ] }, @@ -7965,11 +15859,11 @@ }, { "kind": "OMF", - "float": 0.0323191322 + "float": 7.41034 }, { "kind": "OMF", - "float": -0.03475951 + "float": -11.1104889 } ] }, @@ -8047,15 +15941,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.00658901827 + "Item1": -1E-05, + "Item2": 1.40516031 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6618404) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03231913, -0.03475951) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.006589018)", - "Label": "„", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.422212E-05, 15.61202) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.41034, -11.11049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.40516)", + "Label": "¡", "hasCustomLabel": false, - "LabelId": 68 + "LabelId": 97 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6616114) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02471064, -0.02657651) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.005037847)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.727924, 0.0001111375) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.321439, 11.01838) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.106372)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -8077,11 +15971,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 0.727924049 }, { "kind": "OMF", - "float": 0.6616114 + "float": 0.00011113751 } ] }, @@ -8112,11 +16006,11 @@ }, { "kind": "OMF", - "float": 0.0247106366 + "float": -6.32143927 }, { "kind": "OMF", - "float": -0.026576506 + "float": 11.018384 } ] }, @@ -8194,15 +16088,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.00503784651 + "Item1": -1E-05, + "Item2": 0.106371976 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6616114) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02471064, -0.02657651) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.005037847)", - "Label": "\u0085", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.727924, 0.0001111375) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.321439, 11.01838) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.106372)", + "Label": "¢", "hasCustomLabel": false, - "LabelId": 69 + "LabelId": 98 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6614775) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01889331, -0.02031993) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.003851848)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.326775E-05, 1.172253) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.329431, 9.469191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.290414)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -8224,11 +16118,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 6.326775E-05 }, { "kind": "OMF", - "float": 0.6614775 + "float": 1.172253 } ] }, @@ -8259,11 +16153,11 @@ }, { "kind": "OMF", - "float": 0.0188933145 + "float": 6.329431 }, { "kind": "OMF", - "float": -0.0203199256 + "float": 9.469191 } ] }, @@ -8341,15 +16235,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.00385184819 + "Item1": -1E-05, + "Item2": 1.290414 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6614775) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01889331, -0.02031993) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.003851848)", - "Label": "†", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.326775E-05, 1.172253) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.329431, 9.469191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.290414)", + "Label": "£", "hasCustomLabel": false, - "LabelId": 70 + "LabelId": 99 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613992) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01444549, -0.01553626) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.002945055)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.318291E-05, 13.39154) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.31834, 10.94849) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5688878)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -8371,11 +16265,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 7.318291E-05 }, { "kind": "OMF", - "float": 0.661399245 + "float": 13.3915386 } ] }, @@ -8406,11 +16300,11 @@ }, { "kind": "OMF", - "float": 0.014445493 + "float": 7.3183403 }, { "kind": "OMF", - "float": -0.0155362552 + "float": 10.9484854 } ] }, @@ -8488,15 +16382,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.00294505479 + "Item1": -1E-05, + "Item2": 0.5688878 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613992) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01444549, -0.01553626) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.002945055)", - "Label": "‡", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.318291E-05, 13.39154) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.31834, 10.94849) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5688878)", + "Label": "¤", "hasCustomLabel": false, - "LabelId": 71 + "LabelId": 100 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613535) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01104477, -0.01187875) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.002251737)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.575984, 19.61989) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.733199, -10.92106) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9225922)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -8518,11 +16412,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 2.57598376 }, { "kind": "OMF", - "float": 0.661353469 + "float": 19.61989 } ] }, @@ -8553,11 +16447,11 @@ }, { "kind": "OMF", - "float": 0.0110447677 + "float": 1.73319876 }, { "kind": "OMF", - "float": -0.0118787456 + "float": -10.92106 } ] }, @@ -8635,15 +16529,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.00225173659 + "Item1": -1E-05, + "Item2": 0.922592163 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613535) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01104477, -0.01187875) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.002251737)", - "Label": "ˆ", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.575984, 19.61989) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.733199, -10.92106) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9225922)", + "Label": "Â¥", "hasCustomLabel": false, - "LabelId": 72 + "LabelId": 101 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613267) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.008444633, -0.009082278) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.001721638)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.242024E-05, 9.544113) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.289756, -9.387285) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.016706)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -8665,11 +16559,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 6.242024E-05 }, { "kind": "OMF", - "float": 0.6613267 + "float": 9.544113 } ] }, @@ -8700,11 +16594,11 @@ }, { "kind": "OMF", - "float": 0.008444633 + "float": 6.2897563 }, { "kind": "OMF", - "float": -0.009082278 + "float": -9.387285 } ] }, @@ -8782,15 +16676,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.00172163791 + "Item1": -1E-05, + "Item2": 1.01670647 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613267) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.008444633, -0.009082278) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.001721638)", - "Label": "‰", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.242024E-05, 9.544113) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.289756, -9.387285) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.016706)", + "Label": "¦", "hasCustomLabel": false, - "LabelId": 73 + "LabelId": 102 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613111) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006456617, -0.006944149) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.001316334)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.324602, 9.331409E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.662205, 9.331409) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2665415)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -8812,11 +16706,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 1.32460225 }, { "kind": "OMF", - "float": 0.6613111 + "float": 9.331409E-05 } ] }, @@ -8847,11 +16741,11 @@ }, { "kind": "OMF", - "float": 0.006456617 + "float": -3.6622045 }, { "kind": "OMF", - "float": -0.006944149 + "float": 9.331409 } ] }, @@ -8929,15 +16823,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.00131633377 + "Item1": -1E-05, + "Item2": 0.2665415 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613111) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006456617, -0.006944149) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.001316334)", - "Label": "Š", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.324602, 9.331409E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.662205, 9.331409) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2665415)", + "Label": "§", "hasCustomLabel": false, - "LabelId": 74 + "LabelId": 103 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.661302) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004936615, -0.005309373) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.001006445)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.402976E-05, 2.487381) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.397064, 8.023324) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.100329)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -8959,11 +16853,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 5.40297551E-05 }, { "kind": "OMF", - "float": 0.661302 + "float": 2.48738146 } ] }, @@ -8994,11 +16888,11 @@ }, { "kind": "OMF", - "float": 0.00493661454 + "float": 5.397064 }, { "kind": "OMF", - "float": -0.00530937267 + "float": 8.023324 } ] }, @@ -9076,15 +16970,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.00100644538 + "Item1": -1E-05, + "Item2": 1.10032892 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.661302) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004936615, -0.005309373) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.001006445)", - "Label": "‹", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.402976E-05, 2.487381) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.397064, 8.023324) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.100329)", + "Label": "¨", "hasCustomLabel": false, - "LabelId": 75 + "LabelId": 104 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612966) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003774448, -0.004059452) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0007695103)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.64054E-05, 11.31575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.640589, 6.898616) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9461036)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -9106,11 +17000,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 4.64053956E-05 }, { "kind": "OMF", - "float": 0.6612966 + "float": 11.3157463 } ] }, @@ -9141,11 +17035,11 @@ }, { "kind": "OMF", - "float": 0.003774448 + "float": 4.64058876 }, { "kind": "OMF", - "float": -0.004059452 + "float": 6.89861631 } ] }, @@ -9223,15 +17117,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.000769510341 + "Item1": -1E-05, + "Item2": 0.9461036 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612966) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003774448, -0.004059452) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0007695103)", - "Label": "ÂŒ", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.64054E-05, 11.31575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.640589, 6.898616) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9461036)", + "Label": "©", "hasCustomLabel": false, - "LabelId": 76 + "LabelId": 105 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612935) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002885876, -0.003103785) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.000588354)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.206955E-05, 17.84262) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.207005, 6.253925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2842029)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -9253,11 +17147,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 4.20695542E-05 }, { "kind": "OMF", - "float": 0.6612935 + "float": 17.8426151 } ] }, @@ -9288,11 +17182,11 @@ }, { "kind": "OMF", - "float": 0.002885876 + "float": 4.20700455 }, { "kind": "OMF", - "float": -0.00310378522 + "float": 6.25392532 } ] }, @@ -9370,15 +17264,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.000588353956 + "Item1": -1E-05, + "Item2": 0.2842029 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612935) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002885876, -0.003103785) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.000588354)", - "Label": "Â", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.206955E-05, 17.84262) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.207005, 6.253925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2842029)", + "Label": "ª", "hasCustomLabel": false, - "LabelId": 77 + "LabelId": 106 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612917) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00220649, -0.002373099) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.000449845)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.799516, 19.61994) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.413935, -6.231718) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5728211)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -9400,11 +17294,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 0.799516 }, { "kind": "OMF", - "float": 0.661291659 + "float": 19.619936 } ] }, @@ -9435,11 +17329,11 @@ }, { "kind": "OMF", - "float": 0.00220648968 + "float": 1.41393542 }, { "kind": "OMF", - "float": -0.002373099 + "float": -6.23171759 } ] }, @@ -9517,15 +17411,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.000449845 + "Item1": -1E-05, + "Item2": 0.5728211 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612917) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00220649, -0.002373099) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.000449845)", - "Label": "ÂŽ", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.799516, 19.61994) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.413935, -6.231718) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5728211)", + "Label": "«", "hasCustomLabel": false, - "LabelId": 78 + "LabelId": 107 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612906) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001687043, -0.00181443) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0003439435)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.801053E-05, 16.05022) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.813024, -5.650228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7773848)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -9547,11 +17441,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 3.80105339E-05 }, { "kind": "OMF", - "float": 0.6612906 + "float": 16.05022 } ] }, @@ -9582,11 +17476,11 @@ }, { "kind": "OMF", - "float": 0.00168704288 + "float": 3.81302357 }, { "kind": "OMF", - "float": -0.00181442953 + "float": -5.650228 } ] }, @@ -9664,15 +17558,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.0003439435 + "Item1": -1E-05, + "Item2": 0.7773848 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612906) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001687043, -0.00181443) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0003439435)", - "Label": "Â", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.801053E-05, 16.05022) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.813024, -5.650228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7773848)", + "Label": "¬", "hasCustomLabel": false, - "LabelId": 79 + "LabelId": 108 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.684342E-14, 0.66129) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001289883, -0.001387281) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0002629731)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.303209E-05, 11.65777) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.279417, -4.859393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6685966)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -9694,11 +17588,11 @@ }, { "kind": "OMF", - "float": 5.684342E-14 + "float": 3.303209E-05 }, { "kind": "OMF", - "float": 0.66129 + "float": 11.65777 } ] }, @@ -9729,11 +17623,11 @@ }, { "kind": "OMF", - "float": 0.00128988281 + "float": 3.27941656 }, { "kind": "OMF", - "float": -0.00138728053 + "float": -4.85939264 } ] }, @@ -9811,15 +17705,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.0002629731 + "Item1": -1E-05, + "Item2": 0.668596566 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.684342E-14, 0.66129) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001289883, -0.001387281) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0002629731)", - "Label": "Â", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.303209E-05, 11.65777) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.279417, -4.859393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6685966)", + "Label": "Â", "hasCustomLabel": false, - "LabelId": 80 + "LabelId": 109 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612896) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0009862219, -0.00106069) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0002010646)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.844296E-05, 8.408755) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.820503, -4.179256) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5750363)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -9841,11 +17735,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 2.844296E-05 }, { "kind": "OMF", - "float": 0.661289632 + "float": 8.408755 } ] }, @@ -9876,11 +17770,11 @@ }, { "kind": "OMF", - "float": 0.0009862219 + "float": 2.82050347 }, { "kind": "OMF", - "float": -0.00106069015 + "float": -4.179256 } ] }, @@ -9958,15 +17852,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.000201064628 + "Item1": -1E-05, + "Item2": 0.5750363 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612896) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0009862219, -0.00106069) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0002010646)", - "Label": "‘", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.844296E-05, 8.408755) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.820503, -4.179256) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5750363)", + "Label": "®", "hasCustomLabel": false, - "LabelId": 81 + "LabelId": 110 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612894) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0007540478, -0.0008109849) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0001537304)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.4377E-05, 6.005496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.425828, -3.594323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4945723)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -9988,11 +17882,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 2.43769973E-05 }, { "kind": "OMF", - "float": 0.6612894 + "float": 6.00549555 } ] }, @@ -10023,11 +17917,11 @@ }, { "kind": "OMF", - "float": 0.0007540478 + "float": 2.425828 }, { "kind": "OMF", - "float": -0.0008109849 + "float": -3.5943234 } ] }, @@ -10105,15 +17999,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.000153730449 + "Item1": -1E-05, + "Item2": 0.494572341 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612894) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0007540478, -0.0008109849) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0001537304)", - "Label": "Â’", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.4377E-05, 6.005496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.425828, -3.594323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4945723)", + "Label": "¯", "hasCustomLabel": false, - "LabelId": 82 + "LabelId": 111 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612893) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0005765316, -0.0006200647) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0001175396)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086349E-05, 4.227811) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086398, -3.091268) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4253715)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -10135,11 +18029,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 2.08634865E-05 }, { "kind": "OMF", - "float": 0.6612893 + "float": 4.22781134 } ] }, @@ -10170,11 +18064,11 @@ }, { "kind": "OMF", - "float": 0.000576531631 + "float": 2.086398 }, { "kind": "OMF", - "float": -0.0006200647 + "float": -3.091268 } ] }, @@ -10252,15 +18146,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 0.000117539581 + "Item1": -1E-05, + "Item2": 0.425371468 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612893) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0005765316, -0.0006200647) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0001175396)", - "Label": "“", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086349E-05, 4.227811) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086398, -3.091268) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4253715)", + "Label": "°", "hasCustomLabel": false, - "LabelId": 83 + "LabelId": 112 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0004408059, -0.0004740905) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 8.986868E-05)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.794431E-05, 2.912848) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.79448, -2.658629) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3658572)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -10282,11 +18176,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 1.79443123E-05 }, { "kind": "OMF", - "float": 0.6612892 + "float": 2.91284752 } ] }, @@ -10317,11 +18211,11 @@ }, { "kind": "OMF", - "float": 0.000440805859 + "float": 1.79448032 }, { "kind": "OMF", - "float": -0.000474090455 + "float": -2.65862942 } ] }, @@ -10399,15 +18293,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 8.98686849E-05 + "Item1": -1E-05, + "Item2": 0.365857184 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0004408059, -0.0004740905) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 8.986868E-05)", - "Label": "”", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.794431E-05, 2.912848) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.79448, -2.658629) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3658572)", + "Label": "±", "hasCustomLabel": false, - "LabelId": 84 + "LabelId": 113 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0003370324, -0.0003624812) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 6.871201E-05)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543375E-05, 1.940146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543425, -2.28655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3146735)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -10429,11 +18323,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 1.5433754E-05 }, { "kind": "OMF", - "float": 0.661289155 + "float": 1.940146 } ] }, @@ -10464,11 +18358,11 @@ }, { "kind": "OMF", - "float": 0.0003370324 + "float": 1.54342461 }, { "kind": "OMF", - "float": -0.000362481165 + "float": -2.28655028 } ] }, @@ -10546,15 +18440,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 6.871201E-05 + "Item1": -1E-05, + "Item2": 0.314673543 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0003370324, -0.0003624812) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 6.871201E-05)", - "Label": "•", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543375E-05, 1.940146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543425, -2.28655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3146735)", + "Label": "²", "hasCustomLabel": false, - "LabelId": 85 + "LabelId": 114 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.000257689, -0.0002771467) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 5.253599E-05)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.330442E-05, 1.220609) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.327511, -1.966554) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2706544)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -10576,11 +18470,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 1.33044205E-05 }, { "kind": "OMF", - "float": 0.661289155 + "float": 1.22060943 } ] }, @@ -10611,11 +18505,11 @@ }, { "kind": "OMF", - "float": 0.000257689 + "float": 1.32751083 }, { "kind": "OMF", - "float": -0.000277146668 + "float": -1.96655393 } ] }, @@ -10693,15 +18587,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 5.253599E-05 + "Item1": -1E-05, + "Item2": 0.27065444 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.000257689, -0.0002771467) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 5.253599E-05)", - "Label": "–", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.330442E-05, 1.220609) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.327511, -1.966554) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2706544)", + "Label": "³", "hasCustomLabel": false, - "LabelId": 86 + "LabelId": 115 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001970245, -0.0002119015) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 4.016809E-05)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.141771E-05, 0.688336) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.14182, -1.69135) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.232797)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -10723,11 +18617,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 1.14177128E-05 }, { "kind": "OMF", - "float": 0.661289155 + "float": 0.688335955 } ] }, @@ -10758,11 +18652,11 @@ }, { "kind": "OMF", - "float": 0.000197024463 + "float": 1.14182031 }, { "kind": "OMF", - "float": -0.000211901453 + "float": -1.69134974 } ] }, @@ -10840,15 +18734,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 4.01680882E-05 + "Item1": -1E-05, + "Item2": 0.232797027 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001970245, -0.0002119015) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 4.016809E-05)", - "Label": "—", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.141771E-05, 0.688336) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.14182, -1.69135) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.232797)", + "Label": "´", "hasCustomLabel": false, - "LabelId": 87 + "LabelId": 116 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001506414, -0.0001620161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 3.071181E-05)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.820731E-06, 0.2945802) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.9821221, -1.454668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2002388)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -10870,11 +18764,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 9.820731E-06 }, { "kind": "OMF", - "float": 0.661289155 + "float": 0.294580221 } ] }, @@ -10905,11 +18799,11 @@ }, { "kind": "OMF", - "float": 0.000150641426 + "float": 0.9821221 }, { "kind": "OMF", - "float": -0.0001620161 + "float": -1.45466793 } ] }, @@ -10987,15 +18881,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 3.071181E-05 + "Item1": -1E-05, + "Item2": 0.200238779 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001506414, -0.0001620161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 3.071181E-05)", - "Label": "˜", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.820731E-06, 0.2945802) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.9821221, -1.454668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2002388)", + "Label": "µ", "hasCustomLabel": false, - "LabelId": 88 + "LabelId": 117 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.440892E-16, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001151777, -0.0001238746) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 2.348171E-05)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.44729E-06, 0.003286785) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8447781, -1.251116) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002627082)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -11017,11 +18911,11 @@ }, { "kind": "OMF", - "float": 4.440892E-16 + "float": 8.44729E-06 }, { "kind": "OMF", - "float": 0.661289155 + "float": 0.00328678475 } ] }, @@ -11052,11 +18946,11 @@ }, { "kind": "OMF", - "float": 0.00011517774 + "float": 0.8447781 }, { "kind": "OMF", - "float": -0.000123874648 + "float": -1.25111628 } ] }, @@ -11134,15 +19028,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 2.34817053E-05 + "Item1": -1E-05, + "Item2": 0.002627082 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.440892E-16, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001151777, -0.0001238746) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 2.348171E-05)", - "Label": "™", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.44729E-06, 0.003286785) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8447781, -1.251116) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002627082)", + "Label": "¶", "hasCustomLabel": false, - "LabelId": 89 + "LabelId": 118 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.220446E-16, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.80629E-05, -9.471237E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.79537E-05)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002202011, 1.239552E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8114513, 1.239575) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1681041)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -11164,11 +19058,11 @@ }, { "kind": "OMF", - "float": -2.220446E-16 + "float": 0.00220201071 }, { "kind": "OMF", - "float": 0.661289155 + "float": 1.2395516E-05 } ] }, @@ -11199,11 +19093,11 @@ }, { "kind": "OMF", - "float": 8.80629E-05 + "float": 0.8114513 }, { "kind": "OMF", - "float": -9.471237E-05 + "float": 1.23957491 } ] }, @@ -11281,15 +19175,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 1.79536983E-05 + "Item1": -1E-05, + "Item2": 0.168104067 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.220446E-16, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.80629E-05, -9.471237E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.79537E-05)", - "Label": "š", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002202011, 1.239552E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8114513, 1.239575) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1681041)", + "Label": "·", "hasCustomLabel": false, - "LabelId": 90 + "LabelId": 119 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.733131E-05, -7.24154E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.372708E-05)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.204322E-06, 0.2084007) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.7204813, 1.066187) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1468971)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -11311,11 +19205,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 7.20432172E-06 }, { "kind": "OMF", - "float": 0.661289155 + "float": 0.208400652 } ] }, @@ -11346,11 +19240,11 @@ }, { "kind": "OMF", - "float": 6.733131E-05 + "float": 0.7204813 }, { "kind": "OMF", - "float": -7.24154E-05 + "float": 1.06618655 } ] }, @@ -11428,15 +19322,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 1.37270772E-05 + "Item1": -1E-05, + "Item2": 0.146897122 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.733131E-05, -7.24154E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.372708E-05)", - "Label": "›", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.204322E-06, 0.2084007) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.7204813, 1.066187) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1468971)", + "Label": "¸", "hasCustomLabel": false, - "LabelId": 91 + "LabelId": 120 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.148033E-05, -5.536753E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.049548E-05)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.197441E-06, 0.3650296) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.6197932, 0.9170609) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1263695)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -11458,11 +19352,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 6.197441E-06 }, { "kind": "OMF", - "float": 0.661289155 + "float": 0.365029573 } ] }, @@ -11493,11 +19387,11 @@ }, { "kind": "OMF", - "float": 5.148033E-05 + "float": 0.6197932 }, { "kind": "OMF", - "float": -5.536753E-05 + "float": 0.9170609 } ] }, @@ -11575,15 +19469,15 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": 1.04954806E-05 + "Item1": -1E-05, + "Item2": 0.126369476 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.148033E-05, -5.536753E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.049548E-05)", - "Label": "Âœ", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.197441E-06, 0.3650296) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.6197932, 0.9170609) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1263695)", + "Label": "¹", "hasCustomLabel": false, - "LabelId": 92 + "LabelId": 121 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.936095E-05, -4.233303E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, Infinity)": { + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.331456E-06, 0.480926) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.5331947, 0.7888028) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1087143)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", "Function_SOMDoc": { "kind": "OMA", @@ -11605,11 +19499,11 @@ }, { "kind": "OMF", - "float": 0.0 + "float": 5.33145567E-06 }, { "kind": "OMF", - "float": 0.661289155 + "float": 0.480925977 } ] }, @@ -11640,11 +19534,11 @@ }, { "kind": "OMF", - "float": 3.9360948E-05 + "float": 0.533194661 }, { "kind": "OMF", - "float": -4.233303E-05 + "float": 0.7888028 } ] }, @@ -11722,1700 +19616,23654 @@ ] }, "Domain": { - "Item1": 0.0, - "Item2": "Infinity" + "Item1": -1E-05, + "Item2": 0.10871432 }, - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.936095E-05, -4.233303E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, Infinity)", - "Label": "Â", - "hasCustomLabel": false, - "LabelId": 93 - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5592{t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.715, 18.639) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.3575, -24.0345) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2859924), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.418, 11.76532) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.81013, -15.33226) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1896955), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.62, 8.856853) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.56049, -14.95858) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.5920918), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.6872, 0) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -20.71589, 14.50145) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2233716), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.815126, 3.239212) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.088061, -26.67258) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1214435), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.874923, -2.384186E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -0.1032848, 26.66929) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1209298), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.790701, 3.225111) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 22.11182, -14.23284) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2265964), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.549308, -2.384186E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.28769, 13.8026) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6978087), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.62, 9.631574) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -12.11062, 13.43478) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.3298803), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.09118, 14.06344) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.80479, 19.21664) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2891534), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.5809, 19.62) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.57104, -19.0131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.8358453), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.661715, 3.727991) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -22.95221, -3.161415) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1949807), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.490116E-08, 3.111576) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.96413, -3.046878) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1255537), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.931463, 2.729029) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.473647, 20.59326) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2774679), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.905, 8.442996) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.513967, 19.74212) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.56615), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2110889, 19.62) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.88789, -19.42103) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01922107), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.841706E-09, 19.24671) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.849987, -15.51724) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.027901), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.914383, 3.296518) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -13.78543, 6.561788) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2599138), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.960464E-08, 5.002018) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.5477, 5.843759) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 2.339293), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.189739, 18.67228) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.211595, -4.33007) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 2.099828), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.905001, 9.579883) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.256, -4.279988) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.349196), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.16284, 3.805339) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.279988, -1.979609) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.134112), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.536743E-07, 1.560241) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.84159, -1.907133) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.8181087), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.859114, -3.576279E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.534343, 1.828338) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.856556), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.083937, 3.394411) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.135024, -10.71493) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.3167926), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.281738, -2.384186E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.105723, 10.5122) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2705758), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.980232E-08, 2.844347) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.460365, 8.035274) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.520972), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 15.06577) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.288472, 6.773072) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6724024), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.010711, 19.62) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -0.3073506, -6.763281) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6096942), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 15.49647) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.301509, -5.701818) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.080838), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 9.333727) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.05344, -4.359509) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.8263894), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 5.731075) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.099188, -3.333203) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6318427), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 3.625015) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.369584, -2.548508) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.4830957), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 2.393842) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.811742, -1.948544) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.3693664), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 1.674116) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.385226, -1.489822) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.282411), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 1.253373) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.059119, -1.139092) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2159265), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 1.007413) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8097838, -0.8709294) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1650936), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.490116E-08, 0.8636284) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.6191465, -0.6658972) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1262276), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.7795739) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4733882, -0.5091332) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.09651136), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.7304367) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3619443, -0.3892742) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.07379089), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.862645E-09, 0.7017118) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2767362, -0.2976321) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0564192), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6849197) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2115875, -0.2275642) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.04313712), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6751032) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1617761, -0.1739916) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.03298188), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6693646) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1236911, -0.1330309) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.02521736), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.66601) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.09457205, -0.1017131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01928075), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.164153E-10, 0.6640489) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.07230812, -0.07776801) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01474172), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6629024) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0552855, -0.05946004) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01127125), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6622322) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04227031, -0.04546209) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.008617802), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6618404) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03231913, -0.03475951) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.006589018), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6616114) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02471064, -0.02657651) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.005037847), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6614775) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01889331, -0.02031993) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.003851848), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613992) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01444549, -0.01553626) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.002945055), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613535) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01104477, -0.01187875) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.002251737), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613267) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.008444633, -0.009082278) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.001721638), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613111) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006456617, -0.006944149) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.001316334), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.661302) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004936615, -0.005309373) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.001006445), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612966) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003774448, -0.004059452) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0007695103), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612935) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002885876, -0.003103785) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.000588354), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612917) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00220649, -0.002373099) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.000449845), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612906) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001687043, -0.00181443) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0003439435), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.684342E-14, 0.66129) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001289883, -0.001387281) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0002629731), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612896) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0009862219, -0.00106069) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0002010646), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612894) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0007540478, -0.0008109849) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0001537304), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612893) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0005765316, -0.0006200647) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0001175396), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0004408059, -0.0004740905) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 8.986868E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0003370324, -0.0003624812) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 6.871201E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.000257689, -0.0002771467) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 5.253599E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001970245, -0.0002119015) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 4.016809E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001506414, -0.0001620161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 3.071181E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.440892E-16, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001151777, -0.0001238746) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 2.348171E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.220446E-16, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.80629E-05, -9.471237E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.79537E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.733131E-05, -7.24154E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.372708E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.148033E-05, -5.536753E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.049548E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.936095E-05, -4.233303E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, Infinity)}": { - "fid": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5592", - "funcids": [ - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.715, 18.639) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.3575, -24.0345) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2859924)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.418, 11.76532) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.81013, -15.33226) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1896955)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.62, 8.856853) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.56049, -14.95858) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.5920918)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.6872, 0) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -20.71589, 14.50145) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2233716)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.815126, 3.239212) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.088061, -26.67258) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1214435)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.874923, -2.384186E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -0.1032848, 26.66929) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1209298)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.790701, 3.225111) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 22.11182, -14.23284) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2265964)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.549308, -2.384186E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.28769, 13.8026) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6978087)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.62, 9.631574) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -12.11062, 13.43478) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.3298803)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.09118, 14.06344) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.80479, 19.21664) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2891534)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.5809, 19.62) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.57104, -19.0131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.8358453)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.661715, 3.727991) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -22.95221, -3.161415) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1949807)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.490116E-08, 3.111576) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.96413, -3.046878) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1255537)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.931463, 2.729029) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.473647, 20.59326) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2774679)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.905, 8.442996) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.513967, 19.74212) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.56615)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2110889, 19.62) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.88789, -19.42103) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01922107)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.841706E-09, 19.24671) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.849987, -15.51724) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.027901)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.914383, 3.296518) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -13.78543, 6.561788) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2599138)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.960464E-08, 5.002018) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.5477, 5.843759) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 2.339293)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.189739, 18.67228) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.211595, -4.33007) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 2.099828)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.905001, 9.579883) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.256, -4.279988) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.349196)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.16284, 3.805339) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.279988, -1.979609) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.134112)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.536743E-07, 1.560241) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.84159, -1.907133) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.8181087)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.859114, -3.576279E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.534343, 1.828338) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.856556)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.083937, 3.394411) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.135024, -10.71493) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.3167926)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.281738, -2.384186E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.105723, 10.5122) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2705758)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.980232E-08, 2.844347) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.460365, 8.035274) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.520972)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 15.06577) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.288472, 6.773072) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6724024)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.010711, 19.62) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -0.3073506, -6.763281) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6096942)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 15.49647) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.301509, -5.701818) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.080838)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 9.333727) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.05344, -4.359509) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.8263894)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 5.731075) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.099188, -3.333203) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6318427)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 3.625015) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.369584, -2.548508) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.4830957)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 2.393842) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.811742, -1.948544) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.3693664)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 1.674116) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.385226, -1.489822) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.282411)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 1.253373) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.059119, -1.139092) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2159265)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 1.007413) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8097838, -0.8709294) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1650936)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.490116E-08, 0.8636284) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.6191465, -0.6658972) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1262276)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.7795739) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4733882, -0.5091332) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.09651136)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.7304367) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3619443, -0.3892742) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.07379089)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.862645E-09, 0.7017118) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2767362, -0.2976321) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0564192)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6849197) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2115875, -0.2275642) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.04313712)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6751032) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1617761, -0.1739916) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.03298188)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6693646) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1236911, -0.1330309) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.02521736)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.66601) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.09457205, -0.1017131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01928075)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.164153E-10, 0.6640489) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.07230812, -0.07776801) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01474172)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6629024) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0552855, -0.05946004) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01127125)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6622322) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04227031, -0.04546209) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.008617802)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6618404) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03231913, -0.03475951) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.006589018)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6616114) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02471064, -0.02657651) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.005037847)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6614775) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01889331, -0.02031993) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.003851848)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613992) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01444549, -0.01553626) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.002945055)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613535) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01104477, -0.01187875) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.002251737)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613267) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.008444633, -0.009082278) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.001721638)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613111) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006456617, -0.006944149) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.001316334)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.661302) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004936615, -0.005309373) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.001006445)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612966) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003774448, -0.004059452) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0007695103)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612935) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002885876, -0.003103785) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.000588354)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612917) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00220649, -0.002373099) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.000449845)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612906) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001687043, -0.00181443) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0003439435)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.684342E-14, 0.66129) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001289883, -0.001387281) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0002629731)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612896) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0009862219, -0.00106069) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0002010646)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612894) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0007540478, -0.0008109849) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0001537304)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612893) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0005765316, -0.0006200647) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0001175396)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0004408059, -0.0004740905) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 8.986868E-05)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0003370324, -0.0003624812) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 6.871201E-05)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.000257689, -0.0002771467) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 5.253599E-05)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001970245, -0.0002119015) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 4.016809E-05)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001506414, -0.0001620161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 3.071181E-05)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.440892E-16, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001151777, -0.0001238746) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 2.348171E-05)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.220446E-16, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.80629E-05, -9.471237E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.79537E-05)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.733131E-05, -7.24154E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.372708E-05)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.148033E-05, -5.536753E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.049548E-05)", - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.936095E-05, -4.233303E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, Infinity)" - ], - "s_type": "AttachedPositionFunction", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5592{t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.715, 18.639) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.3575, -24.0345) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2859924), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.418, 11.76532) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.81013, -15.33226) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1896955), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.62, 8.856853) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.56049, -14.95858) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.5920918), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.6872, 0) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -20.71589, 14.50145) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2233716), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.815126, 3.239212) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.088061, -26.67258) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1214435), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.874923, -2.384186E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -0.1032848, 26.66929) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1209298), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.790701, 3.225111) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 22.11182, -14.23284) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2265964), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.549308, -2.384186E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.28769, 13.8026) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6978087), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.62, 9.631574) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -12.11062, 13.43478) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.3298803), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.09118, 14.06344) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.80479, 19.21664) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2891534), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.5809, 19.62) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.57104, -19.0131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.8358453), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.661715, 3.727991) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -22.95221, -3.161415) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1949807), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.490116E-08, 3.111576) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.96413, -3.046878) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1255537), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.931463, 2.729029) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.473647, 20.59326) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2774679), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.905, 8.442996) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.513967, 19.74212) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.56615), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2110889, 19.62) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.88789, -19.42103) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01922107), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.841706E-09, 19.24671) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.849987, -15.51724) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.027901), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.914383, 3.296518) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -13.78543, 6.561788) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2599138), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.960464E-08, 5.002018) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.5477, 5.843759) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 2.339293), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.189739, 18.67228) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.211595, -4.33007) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 2.099828), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.905001, 9.579883) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.256, -4.279988) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.349196), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.16284, 3.805339) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.279988, -1.979609) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.134112), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.536743E-07, 1.560241) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.84159, -1.907133) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.8181087), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.859114, -3.576279E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.534343, 1.828338) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.856556), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.083937, 3.394411) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.135024, -10.71493) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.3167926), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.281738, -2.384186E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.105723, 10.5122) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2705758), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.980232E-08, 2.844347) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.460365, 8.035274) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.520972), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 15.06577) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.288472, 6.773072) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6724024), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.010711, 19.62) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -0.3073506, -6.763281) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6096942), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 15.49647) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.301509, -5.701818) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.080838), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 9.333727) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.05344, -4.359509) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.8263894), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 5.731075) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.099188, -3.333203) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6318427), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 3.625015) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.369584, -2.548508) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.4830957), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 2.393842) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.811742, -1.948544) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.3693664), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 1.674116) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.385226, -1.489822) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.282411), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 1.253373) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.059119, -1.139092) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2159265), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 1.007413) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8097838, -0.8709294) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1650936), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.490116E-08, 0.8636284) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.6191465, -0.6658972) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1262276), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.7795739) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4733882, -0.5091332) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.09651136), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.7304367) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3619443, -0.3892742) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.07379089), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.862645E-09, 0.7017118) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2767362, -0.2976321) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0564192), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6849197) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2115875, -0.2275642) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.04313712), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6751032) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1617761, -0.1739916) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.03298188), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6693646) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1236911, -0.1330309) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.02521736), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.66601) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.09457205, -0.1017131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01928075), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.164153E-10, 0.6640489) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.07230812, -0.07776801) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01474172), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6629024) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0552855, -0.05946004) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01127125), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6622322) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04227031, -0.04546209) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.008617802), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6618404) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03231913, -0.03475951) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.006589018), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6616114) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02471064, -0.02657651) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.005037847), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6614775) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01889331, -0.02031993) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.003851848), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613992) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01444549, -0.01553626) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.002945055), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613535) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01104477, -0.01187875) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.002251737), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613267) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.008444633, -0.009082278) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.001721638), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613111) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006456617, -0.006944149) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.001316334), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.661302) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004936615, -0.005309373) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.001006445), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612966) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003774448, -0.004059452) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0007695103), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612935) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002885876, -0.003103785) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.000588354), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612917) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00220649, -0.002373099) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.000449845), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612906) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001687043, -0.00181443) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0003439435), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.684342E-14, 0.66129) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001289883, -0.001387281) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0002629731), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612896) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0009862219, -0.00106069) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0002010646), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612894) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0007540478, -0.0008109849) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0001537304), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612893) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0005765316, -0.0006200647) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0001175396), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0004408059, -0.0004740905) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 8.986868E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0003370324, -0.0003624812) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 6.871201E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.000257689, -0.0002771467) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 5.253599E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001970245, -0.0002119015) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 4.016809E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001506414, -0.0001620161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 3.071181E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.440892E-16, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001151777, -0.0001238746) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 2.348171E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.220446E-16, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.80629E-05, -9.471237E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.79537E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.733131E-05, -7.24154E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.372708E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.148033E-05, -5.536753E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.049548E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.936095E-05, -4.233303E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, Infinity)}", - "Label": "ž", + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.331456E-06, 0.480926) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.5331947, 0.7888028) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1087143)", + "Label": "º", "hasCustomLabel": false, - "LabelId": 94 - } - }, - "MetaInf": { - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5556": { - "workflow_id": 0, - "active": true, - "isImmutable": false - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5557": { - "workflow_id": 1, - "active": true, - "isImmutable": false - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5558": { - "workflow_id": 2, - "active": true, - "isImmutable": false - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5559": { - "workflow_id": 3, - "active": true, - "isImmutable": false - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5560": { - "workflow_id": 4, - "active": true, - "isImmutable": false - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5561": { - "workflow_id": 5, - "active": true, - "isImmutable": false - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5562": { - "workflow_id": 6, - "active": true, - "isImmutable": false - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5563": { - "workflow_id": 7, - "active": true, - "isImmutable": false - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5564": { - "workflow_id": 8, - "active": true, - "isImmutable": false - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5567": { - "workflow_id": 9, - "active": true, - "isImmutable": false - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5568": { - "workflow_id": 10, - "active": true, - "isImmutable": false - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5569": { - "workflow_id": 11, - "active": true, - "isImmutable": false - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5570": { - "workflow_id": 12, - "active": true, - "isImmutable": false - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5571": { - "workflow_id": 13, - "active": true, - "isImmutable": false - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5572": { - "workflow_id": 14, - "active": true, - "isImmutable": false - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5573": { - "workflow_id": 15, - "active": true, - "isImmutable": false - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5574": { - "workflow_id": 16, - "active": true, - "isImmutable": false - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5575": { - "workflow_id": 17, - "active": true, - "isImmutable": false - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5576": { - "workflow_id": 18, - "active": true, - "isImmutable": false - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5577": { - "workflow_id": 19, - "active": true, - "isImmutable": false - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5578": { - "workflow_id": 20, - "active": true, - "isImmutable": false - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5579": { - "workflow_id": 21, - "active": true, - "isImmutable": false - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5580": { - "workflow_id": 22, - "active": true, - "isImmutable": false - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5581": { - "workflow_id": 23, - "active": true, - "isImmutable": false - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5582": { - "workflow_id": 24, - "active": true, - "isImmutable": false - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5583": { - "workflow_id": 25, - "active": true, - "isImmutable": false - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5584": { - "workflow_id": 26, - "active": true, - "isImmutable": false - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5585": { - "workflow_id": 27, - "active": true, - "isImmutable": false - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5588": { - "workflow_id": 28, - "active": true, - "isImmutable": false - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5591": { - "workflow_id": 29, - "active": true, - "isImmutable": false - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5592": { - "workflow_id": 30, - "active": true, - "isImmutable": false - }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.715, 18.639) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.3575, -24.0345) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2859924)": { - "workflow_id": 31, - "active": true, - "isImmutable": false - }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.418, 11.76532) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.81013, -15.33226) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1896955)": { - "workflow_id": 32, - "active": true, - "isImmutable": false - }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.62, 8.856853) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.56049, -14.95858) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.5920918)": { - "workflow_id": 33, - "active": true, - "isImmutable": false - }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.6872, 0) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -20.71589, 14.50145) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2233716)": { - "workflow_id": 34, - "active": true, - "isImmutable": false - }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.815126, 3.239212) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.088061, -26.67258) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1214435)": { - "workflow_id": 35, - "active": true, - "isImmutable": false - }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.874923, -2.384186E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -0.1032848, 26.66929) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1209298)": { - "workflow_id": 36, - "active": true, - "isImmutable": false - }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.790701, 3.225111) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 22.11182, -14.23284) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2265964)": { - "workflow_id": 37, - "active": true, - "isImmutable": false - }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.549308, -2.384186E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.28769, 13.8026) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6978087)": { - "workflow_id": 38, - "active": true, - "isImmutable": false - }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.62, 9.631574) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -12.11062, 13.43478) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.3298803)": { - "workflow_id": 39, - "active": true, - "isImmutable": false - }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.09118, 14.06344) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.80479, 19.21664) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2891534)": { - "workflow_id": 40, - "active": true, - "isImmutable": false - }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.5809, 19.62) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.57104, -19.0131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.8358453)": { - "workflow_id": 41, - "active": true, - "isImmutable": false - }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.661715, 3.727991) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -22.95221, -3.161415) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1949807)": { - "workflow_id": 42, - "active": true, - "isImmutable": false - }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.490116E-08, 3.111576) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.96413, -3.046878) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1255537)": { - "workflow_id": 43, - "active": true, - "isImmutable": false - }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.931463, 2.729029) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.473647, 20.59326) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2774679)": { - "workflow_id": 44, - "active": true, - "isImmutable": false - }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.905, 8.442996) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.513967, 19.74212) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.56615)": { - "workflow_id": 45, - "active": true, - "isImmutable": false - }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2110889, 19.62) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.88789, -19.42103) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01922107)": { - "workflow_id": 46, - "active": true, - "isImmutable": false - }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.841706E-09, 19.24671) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.849987, -15.51724) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.027901)": { - "workflow_id": 47, - "active": true, - "isImmutable": false - }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.914383, 3.296518) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -13.78543, 6.561788) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2599138)": { - "workflow_id": 48, - "active": true, - "isImmutable": false - }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.960464E-08, 5.002018) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.5477, 5.843759) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 2.339293)": { - "workflow_id": 49, - "active": true, - "isImmutable": false - }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.189739, 18.67228) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.211595, -4.33007) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 2.099828)": { - "workflow_id": 50, - "active": true, - "isImmutable": false - }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.905001, 9.579883) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.256, -4.279988) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.349196)": { - "workflow_id": 51, - "active": true, - "isImmutable": false - }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.16284, 3.805339) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.279988, -1.979609) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.134112)": { - "workflow_id": 52, - "active": true, - "isImmutable": false - }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.536743E-07, 1.560241) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.84159, -1.907133) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.8181087)": { - "workflow_id": 53, - "active": true, - "isImmutable": false - }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.859114, -3.576279E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.534343, 1.828338) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.856556)": { - "workflow_id": 54, - "active": true, - "isImmutable": false - }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.083937, 3.394411) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.135024, -10.71493) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.3167926)": { - "workflow_id": 55, - "active": true, - "isImmutable": false - }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.281738, -2.384186E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.105723, 10.5122) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2705758)": { - "workflow_id": 56, - "active": true, - "isImmutable": false - }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.980232E-08, 2.844347) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.460365, 8.035274) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.520972)": { - "workflow_id": 57, - "active": true, - "isImmutable": false - }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 15.06577) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.288472, 6.773072) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6724024)": { - "workflow_id": 58, - "active": true, - "isImmutable": false + "LabelId": 122 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.010711, 19.62) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -0.3073506, -6.763281) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6096942)": { - "workflow_id": 59, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582926E-06, 0.5666869) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4587142, 0.6784922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0935297)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 4.58292561E-06 + }, + { + "kind": "OMF", + "float": 0.5666869 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.458714157 + }, + { + "kind": "OMF", + "float": 0.678492248 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0935297 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582926E-06, 0.5666869) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4587142, 0.6784922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0935297)", + "Label": "»", + "hasCustomLabel": false, + "LabelId": 123 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 15.49647) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.301509, -5.701818) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.080838)": { - "workflow_id": 60, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.946068E-06, 0.6301519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3946559, 0.5836178) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.08046991)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 3.946068E-06 + }, + { + "kind": "OMF", + "float": 0.6301519 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.394655854 + }, + { + "kind": "OMF", + "float": 0.5836178 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0804699138 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.946068E-06, 0.6301519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3946559, 0.5836178) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.08046991)", + "Label": "¼", + "hasCustomLabel": false, + "LabelId": 124 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 9.333727) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.05344, -4.359509) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.8263894)": { - "workflow_id": 61, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.391399E-06, 0.6771206) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3395615, 0.5020194) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.06923762)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 3.39139933E-06 + }, + { + "kind": "OMF", + "float": 0.6771206 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.339561522 + }, + { + "kind": "OMF", + "float": 0.5020194 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.06923762 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.391399E-06, 0.6771206) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3395615, 0.5020194) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.06923762)", + "Label": "½", + "hasCustomLabel": false, + "LabelId": 125 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 5.731075) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.099188, -3.333203) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6318427)": { - "workflow_id": 62, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.921276E-06, 0.7118835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2921766, 0.4318393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0595771)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 2.92127561E-06 + }, + { + "kind": "OMF", + "float": 0.711883545 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.2921766 + }, + { + "kind": "OMF", + "float": 0.4318393 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0595770963 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.921276E-06, 0.7118835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2921766, 0.4318393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0595771)", + "Label": "¾", + "hasCustomLabel": false, + "LabelId": 126 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 3.625015) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.369584, -2.548508) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.4830957)": { - "workflow_id": 63, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.513734E-06, 0.737615) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2514225, 0.3714797) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0512684)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 2.51373422E-06 + }, + { + "kind": "OMF", + "float": 0.737615 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.251422465 + }, + { + "kind": "OMF", + "float": 0.3714797 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0512684025 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.513734E-06, 0.737615) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2514225, 0.3714797) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0512684)", + "Label": "¿", + "hasCustomLabel": false, + "LabelId": 127 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 2.393842) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.811742, -1.948544) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.3693664)": { - "workflow_id": 64, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.163221E-06, 0.7566634) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2163712, 0.3195664) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.04412237)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 2.16322132E-06 + }, + { + "kind": "OMF", + "float": 0.7566634 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.216371179 + }, + { + "kind": "OMF", + "float": 0.319566369 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0441223681 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.163221E-06, 0.7566634) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2163712, 0.3195664) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.04412237)", + "Label": "À", + "hasCustomLabel": false, + "LabelId": 128 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 1.674116) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.385226, -1.489822) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.282411)": { - "workflow_id": 65, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.862688E-06, 0.7707661) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1862247, 0.2749174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03797631)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.86268824E-06 + }, + { + "kind": "OMF", + "float": 0.770766139 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.186224744 + }, + { + "kind": "OMF", + "float": 0.274917424 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.03797631 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.862688E-06, 0.7707661) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1862247, 0.2749174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03797631)", + "Label": "Ã", + "hasCustomLabel": false, + "LabelId": 129 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 1.253373) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.059119, -1.139092) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2159265)": { - "workflow_id": 66, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.602478E-06, 0.7812089) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1602968, 0.2365163) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03269029)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.60247794E-06 + }, + { + "kind": "OMF", + "float": 0.7812089 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.160296842 + }, + { + "kind": "OMF", + "float": 0.236516342 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.03269029 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.602478E-06, 0.7812089) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1602968, 0.2365163) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03269029)", + "Label": "Â", + "hasCustomLabel": false, + "LabelId": 130 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 1.007413) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8097838, -0.8709294) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1650936)": { - "workflow_id": 67, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.379015E-06, 0.7889427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1379971, 0.2034888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02814396)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.37901486E-06 + }, + { + "kind": "OMF", + "float": 0.7889427 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.1379971 + }, + { + "kind": "OMF", + "float": 0.203488842 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0281439573 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.379015E-06, 0.7889427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1379971, 0.2034888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02814396)", + "Label": "Ã", + "hasCustomLabel": false, + "LabelId": 131 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.490116E-08, 0.8636284) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.6191465, -0.6658972) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1262276)": { - "workflow_id": 68, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.18792E-06, 0.7946714) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1188178, 0.175083) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02423381)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.18792047E-06 + }, + { + "kind": "OMF", + "float": 0.7946714 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.118817806 + }, + { + "kind": "OMF", + "float": 0.175082952 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0242338087 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.18792E-06, 0.7946714) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1188178, 0.175083) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02423381)", + "Label": "Ä", + "hasCustomLabel": false, + "LabelId": 132 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.7795739) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4733882, -0.5091332) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.09651136)": { - "workflow_id": 69, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.022733E-06, 0.7989158) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1023224, 0.150652) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02087083)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.0227335E-06 + }, + { + "kind": "OMF", + "float": 0.7989158 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.102322392 + }, + { + "kind": "OMF", + "float": 0.150651976 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0208708253 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.022733E-06, 0.7989158) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1023224, 0.150652) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02087083)", + "Label": "Ã…", + "hasCustomLabel": false, + "LabelId": 133 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.7304367) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3619443, -0.3892742) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.07379089)": { - "workflow_id": 70, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.80862E-07, 0.8020613) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.08813525, 0.1296397) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01797844)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 8.80862E-07 + }, + { + "kind": "OMF", + "float": 0.8020613 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.08813525 + }, + { + "kind": "OMF", + "float": 0.1296397 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.017978441 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.80862E-07, 0.8020613) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.08813525, 0.1296397) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01797844)", + "Label": "Æ", + "hasCustomLabel": false, + "LabelId": 134 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.862645E-09, 0.7017118) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2767362, -0.2976321) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0564192)": { - "workflow_id": 71, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.589597E-07, 0.8043932) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.07593338, 0.1115677) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0154908)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 7.589597E-07 + }, + { + "kind": "OMF", + "float": 0.8043932 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.07593338 + }, + { + "kind": "OMF", + "float": 0.111567713 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0154908011 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.589597E-07, 0.8043932) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.07593338, 0.1115677) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0154908)", + "Label": "Ç", + "hasCustomLabel": false, + "LabelId": 135 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6849197) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2115875, -0.2275642) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.04313712)": { - "workflow_id": 72, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.537832E-07, 0.8061224) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.06543901, 0.09602457) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01335127)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 6.53783161E-07 + }, + { + "kind": "OMF", + "float": 0.8061224 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.06543901 + }, + { + "kind": "OMF", + "float": 0.09602457 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.01335127 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.537832E-07, 0.8061224) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.06543901, 0.09602457) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01335127)", + "Label": "È", + "hasCustomLabel": false, + "LabelId": 136 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6751032) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1617761, -0.1739916) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.03298188)": { - "workflow_id": 73, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.63641E-07, 0.8074053) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.05641315, 0.08265641) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01151113)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 5.63641E-07 + }, + { + "kind": "OMF", + "float": 0.8074053 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.0564131476 + }, + { + "kind": "OMF", + "float": 0.08265641 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0115111349 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.63641E-07, 0.8074053) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.05641315, 0.08265641) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01151113)", + "Label": "É", + "hasCustomLabel": false, + "LabelId": 137 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6693646) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1236911, -0.1330309) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.02521736)": { - "workflow_id": 74, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.85955E-07, 0.8083575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04865037, 0.07115889) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.009928506)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 4.85955E-07 + }, + { + "kind": "OMF", + "float": 0.8083575 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.0486503728 + }, + { + "kind": "OMF", + "float": 0.071158886 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.009928506 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.85955E-07, 0.8083575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04865037, 0.07115889) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.009928506)", + "Label": "Ê", + "hasCustomLabel": false, + "LabelId": 138 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.66601) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.09457205, -0.1017131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01928075)": { - "workflow_id": 75, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.192195E-07, 0.8090646) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04197391, 0.06127021) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.008567349)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 4.192195E-07 + }, + { + "kind": "OMF", + "float": 0.809064567 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.04197391 + }, + { + "kind": "OMF", + "float": 0.0612702146 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.008567349 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.192195E-07, 0.8090646) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04197391, 0.06127021) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.008567349)", + "Label": "Ë", + "hasCustomLabel": false, + "LabelId": 139 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.164153E-10, 0.6640489) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.07230812, -0.07776801) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01474172)": { - "workflow_id": 76, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.617982E-07, 0.80959) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03623178, 0.05276527) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.007396676)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 3.61798158E-07 + }, + { + "kind": "OMF", + "float": 0.809590042 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.03623178 + }, + { + "kind": "OMF", + "float": 0.05276527 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00739667565 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.617982E-07, 0.80959) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03623178, 0.05276527) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.007396676)", + "Label": "ÃŒ", + "hasCustomLabel": false, + "LabelId": 140 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6629024) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0552855, -0.05946004) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01127125)": { - "workflow_id": 77, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.124417E-07, 0.8099808) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03129322, 0.04545041) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.006389831)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 3.12441728E-07 + }, + { + "kind": "OMF", + "float": 0.8099808 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.0312932245 + }, + { + "kind": "OMF", + "float": 0.04545041 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.006389831 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.124417E-07, 0.8099808) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03129322, 0.04545041) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.006389831)", + "Label": "Ã", + "hasCustomLabel": false, + "LabelId": 141 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6622322) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04227031, -0.04546209) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.008617802)": { - "workflow_id": 78, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.699823E-07, 0.8102716) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02704583, 0.03915911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.005523895)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 2.69982337E-07 + }, + { + "kind": "OMF", + "float": 0.8102716 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.02704583 + }, + { + "kind": "OMF", + "float": 0.039159108 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00552389538 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.699823E-07, 0.8102716) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02704583, 0.03915911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.005523895)", + "Label": "ÃŽ", + "hasCustomLabel": false, + "LabelId": 142 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6618404) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03231913, -0.03475951) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.006589018)": { - "workflow_id": 79, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.334384E-07, 0.8104883) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0233929, 0.03374812) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004779152)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 2.33438442E-07 + }, + { + "kind": "OMF", + "float": 0.8104883 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.0233928952 + }, + { + "kind": "OMF", + "float": 0.0337481238 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.004779152 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.334384E-07, 0.8104883) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0233929, 0.03374812) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004779152)", + "Label": "Ã", + "hasCustomLabel": false, + "LabelId": 143 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6616114) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02471064, -0.02657651) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.005037847)": { - "workflow_id": 80, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.020291E-07, 0.8106499) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02025124, 0.02909426) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004138645)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 2.02029142E-07 + }, + { + "kind": "OMF", + "float": 0.8106499 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.0202512369 + }, + { + "kind": "OMF", + "float": 0.0290942639 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.004138645 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.020291E-07, 0.8106499) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02025124, 0.02909426) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004138645)", + "Label": "Ã", + "hasCustomLabel": false, + "LabelId": 144 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6614775) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01889331, -0.02031993) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.003851848)": { - "workflow_id": 81, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.750029E-07, 0.8107705) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01754934, 0.02509158) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003587792)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.750029E-07 + }, + { + "kind": "OMF", + "float": 0.8107705 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.01754934 + }, + { + "kind": "OMF", + "float": 0.0250915755 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0035877917 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.750029E-07, 0.8107705) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01754934, 0.02509158) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003587792)", + "Label": "Ñ", + "hasCustomLabel": false, + "LabelId": 145 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613992) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01444549, -0.01553626) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.002945055)": { - "workflow_id": 82, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.517663E-07, 0.8108608) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01522568, 0.02164893) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003114051)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.51766329E-07 + }, + { + "kind": "OMF", + "float": 0.810860753 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.0152256833 + }, + { + "kind": "OMF", + "float": 0.02164893 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.003114051 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.517663E-07, 0.8108608) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01522568, 0.02164893) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003114051)", + "Label": "Ã’", + "hasCustomLabel": false, + "LabelId": 146 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613535) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01104477, -0.01187875) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.002251737)": { - "workflow_id": 83, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.317795E-07, 0.8109283) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01322737, 0.01868795) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002706637)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.3177953E-07 + }, + { + "kind": "OMF", + "float": 0.810928345 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.0132273668 + }, + { + "kind": "OMF", + "float": 0.0186879486 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00270663714 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.317795E-07, 0.8109283) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01322737, 0.01868795) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002706637)", + "Label": "Ó", + "hasCustomLabel": false, + "LabelId": 147 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613267) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.008444633, -0.009082278) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.001721638)": { - "workflow_id": 84, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.145984E-07, 0.8109791) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01150889, 0.01614122) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002356275)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.14598407E-07 + }, + { + "kind": "OMF", + "float": 0.8109791 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.0115088914 + }, + { + "kind": "OMF", + "float": 0.0161412191 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00235627475 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.145984E-07, 0.8109791) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01150889, 0.01614122) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002356275)", + "Label": "Ô", + "hasCustomLabel": false, + "LabelId": 148 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613111) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006456617, -0.006944149) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.001316334)": { - "workflow_id": 85, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.982086E-08, 0.8110173) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01003114, 0.01395076) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002054987)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 9.982086E-08 + }, + { + "kind": "OMF", + "float": 0.8110173 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.0100311367 + }, + { + "kind": "OMF", + "float": 0.0139507586 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00205498724 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.982086E-08, 0.8110173) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01003114, 0.01395076) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002054987)", + "Label": "Õ", + "hasCustomLabel": false, + "LabelId": 149 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.661302) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004936615, -0.005309373) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.001006445)": { - "workflow_id": 86, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.711405E-08, 0.8110461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.008760455, 0.0120667) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001795915)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 8.71140458E-08 + }, + { + "kind": "OMF", + "float": 0.811046064 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.008760455 + }, + { + "kind": "OMF", + "float": 0.0120667 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00179591484 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.711405E-08, 0.8110461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.008760455, 0.0120667) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001795915)", + "Label": "Ö", + "hasCustomLabel": false, + "LabelId": 150 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612966) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003774448, -0.004059452) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0007695103)": { - "workflow_id": 87, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.618684E-08, 0.8110679) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007667916, 0.01044615) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001573159)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 7.618684E-08 + }, + { + "kind": "OMF", + "float": 0.8110679 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00766791636 + }, + { + "kind": "OMF", + "float": 0.0104461489 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00157315924 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.618684E-08, 0.8110679) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007667916, 0.01044615) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001573159)", + "Label": "×", + "hasCustomLabel": false, + "LabelId": 151 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612935) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002885876, -0.003103785) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.000588354)": { - "workflow_id": 88, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.679592E-08, 0.8110844) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006728643, 0.009052214) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381649)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 6.679592E-08 + }, + { + "kind": "OMF", + "float": 0.811084449 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00672864262 + }, + { + "kind": "OMF", + "float": 0.009052214 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00138164894 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.679592E-08, 0.8110844) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006728643, 0.009052214) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381649)", + "Label": "Ø", + "hasCustomLabel": false, + "LabelId": 152 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612917) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00220649, -0.002373099) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.000449845)": { - "workflow_id": 89, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.872202E-08, 0.811097) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005921252, 0.007853162) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001217024)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 5.87220157E-08 + }, + { + "kind": "OMF", + "float": 0.811097 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00592125161 + }, + { + "kind": "OMF", + "float": 0.007853162 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00121702394 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.872202E-08, 0.811097) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005921252, 0.007853162) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001217024)", + "Label": "Ù", + "hasCustomLabel": false, + "LabelId": 153 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612906) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001687043, -0.00181443) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0003439435)": { - "workflow_id": 90, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.178306E-08, 0.8111066) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005227356, 0.006821695) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075536)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 5.178306E-08 + }, + { + "kind": "OMF", + "float": 0.8111066 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.005227356 + }, + { + "kind": "OMF", + "float": 0.00682169525 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00107553578 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.178306E-08, 0.8111066) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005227356, 0.006821695) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075536)", + "Label": "Ú", + "hasCustomLabel": false, + "LabelId": 154 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.684342E-14, 0.66129) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001289883, -0.001387281) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0002629731)": { - "workflow_id": 91, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582106E-08, 0.811114) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004631156, 0.005934337) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009539629)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 4.58210572E-08 + }, + { + "kind": "OMF", + "float": 0.811114 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00463115564 + }, + { + "kind": "OMF", + "float": 0.005934337 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0009539629 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582106E-08, 0.811114) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004631156, 0.005934337) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009539629)", + "Label": "Û", + "hasCustomLabel": false, + "LabelId": 155 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612896) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0009862219, -0.00106069) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0002010646)": { - "workflow_id": 92, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.070063E-08, 0.8111197) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004119067, 0.005170891) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008495366)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 4.070063E-08 + }, + { + "kind": "OMF", + "float": 0.811119735 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00411906745 + }, + { + "kind": "OMF", + "float": 0.0051708906 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000849536562 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.070063E-08, 0.8111197) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004119067, 0.005170891) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008495366)", + "Label": "Ãœ", + "hasCustomLabel": false, + "LabelId": 156 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612894) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0007540478, -0.0008109849) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0001537304)": { - "workflow_id": 93, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.630378E-08, 0.8111242) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003679428, 0.004513982) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007598784)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 3.63037778E-08 + }, + { + "kind": "OMF", + "float": 0.8111242 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00367942778 + }, + { + "kind": "OMF", + "float": 0.004513982 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0007598784 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.630378E-08, 0.8111242) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003679428, 0.004513982) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007598784)", + "Label": "Ã", + "hasCustomLabel": false, + "LabelId": 157 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612893) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0005765316, -0.0006200647) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0001175396)": { - "workflow_id": 94, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.253185E-08, 0.8111277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003302213, 0.003948665) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006829454)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 3.25318545E-08 + }, + { + "kind": "OMF", + "float": 0.8111277 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00330221257 + }, + { + "kind": "OMF", + "float": 0.003948665 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0006829454 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.253185E-08, 0.8111277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003302213, 0.003948665) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006829454)", + "Label": "Þ", + "hasCustomLabel": false, + "LabelId": 158 + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.929792E-08, 0.8111305) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00297882, 0.003462082) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006169838)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 2.92979223E-08 + }, + { + "kind": "OMF", + "float": 0.811130464 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00297881966 + }, + { + "kind": "OMF", + "float": 0.00346208224 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0006169838 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.929792E-08, 0.8111305) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00297882, 0.003462082) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006169838)", + "Label": "ß", + "hasCustomLabel": false, + "LabelId": 159 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0004408059, -0.0004740905) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 8.986868E-05)": { - "workflow_id": 95, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.652802E-08, 0.8111327) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002701863, 0.003043171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000560488)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 2.65280171E-08 + }, + { + "kind": "OMF", + "float": 0.811132669 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00270186318 + }, + { + "kind": "OMF", + "float": 0.00304317125 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00056048797 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.652802E-08, 0.8111327) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002701863, 0.003043171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000560488)", + "Label": "à ", + "hasCustomLabel": false, + "LabelId": 160 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0003370324, -0.0003624812) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 6.871201E-05)": { - "workflow_id": 96, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.415967E-08, 0.8111344) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002465006, 0.002682415) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005121666)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 2.415967E-08 + }, + { + "kind": "OMF", + "float": 0.8111344 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00246500573 + }, + { + "kind": "OMF", + "float": 0.0026824146 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000512166647 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.415967E-08, 0.8111344) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002465006, 0.002682415) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005121666)", + "Label": "á", + "hasCustomLabel": false, + "LabelId": 161 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.000257689, -0.0002771467) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 5.253599E-05)": { - "workflow_id": 97, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.213766E-08, 0.8111358) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002262817, 0.002371624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004709127)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 2.21376641E-08 + }, + { + "kind": "OMF", + "float": 0.811135769 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00226281653 + }, + { + "kind": "OMF", + "float": 0.00237162365 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0004709127 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.213766E-08, 0.8111358) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002262817, 0.002371624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004709127)", + "Label": "â", + "hasCustomLabel": false, + "LabelId": 162 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001970245, -0.0002119015) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 4.016809E-05)": { - "workflow_id": 98, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.041587E-08, 0.8111369) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002090637, 0.002103754) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000435777)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 2.04158681E-08 + }, + { + "kind": "OMF", + "float": 0.8111369 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00209063687 + }, + { + "kind": "OMF", + "float": 0.00210375362 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000435777038 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.041587E-08, 0.8111369) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002090637, 0.002103754) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000435777)", + "Label": "ã", + "hasCustomLabel": false, + "LabelId": 163 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001506414, -0.0001620161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 3.071181E-05)": { - "workflow_id": 99, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.895421E-08, 0.8111378) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001944477, 0.001872743) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004059467)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.89542142E-08 + }, + { + "kind": "OMF", + "float": 0.8111378 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00194447709 + }, + { + "kind": "OMF", + "float": 0.00187274348 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000405946717 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.895421E-08, 0.8111378) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001944477, 0.001872743) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004059467)", + "Label": "ä", + "hasCustomLabel": false, + "LabelId": 164 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.440892E-16, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001151777, -0.0001238746) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 2.348171E-05)": { - "workflow_id": 100, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.771862E-08, 0.8111386) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001820918, 0.001673379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003807253)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.77186248E-08 + }, + { + "kind": "OMF", + "float": 0.8111386 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00182091829 + }, + { + "kind": "OMF", + "float": 0.00167337945 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00038072528 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.771862E-08, 0.8111386) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001820918, 0.001673379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003807253)", + "Label": "Ã¥", + "hasCustomLabel": false, + "LabelId": 165 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.220446E-16, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.80629E-05, -9.471237E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.79537E-05)": { - "workflow_id": 101, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.667983E-08, 0.8111392) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001717033, 0.001501177) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003595165)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.667983E-08 + }, + { + "kind": "OMF", + "float": 0.8111392 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00171703321 + }, + { + "kind": "OMF", + "float": 0.00150117732 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0003595165 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.667983E-08, 0.8111392) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001717033, 0.001501177) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003595165)", + "Label": "æ", + "hasCustomLabel": false, + "LabelId": 166 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.733131E-05, -7.24154E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.372708E-05)": { - "workflow_id": 102, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.58127E-08, 0.8111398) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001630314, 0.001352282) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003418096)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.58127E-08 + }, + { + "kind": "OMF", + "float": 0.811139762 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00163031439 + }, + { + "kind": "OMF", + "float": 0.00135228166 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000341809617 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.58127E-08, 0.8111398) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001630314, 0.001352282) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003418096)", + "Label": "ç", + "hasCustomLabel": false, + "LabelId": 167 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.148033E-05, -5.536753E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.049548E-05)": { - "workflow_id": 103, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.509563E-08, 0.8111402) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001558613, 0.001223379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003271669)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.509563E-08 + }, + { + "kind": "OMF", + "float": 0.811140239 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.001558613 + }, + { + "kind": "OMF", + "float": 0.00122337916 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0003271669 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.509563E-08, 0.8111402) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001558613, 0.001223379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003271669)", + "Label": "è", + "hasCustomLabel": false, + "LabelId": 168 }, - "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.936095E-05, -4.233303E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, Infinity)": { - "workflow_id": 104, - "active": true, - "isImmutable": false + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.451029E-08, 0.8111407) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001500085, 0.001111624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003152128)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.45102934E-08 + }, + { + "kind": "OMF", + "float": 0.811140656 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00150008511 + }, + { + "kind": "OMF", + "float": 0.00111162371 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000315212761 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.451029E-08, 0.8111407) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001500085, 0.001111624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003152128)", + "Label": "é", + "hasCustomLabel": false, + "LabelId": 169 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5592{t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.715, 18.639) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.3575, -24.0345) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2859924), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.418, 11.76532) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.81013, -15.33226) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1896955), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.62, 8.856853) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.56049, -14.95858) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.5920918), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.6872, 0) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -20.71589, 14.50145) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2233716), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.815126, 3.239212) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.088061, -26.67258) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1214435), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.874923, -2.384186E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -0.1032848, 26.66929) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1209298), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.790701, 3.225111) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 22.11182, -14.23284) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2265964), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.549308, -2.384186E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.28769, 13.8026) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6978087), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.62, 9.631574) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -12.11062, 13.43478) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.3298803), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.09118, 14.06344) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.80479, 19.21664) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2891534), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.5809, 19.62) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.57104, -19.0131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.8358453), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.661715, 3.727991) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -22.95221, -3.161415) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1949807), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.490116E-08, 3.111576) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.96413, -3.046878) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1255537), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.931463, 2.729029) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.473647, 20.59326) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2774679), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.905, 8.442996) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.513967, 19.74212) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.56615), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2110889, 19.62) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.88789, -19.42103) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01922107), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.841706E-09, 19.24671) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.849987, -15.51724) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.027901), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.914383, 3.296518) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -13.78543, 6.561788) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2599138), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.960464E-08, 5.002018) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.5477, 5.843759) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 2.339293), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.189739, 18.67228) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.211595, -4.33007) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 2.099828), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.905001, 9.579883) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.256, -4.279988) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.349196), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.16284, 3.805339) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.279988, -1.979609) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.134112), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.536743E-07, 1.560241) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.84159, -1.907133) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.8181087), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.859114, -3.576279E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.534343, 1.828338) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.856556), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.083937, 3.394411) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.135024, -10.71493) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.3167926), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.281738, -2.384186E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.105723, 10.5122) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2705758), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.980232E-08, 2.844347) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.460365, 8.035274) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.520972), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 15.06577) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.288472, 6.773072) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6724024), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.010711, 19.62) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -0.3073506, -6.763281) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6096942), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 15.49647) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.301509, -5.701818) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.080838), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 9.333727) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.05344, -4.359509) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.8263894), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 5.731075) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.099188, -3.333203) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6318427), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 3.625015) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.369584, -2.548508) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.4830957), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 2.393842) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.811742, -1.948544) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.3693664), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 1.674116) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.385226, -1.489822) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.282411), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 1.253373) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.059119, -1.139092) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2159265), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 1.007413) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8097838, -0.8709294) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1650936), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.490116E-08, 0.8636284) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.6191465, -0.6658972) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1262276), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.7795739) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4733882, -0.5091332) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.09651136), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.7304367) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3619443, -0.3892742) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.07379089), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.862645E-09, 0.7017118) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2767362, -0.2976321) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0564192), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6849197) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2115875, -0.2275642) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.04313712), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6751032) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1617761, -0.1739916) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.03298188), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6693646) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1236911, -0.1330309) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.02521736), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.66601) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.09457205, -0.1017131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01928075), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.164153E-10, 0.6640489) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.07230812, -0.07776801) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01474172), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6629024) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0552855, -0.05946004) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01127125), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6622322) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04227031, -0.04546209) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.008617802), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6618404) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03231913, -0.03475951) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.006589018), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6616114) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02471064, -0.02657651) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.005037847), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6614775) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01889331, -0.02031993) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.003851848), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613992) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01444549, -0.01553626) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.002945055), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613535) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01104477, -0.01187875) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.002251737), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613267) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.008444633, -0.009082278) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.001721638), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613111) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006456617, -0.006944149) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.001316334), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.661302) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004936615, -0.005309373) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.001006445), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612966) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003774448, -0.004059452) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0007695103), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612935) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002885876, -0.003103785) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.000588354), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612917) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00220649, -0.002373099) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.000449845), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612906) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001687043, -0.00181443) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0003439435), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.684342E-14, 0.66129) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001289883, -0.001387281) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0002629731), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612896) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0009862219, -0.00106069) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0002010646), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612894) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0007540478, -0.0008109849) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0001537304), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612893) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0005765316, -0.0006200647) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0001175396), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0004408059, -0.0004740905) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 8.986868E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0003370324, -0.0003624812) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 6.871201E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.000257689, -0.0002771467) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 5.253599E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001970245, -0.0002119015) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 4.016809E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001506414, -0.0001620161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 3.071181E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.440892E-16, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001151777, -0.0001238746) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 2.348171E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.220446E-16, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.80629E-05, -9.471237E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.79537E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.733131E-05, -7.24154E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.372708E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.148033E-05, -5.536753E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.049548E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.936095E-05, -4.233303E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, Infinity)}": { - "workflow_id": 105, - "active": true, - "isImmutable": false - } - }, - "Workflow": [ - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5556", - "samestep": false, - "steplink": 3, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.404092E-08, 0.811141) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001453148, 0.001014572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003056248)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.404092E-08 + }, + { + "kind": "OMF", + "float": 0.811141 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00145314774 + }, + { + "kind": "OMF", + "float": 0.00101457245 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000305624766 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.404092E-08, 0.811141) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001453148, 0.001014572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003056248)", + "Label": "ê", + "hasCustomLabel": false, + "LabelId": 170 }, - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5557", - "samestep": true, - "steplink": 0, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367392E-08, 0.8111413) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00141644, 0.0009301305) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002981256)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.36739233E-08 + }, + { + "kind": "OMF", + "float": 0.8111413 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00141643954 + }, + { + "kind": "OMF", + "float": 0.00093013054 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000298125582 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367392E-08, 0.8111413) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00141644, 0.0009301305) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002981256)", + "Label": "ë", + "hasCustomLabel": false, + "LabelId": 171 }, - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5558", - "samestep": true, - "steplink": 0, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.339735E-08, 0.8111416) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001388788, 0.0008565031) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000292476)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.33973526E-08 + }, + { + "kind": "OMF", + "float": 0.8111416 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00138878811 + }, + { + "kind": "OMF", + "float": 0.000856503146 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000292476 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.339735E-08, 0.8111416) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001388788, 0.0008565031) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000292476)", + "Label": "ì", + "hasCustomLabel": false, + "LabelId": 172 }, - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5559", - "samestep": false, - "steplink": 6, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.320126E-08, 0.8111418) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001369179, 0.0007921541) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002884693)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.32012588E-08 + }, + { + "kind": "OMF", + "float": 0.811141849 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00136917876 + }, + { + "kind": "OMF", + "float": 0.000792154053 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0002884693 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.320126E-08, 0.8111418) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001369179, 0.0007921541) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002884693)", + "Label": "Ã", + "hasCustomLabel": false, + "LabelId": 173 }, - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5560", - "samestep": true, - "steplink": 3, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.307687E-08, 0.8111421) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001356734, 0.0007357697) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002859265)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.307687E-08 + }, + { + "kind": "OMF", + "float": 0.8111421 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.0013567342 + }, + { + "kind": "OMF", + "float": 0.000735769747 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000285926479 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.307687E-08, 0.8111421) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001356734, 0.0007357697) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002859265)", + "Label": "î", + "hasCustomLabel": false, + "LabelId": 174 }, - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5561", - "samestep": true, - "steplink": 3, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.30164E-08, 0.8111423) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350693, 0.0006862283) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002846919)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.30163986E-08 + }, + { + "kind": "OMF", + "float": 0.8111423 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00135069271 + }, + { + "kind": "OMF", + "float": 0.0006862283 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0002846919 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.30164E-08, 0.8111423) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350693, 0.0006862283) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002846919)", + "Label": "ï", + "hasCustomLabel": false, + "LabelId": 175 }, - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5562", - "samestep": false, - "steplink": 10, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.301342E-08, 0.8111425) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350389, 0.000642572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00028463)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.30134215E-08 + }, + { + "kind": "OMF", + "float": 0.8111425 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00135038933 + }, + { + "kind": "OMF", + "float": 0.000642572 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000284629961 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.301342E-08, 0.8111425) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350389, 0.000642572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00028463)", + "Label": "ð", + "hasCustomLabel": false, + "LabelId": 176 }, - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5563", - "samestep": true, - "steplink": 6, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.306193E-08, 0.8111427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001355246, 0.0006039842) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002856223)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.30619284E-08 + }, + { + "kind": "OMF", + "float": 0.8111427 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00135524571 + }, + { + "kind": "OMF", + "float": 0.0006039842 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000285622285 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.306193E-08, 0.8111427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001355246, 0.0006039842) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002856223)", + "Label": "ñ", + "hasCustomLabel": false, + "LabelId": 177 }, - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5564", - "samestep": true, - "steplink": 6, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.3157E-08, 0.8111429) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001364753, 0.0005697685) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000287565)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.3157E-08 + }, + { + "kind": "OMF", + "float": 0.811142862 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00136475288 + }, + { + "kind": "OMF", + "float": 0.000569768541 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000287564966 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.3157E-08, 0.8111429) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001364753, 0.0005697685) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000287565)", + "Label": "ò", + "hasCustomLabel": false, + "LabelId": 178 + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.329415E-08, 0.811143) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001378465, 0.0005393313) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002903669)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.32941524E-08 + }, + { + "kind": "OMF", + "float": 0.811143041 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00137846533 + }, + { + "kind": "OMF", + "float": 0.0005393313 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00029036685 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.329415E-08, 0.811143) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001378465, 0.0005393313) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002903669)", + "Label": "ó", + "hasCustomLabel": false, + "LabelId": 179 }, - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5567", - "samestep": true, - "steplink": 6, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.346938E-08, 0.8111432) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001395991, 0.0005121662) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002939476)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.34693776E-08 + }, + { + "kind": "OMF", + "float": 0.8111432 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00139599061 + }, + { + "kind": "OMF", + "float": 0.0005121662 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0002939476 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.346938E-08, 0.8111432) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001395991, 0.0005121662) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002939476)", + "Label": "ô", + "hasCustomLabel": false, + "LabelId": 180 }, - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5568", - "samestep": false, - "steplink": 13, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367931E-08, 0.8111434) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001416981, 0.0004878413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002982362)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.36793128E-08 + }, + { + "kind": "OMF", + "float": 0.8111434 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00141698134 + }, + { + "kind": "OMF", + "float": 0.000487841258 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000298236235 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367931E-08, 0.8111434) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001416981, 0.0004878413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002982362)", + "Label": "õ", + "hasCustomLabel": false, + "LabelId": 181 }, - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5569", - "samestep": true, - "steplink": 10, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.392084E-08, 0.8111435) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001441131, 0.0004659877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00030317)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.39208378E-08 + }, + { + "kind": "OMF", + "float": 0.8111435 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.001441131 + }, + { + "kind": "OMF", + "float": 0.000465987745 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000303169974 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.392084E-08, 0.8111435) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001441131, 0.0004659877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00030317)", + "Label": "ö", + "hasCustomLabel": false, + "LabelId": 182 }, - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5570", - "samestep": true, - "steplink": 10, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.419115E-08, 0.8111436) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001468168, 0.0004462903) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000308693)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.4191146E-08 + }, + { + "kind": "OMF", + "float": 0.811143637 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00146816752 + }, + { + "kind": "OMF", + "float": 0.000446290331 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000308693037 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.419115E-08, 0.8111436) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001468168, 0.0004462903) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000308693)", + "Label": "÷", + "hasCustomLabel": false, + "LabelId": 183 }, - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5571", - "samestep": false, - "steplink": 16, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.448797E-08, 0.8111438) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001497847, 0.000428479) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003147557)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.44879735E-08 + }, + { + "kind": "OMF", + "float": 0.811143756 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00149784738 + }, + { + "kind": "OMF", + "float": 0.000428479019 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0003147557 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.448797E-08, 0.8111438) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001497847, 0.000428479) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003147557)", + "Label": "ø", + "hasCustomLabel": false, + "LabelId": 184 }, - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5572", - "samestep": true, - "steplink": 13, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.480899E-08, 0.8111439) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001529955, 0.0004123223) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003213138)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.48089949E-08 + }, + { + "kind": "OMF", + "float": 0.8111439 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00152995531 + }, + { + "kind": "OMF", + "float": 0.000412322319 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000321313826 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.480899E-08, 0.8111439) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001529955, 0.0004123223) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003213138)", + "Label": "ù", + "hasCustomLabel": false, + "LabelId": 185 }, - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5573", - "samestep": true, - "steplink": 13, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.515247E-08, 0.811144) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001564297, 0.0003976213) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003283278)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.51524713E-08 + }, + { + "kind": "OMF", + "float": 0.811144 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00156429724 + }, + { + "kind": "OMF", + "float": 0.000397621276 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0003283278 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.515247E-08, 0.811144) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001564297, 0.0003976213) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003283278)", + "Label": "ú", + "hasCustomLabel": false, + "LabelId": 186 }, - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5574", - "samestep": false, - "steplink": 19, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.551645E-08, 0.8111441) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001600701, 0.0003842046) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003357622)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.551645E-08 + }, + { + "kind": "OMF", + "float": 0.8111441 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00160070078 + }, + { + "kind": "OMF", + "float": 0.000384204584 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0003357622 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.551645E-08, 0.8111441) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001600701, 0.0003842046) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003357622)", + "Label": "û", + "hasCustomLabel": false, + "LabelId": 187 + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.589954E-08, 0.8111442) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001639009, 0.0003719244) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003435851)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.58995359E-08 + }, + { + "kind": "OMF", + "float": 0.811144233 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00163900934 + }, + { + "kind": "OMF", + "float": 0.0003719244 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0003435851 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.589954E-08, 0.8111442) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001639009, 0.0003719244) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003435851)", + "Label": "ü", + "hasCustomLabel": false, + "LabelId": 188 }, - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5575", - "samestep": true, - "steplink": 16, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.630033E-08, 0.8111444) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001679083, 0.0003606528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003517679)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.63003335E-08 + }, + { + "kind": "OMF", + "float": 0.811144352 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00167908333 + }, + { + "kind": "OMF", + "float": 0.0003606528 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000351767929 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.630033E-08, 0.8111444) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001679083, 0.0003606528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003517679)", + "Label": "ý", + "hasCustomLabel": false, + "LabelId": 189 }, - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5576", - "samestep": true, - "steplink": 16, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.671746E-08, 0.8111445) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001720796, 0.0003502789) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003602849)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.67174647E-08 + }, + { + "kind": "OMF", + "float": 0.8111445 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00172079646 + }, + { + "kind": "OMF", + "float": 0.0003502789 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000360284874 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.671746E-08, 0.8111445) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001720796, 0.0003502789) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003602849)", + "Label": "þ", + "hasCustomLabel": false, + "LabelId": 190 }, - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5577", - "samestep": false, - "steplink": 22, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.71499E-08, 0.8111446) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001764034, 0.0003407062) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003691125)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.71499E-08 + }, + { + "kind": "OMF", + "float": 0.8111446 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00176403427 + }, + { + "kind": "OMF", + "float": 0.000340706174 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0003691125 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.71499E-08, 0.8111446) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001764034, 0.0003407062) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003691125)", + "Label": "ÿ", + "hasCustomLabel": false, + "LabelId": 191 }, - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5578", - "samestep": true, - "steplink": 19, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.759643E-08, 0.8111447) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001808693, 0.0003318506) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003782297)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.75964328E-08 + }, + { + "kind": "OMF", + "float": 0.8111447 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.0018086934 + }, + { + "kind": "OMF", + "float": 0.0003318506 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000378229684 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.759643E-08, 0.8111447) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001808693, 0.0003318506) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003782297)", + "Label": "Ä€", + "hasCustomLabel": false, + "LabelId": 192 }, - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5579", - "samestep": true, - "steplink": 19, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.805629E-08, 0.8111448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001854679, 0.0003236387) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003876172)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.80562925E-08 + }, + { + "kind": "OMF", + "float": 0.8111448 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00185467931 + }, + { + "kind": "OMF", + "float": 0.000323638669 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000387617183 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.805629E-08, 0.8111448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001854679, 0.0003236387) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003876172)", + "Label": "Ä", + "hasCustomLabel": false, + "LabelId": 193 }, - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5580", - "samestep": false, - "steplink": 25, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.852857E-08, 0.8111449) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001901907, 0.000316006) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003972576)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.85285689E-08 + }, + { + "kind": "OMF", + "float": 0.811144948 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.001901907 + }, + { + "kind": "OMF", + "float": 0.000316005957 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000397257565 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.852857E-08, 0.8111449) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001901907, 0.000316006) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003972576)", + "Label": "Ä‚", + "hasCustomLabel": false, + "LabelId": 194 }, - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5581", - "samestep": true, - "steplink": 22, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.901248E-08, 0.8111451) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001950298, 0.0003088959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004071349)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.901248E-08 + }, + { + "kind": "OMF", + "float": 0.811145067 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00195029809 + }, + { + "kind": "OMF", + "float": 0.000308895862 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000407134852 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.901248E-08, 0.8111451) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001950298, 0.0003088959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004071349)", + "Label": "ă", + "hasCustomLabel": false, + "LabelId": 195 }, - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5582", - "samestep": true, - "steplink": 22, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.950731E-08, 0.8111452) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001999781, 0.0003022585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004172344)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 1.950731E-08 + }, + { + "kind": "OMF", + "float": 0.8111452 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.001999781 + }, + { + "kind": "OMF", + "float": 0.0003022585 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000417234434 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.950731E-08, 0.8111452) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001999781, 0.0003022585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004172344)", + "Label": "Ä„", + "hasCustomLabel": false, + "LabelId": 196 }, - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5583", - "samestep": false, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.00124E-08, 0.8111453) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00205029, 0.0002960498) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000427543)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 2.00124024E-08 + }, + { + "kind": "OMF", + "float": 0.8111453 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00205029035 + }, + { + "kind": "OMF", + "float": 0.0002960498 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000427542982 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.00124E-08, 0.8111453) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00205029, 0.0002960498) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000427543)", + "Label": "Ä…", + "hasCustomLabel": false, + "LabelId": 197 }, - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5584", - "samestep": true, - "steplink": 25, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.052722E-08, 0.8111454) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002101766, 0.0002902308) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004380484)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 2.052722E-08 + }, + { + "kind": "OMF", + "float": 0.8111454 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00210176641 + }, + { + "kind": "OMF", + "float": 0.000290230819 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000438048359 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.052722E-08, 0.8111454) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002101766, 0.0002902308) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004380484)", + "Label": "Ć", + "hasCustomLabel": false, + "LabelId": 198 }, - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5585", - "samestep": true, - "steplink": 25, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.105105E-08, 0.8111455) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002154155, 0.0002847669) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004487394)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 2.10510489E-08 + }, + { + "kind": "OMF", + "float": 0.811145544 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.002154155 + }, + { + "kind": "OMF", + "float": 0.000284766866 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00044873936 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.105105E-08, 0.8111455) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002154155, 0.0002847669) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004487394)", + "Label": "ć", + "hasCustomLabel": false, + "LabelId": 199 }, - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5588", - "samestep": true, - "steplink": 25, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.158354E-08, 0.8111457) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002207404, 0.0002796271) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004596055)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 2.15835385E-08 + }, + { + "kind": "OMF", + "float": 0.811145663 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.002207404 + }, + { + "kind": "OMF", + "float": 0.0002796271 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000459605537 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.158354E-08, 0.8111457) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002207404, 0.0002796271) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004596055)", + "Label": "Ĉ", + "hasCustomLabel": false, + "LabelId": 200 }, - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5591", - "samestep": true, - "steplink": 25, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212418E-08, 0.8111458) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002261468, 0.000274784) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004706375)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 2.21241763E-08 + }, + { + "kind": "OMF", + "float": 0.8111458 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00226146774 + }, + { + "kind": "OMF", + "float": 0.000274784048 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0004706375 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212418E-08, 0.8111458) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002261468, 0.000274784) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004706375)", + "Label": "ĉ", + "hasCustomLabel": false, + "LabelId": 201 }, - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5592", - "samestep": false, - "steplink": 106, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.267253E-08, 0.8111459) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002316303, 0.0002702131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004818264)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 2.26725287E-08 + }, + { + "kind": "OMF", + "float": 0.8111459 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00231630285 + }, + { + "kind": "OMF", + "float": 0.0002702131 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00048182637 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.267253E-08, 0.8111459) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002316303, 0.0002702131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004818264)", + "Label": "ÄŠ", + "hasCustomLabel": false, + "LabelId": 202 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.715, 18.639) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.3575, -24.0345) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2859924)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.322831E-08, 0.811146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002371869, 0.0002658922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004931641)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 2.32283064E-08 + }, + { + "kind": "OMF", + "float": 0.811146 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00237186928 + }, + { + "kind": "OMF", + "float": 0.0002658922 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0004931641 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.322831E-08, 0.811146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002371869, 0.0002658922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004931641)", + "Label": "Ä‹", + "hasCustomLabel": false, + "LabelId": 203 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.418, 11.76532) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.81013, -15.33226) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1896955)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.37908E-08, 0.8111461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00242813, 0.0002618015) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005046431)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 2.3790804E-08 + }, + { + "kind": "OMF", + "float": 0.81114614 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00242813048 + }, + { + "kind": "OMF", + "float": 0.000261801528 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000504643132 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.37908E-08, 0.8111461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00242813, 0.0002618015) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005046431)", + "Label": "ÄŒ", + "hasCustomLabel": false, + "LabelId": 204 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.62, 8.856853) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.56049, -14.95858) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.5920918)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.43599E-08, 0.8111463) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002485052, 0.0002579232) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005162564)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 2.43599025E-08 + }, + { + "kind": "OMF", + "float": 0.811146259 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00248505175 + }, + { + "kind": "OMF", + "float": 0.000257923239 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0005162564 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.43599E-08, 0.8111463) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002485052, 0.0002579232) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005162564)", + "Label": "Ä", + "hasCustomLabel": false, + "LabelId": 205 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.6872, 0) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -20.71589, 14.50145) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2233716)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.493551E-08, 0.8111464) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002542601, 0.0002542413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005279974)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 2.49355061E-08 + }, + { + "kind": "OMF", + "float": 0.8111464 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00254260073 + }, + { + "kind": "OMF", + "float": 0.000254241284 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000527997443 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.493551E-08, 0.8111464) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002542601, 0.0002542413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005279974)", + "Label": "ÄŽ", + "hasCustomLabel": false, + "LabelId": 206 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.815126, 3.239212) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.088061, -26.67258) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1214435)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.551699E-08, 0.8111465) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002600749, 0.0002507411) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005398603)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 2.55169876E-08 + }, + { + "kind": "OMF", + "float": 0.8111465 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00260074879 + }, + { + "kind": "OMF", + "float": 0.000250741054 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000539860339 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.551699E-08, 0.8111465) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002600749, 0.0002507411) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005398603)", + "Label": "Ä", + "hasCustomLabel": false, + "LabelId": 207 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.874923, -2.384186E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -0.1032848, 26.66929) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1209298)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.610406E-08, 0.8111466) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002659468, 0.0002474094) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005518393)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 2.61040647E-08 + }, + { + "kind": "OMF", + "float": 0.8111466 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.002659468 + }, + { + "kind": "OMF", + "float": 0.0002474094 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0005518393 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.610406E-08, 0.8111466) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002659468, 0.0002474094) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005518393)", + "Label": "Ä", + "hasCustomLabel": false, + "LabelId": 208 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.790701, 3.225111) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 22.11182, -14.23284) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2265964)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.669681E-08, 0.8111467) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002718731, 0.0002442343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005639291)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 2.66968119E-08 + }, + { + "kind": "OMF", + "float": 0.811146736 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.0027187313 + }, + { + "kind": "OMF", + "float": 0.000244234281 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0005639291 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.669681E-08, 0.8111467) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002718731, 0.0002442343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005639291)", + "Label": "Ä‘", + "hasCustomLabel": false, + "LabelId": 209 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.549308, -2.384186E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.28769, 13.8026) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6978087)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.729477E-08, 0.8111469) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002778516, 0.0002412049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005761249)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 2.72947744E-08 + }, + { + "kind": "OMF", + "float": 0.811146855 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00277851615 + }, + { + "kind": "OMF", + "float": 0.000241204878 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000576124934 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.729477E-08, 0.8111469) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002778516, 0.0002412049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005761249)", + "Label": "Ä’", + "hasCustomLabel": false, + "LabelId": 210 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.62, 9.631574) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -12.11062, 13.43478) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.3298803)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.789739E-08, 0.811147) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0028388, 0.0002383113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005884222)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 2.78973875E-08 + }, + { + "kind": "OMF", + "float": 0.811147 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.0028388002 + }, + { + "kind": "OMF", + "float": 0.000238311259 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0005884222 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.789739E-08, 0.811147) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0028388, 0.0002383113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005884222)", + "Label": "Ä“", + "hasCustomLabel": false, + "LabelId": 211 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.09118, 14.06344) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.80479, 19.21664) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2891534)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.850522E-08, 0.8111471) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00289956, 0.0002355444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006008164)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 2.8505216E-08 + }, + { + "kind": "OMF", + "float": 0.8111471 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00289956038 + }, + { + "kind": "OMF", + "float": 0.000235544358 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000600816449 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.850522E-08, 0.8111471) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00289956, 0.0002355444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006008164)", + "Label": "Ä”", + "hasCustomLabel": false, + "LabelId": 212 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.5809, 19.62) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.57104, -19.0131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.8358453)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.911729E-08, 0.8111472) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002960779, 0.0002328959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006133038)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 2.91172864E-08 + }, + { + "kind": "OMF", + "float": 0.8111472 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00296077877 + }, + { + "kind": "OMF", + "float": 0.00023289588 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0006133038 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.911729E-08, 0.8111472) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002960779, 0.0002328959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006133038)", + "Label": "Ä•", + "hasCustomLabel": false, + "LabelId": 213 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.661715, 3.727991) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -22.95221, -3.161415) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1949807)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.973374E-08, 0.8111473) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003022436, 0.0002303582) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006258803)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 2.97337426E-08 + }, + { + "kind": "OMF", + "float": 0.811147332 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00302243559 + }, + { + "kind": "OMF", + "float": 0.000230358215 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0006258803 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.973374E-08, 0.8111473) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003022436, 0.0002303582) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006258803)", + "Label": "Ä–", + "hasCustomLabel": false, + "LabelId": 214 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.490116E-08, 3.111576) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.96413, -3.046878) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1255537)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.035464E-08, 0.8111475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003084514, 0.0002279245) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006385426)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 3.03546379E-08 + }, + { + "kind": "OMF", + "float": 0.811147451 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00308451382 + }, + { + "kind": "OMF", + "float": 0.000227924451 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0006385426 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.035464E-08, 0.8111475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003084514, 0.0002279245) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006385426)", + "Label": "Ä—", + "hasCustomLabel": false, + "LabelId": 215 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.931463, 2.729029) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.473647, 20.59326) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2774679)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.097946E-08, 0.8111476) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003146996, 0.0002255881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000651287)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 3.09794643E-08 + }, + { + "kind": "OMF", + "float": 0.8111476 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00314699626 + }, + { + "kind": "OMF", + "float": 0.000225588141 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000651287031 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.097946E-08, 0.8111476) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003146996, 0.0002255881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000651287)", + "Label": "Ę", + "hasCustomLabel": false, + "LabelId": 216 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.905, 8.442996) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.513967, 19.74212) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.56615)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.16084E-08, 0.8111477) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003209868, 0.0002233434) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006641107)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 3.16084048E-08 + }, + { + "kind": "OMF", + "float": 0.8111477 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00320986775 + }, + { + "kind": "OMF", + "float": 0.000223343392 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0006641107 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.16084E-08, 0.8111477) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003209868, 0.0002233434) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006641107)", + "Label": "Ä™", + "hasCustomLabel": false, + "LabelId": 217 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2110889, 19.62) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.88789, -19.42103) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01922107)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.224065E-08, 0.8111478) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003273115, 0.0002211848) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006770107)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 3.22406528E-08 + }, + { + "kind": "OMF", + "float": 0.8111478 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.003273115 + }, + { + "kind": "OMF", + "float": 0.000221184819 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0006770107 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.224065E-08, 0.8111478) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003273115, 0.0002211848) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006770107)", + "Label": "Äš", + "hasCustomLabel": false, + "LabelId": 218 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.841706E-09, 19.24671) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.849987, -15.51724) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.027901)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.28765E-08, 0.811148) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003336722, 0.0002191074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006899839)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 3.28765E-08 + }, + { + "kind": "OMF", + "float": 0.811148 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.0033367225 + }, + { + "kind": "OMF", + "float": 0.000219107358 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0006899839 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.28765E-08, 0.811148) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003336722, 0.0002191074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006899839)", + "Label": "Ä›", + "hasCustomLabel": false, + "LabelId": 219 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.914383, 3.296518) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -13.78543, 6.561788) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2599138)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.351627E-08, 0.8111482) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003400677, 0.0002171064) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007030278)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 3.35162724E-08 + }, + { + "kind": "OMF", + "float": 0.811148167 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00340067712 + }, + { + "kind": "OMF", + "float": 0.000217106412 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0007030278 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.351627E-08, 0.8111482) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003400677, 0.0002171064) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007030278)", + "Label": "Äœ", + "hasCustomLabel": false, + "LabelId": 220 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.960464E-08, 5.002018) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.5477, 5.843759) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 2.339293)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.415894E-08, 0.8111483) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003464967, 0.0002151776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007161399)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 3.41589441E-08 + }, + { + "kind": "OMF", + "float": 0.811148345 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.003464967 + }, + { + "kind": "OMF", + "float": 0.000215177643 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000716139853 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.415894E-08, 0.8111483) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003464967, 0.0002151776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007161399)", + "Label": "Ä", + "hasCustomLabel": false, + "LabelId": 221 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.189739, 18.67228) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.211595, -4.33007) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 2.099828)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.48053E-08, 0.8111485) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00352958, 0.0002133171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007293177)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 3.48053E-08 + }, + { + "kind": "OMF", + "float": 0.8111485 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00352958 + }, + { + "kind": "OMF", + "float": 0.000213317107 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0007293177 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.48053E-08, 0.8111485) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00352958, 0.0002133171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007293177)", + "Label": "Äž", + "hasCustomLabel": false, + "LabelId": 222 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.905001, 9.579883) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.256, -4.279988) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.349196)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.545456E-08, 0.8111487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003594506, 0.0002115211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007425591)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 3.545456E-08 + }, + { + "kind": "OMF", + "float": 0.8111487 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00359450583 + }, + { + "kind": "OMF", + "float": 0.000211521125 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000742559147 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.545456E-08, 0.8111487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003594506, 0.0002115211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007425591)", + "Label": "ÄŸ", + "hasCustomLabel": false, + "LabelId": 223 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.16284, 3.805339) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.279988, -1.979609) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.134112)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.610684E-08, 0.8111489) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003659734, 0.0002097862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007558619)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 3.61068366E-08 + }, + { + "kind": "OMF", + "float": 0.8111489 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00365973357 + }, + { + "kind": "OMF", + "float": 0.000209786231 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0007558619 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.610684E-08, 0.8111489) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003659734, 0.0002097862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007558619)", + "Label": "Ä ", + "hasCustomLabel": false, + "LabelId": 224 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.536743E-07, 1.560241) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.84159, -1.907133) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.8181087)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.676226E-08, 0.8111491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003725253, 0.0002081093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007692242)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 3.676226E-08 + }, + { + "kind": "OMF", + "float": 0.811149061 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.003725253 + }, + { + "kind": "OMF", + "float": 0.000208109283 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0007692242 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.676226E-08, 0.8111491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003725253, 0.0002081093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007692242)", + "Label": "Ä¡", + "hasCustomLabel": false, + "LabelId": 225 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.859114, -3.576279E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.534343, 1.828338) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.856556)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.741983E-08, 0.8111492) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003791056, 0.0002064873) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007826439)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 3.741983E-08 + }, + { + "kind": "OMF", + "float": 0.81114924 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00379105587 + }, + { + "kind": "OMF", + "float": 0.000206487253 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000782643852 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.741983E-08, 0.8111492) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003791056, 0.0002064873) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007826439)", + "Label": "Ä¢", + "hasCustomLabel": false, + "LabelId": 226 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.083937, 3.394411) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.135024, -10.71493) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.3167926)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.808081E-08, 0.8111494) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003857131, 0.0002049174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007961191)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 3.808081E-08 + }, + { + "kind": "OMF", + "float": 0.8111494 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00385713088 + }, + { + "kind": "OMF", + "float": 0.0002049174 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0007961191 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.808081E-08, 0.8111494) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003857131, 0.0002049174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007961191)", + "Label": "Ä£", + "hasCustomLabel": false, + "LabelId": 227 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.281738, -2.384186E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.105723, 10.5122) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2705758)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.874399E-08, 0.8111496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003923472, 0.0002033971) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008096482)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 3.87439876E-08 + }, + { + "kind": "OMF", + "float": 0.8111496 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00392347155 + }, + { + "kind": "OMF", + "float": 0.00020339711 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000809648249 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.874399E-08, 0.8111496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003923472, 0.0002033971) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008096482)", + "Label": "Ĥ", + "hasCustomLabel": false, + "LabelId": 228 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.980232E-08, 2.844347) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.460365, 8.035274) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.520972)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.941041E-08, 0.8111498) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003990068, 0.000201924) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008232295)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 3.94104056E-08 + }, + { + "kind": "OMF", + "float": 0.8111498 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00399006763 + }, + { + "kind": "OMF", + "float": 0.000201923976 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0008232295 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.941041E-08, 0.8111498) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003990068, 0.000201924) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008232295)", + "Label": "Ä¥", + "hasCustomLabel": false, + "LabelId": 229 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 15.06577) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.288472, 6.773072) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6724024)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.007862E-08, 0.81115) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004056912, 0.0002004957) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008368612)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 4.00786249E-08 + }, + { + "kind": "OMF", + "float": 0.811149955 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00405691238 + }, + { + "kind": "OMF", + "float": 0.000200495691 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0008368612 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.007862E-08, 0.81115) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004056912, 0.0002004957) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008368612)", + "Label": "Ħ", + "hasCustomLabel": false, + "LabelId": 230 + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.074971E-08, 0.8111501) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004123999, 0.0001991102) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008505422)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 4.07497147E-08 + }, + { + "kind": "OMF", + "float": 0.811150134 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.004123999 + }, + { + "kind": "OMF", + "float": 0.0001991102 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000850542157 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.074971E-08, 0.8111501) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004123999, 0.0001991102) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008505422)", + "Label": "ħ", + "hasCustomLabel": false, + "LabelId": 231 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.010711, 19.62) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -0.3073506, -6.763281) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6096942)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.142292E-08, 0.8111503) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004191319, 0.0001977655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008642707)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 4.1422922E-08 + }, + { + "kind": "OMF", + "float": 0.8111503 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00419131946 + }, + { + "kind": "OMF", + "float": 0.000197765476 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0008642707 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.142292E-08, 0.8111503) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004191319, 0.0001977655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008642707)", + "Label": "Ĩ", + "hasCustomLabel": false, + "LabelId": 232 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 15.49647) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.301509, -5.701818) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.080838)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.209819E-08, 0.8111505) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004258869, 0.0001964597) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008780457)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 4.209819E-08 + }, + { + "kind": "OMF", + "float": 0.8111505 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00425886875 + }, + { + "kind": "OMF", + "float": 0.000196459689 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000878045743 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.209819E-08, 0.8111505) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004258869, 0.0001964597) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008780457)", + "Label": "Ä©", + "hasCustomLabel": false, + "LabelId": 233 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 9.333727) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.05344, -4.359509) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.8263894)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.277588E-08, 0.8111507) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004326638, 0.000195191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008918655)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 4.277588E-08 + }, + { + "kind": "OMF", + "float": 0.81115067 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.004326638 + }, + { + "kind": "OMF", + "float": 0.000195191009 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0008918655 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.277588E-08, 0.8111507) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004326638, 0.000195191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008918655)", + "Label": "Ī", + "hasCustomLabel": false, + "LabelId": 234 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 5.731075) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.099188, -3.333203) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6318427)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.345571E-08, 0.8111508) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004394621, 0.0001939578) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009057288)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 4.34557066E-08 + }, + { + "kind": "OMF", + "float": 0.811150849 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00439462066 + }, + { + "kind": "OMF", + "float": 0.0001939578 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0009057288 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.345571E-08, 0.8111508) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004394621, 0.0001939578) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009057288)", + "Label": "Ä«", + "hasCustomLabel": false, + "LabelId": 235 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 3.625015) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.369584, -2.548508) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.4830957)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.413718E-08, 0.811151) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004462813, 0.0001927586) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009196345)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 4.41371775E-08 + }, + { + "kind": "OMF", + "float": 0.811151 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.004462813 + }, + { + "kind": "OMF", + "float": 0.000192758554 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.000919634535 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.413718E-08, 0.811151) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004462813, 0.0001927586) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009196345)", + "Label": "Ĭ", + "hasCustomLabel": false, + "LabelId": 236 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 2.393842) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.811742, -1.948544) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.3693664)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482203E-08, 0.8111512) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004531207, 0.0001915918) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009335818)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 4.482203E-08 + }, + { + "kind": "OMF", + "float": 0.8111512 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00453120749 + }, + { + "kind": "OMF", + "float": 0.000191591811 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0009335818 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482203E-08, 0.8111512) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004531207, 0.0001915918) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009335818)", + "Label": "Ä", + "hasCustomLabel": false, + "LabelId": 237 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 1.674116) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.385226, -1.489822) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.282411)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.550752E-08, 0.8111514) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004599802, 0.0001904562) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009475693)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 4.550752E-08 + }, + { + "kind": "OMF", + "float": 0.8111514 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00459980173 + }, + { + "kind": "OMF", + "float": 0.00019045615 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0009475693 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.550752E-08, 0.8111514) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004599802, 0.0001904562) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009475693)", + "Label": "Ä®", + "hasCustomLabel": false, + "LabelId": 238 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 1.253373) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.059119, -1.139092) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2159265)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.619537E-08, 0.8111516) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004668587, 0.0001893503) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009615958)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 4.619537E-08 + }, + { + "kind": "OMF", + "float": 0.811151564 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.004668587 + }, + { + "kind": "OMF", + "float": 0.0001893503 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0009615958 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.619537E-08, 0.8111516) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004668587, 0.0001893503) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009615958)", + "Label": "į", + "hasCustomLabel": false, + "LabelId": 239 + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.688509E-08, 0.8111517) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004737559, 0.000188273) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009756604)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 4.688509E-08 + }, + { + "kind": "OMF", + "float": 0.811151743 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00473755924 + }, + { + "kind": "OMF", + "float": 0.000188273 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0009756604 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.688509E-08, 0.8111517) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004737559, 0.000188273) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009756604)", + "Label": "Ä°", + "hasCustomLabel": false, + "LabelId": 240 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 1.007413) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8097838, -0.8709294) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1650936)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.757619E-08, 0.8111519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004806715, 0.0001872231) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009897621)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 4.757619E-08 + }, + { + "kind": "OMF", + "float": 0.8111519 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.0048067146 + }, + { + "kind": "OMF", + "float": 0.000187223122 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0009897621 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.757619E-08, 0.8111519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004806715, 0.0001872231) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009897621)", + "Label": "ı", + "hasCustomLabel": false, + "LabelId": 241 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.490116E-08, 0.8636284) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.6191465, -0.6658972) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1262276)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.826996E-08, 0.8111521) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004876046, 0.0001861995) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0010039)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 4.8269964E-08 + }, + { + "kind": "OMF", + "float": 0.8111521 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00487604644 + }, + { + "kind": "OMF", + "float": 0.000186199541 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0010039 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.826996E-08, 0.8111521) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004876046, 0.0001861995) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0010039)", + "Label": "IJ", + "hasCustomLabel": false, + "LabelId": 242 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.7795739) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4733882, -0.5091332) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.09651136)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.896458E-08, 0.8111523) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004945554, 0.0001852013) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001018073)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 4.89645835E-08 + }, + { + "kind": "OMF", + "float": 0.8111523 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.004945554 + }, + { + "kind": "OMF", + "float": 0.00018520125 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00101807329 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.896458E-08, 0.8111523) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004945554, 0.0001852013) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001018073)", + "Label": "ij", + "hasCustomLabel": false, + "LabelId": 243 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.7304367) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3619443, -0.3892742) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.07379089)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.966179E-08, 0.8111525) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005015229, 0.0001842272) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001032281)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 4.96617929E-08 + }, + { + "kind": "OMF", + "float": 0.811152458 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00501522934 + }, + { + "kind": "OMF", + "float": 0.000184227247 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.001032281 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.966179E-08, 0.8111525) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005015229, 0.0001842272) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001032281)", + "Label": "Ä´", + "hasCustomLabel": false, + "LabelId": 244 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.862645E-09, 0.7017118) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2767362, -0.2976321) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0564192)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.036019E-08, 0.8111526) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005085069, 0.0001832766) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001046522)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 5.03601925E-08 + }, + { + "kind": "OMF", + "float": 0.811152637 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.005085069 + }, + { + "kind": "OMF", + "float": 0.00018327657 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00104652217 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.036019E-08, 0.8111526) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005085069, 0.0001832766) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001046522)", + "Label": "ĵ", + "hasCustomLabel": false, + "LabelId": 245 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6849197) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2115875, -0.2275642) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.04313712)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.105976E-08, 0.8111528) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005155072, 0.0001823483) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001060796)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 5.105976E-08 + }, + { + "kind": "OMF", + "float": 0.8111528 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00515507162 + }, + { + "kind": "OMF", + "float": 0.000182348347 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0010607962 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.105976E-08, 0.8111528) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005155072, 0.0001823483) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001060796)", + "Label": "Ķ", + "hasCustomLabel": false, + "LabelId": 246 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6751032) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1617761, -0.1739916) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.03298188)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.176225E-08, 0.811153) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005225229, 0.0001814417) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075102)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 5.1762246E-08 + }, + { + "kind": "OMF", + "float": 0.811153 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.005225229 + }, + { + "kind": "OMF", + "float": 0.000181441719 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00107510213 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.176225E-08, 0.811153) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005225229, 0.0001814417) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075102)", + "Label": "Ä·", + "hasCustomLabel": false, + "LabelId": 247 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6693646) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1236911, -0.1330309) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.02521736)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.246446E-08, 0.8111532) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005295542, 0.0001805559) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001089439)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 5.24644648E-08 + }, + { + "kind": "OMF", + "float": 0.8111532 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.005295542 + }, + { + "kind": "OMF", + "float": 0.0001805559 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00108943926 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.246446E-08, 0.8111532) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005295542, 0.0001805559) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001089439)", + "Label": "ĸ", + "hasCustomLabel": false, + "LabelId": 248 + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.316955E-08, 0.8111534) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005366005, 0.0001796902) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001103807)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 5.3169547E-08 + }, + { + "kind": "OMF", + "float": 0.811153352 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00536600454 + }, + { + "kind": "OMF", + "float": 0.000179690192 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00110380712 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.316955E-08, 0.8111534) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005366005, 0.0001796902) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001103807)", + "Label": "Ĺ", + "hasCustomLabel": false, + "LabelId": 249 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.66601) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.09457205, -0.1017131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01928075)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.387609E-08, 0.8111535) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005436614, 0.0001788438) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001118205)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 5.38760929E-08 + }, + { + "kind": "OMF", + "float": 0.811153531 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00543661369 + }, + { + "kind": "OMF", + "float": 0.000178843809 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00111820491 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.387609E-08, 0.8111535) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005436614, 0.0001788438) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001118205)", + "Label": "ĺ", + "hasCustomLabel": false, + "LabelId": 250 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.164153E-10, 0.6640489) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.07230812, -0.07776801) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01474172)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.458318E-08, 0.8111537) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005507368, 0.0001780161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001132632)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 5.45831753E-08 + }, + { + "kind": "OMF", + "float": 0.8111537 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00550736766 + }, + { + "kind": "OMF", + "float": 0.000178016082 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00113263191 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.458318E-08, 0.8111537) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005507368, 0.0001780161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001132632)", + "Label": "Ä»", + "hasCustomLabel": false, + "LabelId": 251 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6629024) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0552855, -0.05946004) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01127125)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.529209E-08, 0.8111539) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005578259, 0.0001772063) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001147087)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 5.52920945E-08 + }, + { + "kind": "OMF", + "float": 0.8111539 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00557825947 + }, + { + "kind": "OMF", + "float": 0.000177206282 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00114708708 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.529209E-08, 0.8111539) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005578259, 0.0001772063) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001147087)", + "Label": "ļ", + "hasCustomLabel": false, + "LabelId": 252 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6622322) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04227031, -0.04546209) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.008617802)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.60024E-08, 0.8111541) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00564929, 0.0001764139) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00116157)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 5.60024E-08 + }, + { + "kind": "OMF", + "float": 0.811154068 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00564929 + }, + { + "kind": "OMF", + "float": 0.0001764139 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00116157043 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.60024E-08, 0.8111541) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00564929, 0.0001764139) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00116157)", + "Label": "Ľ", + "hasCustomLabel": false, + "LabelId": 253 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6618404) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03231913, -0.03475951) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.006589018)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.671448E-08, 0.8111542) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005720453, 0.0001756383) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001176081)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 5.67144838E-08 + }, + { + "kind": "OMF", + "float": 0.811154246 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.005720453 + }, + { + "kind": "OMF", + "float": 0.000175638255 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00117608078 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.671448E-08, 0.8111542) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005720453, 0.0001756383) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001176081)", + "Label": "ľ", + "hasCustomLabel": false, + "LabelId": 254 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6616114) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02471064, -0.02657651) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.005037847)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.742698E-08, 0.8111544) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005791748, 0.0001748788) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001190618)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 5.742698E-08 + }, + { + "kind": "OMF", + "float": 0.8111544 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.005791748 + }, + { + "kind": "OMF", + "float": 0.000174878835 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.001190618 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.742698E-08, 0.8111544) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005791748, 0.0001748788) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001190618)", + "Label": "Ä¿", + "hasCustomLabel": false, + "LabelId": 255 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6614775) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01889331, -0.02031993) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.003851848)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.814076E-08, 0.8111546) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005863171, 0.0001741351) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001205181)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 5.81407562E-08 + }, + { + "kind": "OMF", + "float": 0.8111546 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.005863171 + }, + { + "kind": "OMF", + "float": 0.000174135057 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00120518124 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.814076E-08, 0.8111546) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005863171, 0.0001741351) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001205181)", + "Label": "Å€", + "hasCustomLabel": false, + "LabelId": 256 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613992) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01444549, -0.01553626) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.002945055)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.885625E-08, 0.8111548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00593472, 0.0001734065) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00121977)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 5.88562479E-08 + }, + { + "kind": "OMF", + "float": 0.811154842 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00593472039 + }, + { + "kind": "OMF", + "float": 0.000173406457 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00121977017 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.885625E-08, 0.8111548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00593472, 0.0001734065) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00121977)", + "Label": "Å", + "hasCustomLabel": false, + "LabelId": 257 + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.957342E-08, 0.8111551) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006006392, 0.0001726925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001234384)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 5.957342E-08 + }, + { + "kind": "OMF", + "float": 0.8111551 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.006006392 + }, + { + "kind": "OMF", + "float": 0.000172692511 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00123438414 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.957342E-08, 0.8111551) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006006392, 0.0001726925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001234384)", + "Label": "Å‚", + "hasCustomLabel": false, + "LabelId": 258 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613535) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01104477, -0.01187875) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.002251737)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.029135E-08, 0.8111553) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006078185, 0.0001719927) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001249023)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 6.029135E-08 + }, + { + "kind": "OMF", + "float": 0.8111553 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.006078185 + }, + { + "kind": "OMF", + "float": 0.000171992724 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00124902267 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.029135E-08, 0.8111553) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006078185, 0.0001719927) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001249023)", + "Label": "Ń", + "hasCustomLabel": false, + "LabelId": 259 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613267) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.008444633, -0.009082278) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.001721638)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.101046E-08, 0.8111556) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006150096, 0.0001713067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001263685)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 6.101046E-08 + }, + { + "kind": "OMF", + "float": 0.811155558 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.006150096 + }, + { + "kind": "OMF", + "float": 0.000171306659 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00126368529 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.101046E-08, 0.8111556) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006150096, 0.0001713067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001263685)", + "Label": "Å„", + "hasCustomLabel": false, + "LabelId": 260 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613111) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006456617, -0.006944149) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.001316334)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.173074E-08, 0.8111558) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006222124, 0.0001706339) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001278372)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 6.173074E-08 + }, + { + "kind": "OMF", + "float": 0.8111558 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.006222124 + }, + { + "kind": "OMF", + "float": 0.000170633924 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00127837167 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.173074E-08, 0.8111558) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006222124, 0.0001706339) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001278372)", + "Label": "Å…", + "hasCustomLabel": false, + "LabelId": 261 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.661302) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004936615, -0.005309373) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.001006445)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.245215E-08, 0.811156) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006294266, 0.0001699741) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001293081)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 6.245215E-08 + }, + { + "kind": "OMF", + "float": 0.811156034 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.006294266 + }, + { + "kind": "OMF", + "float": 0.000169974053 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00129308121 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.245215E-08, 0.811156) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006294266, 0.0001699741) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001293081)", + "Label": "ņ", + "hasCustomLabel": false, + "LabelId": 262 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612966) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003774448, -0.004059452) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0007695103)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.317561E-08, 0.8111563) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00636652, 0.0001693267) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001307814)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 6.31756052E-08 + }, + { + "kind": "OMF", + "float": 0.8111563 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00636651972 + }, + { + "kind": "OMF", + "float": 0.0001693267 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00130781368 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.317561E-08, 0.8111563) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00636652, 0.0001693267) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001307814)", + "Label": "Ň", + "hasCustomLabel": false, + "LabelId": 263 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612935) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002885876, -0.003103785) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.000588354)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.389834E-08, 0.8111565) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006438884, 0.0001686915) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001322569)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 6.389834E-08 + }, + { + "kind": "OMF", + "float": 0.8111565 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00643888442 + }, + { + "kind": "OMF", + "float": 0.000168691462 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00132256851 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.389834E-08, 0.8111565) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006438884, 0.0001686915) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001322569)", + "Label": "ň", + "hasCustomLabel": false, + "LabelId": 264 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612917) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00220649, -0.002373099) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.000449845)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.462306E-08, 0.8111567) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006511356, 0.000168068) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001337345)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 6.462306E-08 + }, + { + "kind": "OMF", + "float": 0.81115675 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.006511356 + }, + { + "kind": "OMF", + "float": 0.000168067971 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00133734522 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.462306E-08, 0.8111567) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006511356, 0.000168068) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001337345)", + "Label": "ʼn", + "hasCustomLabel": false, + "LabelId": 265 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612906) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001687043, -0.00181443) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0003439435)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.534971E-08, 0.811157) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00658393, 0.0001674558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001352143)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 6.534971E-08 + }, + { + "kind": "OMF", + "float": 0.811157 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00658393046 + }, + { + "kind": "OMF", + "float": 0.000167455786 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.001352143 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.534971E-08, 0.811157) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00658393, 0.0001674558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001352143)", + "Label": "ÅŠ", + "hasCustomLabel": false, + "LabelId": 266 + }, + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.607561E-08, 0.8111572) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006656611, 0.0001668547) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001366962)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 6.607561E-08 + }, + { + "kind": "OMF", + "float": 0.8111572 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.006656611 + }, + { + "kind": "OMF", + "float": 0.000166854676 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.001366962 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.607561E-08, 0.8111572) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006656611, 0.0001668547) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001366962)", + "Label": "Å‹", + "hasCustomLabel": false, + "LabelId": 267 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.684342E-14, 0.66129) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001289883, -0.001387281) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0002629731)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.68043E-08, 0.8111575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00672939, 0.0001662643) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381801)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 6.68043043E-08 + }, + { + "kind": "OMF", + "float": 0.811157465 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00672938954 + }, + { + "kind": "OMF", + "float": 0.000166264261 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00138180132 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.68043E-08, 0.8111575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00672939, 0.0001662643) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381801)", + "Label": "ÅŒ", + "hasCustomLabel": false, + "LabelId": 268 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612896) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0009862219, -0.00106069) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0002010646)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.753218E-08, 0.8111577) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006802268, 0.0001656843) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001396661)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 6.753218E-08 + }, + { + "kind": "OMF", + "float": 0.8111577 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00680226833 + }, + { + "kind": "OMF", + "float": 0.000165684265 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00139666081 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.753218E-08, 0.8111577) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006802268, 0.0001656843) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001396661)", + "Label": "Å", + "hasCustomLabel": false, + "LabelId": 269 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612894) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0007540478, -0.0008109849) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0001537304)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.826195E-08, 0.8111579) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006875245, 0.0001651144) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00141154)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 6.826195E-08 + }, + { + "kind": "OMF", + "float": 0.811157942 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00687524537 + }, + { + "kind": "OMF", + "float": 0.000165114427 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00141154043 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.826195E-08, 0.8111579) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006875245, 0.0001651144) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00141154)", + "Label": "ÅŽ", + "hasCustomLabel": false, + "LabelId": 270 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612893) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0005765316, -0.0006200647) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0001175396)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.899268E-08, 0.8111582) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006948318, 0.0001645544) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001426439)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 6.899268E-08 + }, + { + "kind": "OMF", + "float": 0.8111582 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00694831833 + }, + { + "kind": "OMF", + "float": 0.000164554411 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0014264395 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.899268E-08, 0.8111582) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006948318, 0.0001645544) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001426439)", + "Label": "Å", + "hasCustomLabel": false, + "LabelId": 271 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0004408059, -0.0004740905) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 8.986868E-05)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.972437E-08, 0.8111584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007021488, 0.000164004) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001441358)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 6.972437E-08 + }, + { + "kind": "OMF", + "float": 0.8111584 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00702148769 + }, + { + "kind": "OMF", + "float": 0.000164004 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00144135824 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.972437E-08, 0.8111584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007021488, 0.000164004) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001441358)", + "Label": "Å", + "hasCustomLabel": false, + "LabelId": 272 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0003370324, -0.0003624812) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 6.871201E-05)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.045605E-08, 0.8111587) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007094746, 0.0001634628) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001456295)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 7.045605E-08 + }, + { + "kind": "OMF", + "float": 0.811158657 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00709474646 + }, + { + "kind": "OMF", + "float": 0.0001634628 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.001456295 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.045605E-08, 0.8111587) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007094746, 0.0001634628) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001456295)", + "Label": "Å‘", + "hasCustomLabel": false, + "LabelId": 273 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.000257689, -0.0002771467) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 5.253599E-05)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.118957E-08, 0.8111589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007168098, 0.0001629307) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001471251)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 7.118957E-08 + }, + { + "kind": "OMF", + "float": 0.8111589 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.007168098 + }, + { + "kind": "OMF", + "float": 0.000162930708 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0014712509 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.118957E-08, 0.8111589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007168098, 0.0001629307) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001471251)", + "Label": "Å’", + "hasCustomLabel": false, + "LabelId": 274 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001970245, -0.0002119015) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 4.016809E-05)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.192487E-08, 0.8111591) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007241537, 0.0001624074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001486225)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 7.19248661E-08 + }, + { + "kind": "OMF", + "float": 0.811159134 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00724153733 + }, + { + "kind": "OMF", + "float": 0.000162407363 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.0014862247 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.192487E-08, 0.8111591) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007241537, 0.0001624074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001486225)", + "Label": "Å“", + "hasCustomLabel": false, + "LabelId": 275 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001506414, -0.0001620161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 3.071181E-05)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.266016E-08, 0.8111594) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007315067, 0.0001618926) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001501217)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 7.26601641E-08 + }, + { + "kind": "OMF", + "float": 0.8111594 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.007315067 + }, + { + "kind": "OMF", + "float": 0.000161892618 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00150121679 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.266016E-08, 0.8111594) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007315067, 0.0001618926) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001501217)", + "Label": "Å”", + "hasCustomLabel": false, + "LabelId": 276 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.440892E-16, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001151777, -0.0001238746) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 2.348171E-05)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.339725E-08, 0.8111596) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007388685, 0.0001613862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001516227)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 7.339725E-08 + }, + { + "kind": "OMF", + "float": 0.8111596 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.007388685 + }, + { + "kind": "OMF", + "float": 0.000161386226 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00151622691 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.339725E-08, 0.8111596) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007388685, 0.0001613862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001516227)", + "Label": "Å•", + "hasCustomLabel": false, + "LabelId": 277 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.220446E-16, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.80629E-05, -9.471237E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.79537E-05)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.413337E-08, 0.8111598) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007462387, 0.0001608879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001531254)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 7.413337E-08 + }, + { + "kind": "OMF", + "float": 0.811159849 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.007462387 + }, + { + "kind": "OMF", + "float": 0.00016088791 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.001531254 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.413337E-08, 0.8111598) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007462387, 0.0001608879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001531254)", + "Label": "Å–", + "hasCustomLabel": false, + "LabelId": 278 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.733131E-05, -7.24154E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.372708E-05)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.487125E-08, 0.8111601) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007536175, 0.0001603975) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001546299)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 7.48712452E-08 + }, + { + "kind": "OMF", + "float": 0.8111601 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00753617473 + }, + { + "kind": "OMF", + "float": 0.00016039754 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00154629862 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.487125E-08, 0.8111601) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007536175, 0.0001603975) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001546299)", + "Label": "Å—", + "hasCustomLabel": false, + "LabelId": 279 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.148033E-05, -5.536753E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.049548E-05)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.560991E-08, 0.8111603) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007610042, 0.0001599148) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001561359)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 7.560991E-08 + }, + { + "kind": "OMF", + "float": 0.8111603 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00761004165 + }, + { + "kind": "OMF", + "float": 0.000159914809 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.00156135939 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.560991E-08, 0.8111603) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007610042, 0.0001599148) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001561359)", + "Label": "Ř", + "hasCustomLabel": false, + "LabelId": 280 }, - { - "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.936095E-05, -4.233303E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, Infinity)", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.634941E-08, 0.8111606) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007683991, 0.0001594396) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001576437)": { + "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", + "Function_SOMDoc": { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 7.634941E-08 + }, + { + "kind": "OMF", + "float": 0.811160564 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Add" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": 0.00768399145 + }, + { + "kind": "OMF", + "float": 0.000159439616 + } + ] + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.5 + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "UnityEngine.Vector3" + }, + "arguments": [ + { + "kind": "OMF", + "float": 0.0 + }, + { + "kind": "OMF", + "float": -9.809999 + }, + { + "kind": "OMF", + "float": 0.0 + } + ] + }, + { + "kind": "OMA", + "applicant": { + "kind": "OMS", + "uri": "Multiply" + }, + "arguments": [ + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + }, + { + "kind": "OMV", + "name": "t", + "typeString": "System.Single" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "Domain": { + "Item1": -1E-05, + "Item2": 0.001576437 + }, + "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.634941E-08, 0.8111606) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007683991, 0.0001594396) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001576437)", + "Label": "Å™", + "hasCustomLabel": false, + "LabelId": 281 }, - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5592{t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.715, 18.639) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.3575, -24.0345) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2859924), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.418, 11.76532) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.81013, -15.33226) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1896955), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.62, 8.856853) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.56049, -14.95858) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.5920918), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.6872, 0) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -20.71589, 14.50145) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2233716), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.815126, 3.239212) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.088061, -26.67258) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1214435), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.874923, -2.384186E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -0.1032848, 26.66929) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1209298), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.790701, 3.225111) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 22.11182, -14.23284) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2265964), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.549308, -2.384186E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.28769, 13.8026) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6978087), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.62, 9.631574) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -12.11062, 13.43478) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.3298803), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.09118, 14.06344) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.80479, 19.21664) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2891534), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.5809, 19.62) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.57104, -19.0131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.8358453), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.661715, 3.727991) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -22.95221, -3.161415) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1949807), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.490116E-08, 3.111576) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.96413, -3.046878) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1255537), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.931463, 2.729029) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.473647, 20.59326) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2774679), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.905, 8.442996) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.513967, 19.74212) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.56615), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2110889, 19.62) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.88789, -19.42103) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01922107), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.841706E-09, 19.24671) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.849987, -15.51724) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.027901), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.914383, 3.296518) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -13.78543, 6.561788) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2599138), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.960464E-08, 5.002018) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.5477, 5.843759) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 2.339293), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.189739, 18.67228) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.211595, -4.33007) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 2.099828), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.905001, 9.579883) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.256, -4.279988) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.349196), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.16284, 3.805339) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.279988, -1.979609) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.134112), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.536743E-07, 1.560241) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.84159, -1.907133) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.8181087), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.859114, -3.576279E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.534343, 1.828338) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.856556), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.083937, 3.394411) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.135024, -10.71493) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.3167926), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.281738, -2.384186E-07) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.105723, 10.5122) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2705758), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.980232E-08, 2.844347) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.460365, 8.035274) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.520972), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 15.06577) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.288472, 6.773072) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6724024), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.010711, 19.62) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -0.3073506, -6.763281) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6096942), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 15.49647) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.301509, -5.701818) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.080838), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 9.333727) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.05344, -4.359509) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.8263894), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 5.731075) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.099188, -3.333203) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.6318427), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 3.625015) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.369584, -2.548508) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.4830957), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 2.393842) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.811742, -1.948544) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.3693664), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 1.674116) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.385226, -1.489822) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.282411), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 1.253373) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.059119, -1.139092) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.2159265), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 1.007413) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8097838, -0.8709294) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1650936), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.490116E-08, 0.8636284) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.6191465, -0.6658972) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.1262276), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.7795739) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4733882, -0.5091332) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.09651136), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.7304367) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3619443, -0.3892742) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.07379089), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.862645E-09, 0.7017118) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2767362, -0.2976321) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0564192), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6849197) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2115875, -0.2275642) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.04313712), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6751032) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1617761, -0.1739916) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.03298188), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6693646) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1236911, -0.1330309) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.02521736), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.66601) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.09457205, -0.1017131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01928075), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.164153E-10, 0.6640489) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.07230812, -0.07776801) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01474172), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6629024) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0552855, -0.05946004) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.01127125), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6622322) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04227031, -0.04546209) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.008617802), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6618404) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03231913, -0.03475951) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.006589018), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6616114) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02471064, -0.02657651) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.005037847), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6614775) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01889331, -0.02031993) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.003851848), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613992) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01444549, -0.01553626) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.002945055), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613535) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01104477, -0.01187875) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.002251737), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613267) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.008444633, -0.009082278) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.001721638), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6613111) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006456617, -0.006944149) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.001316334), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.661302) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004936615, -0.005309373) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.001006445), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612966) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003774448, -0.004059452) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0007695103), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612935) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002885876, -0.003103785) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.000588354), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612917) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00220649, -0.002373099) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.000449845), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612906) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001687043, -0.00181443) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0003439435), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.684342E-14, 0.66129) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001289883, -0.001387281) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0002629731), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612896) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0009862219, -0.00106069) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0002010646), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612894) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0007540478, -0.0008109849) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0001537304), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612893) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0005765316, -0.0006200647) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 0.0001175396), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0004408059, -0.0004740905) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 8.986868E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0003370324, -0.0003624812) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 6.871201E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.000257689, -0.0002771467) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 5.253599E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001970245, -0.0002119015) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 4.016809E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001506414, -0.0001620161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 3.071181E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.440892E-16, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001151777, -0.0001238746) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 2.348171E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.220446E-16, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.80629E-05, -9.471237E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.79537E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.733131E-05, -7.24154E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.372708E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.148033E-05, -5.536753E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, 1.049548E-05), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0, 0.6612892) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.936095E-05, -4.233303E-05) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(0, Infinity)}", - "samestep": true, - "steplink": 30, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1660{t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.71507, 18.63876) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.3575, -24.0345) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2859854), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.41822, 11.76509) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 18.17429, -15.64585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1854527), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61984, 8.863367) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -16.15633, -15.4558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5734656), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.74145, 0.0001512584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -21.45141, 15.22121) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2155912), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.888747, 3.281431) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.38822, -27.80841) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1180014), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.984262, 0.0002780475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2305991, 27.80475) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1191256), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.94236, 3.31239) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.42652, -14.6) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2268761), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.005012, 0.0001435129) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 20.87433, 14.37513) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.590435), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 8.487865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -14.8994, 14.20093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.691238), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.977393, 18.30397) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.09713, -11.65444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3922241), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.28206, 13.7326) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4603704, -22.11528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6209553), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.67658, 0.0002202752) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.608852, 22.02752) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2200489), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.20507, 4.847275) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 22.02752, -7.767531) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3665375), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61982, 2.000106) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -18.31479, -7.718225) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2591408), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.54411, 7.497284E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -20.45319, 7.56881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.456389), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.187777, 3.454145) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.839626, -25.07086) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1377753), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.290042, 0.0002493555) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.159229, 24.9594) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.09993961), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.525736, 2.494487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.48746, -19.46407) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1281586), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.686502, 0.0001922491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.05069, 19.24876) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4696551), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.14276, 9.040274) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.946, -19.53067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4628757), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.025051, 0.0001932228) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.32156, 19.32228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1378767), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.819405, 2.664044) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.37134, -24.0291) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1108674), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.687296, 0.0002391654) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.249614, 23.91654) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1568838), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.704151, 3.752287) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.28331, -6.928161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5415995), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.87577, 6.724003E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.62621, 6.795529) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.226729), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 1.540878) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.30014, 6.750589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4426361), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.8865, 4.528736) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.750587, -19.6424) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2305592), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.18222, 0.0001952448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.472753, 19.57217) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.002434), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.7369, 19.6198) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.33831, -19.48888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7929868), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.419057, 4.16536) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -23.02034, -1.586958) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2246498), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.000250105, 3.808835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 24.99714, -1.572675) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1788682), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.314614, 3.527739) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.09929, 20.58879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7816031), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.211795, 19.61979) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.427216, -20.55026) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9547223), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.058162, 0.0002044376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.902648, 20.44376) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2043911), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.442544, 4.178548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.22719, -17.90403) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.233386), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.262522, 0.0001770008) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.84221, 17.74776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4721227), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.28793, 8.379155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -12.22817, -14.21008) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5896627), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.371777, 0.0001400589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -17.75392, 14.00589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1808783), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001780728, 2.53363) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.78795, 12.75767) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.339301), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.02542, 19.61987) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.623549, -12.68671) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5710809), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.06627, 12.37468) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.29918, -5.410871) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3758278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61992, 10.34107) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.537445, -5.357656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5498449), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.99255, 7.395328) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.80683, 13.73323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8901526), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.497512, 19.61986) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.42943, -13.59016) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104124), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.085816, 16.76016) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.285142, -16.85733) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.698581), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001051595, 4.983803) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.49216, -14.57131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3420286), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.014989, 0.0001446568) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.085127, 14.46568) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2505379), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482346, 3.624316) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.64452, -3.182668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.138767), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.79832, 3.069148E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.42739, 3.140674) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.261231), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.31868, 3.961057) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.140674, -8.945286) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4428095), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.74761, 8.878566E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.200725, 8.92625) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3679302), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.64192, 3.284277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.92625, -4.81012) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.682785), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.44996, 4.729227E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212746, 4.776911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9691768), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.98726, 4.629645) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.776911, -7.294877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6346434), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.04329, 7.224429E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.444419, 7.272113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5074097), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.04758, 3.689949) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.272113, -6.422107) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5745698), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.60665, 6.348934E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.629092, 6.396618) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7429182), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.10979, 4.752171) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.396617, -5.658934) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8397644), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.0224, 5.582916E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.83225, 5.630599) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6312054), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.91168, 3.55404) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.630599, -8.024374) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4429057), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.44332, 7.9564E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.282444, 8.004084) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5421413), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.697, 4.339384) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.004084, -4.035961) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.07518), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.63257, 3.904473E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.520668, 3.99984) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7227589), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.2485, 2.890863) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.99984, -9.610931) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3007891), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.00784, 9.546617E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.047284, 9.5943) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3548257), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.762, 3.404376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.594299, -2.433555) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.398931), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.58459, 2.345659E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.060983, 2.393343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.173249), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.068203, 2.807865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.631238, -14.47211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.194019), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.790921, 0.0001436155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.477002, 14.36155) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104654), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.190275E-05, 3.022877) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.196284, 12.33656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.345361), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.148965, 19.61988) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.971041, -12.26093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3268713), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.422212E-05, 15.61202) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.41034, -11.11049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.40516), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.727924, 0.0001111375) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.321439, 11.01838) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.106372), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.326775E-05, 1.172253) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.329431, 9.469191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.290414), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.318291E-05, 13.39154) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.31834, 10.94849) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5688878), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.575984, 19.61989) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.733199, -10.92106) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9225922), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.242024E-05, 9.544113) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.289756, -9.387285) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.016706), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.324602, 9.331409E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.662205, 9.331409) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2665415), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.402976E-05, 2.487381) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.397064, 8.023324) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.100329), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.64054E-05, 11.31575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.640589, 6.898616) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9461036), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.206955E-05, 17.84262) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.207005, 6.253925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2842029), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.799516, 19.61994) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.413935, -6.231718) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5728211), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.801053E-05, 16.05022) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.813024, -5.650228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7773848), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.303209E-05, 11.65777) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.279417, -4.859393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6685966), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.844296E-05, 8.408755) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.820503, -4.179256) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5750363), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.4377E-05, 6.005496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.425828, -3.594323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4945723), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086349E-05, 4.227811) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086398, -3.091268) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4253715), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.794431E-05, 2.912848) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.79448, -2.658629) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3658572), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543375E-05, 1.940146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543425, -2.28655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3146735), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.330442E-05, 1.220609) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.327511, -1.966554) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2706544), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.141771E-05, 0.688336) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.14182, -1.69135) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.232797), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.820731E-06, 0.2945802) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.9821221, -1.454668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2002388), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.44729E-06, 0.003286785) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8447781, -1.251116) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002627082), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002202011, 1.239552E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8114513, 1.239575) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1681041), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.204322E-06, 0.2084007) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.7204813, 1.066187) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1468971), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.197441E-06, 0.3650296) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.6197932, 0.9170609) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1263695), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.331456E-06, 0.480926) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.5331947, 0.7888028) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1087143), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582926E-06, 0.5666869) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4587142, 0.6784922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0935297), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.946068E-06, 0.6301519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3946559, 0.5836178) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.08046991), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.391399E-06, 0.6771206) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3395615, 0.5020194) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.06923762), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.921276E-06, 0.7118835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2921766, 0.4318393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0595771), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.513734E-06, 0.737615) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2514225, 0.3714797) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0512684), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.163221E-06, 0.7566634) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2163712, 0.3195664) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.04412237), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.862688E-06, 0.7707661) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1862247, 0.2749174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03797631), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.602478E-06, 0.7812089) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1602968, 0.2365163) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03269029), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.379015E-06, 0.7889427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1379971, 0.2034888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02814396), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.18792E-06, 0.7946714) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1188178, 0.175083) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02423381), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.022733E-06, 0.7989158) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1023224, 0.150652) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02087083), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.80862E-07, 0.8020613) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.08813525, 0.1296397) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01797844), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.589597E-07, 0.8043932) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.07593338, 0.1115677) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0154908), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.537832E-07, 0.8061224) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.06543901, 0.09602457) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01335127), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.63641E-07, 0.8074053) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.05641315, 0.08265641) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01151113), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.85955E-07, 0.8083575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04865037, 0.07115889) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.009928506), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.192195E-07, 0.8090646) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04197391, 0.06127021) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.008567349), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.617982E-07, 0.80959) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03623178, 0.05276527) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.007396676), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.124417E-07, 0.8099808) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03129322, 0.04545041) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.006389831), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.699823E-07, 0.8102716) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02704583, 0.03915911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.005523895), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.334384E-07, 0.8104883) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0233929, 0.03374812) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004779152), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.020291E-07, 0.8106499) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02025124, 0.02909426) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004138645), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.750029E-07, 0.8107705) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01754934, 0.02509158) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003587792), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.517663E-07, 0.8108608) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01522568, 0.02164893) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003114051), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.317795E-07, 0.8109283) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01322737, 0.01868795) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002706637), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.145984E-07, 0.8109791) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01150889, 0.01614122) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002356275), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.982086E-08, 0.8110173) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01003114, 0.01395076) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002054987), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.711405E-08, 0.8110461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.008760455, 0.0120667) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001795915), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.618684E-08, 0.8110679) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007667916, 0.01044615) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001573159), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.679592E-08, 0.8110844) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006728643, 0.009052214) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381649), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.872202E-08, 0.811097) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005921252, 0.007853162) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001217024), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.178306E-08, 0.8111066) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005227356, 0.006821695) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075536), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582106E-08, 0.811114) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004631156, 0.005934337) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009539629), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.070063E-08, 0.8111197) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004119067, 0.005170891) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008495366), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.630378E-08, 0.8111242) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003679428, 0.004513982) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007598784), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.253185E-08, 0.8111277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003302213, 0.003948665) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006829454), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.929792E-08, 0.8111305) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00297882, 0.003462082) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006169838), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.652802E-08, 0.8111327) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002701863, 0.003043171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000560488), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.415967E-08, 0.8111344) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002465006, 0.002682415) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005121666), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.213766E-08, 0.8111358) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002262817, 0.002371624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004709127), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.041587E-08, 0.8111369) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002090637, 0.002103754) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000435777), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.895421E-08, 0.8111378) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001944477, 0.001872743) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004059467), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.771862E-08, 0.8111386) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001820918, 0.001673379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003807253), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.667983E-08, 0.8111392) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001717033, 0.001501177) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003595165), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.58127E-08, 0.8111398) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001630314, 0.001352282) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003418096), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.509563E-08, 0.8111402) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001558613, 0.001223379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003271669), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.451029E-08, 0.8111407) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001500085, 0.001111624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003152128), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.404092E-08, 0.811141) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001453148, 0.001014572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003056248), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367392E-08, 0.8111413) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00141644, 0.0009301305) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002981256), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.339735E-08, 0.8111416) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001388788, 0.0008565031) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000292476), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.320126E-08, 0.8111418) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001369179, 0.0007921541) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002884693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.307687E-08, 0.8111421) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001356734, 0.0007357697) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002859265), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.30164E-08, 0.8111423) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350693, 0.0006862283) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002846919), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.301342E-08, 0.8111425) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350389, 0.000642572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00028463), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.306193E-08, 0.8111427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001355246, 0.0006039842) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002856223), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.3157E-08, 0.8111429) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001364753, 0.0005697685) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000287565), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.329415E-08, 0.811143) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001378465, 0.0005393313) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002903669), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.346938E-08, 0.8111432) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001395991, 0.0005121662) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002939476), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367931E-08, 0.8111434) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001416981, 0.0004878413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002982362), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.392084E-08, 0.8111435) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001441131, 0.0004659877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00030317), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.419115E-08, 0.8111436) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001468168, 0.0004462903) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000308693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.448797E-08, 0.8111438) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001497847, 0.000428479) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003147557), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.480899E-08, 0.8111439) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001529955, 0.0004123223) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003213138), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.515247E-08, 0.811144) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001564297, 0.0003976213) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003283278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.551645E-08, 0.8111441) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001600701, 0.0003842046) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003357622), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.589954E-08, 0.8111442) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001639009, 0.0003719244) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003435851), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.630033E-08, 0.8111444) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001679083, 0.0003606528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003517679), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.671746E-08, 0.8111445) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001720796, 0.0003502789) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003602849), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.71499E-08, 0.8111446) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001764034, 0.0003407062) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003691125), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.759643E-08, 0.8111447) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001808693, 0.0003318506) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003782297), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.805629E-08, 0.8111448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001854679, 0.0003236387) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003876172), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.852857E-08, 0.8111449) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001901907, 0.000316006) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003972576), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.901248E-08, 0.8111451) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001950298, 0.0003088959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004071349), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.950731E-08, 0.8111452) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001999781, 0.0003022585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004172344), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.00124E-08, 0.8111453) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00205029, 0.0002960498) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000427543), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.052722E-08, 0.8111454) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002101766, 0.0002902308) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004380484), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.105105E-08, 0.8111455) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002154155, 0.0002847669) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004487394), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.158354E-08, 0.8111457) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002207404, 0.0002796271) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004596055), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212418E-08, 0.8111458) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002261468, 0.000274784) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004706375), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.267253E-08, 0.8111459) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002316303, 0.0002702131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004818264), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.322831E-08, 0.811146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002371869, 0.0002658922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004931641), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.37908E-08, 0.8111461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00242813, 0.0002618015) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005046431), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.43599E-08, 0.8111463) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002485052, 0.0002579232) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005162564), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.493551E-08, 0.8111464) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002542601, 0.0002542413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005279974), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.551699E-08, 0.8111465) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002600749, 0.0002507411) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005398603), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.610406E-08, 0.8111466) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002659468, 0.0002474094) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005518393), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.669681E-08, 0.8111467) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002718731, 0.0002442343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005639291), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.729477E-08, 0.8111469) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002778516, 0.0002412049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005761249), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.789739E-08, 0.811147) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0028388, 0.0002383113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005884222), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.850522E-08, 0.8111471) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00289956, 0.0002355444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006008164), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.911729E-08, 0.8111472) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002960779, 0.0002328959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006133038), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.973374E-08, 0.8111473) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003022436, 0.0002303582) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006258803), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.035464E-08, 0.8111475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003084514, 0.0002279245) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006385426), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.097946E-08, 0.8111476) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003146996, 0.0002255881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000651287), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.16084E-08, 0.8111477) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003209868, 0.0002233434) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006641107), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.224065E-08, 0.8111478) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003273115, 0.0002211848) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006770107), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.28765E-08, 0.811148) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003336722, 0.0002191074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006899839), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.351627E-08, 0.8111482) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003400677, 0.0002171064) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007030278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.415894E-08, 0.8111483) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003464967, 0.0002151776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007161399), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.48053E-08, 0.8111485) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00352958, 0.0002133171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007293177), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.545456E-08, 0.8111487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003594506, 0.0002115211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007425591), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.610684E-08, 0.8111489) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003659734, 0.0002097862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007558619), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.676226E-08, 0.8111491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003725253, 0.0002081093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007692242), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.741983E-08, 0.8111492) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003791056, 0.0002064873) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007826439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.808081E-08, 0.8111494) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003857131, 0.0002049174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007961191), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.874399E-08, 0.8111496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003923472, 0.0002033971) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008096482), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.941041E-08, 0.8111498) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003990068, 0.000201924) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008232295), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.007862E-08, 0.81115) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004056912, 0.0002004957) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008368612), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.074971E-08, 0.8111501) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004123999, 0.0001991102) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008505422), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.142292E-08, 0.8111503) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004191319, 0.0001977655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008642707), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.209819E-08, 0.8111505) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004258869, 0.0001964597) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008780457), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.277588E-08, 0.8111507) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004326638, 0.000195191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008918655), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.345571E-08, 0.8111508) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004394621, 0.0001939578) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009057288), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.413718E-08, 0.811151) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004462813, 0.0001927586) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009196345), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482203E-08, 0.8111512) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004531207, 0.0001915918) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009335818), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.550752E-08, 0.8111514) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004599802, 0.0001904562) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009475693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.619537E-08, 0.8111516) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004668587, 0.0001893503) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009615958), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.688509E-08, 0.8111517) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004737559, 0.000188273) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009756604), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.757619E-08, 0.8111519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004806715, 0.0001872231) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009897621), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.826996E-08, 0.8111521) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004876046, 0.0001861995) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0010039), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.896458E-08, 0.8111523) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004945554, 0.0001852013) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001018073), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.966179E-08, 0.8111525) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005015229, 0.0001842272) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001032281), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.036019E-08, 0.8111526) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005085069, 0.0001832766) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001046522), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.105976E-08, 0.8111528) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005155072, 0.0001823483) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001060796), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.176225E-08, 0.811153) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005225229, 0.0001814417) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075102), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.246446E-08, 0.8111532) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005295542, 0.0001805559) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001089439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.316955E-08, 0.8111534) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005366005, 0.0001796902) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001103807), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.387609E-08, 0.8111535) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005436614, 0.0001788438) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001118205), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.458318E-08, 0.8111537) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005507368, 0.0001780161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001132632), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.529209E-08, 0.8111539) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005578259, 0.0001772063) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001147087), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.60024E-08, 0.8111541) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00564929, 0.0001764139) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00116157), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.671448E-08, 0.8111542) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005720453, 0.0001756383) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001176081), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.742698E-08, 0.8111544) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005791748, 0.0001748788) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001190618), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.814076E-08, 0.8111546) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005863171, 0.0001741351) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001205181), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.885625E-08, 0.8111548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00593472, 0.0001734065) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00121977), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.957342E-08, 0.8111551) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006006392, 0.0001726925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001234384), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.029135E-08, 0.8111553) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006078185, 0.0001719927) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001249023), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.101046E-08, 0.8111556) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006150096, 0.0001713067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001263685), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.173074E-08, 0.8111558) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006222124, 0.0001706339) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001278372), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.245215E-08, 0.811156) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006294266, 0.0001699741) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001293081), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.317561E-08, 0.8111563) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00636652, 0.0001693267) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001307814), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.389834E-08, 0.8111565) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006438884, 0.0001686915) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001322569), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.462306E-08, 0.8111567) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006511356, 0.000168068) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001337345), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.534971E-08, 0.811157) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00658393, 0.0001674558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001352143), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.607561E-08, 0.8111572) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006656611, 0.0001668547) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001366962), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.68043E-08, 0.8111575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00672939, 0.0001662643) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381801), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.753218E-08, 0.8111577) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006802268, 0.0001656843) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001396661), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.826195E-08, 0.8111579) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006875245, 0.0001651144) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00141154), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.899268E-08, 0.8111582) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006948318, 0.0001645544) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001426439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.972437E-08, 0.8111584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007021488, 0.000164004) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001441358), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.045605E-08, 0.8111587) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007094746, 0.0001634628) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001456295), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.118957E-08, 0.8111589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007168098, 0.0001629307) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001471251), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.192487E-08, 0.8111591) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007241537, 0.0001624074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001486225), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.266016E-08, 0.8111594) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007315067, 0.0001618926) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001501217), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.339725E-08, 0.8111596) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007388685, 0.0001613862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001516227), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.413337E-08, 0.8111598) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007462387, 0.0001608879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001531254), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.487125E-08, 0.8111601) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007536175, 0.0001603975) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001546299), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.560991E-08, 0.8111603) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007610042, 0.0001599148) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001561359), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.634941E-08, 0.8111606) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007683991, 0.0001594396) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001576437)}": { + "fid": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1660", + "funcids": [ + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.71507, 18.63876) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.3575, -24.0345) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2859854)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.41822, 11.76509) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 18.17429, -15.64585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1854527)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61984, 8.863367) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -16.15633, -15.4558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5734656)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.74145, 0.0001512584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -21.45141, 15.22121) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2155912)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.888747, 3.281431) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.38822, -27.80841) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1180014)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.984262, 0.0002780475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2305991, 27.80475) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1191256)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.94236, 3.31239) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.42652, -14.6) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2268761)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.005012, 0.0001435129) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 20.87433, 14.37513) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.590435)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 8.487865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -14.8994, 14.20093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.691238)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.977393, 18.30397) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.09713, -11.65444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3922241)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.28206, 13.7326) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4603704, -22.11528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6209553)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.67658, 0.0002202752) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.608852, 22.02752) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2200489)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.20507, 4.847275) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 22.02752, -7.767531) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3665375)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61982, 2.000106) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -18.31479, -7.718225) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2591408)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.54411, 7.497284E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -20.45319, 7.56881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.456389)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.187777, 3.454145) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.839626, -25.07086) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1377753)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.290042, 0.0002493555) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.159229, 24.9594) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.09993961)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.525736, 2.494487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.48746, -19.46407) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1281586)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.686502, 0.0001922491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.05069, 19.24876) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4696551)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.14276, 9.040274) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.946, -19.53067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4628757)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.025051, 0.0001932228) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.32156, 19.32228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1378767)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.819405, 2.664044) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.37134, -24.0291) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1108674)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.687296, 0.0002391654) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.249614, 23.91654) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1568838)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.704151, 3.752287) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.28331, -6.928161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5415995)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.87577, 6.724003E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.62621, 6.795529) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.226729)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 1.540878) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.30014, 6.750589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4426361)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.8865, 4.528736) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.750587, -19.6424) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2305592)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.18222, 0.0001952448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.472753, 19.57217) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.002434)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.7369, 19.6198) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.33831, -19.48888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7929868)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.419057, 4.16536) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -23.02034, -1.586958) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2246498)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.000250105, 3.808835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 24.99714, -1.572675) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1788682)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.314614, 3.527739) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.09929, 20.58879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7816031)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.211795, 19.61979) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.427216, -20.55026) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9547223)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.058162, 0.0002044376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.902648, 20.44376) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2043911)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.442544, 4.178548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.22719, -17.90403) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.233386)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.262522, 0.0001770008) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.84221, 17.74776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4721227)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.28793, 8.379155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -12.22817, -14.21008) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5896627)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.371777, 0.0001400589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -17.75392, 14.00589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1808783)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001780728, 2.53363) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.78795, 12.75767) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.339301)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.02542, 19.61987) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.623549, -12.68671) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5710809)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.06627, 12.37468) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.29918, -5.410871) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3758278)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61992, 10.34107) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.537445, -5.357656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5498449)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.99255, 7.395328) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.80683, 13.73323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8901526)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.497512, 19.61986) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.42943, -13.59016) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104124)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.085816, 16.76016) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.285142, -16.85733) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.698581)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001051595, 4.983803) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.49216, -14.57131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3420286)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.014989, 0.0001446568) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.085127, 14.46568) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2505379)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482346, 3.624316) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.64452, -3.182668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.138767)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.79832, 3.069148E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.42739, 3.140674) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.261231)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.31868, 3.961057) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.140674, -8.945286) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4428095)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.74761, 8.878566E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.200725, 8.92625) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3679302)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.64192, 3.284277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.92625, -4.81012) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.682785)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.44996, 4.729227E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212746, 4.776911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9691768)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.98726, 4.629645) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.776911, -7.294877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6346434)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.04329, 7.224429E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.444419, 7.272113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5074097)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.04758, 3.689949) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.272113, -6.422107) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5745698)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.60665, 6.348934E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.629092, 6.396618) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7429182)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.10979, 4.752171) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.396617, -5.658934) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8397644)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.0224, 5.582916E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.83225, 5.630599) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6312054)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.91168, 3.55404) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.630599, -8.024374) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4429057)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.44332, 7.9564E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.282444, 8.004084) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5421413)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.697, 4.339384) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.004084, -4.035961) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.07518)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.63257, 3.904473E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.520668, 3.99984) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7227589)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.2485, 2.890863) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.99984, -9.610931) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3007891)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.00784, 9.546617E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.047284, 9.5943) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3548257)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.762, 3.404376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.594299, -2.433555) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.398931)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.58459, 2.345659E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.060983, 2.393343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.173249)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.068203, 2.807865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.631238, -14.47211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.194019)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.790921, 0.0001436155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.477002, 14.36155) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104654)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.190275E-05, 3.022877) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.196284, 12.33656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.345361)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.148965, 19.61988) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.971041, -12.26093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3268713)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.422212E-05, 15.61202) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.41034, -11.11049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.40516)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.727924, 0.0001111375) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.321439, 11.01838) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.106372)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.326775E-05, 1.172253) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.329431, 9.469191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.290414)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.318291E-05, 13.39154) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.31834, 10.94849) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5688878)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.575984, 19.61989) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.733199, -10.92106) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9225922)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.242024E-05, 9.544113) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.289756, -9.387285) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.016706)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.324602, 9.331409E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.662205, 9.331409) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2665415)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.402976E-05, 2.487381) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.397064, 8.023324) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.100329)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.64054E-05, 11.31575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.640589, 6.898616) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9461036)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.206955E-05, 17.84262) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.207005, 6.253925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2842029)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.799516, 19.61994) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.413935, -6.231718) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5728211)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.801053E-05, 16.05022) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.813024, -5.650228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7773848)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.303209E-05, 11.65777) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.279417, -4.859393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6685966)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.844296E-05, 8.408755) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.820503, -4.179256) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5750363)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.4377E-05, 6.005496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.425828, -3.594323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4945723)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086349E-05, 4.227811) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086398, -3.091268) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4253715)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.794431E-05, 2.912848) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.79448, -2.658629) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3658572)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543375E-05, 1.940146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543425, -2.28655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3146735)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.330442E-05, 1.220609) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.327511, -1.966554) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2706544)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.141771E-05, 0.688336) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.14182, -1.69135) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.232797)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.820731E-06, 0.2945802) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.9821221, -1.454668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2002388)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.44729E-06, 0.003286785) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8447781, -1.251116) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002627082)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002202011, 1.239552E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8114513, 1.239575) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1681041)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.204322E-06, 0.2084007) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.7204813, 1.066187) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1468971)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.197441E-06, 0.3650296) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.6197932, 0.9170609) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1263695)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.331456E-06, 0.480926) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.5331947, 0.7888028) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1087143)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582926E-06, 0.5666869) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4587142, 0.6784922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0935297)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.946068E-06, 0.6301519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3946559, 0.5836178) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.08046991)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.391399E-06, 0.6771206) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3395615, 0.5020194) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.06923762)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.921276E-06, 0.7118835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2921766, 0.4318393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0595771)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.513734E-06, 0.737615) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2514225, 0.3714797) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0512684)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.163221E-06, 0.7566634) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2163712, 0.3195664) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.04412237)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.862688E-06, 0.7707661) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1862247, 0.2749174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03797631)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.602478E-06, 0.7812089) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1602968, 0.2365163) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03269029)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.379015E-06, 0.7889427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1379971, 0.2034888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02814396)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.18792E-06, 0.7946714) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1188178, 0.175083) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02423381)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.022733E-06, 0.7989158) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1023224, 0.150652) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02087083)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.80862E-07, 0.8020613) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.08813525, 0.1296397) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01797844)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.589597E-07, 0.8043932) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.07593338, 0.1115677) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0154908)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.537832E-07, 0.8061224) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.06543901, 0.09602457) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01335127)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.63641E-07, 0.8074053) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.05641315, 0.08265641) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01151113)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.85955E-07, 0.8083575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04865037, 0.07115889) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.009928506)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.192195E-07, 0.8090646) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04197391, 0.06127021) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.008567349)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.617982E-07, 0.80959) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03623178, 0.05276527) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.007396676)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.124417E-07, 0.8099808) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03129322, 0.04545041) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.006389831)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.699823E-07, 0.8102716) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02704583, 0.03915911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.005523895)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.334384E-07, 0.8104883) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0233929, 0.03374812) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004779152)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.020291E-07, 0.8106499) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02025124, 0.02909426) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004138645)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.750029E-07, 0.8107705) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01754934, 0.02509158) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003587792)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.517663E-07, 0.8108608) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01522568, 0.02164893) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003114051)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.317795E-07, 0.8109283) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01322737, 0.01868795) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002706637)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.145984E-07, 0.8109791) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01150889, 0.01614122) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002356275)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.982086E-08, 0.8110173) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01003114, 0.01395076) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002054987)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.711405E-08, 0.8110461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.008760455, 0.0120667) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001795915)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.618684E-08, 0.8110679) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007667916, 0.01044615) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001573159)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.679592E-08, 0.8110844) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006728643, 0.009052214) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381649)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.872202E-08, 0.811097) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005921252, 0.007853162) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001217024)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.178306E-08, 0.8111066) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005227356, 0.006821695) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075536)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582106E-08, 0.811114) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004631156, 0.005934337) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009539629)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.070063E-08, 0.8111197) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004119067, 0.005170891) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008495366)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.630378E-08, 0.8111242) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003679428, 0.004513982) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007598784)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.253185E-08, 0.8111277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003302213, 0.003948665) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006829454)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.929792E-08, 0.8111305) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00297882, 0.003462082) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006169838)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.652802E-08, 0.8111327) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002701863, 0.003043171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000560488)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.415967E-08, 0.8111344) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002465006, 0.002682415) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005121666)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.213766E-08, 0.8111358) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002262817, 0.002371624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004709127)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.041587E-08, 0.8111369) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002090637, 0.002103754) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000435777)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.895421E-08, 0.8111378) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001944477, 0.001872743) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004059467)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.771862E-08, 0.8111386) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001820918, 0.001673379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003807253)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.667983E-08, 0.8111392) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001717033, 0.001501177) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003595165)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.58127E-08, 0.8111398) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001630314, 0.001352282) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003418096)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.509563E-08, 0.8111402) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001558613, 0.001223379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003271669)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.451029E-08, 0.8111407) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001500085, 0.001111624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003152128)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.404092E-08, 0.811141) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001453148, 0.001014572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003056248)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367392E-08, 0.8111413) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00141644, 0.0009301305) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002981256)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.339735E-08, 0.8111416) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001388788, 0.0008565031) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000292476)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.320126E-08, 0.8111418) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001369179, 0.0007921541) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002884693)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.307687E-08, 0.8111421) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001356734, 0.0007357697) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002859265)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.30164E-08, 0.8111423) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350693, 0.0006862283) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002846919)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.301342E-08, 0.8111425) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350389, 0.000642572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00028463)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.306193E-08, 0.8111427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001355246, 0.0006039842) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002856223)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.3157E-08, 0.8111429) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001364753, 0.0005697685) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000287565)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.329415E-08, 0.811143) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001378465, 0.0005393313) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002903669)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.346938E-08, 0.8111432) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001395991, 0.0005121662) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002939476)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367931E-08, 0.8111434) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001416981, 0.0004878413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002982362)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.392084E-08, 0.8111435) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001441131, 0.0004659877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00030317)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.419115E-08, 0.8111436) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001468168, 0.0004462903) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000308693)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.448797E-08, 0.8111438) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001497847, 0.000428479) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003147557)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.480899E-08, 0.8111439) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001529955, 0.0004123223) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003213138)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.515247E-08, 0.811144) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001564297, 0.0003976213) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003283278)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.551645E-08, 0.8111441) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001600701, 0.0003842046) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003357622)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.589954E-08, 0.8111442) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001639009, 0.0003719244) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003435851)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.630033E-08, 0.8111444) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001679083, 0.0003606528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003517679)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.671746E-08, 0.8111445) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001720796, 0.0003502789) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003602849)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.71499E-08, 0.8111446) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001764034, 0.0003407062) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003691125)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.759643E-08, 0.8111447) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001808693, 0.0003318506) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003782297)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.805629E-08, 0.8111448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001854679, 0.0003236387) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003876172)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.852857E-08, 0.8111449) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001901907, 0.000316006) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003972576)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.901248E-08, 0.8111451) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001950298, 0.0003088959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004071349)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.950731E-08, 0.8111452) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001999781, 0.0003022585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004172344)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.00124E-08, 0.8111453) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00205029, 0.0002960498) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000427543)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.052722E-08, 0.8111454) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002101766, 0.0002902308) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004380484)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.105105E-08, 0.8111455) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002154155, 0.0002847669) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004487394)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.158354E-08, 0.8111457) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002207404, 0.0002796271) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004596055)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212418E-08, 0.8111458) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002261468, 0.000274784) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004706375)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.267253E-08, 0.8111459) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002316303, 0.0002702131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004818264)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.322831E-08, 0.811146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002371869, 0.0002658922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004931641)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.37908E-08, 0.8111461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00242813, 0.0002618015) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005046431)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.43599E-08, 0.8111463) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002485052, 0.0002579232) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005162564)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.493551E-08, 0.8111464) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002542601, 0.0002542413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005279974)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.551699E-08, 0.8111465) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002600749, 0.0002507411) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005398603)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.610406E-08, 0.8111466) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002659468, 0.0002474094) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005518393)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.669681E-08, 0.8111467) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002718731, 0.0002442343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005639291)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.729477E-08, 0.8111469) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002778516, 0.0002412049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005761249)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.789739E-08, 0.811147) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0028388, 0.0002383113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005884222)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.850522E-08, 0.8111471) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00289956, 0.0002355444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006008164)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.911729E-08, 0.8111472) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002960779, 0.0002328959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006133038)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.973374E-08, 0.8111473) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003022436, 0.0002303582) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006258803)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.035464E-08, 0.8111475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003084514, 0.0002279245) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006385426)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.097946E-08, 0.8111476) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003146996, 0.0002255881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000651287)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.16084E-08, 0.8111477) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003209868, 0.0002233434) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006641107)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.224065E-08, 0.8111478) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003273115, 0.0002211848) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006770107)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.28765E-08, 0.811148) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003336722, 0.0002191074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006899839)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.351627E-08, 0.8111482) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003400677, 0.0002171064) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007030278)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.415894E-08, 0.8111483) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003464967, 0.0002151776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007161399)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.48053E-08, 0.8111485) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00352958, 0.0002133171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007293177)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.545456E-08, 0.8111487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003594506, 0.0002115211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007425591)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.610684E-08, 0.8111489) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003659734, 0.0002097862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007558619)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.676226E-08, 0.8111491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003725253, 0.0002081093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007692242)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.741983E-08, 0.8111492) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003791056, 0.0002064873) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007826439)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.808081E-08, 0.8111494) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003857131, 0.0002049174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007961191)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.874399E-08, 0.8111496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003923472, 0.0002033971) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008096482)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.941041E-08, 0.8111498) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003990068, 0.000201924) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008232295)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.007862E-08, 0.81115) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004056912, 0.0002004957) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008368612)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.074971E-08, 0.8111501) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004123999, 0.0001991102) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008505422)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.142292E-08, 0.8111503) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004191319, 0.0001977655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008642707)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.209819E-08, 0.8111505) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004258869, 0.0001964597) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008780457)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.277588E-08, 0.8111507) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004326638, 0.000195191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008918655)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.345571E-08, 0.8111508) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004394621, 0.0001939578) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009057288)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.413718E-08, 0.811151) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004462813, 0.0001927586) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009196345)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482203E-08, 0.8111512) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004531207, 0.0001915918) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009335818)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.550752E-08, 0.8111514) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004599802, 0.0001904562) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009475693)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.619537E-08, 0.8111516) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004668587, 0.0001893503) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009615958)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.688509E-08, 0.8111517) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004737559, 0.000188273) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009756604)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.757619E-08, 0.8111519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004806715, 0.0001872231) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009897621)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.826996E-08, 0.8111521) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004876046, 0.0001861995) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0010039)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.896458E-08, 0.8111523) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004945554, 0.0001852013) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001018073)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.966179E-08, 0.8111525) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005015229, 0.0001842272) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001032281)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.036019E-08, 0.8111526) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005085069, 0.0001832766) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001046522)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.105976E-08, 0.8111528) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005155072, 0.0001823483) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001060796)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.176225E-08, 0.811153) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005225229, 0.0001814417) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075102)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.246446E-08, 0.8111532) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005295542, 0.0001805559) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001089439)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.316955E-08, 0.8111534) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005366005, 0.0001796902) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001103807)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.387609E-08, 0.8111535) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005436614, 0.0001788438) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001118205)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.458318E-08, 0.8111537) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005507368, 0.0001780161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001132632)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.529209E-08, 0.8111539) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005578259, 0.0001772063) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001147087)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.60024E-08, 0.8111541) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00564929, 0.0001764139) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00116157)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.671448E-08, 0.8111542) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005720453, 0.0001756383) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001176081)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.742698E-08, 0.8111544) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005791748, 0.0001748788) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001190618)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.814076E-08, 0.8111546) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005863171, 0.0001741351) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001205181)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.885625E-08, 0.8111548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00593472, 0.0001734065) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00121977)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.957342E-08, 0.8111551) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006006392, 0.0001726925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001234384)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.029135E-08, 0.8111553) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006078185, 0.0001719927) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001249023)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.101046E-08, 0.8111556) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006150096, 0.0001713067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001263685)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.173074E-08, 0.8111558) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006222124, 0.0001706339) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001278372)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.245215E-08, 0.811156) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006294266, 0.0001699741) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001293081)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.317561E-08, 0.8111563) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00636652, 0.0001693267) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001307814)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.389834E-08, 0.8111565) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006438884, 0.0001686915) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001322569)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.462306E-08, 0.8111567) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006511356, 0.000168068) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001337345)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.534971E-08, 0.811157) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00658393, 0.0001674558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001352143)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.607561E-08, 0.8111572) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006656611, 0.0001668547) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001366962)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.68043E-08, 0.8111575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00672939, 0.0001662643) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381801)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.753218E-08, 0.8111577) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006802268, 0.0001656843) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001396661)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.826195E-08, 0.8111579) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006875245, 0.0001651144) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00141154)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.899268E-08, 0.8111582) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006948318, 0.0001645544) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001426439)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.972437E-08, 0.8111584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007021488, 0.000164004) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001441358)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.045605E-08, 0.8111587) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007094746, 0.0001634628) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001456295)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.118957E-08, 0.8111589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007168098, 0.0001629307) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001471251)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.192487E-08, 0.8111591) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007241537, 0.0001624074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001486225)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.266016E-08, 0.8111594) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007315067, 0.0001618926) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001501217)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.339725E-08, 0.8111596) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007388685, 0.0001613862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001516227)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.413337E-08, 0.8111598) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007462387, 0.0001608879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001531254)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.487125E-08, 0.8111601) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007536175, 0.0001603975) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001546299)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.560991E-08, 0.8111603) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007610042, 0.0001599148) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001561359)", + "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.634941E-08, 0.8111606) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007683991, 0.0001594396) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001576437)" + ], + "s_type": "AttachedPositionFunction", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1660{t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.71507, 18.63876) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.3575, -24.0345) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2859854), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.41822, 11.76509) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 18.17429, -15.64585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1854527), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61984, 8.863367) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -16.15633, -15.4558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5734656), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.74145, 0.0001512584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -21.45141, 15.22121) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2155912), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.888747, 3.281431) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.38822, -27.80841) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1180014), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.984262, 0.0002780475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2305991, 27.80475) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1191256), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.94236, 3.31239) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.42652, -14.6) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2268761), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.005012, 0.0001435129) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 20.87433, 14.37513) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.590435), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 8.487865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -14.8994, 14.20093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.691238), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.977393, 18.30397) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.09713, -11.65444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3922241), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.28206, 13.7326) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4603704, -22.11528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6209553), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.67658, 0.0002202752) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.608852, 22.02752) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2200489), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.20507, 4.847275) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 22.02752, -7.767531) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3665375), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61982, 2.000106) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -18.31479, -7.718225) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2591408), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.54411, 7.497284E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -20.45319, 7.56881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.456389), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.187777, 3.454145) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.839626, -25.07086) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1377753), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.290042, 0.0002493555) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.159229, 24.9594) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.09993961), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.525736, 2.494487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.48746, -19.46407) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1281586), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.686502, 0.0001922491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.05069, 19.24876) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4696551), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.14276, 9.040274) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.946, -19.53067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4628757), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.025051, 0.0001932228) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.32156, 19.32228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1378767), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.819405, 2.664044) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.37134, -24.0291) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1108674), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.687296, 0.0002391654) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.249614, 23.91654) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1568838), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.704151, 3.752287) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.28331, -6.928161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5415995), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.87577, 6.724003E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.62621, 6.795529) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.226729), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 1.540878) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.30014, 6.750589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4426361), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.8865, 4.528736) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.750587, -19.6424) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2305592), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.18222, 0.0001952448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.472753, 19.57217) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.002434), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.7369, 19.6198) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.33831, -19.48888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7929868), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.419057, 4.16536) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -23.02034, -1.586958) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2246498), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.000250105, 3.808835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 24.99714, -1.572675) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1788682), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.314614, 3.527739) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.09929, 20.58879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7816031), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.211795, 19.61979) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.427216, -20.55026) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9547223), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.058162, 0.0002044376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.902648, 20.44376) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2043911), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.442544, 4.178548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.22719, -17.90403) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.233386), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.262522, 0.0001770008) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.84221, 17.74776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4721227), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.28793, 8.379155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -12.22817, -14.21008) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5896627), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.371777, 0.0001400589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -17.75392, 14.00589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1808783), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001780728, 2.53363) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.78795, 12.75767) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.339301), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.02542, 19.61987) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.623549, -12.68671) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5710809), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.06627, 12.37468) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.29918, -5.410871) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3758278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61992, 10.34107) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.537445, -5.357656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5498449), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.99255, 7.395328) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.80683, 13.73323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8901526), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.497512, 19.61986) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.42943, -13.59016) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104124), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.085816, 16.76016) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.285142, -16.85733) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.698581), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001051595, 4.983803) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.49216, -14.57131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3420286), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.014989, 0.0001446568) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.085127, 14.46568) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2505379), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482346, 3.624316) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.64452, -3.182668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.138767), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.79832, 3.069148E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.42739, 3.140674) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.261231), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.31868, 3.961057) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.140674, -8.945286) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4428095), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.74761, 8.878566E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.200725, 8.92625) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3679302), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.64192, 3.284277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.92625, -4.81012) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.682785), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.44996, 4.729227E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212746, 4.776911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9691768), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.98726, 4.629645) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.776911, -7.294877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6346434), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.04329, 7.224429E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.444419, 7.272113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5074097), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.04758, 3.689949) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.272113, -6.422107) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5745698), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.60665, 6.348934E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.629092, 6.396618) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7429182), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.10979, 4.752171) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.396617, -5.658934) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8397644), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.0224, 5.582916E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.83225, 5.630599) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6312054), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.91168, 3.55404) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.630599, -8.024374) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4429057), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.44332, 7.9564E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.282444, 8.004084) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5421413), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.697, 4.339384) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.004084, -4.035961) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.07518), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.63257, 3.904473E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.520668, 3.99984) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7227589), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.2485, 2.890863) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.99984, -9.610931) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3007891), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.00784, 9.546617E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.047284, 9.5943) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3548257), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.762, 3.404376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.594299, -2.433555) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.398931), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.58459, 2.345659E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.060983, 2.393343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.173249), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.068203, 2.807865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.631238, -14.47211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.194019), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.790921, 0.0001436155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.477002, 14.36155) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104654), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.190275E-05, 3.022877) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.196284, 12.33656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.345361), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.148965, 19.61988) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.971041, -12.26093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3268713), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.422212E-05, 15.61202) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.41034, -11.11049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.40516), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.727924, 0.0001111375) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.321439, 11.01838) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.106372), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.326775E-05, 1.172253) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.329431, 9.469191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.290414), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.318291E-05, 13.39154) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.31834, 10.94849) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5688878), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.575984, 19.61989) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.733199, -10.92106) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9225922), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.242024E-05, 9.544113) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.289756, -9.387285) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.016706), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.324602, 9.331409E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.662205, 9.331409) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2665415), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.402976E-05, 2.487381) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.397064, 8.023324) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.100329), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.64054E-05, 11.31575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.640589, 6.898616) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9461036), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.206955E-05, 17.84262) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.207005, 6.253925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2842029), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.799516, 19.61994) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.413935, -6.231718) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5728211), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.801053E-05, 16.05022) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.813024, -5.650228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7773848), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.303209E-05, 11.65777) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.279417, -4.859393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6685966), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.844296E-05, 8.408755) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.820503, -4.179256) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5750363), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.4377E-05, 6.005496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.425828, -3.594323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4945723), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086349E-05, 4.227811) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086398, -3.091268) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4253715), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.794431E-05, 2.912848) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.79448, -2.658629) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3658572), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543375E-05, 1.940146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543425, -2.28655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3146735), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.330442E-05, 1.220609) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.327511, -1.966554) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2706544), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.141771E-05, 0.688336) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.14182, -1.69135) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.232797), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.820731E-06, 0.2945802) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.9821221, -1.454668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2002388), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.44729E-06, 0.003286785) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8447781, -1.251116) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002627082), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002202011, 1.239552E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8114513, 1.239575) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1681041), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.204322E-06, 0.2084007) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.7204813, 1.066187) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1468971), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.197441E-06, 0.3650296) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.6197932, 0.9170609) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1263695), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.331456E-06, 0.480926) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.5331947, 0.7888028) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1087143), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582926E-06, 0.5666869) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4587142, 0.6784922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0935297), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.946068E-06, 0.6301519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3946559, 0.5836178) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.08046991), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.391399E-06, 0.6771206) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3395615, 0.5020194) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.06923762), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.921276E-06, 0.7118835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2921766, 0.4318393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0595771), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.513734E-06, 0.737615) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2514225, 0.3714797) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0512684), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.163221E-06, 0.7566634) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2163712, 0.3195664) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.04412237), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.862688E-06, 0.7707661) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1862247, 0.2749174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03797631), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.602478E-06, 0.7812089) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1602968, 0.2365163) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03269029), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.379015E-06, 0.7889427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1379971, 0.2034888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02814396), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.18792E-06, 0.7946714) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1188178, 0.175083) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02423381), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.022733E-06, 0.7989158) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1023224, 0.150652) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02087083), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.80862E-07, 0.8020613) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.08813525, 0.1296397) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01797844), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.589597E-07, 0.8043932) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.07593338, 0.1115677) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0154908), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.537832E-07, 0.8061224) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.06543901, 0.09602457) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01335127), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.63641E-07, 0.8074053) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.05641315, 0.08265641) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01151113), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.85955E-07, 0.8083575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04865037, 0.07115889) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.009928506), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.192195E-07, 0.8090646) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04197391, 0.06127021) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.008567349), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.617982E-07, 0.80959) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03623178, 0.05276527) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.007396676), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.124417E-07, 0.8099808) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03129322, 0.04545041) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.006389831), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.699823E-07, 0.8102716) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02704583, 0.03915911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.005523895), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.334384E-07, 0.8104883) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0233929, 0.03374812) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004779152), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.020291E-07, 0.8106499) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02025124, 0.02909426) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004138645), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.750029E-07, 0.8107705) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01754934, 0.02509158) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003587792), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.517663E-07, 0.8108608) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01522568, 0.02164893) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003114051), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.317795E-07, 0.8109283) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01322737, 0.01868795) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002706637), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.145984E-07, 0.8109791) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01150889, 0.01614122) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002356275), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.982086E-08, 0.8110173) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01003114, 0.01395076) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002054987), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.711405E-08, 0.8110461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.008760455, 0.0120667) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001795915), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.618684E-08, 0.8110679) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007667916, 0.01044615) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001573159), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.679592E-08, 0.8110844) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006728643, 0.009052214) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381649), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.872202E-08, 0.811097) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005921252, 0.007853162) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001217024), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.178306E-08, 0.8111066) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005227356, 0.006821695) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075536), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582106E-08, 0.811114) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004631156, 0.005934337) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009539629), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.070063E-08, 0.8111197) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004119067, 0.005170891) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008495366), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.630378E-08, 0.8111242) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003679428, 0.004513982) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007598784), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.253185E-08, 0.8111277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003302213, 0.003948665) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006829454), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.929792E-08, 0.8111305) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00297882, 0.003462082) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006169838), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.652802E-08, 0.8111327) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002701863, 0.003043171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000560488), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.415967E-08, 0.8111344) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002465006, 0.002682415) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005121666), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.213766E-08, 0.8111358) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002262817, 0.002371624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004709127), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.041587E-08, 0.8111369) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002090637, 0.002103754) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000435777), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.895421E-08, 0.8111378) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001944477, 0.001872743) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004059467), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.771862E-08, 0.8111386) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001820918, 0.001673379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003807253), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.667983E-08, 0.8111392) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001717033, 0.001501177) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003595165), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.58127E-08, 0.8111398) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001630314, 0.001352282) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003418096), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.509563E-08, 0.8111402) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001558613, 0.001223379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003271669), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.451029E-08, 0.8111407) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001500085, 0.001111624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003152128), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.404092E-08, 0.811141) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001453148, 0.001014572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003056248), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367392E-08, 0.8111413) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00141644, 0.0009301305) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002981256), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.339735E-08, 0.8111416) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001388788, 0.0008565031) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000292476), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.320126E-08, 0.8111418) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001369179, 0.0007921541) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002884693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.307687E-08, 0.8111421) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001356734, 0.0007357697) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002859265), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.30164E-08, 0.8111423) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350693, 0.0006862283) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002846919), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.301342E-08, 0.8111425) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350389, 0.000642572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00028463), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.306193E-08, 0.8111427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001355246, 0.0006039842) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002856223), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.3157E-08, 0.8111429) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001364753, 0.0005697685) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000287565), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.329415E-08, 0.811143) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001378465, 0.0005393313) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002903669), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.346938E-08, 0.8111432) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001395991, 0.0005121662) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002939476), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367931E-08, 0.8111434) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001416981, 0.0004878413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002982362), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.392084E-08, 0.8111435) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001441131, 0.0004659877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00030317), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.419115E-08, 0.8111436) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001468168, 0.0004462903) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000308693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.448797E-08, 0.8111438) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001497847, 0.000428479) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003147557), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.480899E-08, 0.8111439) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001529955, 0.0004123223) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003213138), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.515247E-08, 0.811144) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001564297, 0.0003976213) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003283278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.551645E-08, 0.8111441) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001600701, 0.0003842046) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003357622), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.589954E-08, 0.8111442) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001639009, 0.0003719244) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003435851), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.630033E-08, 0.8111444) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001679083, 0.0003606528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003517679), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.671746E-08, 0.8111445) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001720796, 0.0003502789) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003602849), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.71499E-08, 0.8111446) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001764034, 0.0003407062) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003691125), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.759643E-08, 0.8111447) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001808693, 0.0003318506) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003782297), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.805629E-08, 0.8111448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001854679, 0.0003236387) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003876172), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.852857E-08, 0.8111449) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001901907, 0.000316006) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003972576), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.901248E-08, 0.8111451) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001950298, 0.0003088959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004071349), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.950731E-08, 0.8111452) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001999781, 0.0003022585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004172344), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.00124E-08, 0.8111453) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00205029, 0.0002960498) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000427543), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.052722E-08, 0.8111454) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002101766, 0.0002902308) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004380484), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.105105E-08, 0.8111455) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002154155, 0.0002847669) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004487394), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.158354E-08, 0.8111457) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002207404, 0.0002796271) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004596055), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212418E-08, 0.8111458) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002261468, 0.000274784) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004706375), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.267253E-08, 0.8111459) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002316303, 0.0002702131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004818264), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.322831E-08, 0.811146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002371869, 0.0002658922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004931641), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.37908E-08, 0.8111461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00242813, 0.0002618015) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005046431), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.43599E-08, 0.8111463) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002485052, 0.0002579232) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005162564), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.493551E-08, 0.8111464) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002542601, 0.0002542413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005279974), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.551699E-08, 0.8111465) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002600749, 0.0002507411) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005398603), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.610406E-08, 0.8111466) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002659468, 0.0002474094) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005518393), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.669681E-08, 0.8111467) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002718731, 0.0002442343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005639291), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.729477E-08, 0.8111469) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002778516, 0.0002412049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005761249), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.789739E-08, 0.811147) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0028388, 0.0002383113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005884222), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.850522E-08, 0.8111471) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00289956, 0.0002355444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006008164), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.911729E-08, 0.8111472) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002960779, 0.0002328959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006133038), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.973374E-08, 0.8111473) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003022436, 0.0002303582) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006258803), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.035464E-08, 0.8111475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003084514, 0.0002279245) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006385426), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.097946E-08, 0.8111476) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003146996, 0.0002255881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000651287), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.16084E-08, 0.8111477) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003209868, 0.0002233434) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006641107), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.224065E-08, 0.8111478) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003273115, 0.0002211848) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006770107), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.28765E-08, 0.811148) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003336722, 0.0002191074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006899839), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.351627E-08, 0.8111482) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003400677, 0.0002171064) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007030278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.415894E-08, 0.8111483) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003464967, 0.0002151776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007161399), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.48053E-08, 0.8111485) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00352958, 0.0002133171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007293177), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.545456E-08, 0.8111487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003594506, 0.0002115211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007425591), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.610684E-08, 0.8111489) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003659734, 0.0002097862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007558619), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.676226E-08, 0.8111491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003725253, 0.0002081093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007692242), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.741983E-08, 0.8111492) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003791056, 0.0002064873) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007826439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.808081E-08, 0.8111494) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003857131, 0.0002049174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007961191), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.874399E-08, 0.8111496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003923472, 0.0002033971) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008096482), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.941041E-08, 0.8111498) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003990068, 0.000201924) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008232295), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.007862E-08, 0.81115) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004056912, 0.0002004957) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008368612), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.074971E-08, 0.8111501) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004123999, 0.0001991102) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008505422), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.142292E-08, 0.8111503) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004191319, 0.0001977655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008642707), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.209819E-08, 0.8111505) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004258869, 0.0001964597) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008780457), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.277588E-08, 0.8111507) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004326638, 0.000195191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008918655), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.345571E-08, 0.8111508) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004394621, 0.0001939578) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009057288), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.413718E-08, 0.811151) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004462813, 0.0001927586) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009196345), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482203E-08, 0.8111512) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004531207, 0.0001915918) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009335818), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.550752E-08, 0.8111514) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004599802, 0.0001904562) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009475693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.619537E-08, 0.8111516) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004668587, 0.0001893503) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009615958), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.688509E-08, 0.8111517) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004737559, 0.000188273) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009756604), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.757619E-08, 0.8111519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004806715, 0.0001872231) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009897621), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.826996E-08, 0.8111521) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004876046, 0.0001861995) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0010039), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.896458E-08, 0.8111523) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004945554, 0.0001852013) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001018073), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.966179E-08, 0.8111525) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005015229, 0.0001842272) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001032281), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.036019E-08, 0.8111526) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005085069, 0.0001832766) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001046522), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.105976E-08, 0.8111528) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005155072, 0.0001823483) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001060796), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.176225E-08, 0.811153) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005225229, 0.0001814417) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075102), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.246446E-08, 0.8111532) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005295542, 0.0001805559) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001089439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.316955E-08, 0.8111534) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005366005, 0.0001796902) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001103807), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.387609E-08, 0.8111535) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005436614, 0.0001788438) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001118205), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.458318E-08, 0.8111537) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005507368, 0.0001780161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001132632), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.529209E-08, 0.8111539) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005578259, 0.0001772063) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001147087), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.60024E-08, 0.8111541) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00564929, 0.0001764139) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00116157), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.671448E-08, 0.8111542) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005720453, 0.0001756383) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001176081), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.742698E-08, 0.8111544) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005791748, 0.0001748788) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001190618), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.814076E-08, 0.8111546) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005863171, 0.0001741351) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001205181), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.885625E-08, 0.8111548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00593472, 0.0001734065) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00121977), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.957342E-08, 0.8111551) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006006392, 0.0001726925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001234384), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.029135E-08, 0.8111553) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006078185, 0.0001719927) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001249023), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.101046E-08, 0.8111556) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006150096, 0.0001713067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001263685), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.173074E-08, 0.8111558) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006222124, 0.0001706339) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001278372), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.245215E-08, 0.811156) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006294266, 0.0001699741) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001293081), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.317561E-08, 0.8111563) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00636652, 0.0001693267) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001307814), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.389834E-08, 0.8111565) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006438884, 0.0001686915) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001322569), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.462306E-08, 0.8111567) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006511356, 0.000168068) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001337345), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.534971E-08, 0.811157) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00658393, 0.0001674558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001352143), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.607561E-08, 0.8111572) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006656611, 0.0001668547) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001366962), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.68043E-08, 0.8111575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00672939, 0.0001662643) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381801), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.753218E-08, 0.8111577) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006802268, 0.0001656843) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001396661), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.826195E-08, 0.8111579) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006875245, 0.0001651144) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00141154), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.899268E-08, 0.8111582) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006948318, 0.0001645544) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001426439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.972437E-08, 0.8111584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007021488, 0.000164004) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001441358), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.045605E-08, 0.8111587) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007094746, 0.0001634628) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001456295), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.118957E-08, 0.8111589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007168098, 0.0001629307) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001471251), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.192487E-08, 0.8111591) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007241537, 0.0001624074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001486225), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.266016E-08, 0.8111594) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007315067, 0.0001618926) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001501217), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.339725E-08, 0.8111596) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007388685, 0.0001613862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001516227), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.413337E-08, 0.8111598) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007462387, 0.0001608879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001531254), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.487125E-08, 0.8111601) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007536175, 0.0001603975) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001546299), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.560991E-08, 0.8111603) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007610042, 0.0001599148) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001561359), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.634941E-08, 0.8111606) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007683991, 0.0001594396) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001576437)}", + "Label": "Åš", + "hasCustomLabel": false, + "LabelId": 282 } - ], - "marker": 106, - "worksteps": 10, - "backlog": 0, - "soft_resetted": false, - "invoke": true, - "MaxLabelId": 94, - "UnusedLabelIds": [], + }, "name": null, "path": null }, diff --git a/Assets/Stages/TechDemo A.JSON b/Assets/Stages/TechDemo A.JSON index 5cc2707e25f4e619d684e405cb0e4c4dd43685c4..ef1c90492495e26a16007d86e1852b60a9497cd1 100644 --- a/Assets/Stages/TechDemo A.JSON +++ b/Assets/Stages/TechDemo A.JSON @@ -8,7 +8,7 @@ "ValidationSet": [ { "MasterIDs": [ - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5552" + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1620" ], "SolutionIndex": [], "RelationIndex": [], @@ -19,8 +19,64 @@ "WorkflowGadgetDict": { "-1": null }, - "FactDict": { - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5550": { + "MetaInf": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1618": { + "workflow_id": 0, + "active": true, + "isImmutable": false + }, + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1619": { + "workflow_id": 1, + "active": true, + "isImmutable": false + }, + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1620": { + "workflow_id": 2, + "active": true, + "isImmutable": false + } + }, + "Workflow": [ + { + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1618", + "samestep": false, + "steplink": 3, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1619", + "samestep": true, + "steplink": 0, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1620", + "samestep": true, + "steplink": 0, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + } + ], + "marker": 3, + "worksteps": 1, + "backlog": 0, + "soft_resetted": false, + "invoke": true, + "MaxLabelId": 2, + "UnusedLabelIds": [], + "JsonFactSpace": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1618": { "Point": { "x": 0.0, "y": 0.0, @@ -36,12 +92,12 @@ "sqrMagnitude": 1.0 }, "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5550", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1618", "Label": "A", "hasCustomLabel": false, "LabelId": 1 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5551": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1619": { "Point": { "x": 0.0, "y": 6.0, @@ -64,15 +120,15 @@ "sqrMagnitude": 1.0 }, "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5551", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1619", "Label": "B", "hasCustomLabel": false, "LabelId": 2 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5552": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1620": { "s_type": "LineFact", - "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5550", - "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5551", + "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1618", + "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1619", "Dir": { "x": 0.0, "y": -1.0, @@ -80,68 +136,12 @@ "magnitude": 1.0, "sqrMagnitude": 1.0 }, - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5552", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1620", "Label": "[AB]", "hasCustomLabel": false, "LabelId": 0 } }, - "MetaInf": { - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5550": { - "workflow_id": 0, - "active": true, - "isImmutable": false - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5551": { - "workflow_id": 1, - "active": true, - "isImmutable": false - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5552": { - "workflow_id": 2, - "active": true, - "isImmutable": false - } - }, - "Workflow": [ - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5550", - "samestep": false, - "steplink": 3, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 - }, - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5551", - "samestep": true, - "steplink": 0, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 - }, - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5552", - "samestep": true, - "steplink": 0, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 - } - ], - "marker": 3, - "worksteps": 1, - "backlog": 0, - "soft_resetted": false, - "invoke": true, - "MaxLabelId": 2, - "UnusedLabelIds": [], "name": null, "path": null }, diff --git a/Assets/Stages/TechDemo B.JSON b/Assets/Stages/TechDemo B.JSON index d5eb37a2fb1aaed06b3953be1ec57c4d3a017095..e18b1546141b226b2df6914f6f19018003e95cde 100644 --- a/Assets/Stages/TechDemo B.JSON +++ b/Assets/Stages/TechDemo B.JSON @@ -8,7 +8,7 @@ "ValidationSet": [ { "MasterIDs": [ - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5555" + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1623" ], "SolutionIndex": [], "RelationIndex": [], @@ -16,7 +16,7 @@ }, { "MasterIDs": [ - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5555" + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1623" ], "SolutionIndex": [], "RelationIndex": [], @@ -37,8 +37,64 @@ "WorkflowGadgetDict": { "-1": null }, - "FactDict": { - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5553": { + "MetaInf": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1621": { + "workflow_id": 0, + "active": true, + "isImmutable": false + }, + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1622": { + "workflow_id": 1, + "active": true, + "isImmutable": false + }, + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1623": { + "workflow_id": 2, + "active": true, + "isImmutable": false + } + }, + "Workflow": [ + { + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1621", + "samestep": false, + "steplink": 3, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1622", + "samestep": true, + "steplink": 0, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + }, + { + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1623", + "samestep": true, + "steplink": 0, + "creation": true, + "gadget_rank": -1, + "scroll_label": null, + "GadgetFlow": [], + "GadgetTime": 0.541088400001172 + } + ], + "marker": 3, + "worksteps": 1, + "backlog": 0, + "soft_resetted": false, + "invoke": true, + "MaxLabelId": 2, + "UnusedLabelIds": [], + "JsonFactSpace": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1621": { "Point": { "x": 0.0, "y": 0.0, @@ -54,12 +110,12 @@ "sqrMagnitude": 1.0 }, "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5553", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1621", "Label": "A", "hasCustomLabel": false, "LabelId": 1 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5554": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1622": { "Point": { "x": 0.0, "y": 6.0, @@ -82,15 +138,15 @@ "sqrMagnitude": 1.0 }, "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5554", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1622", "Label": "B", "hasCustomLabel": false, "LabelId": 2 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5555": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1623": { "s_type": "LineFact", - "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5553", - "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5554", + "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1621", + "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1622", "Dir": { "x": 0.0, "y": -1.0, @@ -98,68 +154,12 @@ "magnitude": 1.0, "sqrMagnitude": 1.0 }, - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5555", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1623", "Label": "[AB]", "hasCustomLabel": false, "LabelId": 0 } }, - "MetaInf": { - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5553": { - "workflow_id": 0, - "active": true, - "isImmutable": false - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5554": { - "workflow_id": 1, - "active": true, - "isImmutable": false - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5555": { - "workflow_id": 2, - "active": true, - "isImmutable": false - } - }, - "Workflow": [ - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5553", - "samestep": false, - "steplink": 3, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 - }, - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5554", - "samestep": true, - "steplink": 0, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 - }, - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact5555", - "samestep": true, - "steplink": 0, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 26.015572399999655 - } - ], - "marker": 3, - "worksteps": 1, - "backlog": 0, - "soft_resetted": false, - "invoke": true, - "MaxLabelId": 2, - "UnusedLabelIds": [], "name": null, "path": null },