diff --git a/ClearScript.NoV8.sln.DotSettings b/ClearScript.NoV8.sln.DotSettings index 4b38324cf..9e59558e7 100644 --- a/ClearScript.NoV8.sln.DotSettings +++ b/ClearScript.NoV8.sln.DotSettings @@ -1,6 +1,7 @@  - CSharp73 + CSharp80 True + ExplicitlyExcluded False SUGGESTION DO_NOT_SHOW @@ -11,12 +12,15 @@ DO_NOT_SHOW HINT DO_NOT_SHOW + HINT DO_NOT_SHOW DO_NOT_SHOW DO_NOT_SHOW DO_NOT_SHOW DO_NOT_SHOW + HINT DO_NOT_SHOW + HINT DO_NOT_SHOW Experimental False diff --git a/ClearScript.sln.DotSettings b/ClearScript.sln.DotSettings index 4b38324cf..9e59558e7 100644 --- a/ClearScript.sln.DotSettings +++ b/ClearScript.sln.DotSettings @@ -1,6 +1,7 @@  - CSharp73 + CSharp80 True + ExplicitlyExcluded False SUGGESTION DO_NOT_SHOW @@ -11,12 +12,15 @@ DO_NOT_SHOW HINT DO_NOT_SHOW + HINT DO_NOT_SHOW DO_NOT_SHOW DO_NOT_SHOW DO_NOT_SHOW DO_NOT_SHOW + HINT DO_NOT_SHOW + HINT DO_NOT_SHOW Experimental False diff --git a/ClearScript/AsyncDocumentLoadCallback.cs b/ClearScript/AsyncDocumentLoadCallback.cs new file mode 100644 index 000000000..1e7ba867a --- /dev/null +++ b/ClearScript/AsyncDocumentLoadCallback.cs @@ -0,0 +1,20 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT license. + +using System.IO; +using System.Threading.Tasks; + +namespace Microsoft.ClearScript +{ + /// + /// Represents a method to be called asynchronously when a document is loaded. + /// + /// A structure containing meta-information for the document. + /// A stream that provides read access to the document. + /// A task that represents the method's asynchronous operation. + /// + /// The callback can modify the document meta-information by specifying or overriding any of + /// its mutable properties. + /// + public delegate Task AsyncDocumentLoadCallback(ValueRef info, Stream contents); +} diff --git a/ClearScript/DefaultDocumentLoader.cs b/ClearScript/DefaultDocumentLoader.cs index a325e9efe..14afbc01c 100644 --- a/ClearScript/DefaultDocumentLoader.cs +++ b/ClearScript/DefaultDocumentLoader.cs @@ -8,6 +8,7 @@ using System.IO; using System.Linq; using System.Net.Http; +using System.Text; using System.Threading; using System.Threading.Tasks; @@ -288,11 +289,26 @@ private async Task LoadDocumentAsync(DocumentSettings settings, Uri ur } var documentInfo = new DocumentInfo(uri) { Category = category, ContextCallback = contextCallback }; + byte[] bytes = null; - var callback = settings.LoadCallback; - callback?.Invoke(ref documentInfo); + if (!settings.AccessFlags.HasFlag(DocumentAccessFlags.UseAsyncLoadCallback)) + { + var callback = settings.LoadCallback; + callback?.Invoke(ref documentInfo); + } + else + { + var callback = settings.AsyncLoadCallback; + if (callback != null) + { + bytes = Encoding.UTF8.GetBytes(contents); + var documentInfoRef = ValueRef.Create(documentInfo); + await callback(documentInfoRef, new MemoryStream(bytes, false)).ConfigureAwait(false); + documentInfo = documentInfoRef.Value; + } + } - var document = CacheDocument(new StringDocument(documentInfo, contents), false); + var document = CacheDocument((bytes != null) ? new StringDocument(documentInfo, bytes) : new StringDocument(documentInfo, contents), false); if (!settings.AccessFlags.HasFlag(DocumentAccessFlags.AllowCategoryMismatch) && (documentInfo.Category != (category ?? DocumentCategory.Script))) { throw new FileLoadException("Document category mismatch", uri.IsFile ? uri.LocalPath : uri.AbsoluteUri); diff --git a/ClearScript/DocumentAccessFlags.cs b/ClearScript/DocumentAccessFlags.cs index bf13052d3..de97f7ad9 100644 --- a/ClearScript/DocumentAccessFlags.cs +++ b/ClearScript/DocumentAccessFlags.cs @@ -41,6 +41,11 @@ public enum DocumentAccessFlags /// /// Relaxes the requirement that a loaded document must be of the requested category. /// - AllowCategoryMismatch = 0x00000008 + AllowCategoryMismatch = 0x00000008, + + /// + /// Enables the use of instead of . + /// + UseAsyncLoadCallback = 0x00000010 } } diff --git a/ClearScript/DocumentSettings.cs b/ClearScript/DocumentSettings.cs index 279292e04..8b7c0672f 100644 --- a/ClearScript/DocumentSettings.cs +++ b/ClearScript/DocumentSettings.cs @@ -62,6 +62,11 @@ public DocumentLoader Loader /// public DocumentLoadCallback LoadCallback { get; set; } + /// + /// Gets or set an optional method to be called asynchronously when a document is loaded. + /// + public AsyncDocumentLoadCallback AsyncLoadCallback { get; set; } + /// /// Gets or sets an optional document context callback. /// @@ -170,6 +175,17 @@ private Document FindSystemDocument(string identifier, DocumentCategory category return document; } + if (AccessFlags.HasFlag(DocumentAccessFlags.AllowCategoryMismatch)) + { + foreach (var pair in systemDocumentMap) + { + if (pair.Key.Item1 == identifier) + { + return pair.Value; + } + } + } + return null; } } diff --git a/ClearScript/Exports/VersionSymbols.h b/ClearScript/Exports/VersionSymbols.h index 5aca8ac48..125af0aad 100644 --- a/ClearScript/Exports/VersionSymbols.h +++ b/ClearScript/Exports/VersionSymbols.h @@ -5,7 +5,7 @@ #pragma once -#define CLEARSCRIPT_VERSION_STRING "7.3.7" -#define CLEARSCRIPT_VERSION_COMMA_SEPARATED 7,3,7 -#define CLEARSCRIPT_VERSION_STRING_INFORMATIONAL "7.3.7" +#define CLEARSCRIPT_VERSION_STRING "7.4.0" +#define CLEARSCRIPT_VERSION_COMMA_SEPARATED 7,4,0 +#define CLEARSCRIPT_VERSION_STRING_INFORMATIONAL "7.4.0" #define CLEARSCRIPT_FILE_FLAGS 0L diff --git a/ClearScript/ExtendedHostFunctions.cs b/ClearScript/ExtendedHostFunctions.cs new file mode 100644 index 000000000..e200e1075 --- /dev/null +++ b/ClearScript/ExtendedHostFunctions.cs @@ -0,0 +1,315 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT license. + +using System; +using System.Runtime.InteropServices; +using Microsoft.ClearScript.Util; +using Microsoft.ClearScript.Util.COM; + +namespace Microsoft.ClearScript +{ + /// + /// Provides optional script-callable utility functions. This extended version allows script + /// code to import host types. + /// + public class ExtendedHostFunctions : HostFunctions + { + // ReSharper disable EmptyConstructor + + /// + /// Initializes a new instance. + /// + public ExtendedHostFunctions() + { + // the help file builder (SHFB) insists on an empty constructor here + } + + // ReSharper restore EmptyConstructor + + #region script-callable interface + + // ReSharper disable InconsistentNaming + + /// + /// Imports a host type by name. + /// + /// The fully qualified name of the host type to import. + /// Optional generic type arguments. + /// The imported host type. + /// + /// + /// Host types are imported in the form of objects whose properties and methods are bound + /// to the host type's static members and nested types. If refers + /// to a generic type, the corresponding object will be invocable with type arguments to + /// yield a specific type. + /// + /// + /// For more information about the mapping between host members and script-callable + /// properties and methods, see + /// AddHostObject. + /// + /// + /// + /// The following code imports the + /// Dictionary + /// generic type and uses it to create a string dictionary. + /// It assumes that an instance of is exposed under + /// the name "host" + /// (see AddHostObject). + /// + /// var DictT = host.type("System.Collections.Generic.Dictionary"); + /// var StringT = host.type("System.String"); + /// var dict = host.newObj(DictT(StringT, StringT)); + /// + /// Another way to create a string dictionary is to import the specific type directly. + /// + /// var StringT = host.type("System.String"); + /// var StringDictT = host.type("System.Collections.Generic.Dictionary", StringT, StringT); + /// var dict = host.newObj(StringDictT); + /// + /// + public object type(string name, params object[] hostTypeArgs) + { + return TypeHelpers.ImportType(name, null, false, hostTypeArgs); + } + + /// + /// Imports a host type by name from the specified assembly. + /// + /// The fully qualified name of the host type to import. + /// The name of the assembly that contains the host type to import. + /// Optional generic type arguments. + /// The imported host type. + /// + /// + /// Host types are imported in the form of objects whose properties and methods are bound + /// to the host type's static members and nested types. If refers + /// to a generic type, the corresponding object will be invocable with type arguments to + /// yield a specific type. + /// + /// + /// For more information about the mapping between host members and script-callable + /// properties and methods, see + /// AddHostObject. + /// + /// + /// + /// The following code imports and uses it to create + /// an array of strings. + /// It assumes that an instance of is exposed under + /// the name "host" + /// (see AddHostObject). + /// + /// var EnumerableT = host.type("System.Linq.Enumerable", "System.Core"); + /// var Int32T = host.type("System.Int32"); + /// var StringT = host.type("System.String"); + /// var SelectorT = host.type("System.Func", Int32T, StringT); + /// var selector = host.del(SelectorT, function (num) { return StringT.Format("The number is {0}.", num); }); + /// var array = EnumerableT.Range(0, 5).Select(selector).ToArray(); + /// + /// + /// + public object type(string name, string assemblyName, params object[] hostTypeArgs) + { + return TypeHelpers.ImportType(name, assemblyName, true, hostTypeArgs); + } + + /// + /// Imports the host type for the specified . + /// + /// The that specifies the host type to import. + /// The imported host type. + /// + /// + /// Host types are imported in the form of objects whose properties and methods are bound + /// to the host type's static members and nested types. If refers + /// to a generic type, the corresponding object will be invocable with type arguments to + /// yield a specific type. + /// + /// + /// For more information about the mapping between host members and script-callable + /// properties and methods, see + /// AddHostObject. + /// + /// + public object type(Type type) + { + return HostType.Wrap(type); + } + + /// + /// Imports the host array type for the specified element type. + /// + /// The element type for the host array type to import. + /// The number of dimensions for the host array type to import. + /// The imported host array type. + public object arrType(int rank = 1) + { + return HostType.Wrap(typeof(T).MakeArrayType(rank)); + } + + /// + /// Imports types from one or more host assemblies. + /// + /// The names of the assemblies that contain the types to import. + /// The imported host type collection. + /// + /// Host type collections provide convenient scriptable access to all the types defined in one + /// or more host assemblies. They are hierarchical collections where leaf nodes represent types + /// and parent nodes represent namespaces. For example, if an assembly contains a type named + /// "Acme.Gadgets.Button", the corresponding collection will have a property named "Acme" whose + /// value is an object with a property named "Gadgets" whose value is an object with a property + /// named "Button" whose value represents the Acme.Gadgets.Button host type. + /// + /// + /// The following code imports types from several core assemblies and uses + /// to create an array of integers. + /// It assumes that an instance of is exposed under + /// the name "host" + /// (see AddHostObject). + /// + /// var clr = host.lib("mscorlib", "System", "System.Core"); + /// var array = clr.System.Linq.Enumerable.Range(0, 5).ToArray(); + /// + /// + public HostTypeCollection lib(params string[] assemblyNames) + { + return lib(null, assemblyNames); + } + + /// + /// Imports types from one or more host assemblies and merges them with an existing host type collection. + /// + /// The host type collection with which to merge types from the specified assemblies. + /// The names of the assemblies that contain the types to import. + /// A host type collection: if it is not null, a new host type collection otherwise. + /// + /// Host type collections provide convenient scriptable access to all the types defined in one + /// or more host assemblies. They are hierarchical collections where leaf nodes represent types + /// and parent nodes represent namespaces. For example, if an assembly contains a type named + /// "Acme.Gadgets.Button", the corresponding collection will have a property named "Acme" whose + /// value is an object with a property named "Gadgets" whose value is an object with a property + /// named "Button" whose value represents the Acme.Gadgets.Button host type. + /// + /// + /// The following code imports types from several core assemblies and uses + /// to create an array of integers. + /// It assumes that an instance of is exposed under + /// the name "host" + /// (see AddHostObject). + /// + /// var clr = host.lib("mscorlib"); + /// host.lib(clr, "System"); + /// host.lib(clr, "System.Core"); + /// var array = clr.System.Linq.Enumerable.Range(0, 5).ToArray(); + /// + /// + public HostTypeCollection lib(HostTypeCollection collection, params string[] assemblyNames) + { + var target = collection ?? new HostTypeCollection(); + Array.ForEach(assemblyNames, target.AddAssembly); + return target; + } + + /// + /// Imports a COM/ActiveX type. + /// + /// The programmatic identifier (ProgID) of the registered class to import. + /// An optional name that specifies the server from which to import the type. + /// The imported COM/ActiveX type. + /// + /// The argument can be a class identifier (CLSID) in standard + /// GUID format with braces (e.g., "{0D43FE01-F093-11CF-8940-00A0C9054228}"). + /// + /// + /// The following code imports the + /// Scripting.Dictionary + /// class and uses it to create and populate an instance. + /// It assumes that an instance of is exposed under + /// the name "host" + /// (see AddHostObject). + /// + /// var DictT = host.comType('Scripting.Dictionary'); + /// var dict = host.newObj(DictT); + /// dict.Add('foo', 123); + /// dict.Add('bar', 456.789); + /// dict.Add('baz', 'abc'); + /// + /// + public object comType(string progID, string serverName = null) + { + return HostType.Wrap(MiscHelpers.GetCOMType(progID, serverName)); + } + + /// + /// Creates a COM/ActiveX object of the specified type. + /// + /// The programmatic identifier (ProgID) of the registered class to instantiate. + /// An optional name that specifies the server on which to create the object. + /// A new COM/ActiveX object of the specified type. + /// + /// The argument can be a class identifier (CLSID) in standard + /// GUID format with braces (e.g., "{0D43FE01-F093-11CF-8940-00A0C9054228}"). + /// + /// + /// The following code creates a + /// Scripting.FileSystemObject + /// instance and uses it to list the drives on the local machine. + /// It assumes that an instance of is exposed under + /// the name "host" + /// (see AddHostObject). + /// + /// var fso = host.newComObj('Scripting.FileSystemObject'); + /// var ConsoleT = host.type('System.Console'); + /// for (en = fso.Drives.GetEnumerator(); en.MoveNext();) { + /// ConsoleT.WriteLine(en.Current.Path); + /// } + /// + /// + public object newComObj(string progID, string serverName = null) + { + return MiscHelpers.CreateCOMObject(progID, serverName); + } + + /// + /// Imports enumerations defined within or referenced from a COM/ActiveX type library. + /// + /// The imported type whose parent library is to be searched for relevant enumerations. + /// An instance of the representative type. + /// An optional host type collection with which to merge the imported enumerations. + /// A host type collection: if it is not null, a new host type collection otherwise. + public HostTypeCollection typeLibEnums(T obj, HostTypeCollection collection = null) where T : class + { + MiscHelpers.VerifyNonNullArgument(obj, nameof(obj)); + if (collection == null) + { + collection = new HostTypeCollection(); + } + + var type = typeof(T); + if (type.IsUnknownCOMObject()) + { + if (obj is IDispatch dispatch) + { + var typeInfo = dispatch.GetTypeInfo(); + if (typeInfo != null) + { + typeInfo.GetContainingTypeLib().GetReferencedEnums().ForEach(collection.AddEnumTypeInfo); + return collection; + } + } + } + else if (type.IsImport && (type.Assembly.GetOrLoadCustomAttribute(false) != null)) + { + type.Assembly.GetReferencedEnums().ForEach(collection.AddType); + return collection; + } + + throw new ArgumentException("The object type is not of an imported (COM/ActiveX) type", nameof(obj)); + } + + // ReSharper restore InconsistentNaming + + #endregion + } +} diff --git a/ClearScript/HostFunctions.cs b/ClearScript/HostFunctions.cs index c531e3102..c452b84c1 100644 --- a/ClearScript/HostFunctions.cs +++ b/ClearScript/HostFunctions.cs @@ -7,9 +7,7 @@ using System.Globalization; using System.Linq; using System.Linq.Expressions; -using System.Runtime.InteropServices; using Microsoft.ClearScript.Util; -using Microsoft.ClearScript.Util.COM; namespace Microsoft.ClearScript { @@ -1372,309 +1370,4 @@ void IScriptableObject.OnExposedToScriptCode(ScriptEngine engine) #endregion } - - /// - /// Provides optional script-callable utility functions. This extended version allows script - /// code to import host types. - /// - public class ExtendedHostFunctions : HostFunctions - { - // ReSharper disable EmptyConstructor - - /// - /// Initializes a new instance. - /// - public ExtendedHostFunctions() - { - // the help file builder (SHFB) insists on an empty constructor here - } - - // ReSharper restore EmptyConstructor - - #region script-callable interface - - // ReSharper disable InconsistentNaming - - /// - /// Imports a host type by name. - /// - /// The fully qualified name of the host type to import. - /// Optional generic type arguments. - /// The imported host type. - /// - /// - /// Host types are imported in the form of objects whose properties and methods are bound - /// to the host type's static members and nested types. If refers - /// to a generic type, the corresponding object will be invocable with type arguments to - /// yield a specific type. - /// - /// - /// For more information about the mapping between host members and script-callable - /// properties and methods, see - /// AddHostObject. - /// - /// - /// - /// The following code imports the - /// Dictionary - /// generic type and uses it to create a string dictionary. - /// It assumes that an instance of is exposed under - /// the name "host" - /// (see AddHostObject). - /// - /// var DictT = host.type("System.Collections.Generic.Dictionary"); - /// var StringT = host.type("System.String"); - /// var dict = host.newObj(DictT(StringT, StringT)); - /// - /// Another way to create a string dictionary is to import the specific type directly. - /// - /// var StringT = host.type("System.String"); - /// var StringDictT = host.type("System.Collections.Generic.Dictionary", StringT, StringT); - /// var dict = host.newObj(StringDictT); - /// - /// - public object type(string name, params object[] hostTypeArgs) - { - return TypeHelpers.ImportType(name, null, false, hostTypeArgs); - } - - /// - /// Imports a host type by name from the specified assembly. - /// - /// The fully qualified name of the host type to import. - /// The name of the assembly that contains the host type to import. - /// Optional generic type arguments. - /// The imported host type. - /// - /// - /// Host types are imported in the form of objects whose properties and methods are bound - /// to the host type's static members and nested types. If refers - /// to a generic type, the corresponding object will be invocable with type arguments to - /// yield a specific type. - /// - /// - /// For more information about the mapping between host members and script-callable - /// properties and methods, see - /// AddHostObject. - /// - /// - /// - /// The following code imports and uses it to create - /// an array of strings. - /// It assumes that an instance of is exposed under - /// the name "host" - /// (see AddHostObject). - /// - /// var EnumerableT = host.type("System.Linq.Enumerable", "System.Core"); - /// var Int32T = host.type("System.Int32"); - /// var StringT = host.type("System.String"); - /// var SelectorT = host.type("System.Func", Int32T, StringT); - /// var selector = host.del(SelectorT, function (num) { return StringT.Format("The number is {0}.", num); }); - /// var array = EnumerableT.Range(0, 5).Select(selector).ToArray(); - /// - /// - /// - public object type(string name, string assemblyName, params object[] hostTypeArgs) - { - return TypeHelpers.ImportType(name, assemblyName, true, hostTypeArgs); - } - - /// - /// Imports the host type for the specified . - /// - /// The that specifies the host type to import. - /// The imported host type. - /// - /// - /// Host types are imported in the form of objects whose properties and methods are bound - /// to the host type's static members and nested types. If refers - /// to a generic type, the corresponding object will be invocable with type arguments to - /// yield a specific type. - /// - /// - /// For more information about the mapping between host members and script-callable - /// properties and methods, see - /// AddHostObject. - /// - /// - public object type(Type type) - { - return HostType.Wrap(type); - } - - /// - /// Imports the host array type for the specified element type. - /// - /// The element type for the host array type to import. - /// The number of dimensions for the host array type to import. - /// The imported host array type. - public object arrType(int rank = 1) - { - return HostType.Wrap(typeof(T).MakeArrayType(rank)); - } - - /// - /// Imports types from one or more host assemblies. - /// - /// The names of the assemblies that contain the types to import. - /// The imported host type collection. - /// - /// Host type collections provide convenient scriptable access to all the types defined in one - /// or more host assemblies. They are hierarchical collections where leaf nodes represent types - /// and parent nodes represent namespaces. For example, if an assembly contains a type named - /// "Acme.Gadgets.Button", the corresponding collection will have a property named "Acme" whose - /// value is an object with a property named "Gadgets" whose value is an object with a property - /// named "Button" whose value represents the Acme.Gadgets.Button host type. - /// - /// - /// The following code imports types from several core assemblies and uses - /// to create an array of integers. - /// It assumes that an instance of is exposed under - /// the name "host" - /// (see AddHostObject). - /// - /// var clr = host.lib("mscorlib", "System", "System.Core"); - /// var array = clr.System.Linq.Enumerable.Range(0, 5).ToArray(); - /// - /// - public HostTypeCollection lib(params string[] assemblyNames) - { - return lib(null, assemblyNames); - } - - /// - /// Imports types from one or more host assemblies and merges them with an existing host type collection. - /// - /// The host type collection with which to merge types from the specified assemblies. - /// The names of the assemblies that contain the types to import. - /// A host type collection: if it is not null, a new host type collection otherwise. - /// - /// Host type collections provide convenient scriptable access to all the types defined in one - /// or more host assemblies. They are hierarchical collections where leaf nodes represent types - /// and parent nodes represent namespaces. For example, if an assembly contains a type named - /// "Acme.Gadgets.Button", the corresponding collection will have a property named "Acme" whose - /// value is an object with a property named "Gadgets" whose value is an object with a property - /// named "Button" whose value represents the Acme.Gadgets.Button host type. - /// - /// - /// The following code imports types from several core assemblies and uses - /// to create an array of integers. - /// It assumes that an instance of is exposed under - /// the name "host" - /// (see AddHostObject). - /// - /// var clr = host.lib("mscorlib"); - /// host.lib(clr, "System"); - /// host.lib(clr, "System.Core"); - /// var array = clr.System.Linq.Enumerable.Range(0, 5).ToArray(); - /// - /// - public HostTypeCollection lib(HostTypeCollection collection, params string[] assemblyNames) - { - var target = collection ?? new HostTypeCollection(); - Array.ForEach(assemblyNames, target.AddAssembly); - return target; - } - - /// - /// Imports a COM/ActiveX type. - /// - /// The programmatic identifier (ProgID) of the registered class to import. - /// An optional name that specifies the server from which to import the type. - /// The imported COM/ActiveX type. - /// - /// The argument can be a class identifier (CLSID) in standard - /// GUID format with braces (e.g., "{0D43FE01-F093-11CF-8940-00A0C9054228}"). - /// - /// - /// The following code imports the - /// Scripting.Dictionary - /// class and uses it to create and populate an instance. - /// It assumes that an instance of is exposed under - /// the name "host" - /// (see AddHostObject). - /// - /// var DictT = host.comType('Scripting.Dictionary'); - /// var dict = host.newObj(DictT); - /// dict.Add('foo', 123); - /// dict.Add('bar', 456.789); - /// dict.Add('baz', 'abc'); - /// - /// - public object comType(string progID, string serverName = null) - { - return HostType.Wrap(MiscHelpers.GetCOMType(progID, serverName)); - } - - /// - /// Creates a COM/ActiveX object of the specified type. - /// - /// The programmatic identifier (ProgID) of the registered class to instantiate. - /// An optional name that specifies the server on which to create the object. - /// A new COM/ActiveX object of the specified type. - /// - /// The argument can be a class identifier (CLSID) in standard - /// GUID format with braces (e.g., "{0D43FE01-F093-11CF-8940-00A0C9054228}"). - /// - /// - /// The following code creates a - /// Scripting.FileSystemObject - /// instance and uses it to list the drives on the local machine. - /// It assumes that an instance of is exposed under - /// the name "host" - /// (see AddHostObject). - /// - /// var fso = host.newComObj('Scripting.FileSystemObject'); - /// var ConsoleT = host.type('System.Console'); - /// for (en = fso.Drives.GetEnumerator(); en.MoveNext();) { - /// ConsoleT.WriteLine(en.Current.Path); - /// } - /// - /// - public object newComObj(string progID, string serverName = null) - { - return MiscHelpers.CreateCOMObject(progID, serverName); - } - - /// - /// Imports enumerations defined within or referenced from a COM/ActiveX type library. - /// - /// The imported type whose parent library is to be searched for relevant enumerations. - /// An instance of the representative type. - /// An optional host type collection with which to merge the imported enumerations. - /// A host type collection: if it is not null, a new host type collection otherwise. - public HostTypeCollection typeLibEnums(T obj, HostTypeCollection collection = null) where T : class - { - MiscHelpers.VerifyNonNullArgument(obj, nameof(obj)); - if (collection == null) - { - collection = new HostTypeCollection(); - } - - var type = typeof(T); - if (type.IsUnknownCOMObject()) - { - if (obj is IDispatch dispatch) - { - var typeInfo = dispatch.GetTypeInfo(); - if (typeInfo != null) - { - typeInfo.GetContainingTypeLib().GetReferencedEnums().ForEach(collection.AddEnumTypeInfo); - return collection; - } - } - } - else if (type.IsImport && (type.Assembly.GetOrLoadCustomAttribute(false) != null)) - { - type.Assembly.GetReferencedEnums().ForEach(collection.AddType); - return collection; - } - - throw new ArgumentException("The object type is not of an imported (COM/ActiveX) type", nameof(obj)); - } - - // ReSharper restore InconsistentNaming - - #endregion - } } diff --git a/ClearScript/JavaScript/JavaScriptExtensions.NetStandard.cs b/ClearScript/JavaScript/JavaScriptExtensions.NetStandard.cs index f0ceef04e..0aaa4412f 100644 --- a/ClearScript/JavaScript/JavaScriptExtensions.NetStandard.cs +++ b/ClearScript/JavaScript/JavaScriptExtensions.NetStandard.cs @@ -2,6 +2,8 @@ // Licensed under the MIT license. using System; +using System.Collections; +using System.Collections.Generic; using System.Threading.Tasks; using Microsoft.ClearScript.Util; @@ -90,5 +92,72 @@ public static object ToPromise(this ValueTask valueTask, ScriptEngine engine) return javaScriptEngine.CreatePromiseForValueTask(valueTask); } + + /// + /// Supports managed asynchronous iteration over an + /// async-iterable + /// script object. + /// + /// An async-iterable script object (see remarks). + /// An IAsyncEnumerator<Object> implementation that supports managed asynchronous iteration over . + /// + /// If the argument implements IAsyncEnumerator<Object>, this method returns it as is. + /// + public static IAsyncEnumerable ToAsyncEnumerable(this object asyncIterable) + { + MiscHelpers.VerifyNonNullArgument(asyncIterable, nameof(asyncIterable)); + return asyncIterable as IAsyncEnumerable ?? asyncIterable.ToAsyncEnumerableInternal(); + } + + private static async IAsyncEnumerable ToAsyncEnumerableInternal(this object asyncIterable) + { + if (asyncIterable is IEnumerable objectEnumerable) + { + foreach (var item in objectEnumerable) + { + yield return item; + } + } + else if (asyncIterable is ScriptObject scriptObject) + { + if (scriptObject.Engine is IJavaScriptEngine javaScriptEngine && (javaScriptEngine.BaseLanguageVersion >= 6)) + { + var engineInternal = (ScriptObject)javaScriptEngine.Global["EngineInternal"]; + if (engineInternal.InvokeMethod("getAsyncIterator", scriptObject) is ScriptObject asyncIterator) + { + while (await asyncIterator.InvokeMethod("next").ToTask().ConfigureAwait(false) is ScriptObject result && !Equals(result["done"], true)) + { + yield return result["value"]; + } + } + else if (engineInternal.InvokeMethod("getIterator", scriptObject) is ScriptObject iterator) + { + while (iterator.InvokeMethod("next") is ScriptObject result && !Equals(result["done"], true)) + { + yield return result["value"]; + } + } + else + { + throw new ArgumentException("The object is not async-iterable", nameof(asyncIterable)); + } + } + else + { + throw new NotSupportedException("The script engine does not support async iteration"); + } + } + else if (asyncIterable is IEnumerable enumerable) + { + foreach (var item in enumerable) + { + yield return item; + } + } + else + { + throw new ArgumentException("The object is not async-iterable", nameof(asyncIterable)); + } + } } } diff --git a/ClearScript/JavaScript/JavaScriptExtensions.cs b/ClearScript/JavaScript/JavaScriptExtensions.cs index c8d0f31a6..862d079e6 100644 --- a/ClearScript/JavaScript/JavaScriptExtensions.cs +++ b/ClearScript/JavaScript/JavaScriptExtensions.cs @@ -2,6 +2,8 @@ // Licensed under the MIT license. using System; +using System.Collections; +using System.Collections.Generic; using System.Threading.Tasks; using Microsoft.ClearScript.Util; @@ -87,14 +89,46 @@ public static object ToPromise(this Task task, ScriptEngine engine) /// /// Converts a /// promise - /// to a instance. + /// to a Task<Object> instance. /// - /// The promise to convert to a task. + /// The promise to convert to a task (see remarks). /// A task that represents the promise's asynchronous operation. + /// + /// If the argument is a Task<Object> instance, + /// this method returns it as is. + /// public static Task ToTask(this object promise) { MiscHelpers.VerifyNonNullArgument(promise, nameof(promise)); + return promise as Task ?? promise.ToTaskInternal(); + } + + /// + /// Supports managed iteration over an + /// iterable + /// script object. + /// + /// An iterable script object (see remarks). + /// An IEnumerable<Object> implementation that supports managed iteration over . + /// + /// If the argument implements + /// IEnumerable<Object>, this method + /// returns it as is. + /// + public static IEnumerable ToEnumerable(this object iterable) + { + // WARNING: The IEnumerable test below is a bit dicey, as most IEnumerable + // implementations support IEnumerable via covariance. The desired behavior + // here is for that test to fail for IDictionary, as V8 script objects + // now support that interface. Luckily, that test does fail, but only because + // KeyValuePair is a struct, so covariance doesn't apply. + MiscHelpers.VerifyNonNullArgument(iterable, nameof(iterable)); + return iterable as IEnumerable ?? iterable.ToEnumerableInternal(); + } + + private static Task ToTaskInternal(this object promise) + { var scriptObject = promise as ScriptObject; if (scriptObject == null) { @@ -109,5 +143,42 @@ public static Task ToTask(this object promise) return javaScriptEngine.CreateTaskForPromise(scriptObject); } + + private static IEnumerable ToEnumerableInternal(this object iterable) + { + if (iterable is ScriptObject scriptObject) + { + if (scriptObject.Engine is IJavaScriptEngine javaScriptEngine && (javaScriptEngine.BaseLanguageVersion >= 6)) + { + var engineInternal = (ScriptObject)javaScriptEngine.Global["EngineInternal"]; + if (engineInternal.InvokeMethod("getIterator", scriptObject) is ScriptObject iterator) + { + while (iterator.InvokeMethod("next") is ScriptObject result && !Equals(result["done"], true)) + { + yield return result["value"]; + } + } + else + { + throw new ArgumentException("The object is not iterable", nameof(iterable)); + } + } + else + { + throw new NotSupportedException("The script engine does not support iteration"); + } + } + else if (iterable is IEnumerable enumerable) + { + foreach (var item in enumerable) + { + yield return item; + } + } + else + { + throw new ArgumentException("The object is not iterable", nameof(iterable)); + } + } } } diff --git a/ClearScript/Properties/AssemblyInfo.Core.cs b/ClearScript/Properties/AssemblyInfo.Core.cs index 04a95f9ab..fb1b012a1 100644 --- a/ClearScript/Properties/AssemblyInfo.Core.cs +++ b/ClearScript/Properties/AssemblyInfo.Core.cs @@ -18,15 +18,15 @@ [assembly: InternalsVisibleTo("ClearScriptTest")] [assembly: ComVisible(false)] -[assembly: AssemblyVersion("7.3.7")] -[assembly: AssemblyFileVersion("7.3.7")] -[assembly: AssemblyInformationalVersion("7.3.7")] +[assembly: AssemblyVersion("7.4.0")] +[assembly: AssemblyFileVersion("7.4.0")] +[assembly: AssemblyInformationalVersion("7.4.0")] namespace Microsoft.ClearScript.Properties { internal static class ClearScriptVersion { - public const string Triad = "7.3.7"; - public const string Informational = "7.3.7"; + public const string Triad = "7.4.0"; + public const string Informational = "7.4.0"; } } diff --git a/ClearScript/Properties/AssemblyInfo.V8.ICUData.cs b/ClearScript/Properties/AssemblyInfo.V8.ICUData.cs index 59d4c6e67..893e207d3 100644 --- a/ClearScript/Properties/AssemblyInfo.V8.ICUData.cs +++ b/ClearScript/Properties/AssemblyInfo.V8.ICUData.cs @@ -15,6 +15,6 @@ [assembly: InternalsVisibleTo("ClearScript.V8")] [assembly: ComVisible(false)] -[assembly: AssemblyVersion("7.3.7")] -[assembly: AssemblyFileVersion("7.3.7")] -[assembly: AssemblyInformationalVersion("7.3.7")] +[assembly: AssemblyVersion("7.4.0")] +[assembly: AssemblyFileVersion("7.4.0")] +[assembly: AssemblyInformationalVersion("7.4.0")] diff --git a/ClearScript/Properties/AssemblyInfo.V8.cs b/ClearScript/Properties/AssemblyInfo.V8.cs index 0351bcb79..204cd3a4e 100644 --- a/ClearScript/Properties/AssemblyInfo.V8.cs +++ b/ClearScript/Properties/AssemblyInfo.V8.cs @@ -15,6 +15,6 @@ [assembly: InternalsVisibleTo("ClearScriptTest")] [assembly: ComVisible(false)] -[assembly: AssemblyVersion("7.3.7")] -[assembly: AssemblyFileVersion("7.3.7")] -[assembly: AssemblyInformationalVersion("7.3.7")] +[assembly: AssemblyVersion("7.4.0")] +[assembly: AssemblyFileVersion("7.4.0")] +[assembly: AssemblyInformationalVersion("7.4.0")] diff --git a/ClearScript/Properties/AssemblyInfo.Windows.Core.cs b/ClearScript/Properties/AssemblyInfo.Windows.Core.cs index d5b9dc58c..36097471d 100644 --- a/ClearScript/Properties/AssemblyInfo.Windows.Core.cs +++ b/ClearScript/Properties/AssemblyInfo.Windows.Core.cs @@ -16,6 +16,6 @@ [assembly: InternalsVisibleTo("ClearScriptTest")] [assembly: ComVisible(false)] -[assembly: AssemblyVersion("7.3.7")] -[assembly: AssemblyFileVersion("7.3.7")] -[assembly: AssemblyInformationalVersion("7.3.7")] +[assembly: AssemblyVersion("7.4.0")] +[assembly: AssemblyFileVersion("7.4.0")] +[assembly: AssemblyInformationalVersion("7.4.0")] diff --git a/ClearScript/Properties/AssemblyInfo.Windows.cs b/ClearScript/Properties/AssemblyInfo.Windows.cs index ad3d6cca7..b04f3901d 100644 --- a/ClearScript/Properties/AssemblyInfo.Windows.cs +++ b/ClearScript/Properties/AssemblyInfo.Windows.cs @@ -15,6 +15,6 @@ [assembly: InternalsVisibleTo("ClearScriptTest")] [assembly: ComVisible(false)] -[assembly: AssemblyVersion("7.3.7")] -[assembly: AssemblyFileVersion("7.3.7")] -[assembly: AssemblyInformationalVersion("7.3.7")] +[assembly: AssemblyVersion("7.4.0")] +[assembly: AssemblyFileVersion("7.4.0")] +[assembly: AssemblyInformationalVersion("7.4.0")] diff --git a/ClearScript/ScriptItem.cs b/ClearScript/ScriptItem.cs index 6f6b4791d..a2f9f5fe7 100644 --- a/ClearScript/ScriptItem.cs +++ b/ClearScript/ScriptItem.cs @@ -148,13 +148,13 @@ private static DynamicMetaObject PostProcessBindResult(DynamicMetaObject result) public override IEnumerable PropertyIndices => GetPropertyIndices(); - public new object this[string name, params object[] args] + public override object this[string name, params object[] args] { get => GetProperty(name, args).ToDynamicResult(Engine); set => SetProperty(name, args.Concat(value.ToEnumerable()).ToArray()); } - public new object this[int index] + public override object this[int index] { get => GetProperty(index).ToDynamicResult(Engine); set => SetProperty(index, value); diff --git a/ClearScript/ScriptObject.cs b/ClearScript/ScriptObject.cs index 8c51a87d7..71bdae529 100644 --- a/ClearScript/ScriptObject.cs +++ b/ClearScript/ScriptObject.cs @@ -3,8 +3,6 @@ using System.Collections.Generic; using System.Dynamic; -using System.Linq; -using Microsoft.ClearScript.Util; namespace Microsoft.ClearScript { @@ -35,11 +33,7 @@ internal ScriptObject() public abstract IEnumerable PropertyNames { get; } /// - public object this[string name, params object[] args] - { - get => GetProperty(name, args); - set => SetProperty(name, args.Concat(value.ToEnumerable()).ToArray()); - } + public abstract object this[string name, params object[] args] { get; set; } /// public abstract object GetProperty(int index); @@ -54,11 +48,7 @@ internal ScriptObject() public abstract IEnumerable PropertyIndices { get; } /// - public object this[int index] - { - get => GetProperty(index); - set => SetProperty(index, value); - } + public abstract object this[int index] { get; set; } /// public abstract object Invoke(bool asConstructor, params object[] args); diff --git a/ClearScript/StringDocument.cs b/ClearScript/StringDocument.cs index 78ba48af3..77caf6ce5 100644 --- a/ClearScript/StringDocument.cs +++ b/ClearScript/StringDocument.cs @@ -19,9 +19,14 @@ public class StringDocument : Document /// A structure containing meta-information for the document. /// A string containing the document's contents. public StringDocument(DocumentInfo info, string contents) + : this(info, Encoding.UTF8.GetBytes(contents)) + { + } + + internal StringDocument(DocumentInfo info, byte[] contents) { Info = info; - this.contents = Encoding.UTF8.GetBytes(contents); + this.contents = contents; } #region Document overrides diff --git a/ClearScript/V8/IV8Object.cs b/ClearScript/V8/IV8Object.cs index dd1fb5aa7..5beb01b37 100644 --- a/ClearScript/V8/IV8Object.cs +++ b/ClearScript/V8/IV8Object.cs @@ -14,9 +14,10 @@ internal interface IV8Object : IDisposable int IdentityHash { get; } object GetProperty(string name); + bool TryGetProperty(string name, out object value); void SetProperty(string name, object value); bool DeleteProperty(string name); - string[] GetPropertyNames(); + string[] GetPropertyNames(bool includeIndices); object GetProperty(int index); void SetProperty(int index, object value); diff --git a/ClearScript/V8/SplitProxy/IV8SplitProxyNative.cs b/ClearScript/V8/SplitProxy/IV8SplitProxyNative.cs index 3490160fd..418a31238 100644 --- a/ClearScript/V8/SplitProxy/IV8SplitProxyNative.cs +++ b/ClearScript/V8/SplitProxy/IV8SplitProxyNative.cs @@ -197,9 +197,10 @@ internal interface IV8SplitProxyNative #region V8 object methods object V8Object_GetNamedProperty(V8Object.Handle hObject, string name); + bool V8Object_TryGetNamedProperty(V8Object.Handle hObject, string name, out object value); void V8Object_SetNamedProperty(V8Object.Handle hObject, string name, object value); bool V8Object_DeleteNamedProperty(V8Object.Handle hObject, string name); - string[] V8Object_GetPropertyNames(V8Object.Handle hObject); + string[] V8Object_GetPropertyNames(V8Object.Handle hObject, bool includeIndices); object V8Object_GetIndexedProperty(V8Object.Handle hObject, int index); void V8Object_SetIndexedProperty(V8Object.Handle hObject, int index, object value); bool V8Object_DeleteIndexedProperty(V8Object.Handle hObject, int index); diff --git a/ClearScript/V8/SplitProxy/V8ObjectImpl.cs b/ClearScript/V8/SplitProxy/V8ObjectImpl.cs index aff9e30d0..44c32d973 100644 --- a/ClearScript/V8/SplitProxy/V8ObjectImpl.cs +++ b/ClearScript/V8/SplitProxy/V8ObjectImpl.cs @@ -101,6 +101,14 @@ public object GetProperty(string name) return V8SplitProxyNative.Invoke(instance => instance.V8Object_GetNamedProperty(Handle, name)); } + public bool TryGetProperty(string name, out object value) + { + object tempValue = null; + var result = V8SplitProxyNative.Invoke(instance => instance.V8Object_TryGetNamedProperty(Handle, name, out tempValue)); + value = tempValue; + return result; + } + public void SetProperty(string name, object value) { V8SplitProxyNative.Invoke(instance => instance.V8Object_SetNamedProperty(Handle, name, value)); @@ -111,9 +119,9 @@ public bool DeleteProperty(string name) return V8SplitProxyNative.Invoke(instance => instance.V8Object_DeleteNamedProperty(Handle, name)); } - public string[] GetPropertyNames() + public string[] GetPropertyNames(bool includeIndices) { - return V8SplitProxyNative.Invoke(instance => instance.V8Object_GetPropertyNames(Handle)); + return V8SplitProxyNative.Invoke(instance => instance.V8Object_GetPropertyNames(Handle, includeIndices)); } public object GetProperty(int index) diff --git a/ClearScript/V8/SplitProxy/V8SplitProxyNative.Common.tt b/ClearScript/V8/SplitProxy/V8SplitProxyNative.Common.tt index 4dd56a368..1bafa7e75 100644 --- a/ClearScript/V8/SplitProxy/V8SplitProxyNative.Common.tt +++ b/ClearScript/V8/SplitProxy/V8SplitProxyNative.Common.tt @@ -893,6 +893,24 @@ namespace Microsoft.ClearScript.V8.SplitProxy } } + bool IV8SplitProxyNative.V8Object_TryGetNamedProperty(V8Object.Handle hObject, string name, out object value) + { + using (var nameScope = StdString.CreateScope(name)) + { + using (var valueScope = V8Value.CreateScope()) + { + if (V8Object_TryGetNamedProperty(hObject, nameScope.Value, valueScope.Value)) + { + value = V8Value.Get(valueScope.Value); + return true; + } + + value = null; + return false; + } + } + } + void IV8SplitProxyNative.V8Object_SetNamedProperty(V8Object.Handle hObject, string name, object value) { using (var nameScope = StdString.CreateScope(name)) @@ -912,11 +930,11 @@ namespace Microsoft.ClearScript.V8.SplitProxy } } - string[] IV8SplitProxyNative.V8Object_GetPropertyNames(V8Object.Handle hObject) + string[] IV8SplitProxyNative.V8Object_GetPropertyNames(V8Object.Handle hObject, bool includeIndices) { using (var namesScope = StdStringArray.CreateScope()) { - V8Object_GetPropertyNames(hObject, namesScope.Value); + V8Object_GetPropertyNames(hObject, includeIndices, namesScope.Value); return StdStringArray.ToArray(namesScope.Value); } } @@ -1931,6 +1949,14 @@ namespace Microsoft.ClearScript.V8.SplitProxy [In] V8Value.Ptr pValue ); + [DllImport("<#= fileName #>", CallingConvention = CallingConvention.StdCall)] + [return: MarshalAs(UnmanagedType.I1)] + private static extern bool V8Object_TryGetNamedProperty( + [In] V8Object.Handle hObject, + [In] StdString.Ptr pName, + [In] V8Value.Ptr pValue + ); + [DllImport("<#= fileName #>", CallingConvention = CallingConvention.StdCall)] private static extern void V8Object_SetNamedProperty( [In] V8Object.Handle hObject, @@ -1948,6 +1974,7 @@ namespace Microsoft.ClearScript.V8.SplitProxy [DllImport("<#= fileName #>", CallingConvention = CallingConvention.StdCall)] private static extern void V8Object_GetPropertyNames( [In] V8Object.Handle hObject, + [In] [MarshalAs(UnmanagedType.I1)] bool includeIndices, [In] StdStringArray.Ptr pNames ); diff --git a/ClearScript/V8/SplitProxy/V8SplitProxyNative.Generated.cs b/ClearScript/V8/SplitProxy/V8SplitProxyNative.Generated.cs index 08e3a2689..dcee29394 100644 --- a/ClearScript/V8/SplitProxy/V8SplitProxyNative.Generated.cs +++ b/ClearScript/V8/SplitProxy/V8SplitProxyNative.Generated.cs @@ -935,6 +935,24 @@ object IV8SplitProxyNative.V8Object_GetNamedProperty(V8Object.Handle hObject, st } } + bool IV8SplitProxyNative.V8Object_TryGetNamedProperty(V8Object.Handle hObject, string name, out object value) + { + using (var nameScope = StdString.CreateScope(name)) + { + using (var valueScope = V8Value.CreateScope()) + { + if (V8Object_TryGetNamedProperty(hObject, nameScope.Value, valueScope.Value)) + { + value = V8Value.Get(valueScope.Value); + return true; + } + + value = null; + return false; + } + } + } + void IV8SplitProxyNative.V8Object_SetNamedProperty(V8Object.Handle hObject, string name, object value) { using (var nameScope = StdString.CreateScope(name)) @@ -954,11 +972,11 @@ bool IV8SplitProxyNative.V8Object_DeleteNamedProperty(V8Object.Handle hObject, s } } - string[] IV8SplitProxyNative.V8Object_GetPropertyNames(V8Object.Handle hObject) + string[] IV8SplitProxyNative.V8Object_GetPropertyNames(V8Object.Handle hObject, bool includeIndices) { using (var namesScope = StdStringArray.CreateScope()) { - V8Object_GetPropertyNames(hObject, namesScope.Value); + V8Object_GetPropertyNames(hObject, includeIndices, namesScope.Value); return StdStringArray.ToArray(namesScope.Value); } } @@ -1973,6 +1991,14 @@ private static extern void V8Object_GetNamedProperty( [In] V8Value.Ptr pValue ); + [DllImport("ClearScriptV8.win-x86.dll", CallingConvention = CallingConvention.StdCall)] + [return: MarshalAs(UnmanagedType.I1)] + private static extern bool V8Object_TryGetNamedProperty( + [In] V8Object.Handle hObject, + [In] StdString.Ptr pName, + [In] V8Value.Ptr pValue + ); + [DllImport("ClearScriptV8.win-x86.dll", CallingConvention = CallingConvention.StdCall)] private static extern void V8Object_SetNamedProperty( [In] V8Object.Handle hObject, @@ -1990,6 +2016,7 @@ [In] StdString.Ptr pName [DllImport("ClearScriptV8.win-x86.dll", CallingConvention = CallingConvention.StdCall)] private static extern void V8Object_GetPropertyNames( [In] V8Object.Handle hObject, + [In] [MarshalAs(UnmanagedType.I1)] bool includeIndices, [In] StdStringArray.Ptr pNames ); @@ -2970,6 +2997,24 @@ object IV8SplitProxyNative.V8Object_GetNamedProperty(V8Object.Handle hObject, st } } + bool IV8SplitProxyNative.V8Object_TryGetNamedProperty(V8Object.Handle hObject, string name, out object value) + { + using (var nameScope = StdString.CreateScope(name)) + { + using (var valueScope = V8Value.CreateScope()) + { + if (V8Object_TryGetNamedProperty(hObject, nameScope.Value, valueScope.Value)) + { + value = V8Value.Get(valueScope.Value); + return true; + } + + value = null; + return false; + } + } + } + void IV8SplitProxyNative.V8Object_SetNamedProperty(V8Object.Handle hObject, string name, object value) { using (var nameScope = StdString.CreateScope(name)) @@ -2989,11 +3034,11 @@ bool IV8SplitProxyNative.V8Object_DeleteNamedProperty(V8Object.Handle hObject, s } } - string[] IV8SplitProxyNative.V8Object_GetPropertyNames(V8Object.Handle hObject) + string[] IV8SplitProxyNative.V8Object_GetPropertyNames(V8Object.Handle hObject, bool includeIndices) { using (var namesScope = StdStringArray.CreateScope()) { - V8Object_GetPropertyNames(hObject, namesScope.Value); + V8Object_GetPropertyNames(hObject, includeIndices, namesScope.Value); return StdStringArray.ToArray(namesScope.Value); } } @@ -4008,6 +4053,14 @@ private static extern void V8Object_GetNamedProperty( [In] V8Value.Ptr pValue ); + [DllImport("ClearScriptV8.win-x64.dll", CallingConvention = CallingConvention.StdCall)] + [return: MarshalAs(UnmanagedType.I1)] + private static extern bool V8Object_TryGetNamedProperty( + [In] V8Object.Handle hObject, + [In] StdString.Ptr pName, + [In] V8Value.Ptr pValue + ); + [DllImport("ClearScriptV8.win-x64.dll", CallingConvention = CallingConvention.StdCall)] private static extern void V8Object_SetNamedProperty( [In] V8Object.Handle hObject, @@ -4025,6 +4078,7 @@ [In] StdString.Ptr pName [DllImport("ClearScriptV8.win-x64.dll", CallingConvention = CallingConvention.StdCall)] private static extern void V8Object_GetPropertyNames( [In] V8Object.Handle hObject, + [In] [MarshalAs(UnmanagedType.I1)] bool includeIndices, [In] StdStringArray.Ptr pNames ); @@ -5005,6 +5059,24 @@ object IV8SplitProxyNative.V8Object_GetNamedProperty(V8Object.Handle hObject, st } } + bool IV8SplitProxyNative.V8Object_TryGetNamedProperty(V8Object.Handle hObject, string name, out object value) + { + using (var nameScope = StdString.CreateScope(name)) + { + using (var valueScope = V8Value.CreateScope()) + { + if (V8Object_TryGetNamedProperty(hObject, nameScope.Value, valueScope.Value)) + { + value = V8Value.Get(valueScope.Value); + return true; + } + + value = null; + return false; + } + } + } + void IV8SplitProxyNative.V8Object_SetNamedProperty(V8Object.Handle hObject, string name, object value) { using (var nameScope = StdString.CreateScope(name)) @@ -5024,11 +5096,11 @@ bool IV8SplitProxyNative.V8Object_DeleteNamedProperty(V8Object.Handle hObject, s } } - string[] IV8SplitProxyNative.V8Object_GetPropertyNames(V8Object.Handle hObject) + string[] IV8SplitProxyNative.V8Object_GetPropertyNames(V8Object.Handle hObject, bool includeIndices) { using (var namesScope = StdStringArray.CreateScope()) { - V8Object_GetPropertyNames(hObject, namesScope.Value); + V8Object_GetPropertyNames(hObject, includeIndices, namesScope.Value); return StdStringArray.ToArray(namesScope.Value); } } @@ -6043,6 +6115,14 @@ private static extern void V8Object_GetNamedProperty( [In] V8Value.Ptr pValue ); + [DllImport("ClearScriptV8.win-arm64.dll", CallingConvention = CallingConvention.StdCall)] + [return: MarshalAs(UnmanagedType.I1)] + private static extern bool V8Object_TryGetNamedProperty( + [In] V8Object.Handle hObject, + [In] StdString.Ptr pName, + [In] V8Value.Ptr pValue + ); + [DllImport("ClearScriptV8.win-arm64.dll", CallingConvention = CallingConvention.StdCall)] private static extern void V8Object_SetNamedProperty( [In] V8Object.Handle hObject, @@ -6060,6 +6140,7 @@ [In] StdString.Ptr pName [DllImport("ClearScriptV8.win-arm64.dll", CallingConvention = CallingConvention.StdCall)] private static extern void V8Object_GetPropertyNames( [In] V8Object.Handle hObject, + [In] [MarshalAs(UnmanagedType.I1)] bool includeIndices, [In] StdStringArray.Ptr pNames ); @@ -7040,6 +7121,24 @@ object IV8SplitProxyNative.V8Object_GetNamedProperty(V8Object.Handle hObject, st } } + bool IV8SplitProxyNative.V8Object_TryGetNamedProperty(V8Object.Handle hObject, string name, out object value) + { + using (var nameScope = StdString.CreateScope(name)) + { + using (var valueScope = V8Value.CreateScope()) + { + if (V8Object_TryGetNamedProperty(hObject, nameScope.Value, valueScope.Value)) + { + value = V8Value.Get(valueScope.Value); + return true; + } + + value = null; + return false; + } + } + } + void IV8SplitProxyNative.V8Object_SetNamedProperty(V8Object.Handle hObject, string name, object value) { using (var nameScope = StdString.CreateScope(name)) @@ -7059,11 +7158,11 @@ bool IV8SplitProxyNative.V8Object_DeleteNamedProperty(V8Object.Handle hObject, s } } - string[] IV8SplitProxyNative.V8Object_GetPropertyNames(V8Object.Handle hObject) + string[] IV8SplitProxyNative.V8Object_GetPropertyNames(V8Object.Handle hObject, bool includeIndices) { using (var namesScope = StdStringArray.CreateScope()) { - V8Object_GetPropertyNames(hObject, namesScope.Value); + V8Object_GetPropertyNames(hObject, includeIndices, namesScope.Value); return StdStringArray.ToArray(namesScope.Value); } } @@ -8078,6 +8177,14 @@ private static extern void V8Object_GetNamedProperty( [In] V8Value.Ptr pValue ); + [DllImport("ClearScriptV8.linux-x64.so", CallingConvention = CallingConvention.StdCall)] + [return: MarshalAs(UnmanagedType.I1)] + private static extern bool V8Object_TryGetNamedProperty( + [In] V8Object.Handle hObject, + [In] StdString.Ptr pName, + [In] V8Value.Ptr pValue + ); + [DllImport("ClearScriptV8.linux-x64.so", CallingConvention = CallingConvention.StdCall)] private static extern void V8Object_SetNamedProperty( [In] V8Object.Handle hObject, @@ -8095,6 +8202,7 @@ [In] StdString.Ptr pName [DllImport("ClearScriptV8.linux-x64.so", CallingConvention = CallingConvention.StdCall)] private static extern void V8Object_GetPropertyNames( [In] V8Object.Handle hObject, + [In] [MarshalAs(UnmanagedType.I1)] bool includeIndices, [In] StdStringArray.Ptr pNames ); @@ -9075,6 +9183,24 @@ object IV8SplitProxyNative.V8Object_GetNamedProperty(V8Object.Handle hObject, st } } + bool IV8SplitProxyNative.V8Object_TryGetNamedProperty(V8Object.Handle hObject, string name, out object value) + { + using (var nameScope = StdString.CreateScope(name)) + { + using (var valueScope = V8Value.CreateScope()) + { + if (V8Object_TryGetNamedProperty(hObject, nameScope.Value, valueScope.Value)) + { + value = V8Value.Get(valueScope.Value); + return true; + } + + value = null; + return false; + } + } + } + void IV8SplitProxyNative.V8Object_SetNamedProperty(V8Object.Handle hObject, string name, object value) { using (var nameScope = StdString.CreateScope(name)) @@ -9094,11 +9220,11 @@ bool IV8SplitProxyNative.V8Object_DeleteNamedProperty(V8Object.Handle hObject, s } } - string[] IV8SplitProxyNative.V8Object_GetPropertyNames(V8Object.Handle hObject) + string[] IV8SplitProxyNative.V8Object_GetPropertyNames(V8Object.Handle hObject, bool includeIndices) { using (var namesScope = StdStringArray.CreateScope()) { - V8Object_GetPropertyNames(hObject, namesScope.Value); + V8Object_GetPropertyNames(hObject, includeIndices, namesScope.Value); return StdStringArray.ToArray(namesScope.Value); } } @@ -10113,6 +10239,14 @@ private static extern void V8Object_GetNamedProperty( [In] V8Value.Ptr pValue ); + [DllImport("ClearScriptV8.linux-arm64.so", CallingConvention = CallingConvention.StdCall)] + [return: MarshalAs(UnmanagedType.I1)] + private static extern bool V8Object_TryGetNamedProperty( + [In] V8Object.Handle hObject, + [In] StdString.Ptr pName, + [In] V8Value.Ptr pValue + ); + [DllImport("ClearScriptV8.linux-arm64.so", CallingConvention = CallingConvention.StdCall)] private static extern void V8Object_SetNamedProperty( [In] V8Object.Handle hObject, @@ -10130,6 +10264,7 @@ [In] StdString.Ptr pName [DllImport("ClearScriptV8.linux-arm64.so", CallingConvention = CallingConvention.StdCall)] private static extern void V8Object_GetPropertyNames( [In] V8Object.Handle hObject, + [In] [MarshalAs(UnmanagedType.I1)] bool includeIndices, [In] StdStringArray.Ptr pNames ); @@ -11110,6 +11245,24 @@ object IV8SplitProxyNative.V8Object_GetNamedProperty(V8Object.Handle hObject, st } } + bool IV8SplitProxyNative.V8Object_TryGetNamedProperty(V8Object.Handle hObject, string name, out object value) + { + using (var nameScope = StdString.CreateScope(name)) + { + using (var valueScope = V8Value.CreateScope()) + { + if (V8Object_TryGetNamedProperty(hObject, nameScope.Value, valueScope.Value)) + { + value = V8Value.Get(valueScope.Value); + return true; + } + + value = null; + return false; + } + } + } + void IV8SplitProxyNative.V8Object_SetNamedProperty(V8Object.Handle hObject, string name, object value) { using (var nameScope = StdString.CreateScope(name)) @@ -11129,11 +11282,11 @@ bool IV8SplitProxyNative.V8Object_DeleteNamedProperty(V8Object.Handle hObject, s } } - string[] IV8SplitProxyNative.V8Object_GetPropertyNames(V8Object.Handle hObject) + string[] IV8SplitProxyNative.V8Object_GetPropertyNames(V8Object.Handle hObject, bool includeIndices) { using (var namesScope = StdStringArray.CreateScope()) { - V8Object_GetPropertyNames(hObject, namesScope.Value); + V8Object_GetPropertyNames(hObject, includeIndices, namesScope.Value); return StdStringArray.ToArray(namesScope.Value); } } @@ -12148,6 +12301,14 @@ private static extern void V8Object_GetNamedProperty( [In] V8Value.Ptr pValue ); + [DllImport("ClearScriptV8.linux-arm.so", CallingConvention = CallingConvention.StdCall)] + [return: MarshalAs(UnmanagedType.I1)] + private static extern bool V8Object_TryGetNamedProperty( + [In] V8Object.Handle hObject, + [In] StdString.Ptr pName, + [In] V8Value.Ptr pValue + ); + [DllImport("ClearScriptV8.linux-arm.so", CallingConvention = CallingConvention.StdCall)] private static extern void V8Object_SetNamedProperty( [In] V8Object.Handle hObject, @@ -12165,6 +12326,7 @@ [In] StdString.Ptr pName [DllImport("ClearScriptV8.linux-arm.so", CallingConvention = CallingConvention.StdCall)] private static extern void V8Object_GetPropertyNames( [In] V8Object.Handle hObject, + [In] [MarshalAs(UnmanagedType.I1)] bool includeIndices, [In] StdStringArray.Ptr pNames ); @@ -13145,6 +13307,24 @@ object IV8SplitProxyNative.V8Object_GetNamedProperty(V8Object.Handle hObject, st } } + bool IV8SplitProxyNative.V8Object_TryGetNamedProperty(V8Object.Handle hObject, string name, out object value) + { + using (var nameScope = StdString.CreateScope(name)) + { + using (var valueScope = V8Value.CreateScope()) + { + if (V8Object_TryGetNamedProperty(hObject, nameScope.Value, valueScope.Value)) + { + value = V8Value.Get(valueScope.Value); + return true; + } + + value = null; + return false; + } + } + } + void IV8SplitProxyNative.V8Object_SetNamedProperty(V8Object.Handle hObject, string name, object value) { using (var nameScope = StdString.CreateScope(name)) @@ -13164,11 +13344,11 @@ bool IV8SplitProxyNative.V8Object_DeleteNamedProperty(V8Object.Handle hObject, s } } - string[] IV8SplitProxyNative.V8Object_GetPropertyNames(V8Object.Handle hObject) + string[] IV8SplitProxyNative.V8Object_GetPropertyNames(V8Object.Handle hObject, bool includeIndices) { using (var namesScope = StdStringArray.CreateScope()) { - V8Object_GetPropertyNames(hObject, namesScope.Value); + V8Object_GetPropertyNames(hObject, includeIndices, namesScope.Value); return StdStringArray.ToArray(namesScope.Value); } } @@ -14183,6 +14363,14 @@ private static extern void V8Object_GetNamedProperty( [In] V8Value.Ptr pValue ); + [DllImport("ClearScriptV8.osx-x64.dylib", CallingConvention = CallingConvention.StdCall)] + [return: MarshalAs(UnmanagedType.I1)] + private static extern bool V8Object_TryGetNamedProperty( + [In] V8Object.Handle hObject, + [In] StdString.Ptr pName, + [In] V8Value.Ptr pValue + ); + [DllImport("ClearScriptV8.osx-x64.dylib", CallingConvention = CallingConvention.StdCall)] private static extern void V8Object_SetNamedProperty( [In] V8Object.Handle hObject, @@ -14200,6 +14388,7 @@ [In] StdString.Ptr pName [DllImport("ClearScriptV8.osx-x64.dylib", CallingConvention = CallingConvention.StdCall)] private static extern void V8Object_GetPropertyNames( [In] V8Object.Handle hObject, + [In] [MarshalAs(UnmanagedType.I1)] bool includeIndices, [In] StdStringArray.Ptr pNames ); @@ -15180,6 +15369,24 @@ object IV8SplitProxyNative.V8Object_GetNamedProperty(V8Object.Handle hObject, st } } + bool IV8SplitProxyNative.V8Object_TryGetNamedProperty(V8Object.Handle hObject, string name, out object value) + { + using (var nameScope = StdString.CreateScope(name)) + { + using (var valueScope = V8Value.CreateScope()) + { + if (V8Object_TryGetNamedProperty(hObject, nameScope.Value, valueScope.Value)) + { + value = V8Value.Get(valueScope.Value); + return true; + } + + value = null; + return false; + } + } + } + void IV8SplitProxyNative.V8Object_SetNamedProperty(V8Object.Handle hObject, string name, object value) { using (var nameScope = StdString.CreateScope(name)) @@ -15199,11 +15406,11 @@ bool IV8SplitProxyNative.V8Object_DeleteNamedProperty(V8Object.Handle hObject, s } } - string[] IV8SplitProxyNative.V8Object_GetPropertyNames(V8Object.Handle hObject) + string[] IV8SplitProxyNative.V8Object_GetPropertyNames(V8Object.Handle hObject, bool includeIndices) { using (var namesScope = StdStringArray.CreateScope()) { - V8Object_GetPropertyNames(hObject, namesScope.Value); + V8Object_GetPropertyNames(hObject, includeIndices, namesScope.Value); return StdStringArray.ToArray(namesScope.Value); } } @@ -16218,6 +16425,14 @@ private static extern void V8Object_GetNamedProperty( [In] V8Value.Ptr pValue ); + [DllImport("ClearScriptV8.osx-arm64.dylib", CallingConvention = CallingConvention.StdCall)] + [return: MarshalAs(UnmanagedType.I1)] + private static extern bool V8Object_TryGetNamedProperty( + [In] V8Object.Handle hObject, + [In] StdString.Ptr pName, + [In] V8Value.Ptr pValue + ); + [DllImport("ClearScriptV8.osx-arm64.dylib", CallingConvention = CallingConvention.StdCall)] private static extern void V8Object_SetNamedProperty( [In] V8Object.Handle hObject, @@ -16235,6 +16450,7 @@ [In] StdString.Ptr pName [DllImport("ClearScriptV8.osx-arm64.dylib", CallingConvention = CallingConvention.StdCall)] private static extern void V8Object_GetPropertyNames( [In] V8Object.Handle hObject, + [In] [MarshalAs(UnmanagedType.I1)] bool includeIndices, [In] StdStringArray.Ptr pNames ); diff --git a/ClearScript/V8/SplitProxy/V8SplitProxyNative.UWP.Generated.cs b/ClearScript/V8/SplitProxy/V8SplitProxyNative.UWP.Generated.cs index 00f23c4bf..a9b15f234 100644 --- a/ClearScript/V8/SplitProxy/V8SplitProxyNative.UWP.Generated.cs +++ b/ClearScript/V8/SplitProxy/V8SplitProxyNative.UWP.Generated.cs @@ -891,6 +891,24 @@ object IV8SplitProxyNative.V8Object_GetNamedProperty(V8Object.Handle hObject, st } } + bool IV8SplitProxyNative.V8Object_TryGetNamedProperty(V8Object.Handle hObject, string name, out object value) + { + using (var nameScope = StdString.CreateScope(name)) + { + using (var valueScope = V8Value.CreateScope()) + { + if (V8Object_TryGetNamedProperty(hObject, nameScope.Value, valueScope.Value)) + { + value = V8Value.Get(valueScope.Value); + return true; + } + + value = null; + return false; + } + } + } + void IV8SplitProxyNative.V8Object_SetNamedProperty(V8Object.Handle hObject, string name, object value) { using (var nameScope = StdString.CreateScope(name)) @@ -910,11 +928,11 @@ bool IV8SplitProxyNative.V8Object_DeleteNamedProperty(V8Object.Handle hObject, s } } - string[] IV8SplitProxyNative.V8Object_GetPropertyNames(V8Object.Handle hObject) + string[] IV8SplitProxyNative.V8Object_GetPropertyNames(V8Object.Handle hObject, bool includeIndices) { using (var namesScope = StdStringArray.CreateScope()) { - V8Object_GetPropertyNames(hObject, namesScope.Value); + V8Object_GetPropertyNames(hObject, includeIndices, namesScope.Value); return StdStringArray.ToArray(namesScope.Value); } } @@ -1929,6 +1947,14 @@ private static extern void V8Object_GetNamedProperty( [In] V8Value.Ptr pValue ); + [DllImport("ClearScriptV8.win-x86.dll", CallingConvention = CallingConvention.StdCall)] + [return: MarshalAs(UnmanagedType.I1)] + private static extern bool V8Object_TryGetNamedProperty( + [In] V8Object.Handle hObject, + [In] StdString.Ptr pName, + [In] V8Value.Ptr pValue + ); + [DllImport("ClearScriptV8.win-x86.dll", CallingConvention = CallingConvention.StdCall)] private static extern void V8Object_SetNamedProperty( [In] V8Object.Handle hObject, @@ -1946,6 +1972,7 @@ [In] StdString.Ptr pName [DllImport("ClearScriptV8.win-x86.dll", CallingConvention = CallingConvention.StdCall)] private static extern void V8Object_GetPropertyNames( [In] V8Object.Handle hObject, + [In] [MarshalAs(UnmanagedType.I1)] bool includeIndices, [In] StdStringArray.Ptr pNames ); @@ -2926,6 +2953,24 @@ object IV8SplitProxyNative.V8Object_GetNamedProperty(V8Object.Handle hObject, st } } + bool IV8SplitProxyNative.V8Object_TryGetNamedProperty(V8Object.Handle hObject, string name, out object value) + { + using (var nameScope = StdString.CreateScope(name)) + { + using (var valueScope = V8Value.CreateScope()) + { + if (V8Object_TryGetNamedProperty(hObject, nameScope.Value, valueScope.Value)) + { + value = V8Value.Get(valueScope.Value); + return true; + } + + value = null; + return false; + } + } + } + void IV8SplitProxyNative.V8Object_SetNamedProperty(V8Object.Handle hObject, string name, object value) { using (var nameScope = StdString.CreateScope(name)) @@ -2945,11 +2990,11 @@ bool IV8SplitProxyNative.V8Object_DeleteNamedProperty(V8Object.Handle hObject, s } } - string[] IV8SplitProxyNative.V8Object_GetPropertyNames(V8Object.Handle hObject) + string[] IV8SplitProxyNative.V8Object_GetPropertyNames(V8Object.Handle hObject, bool includeIndices) { using (var namesScope = StdStringArray.CreateScope()) { - V8Object_GetPropertyNames(hObject, namesScope.Value); + V8Object_GetPropertyNames(hObject, includeIndices, namesScope.Value); return StdStringArray.ToArray(namesScope.Value); } } @@ -3964,6 +4009,14 @@ private static extern void V8Object_GetNamedProperty( [In] V8Value.Ptr pValue ); + [DllImport("ClearScriptV8.win-x64.dll", CallingConvention = CallingConvention.StdCall)] + [return: MarshalAs(UnmanagedType.I1)] + private static extern bool V8Object_TryGetNamedProperty( + [In] V8Object.Handle hObject, + [In] StdString.Ptr pName, + [In] V8Value.Ptr pValue + ); + [DllImport("ClearScriptV8.win-x64.dll", CallingConvention = CallingConvention.StdCall)] private static extern void V8Object_SetNamedProperty( [In] V8Object.Handle hObject, @@ -3981,6 +4034,7 @@ [In] StdString.Ptr pName [DllImport("ClearScriptV8.win-x64.dll", CallingConvention = CallingConvention.StdCall)] private static extern void V8Object_GetPropertyNames( [In] V8Object.Handle hObject, + [In] [MarshalAs(UnmanagedType.I1)] bool includeIndices, [In] StdStringArray.Ptr pNames ); @@ -4961,6 +5015,24 @@ object IV8SplitProxyNative.V8Object_GetNamedProperty(V8Object.Handle hObject, st } } + bool IV8SplitProxyNative.V8Object_TryGetNamedProperty(V8Object.Handle hObject, string name, out object value) + { + using (var nameScope = StdString.CreateScope(name)) + { + using (var valueScope = V8Value.CreateScope()) + { + if (V8Object_TryGetNamedProperty(hObject, nameScope.Value, valueScope.Value)) + { + value = V8Value.Get(valueScope.Value); + return true; + } + + value = null; + return false; + } + } + } + void IV8SplitProxyNative.V8Object_SetNamedProperty(V8Object.Handle hObject, string name, object value) { using (var nameScope = StdString.CreateScope(name)) @@ -4980,11 +5052,11 @@ bool IV8SplitProxyNative.V8Object_DeleteNamedProperty(V8Object.Handle hObject, s } } - string[] IV8SplitProxyNative.V8Object_GetPropertyNames(V8Object.Handle hObject) + string[] IV8SplitProxyNative.V8Object_GetPropertyNames(V8Object.Handle hObject, bool includeIndices) { using (var namesScope = StdStringArray.CreateScope()) { - V8Object_GetPropertyNames(hObject, namesScope.Value); + V8Object_GetPropertyNames(hObject, includeIndices, namesScope.Value); return StdStringArray.ToArray(namesScope.Value); } } @@ -5999,6 +6071,14 @@ private static extern void V8Object_GetNamedProperty( [In] V8Value.Ptr pValue ); + [DllImport("ClearScriptV8.win-arm64.dll", CallingConvention = CallingConvention.StdCall)] + [return: MarshalAs(UnmanagedType.I1)] + private static extern bool V8Object_TryGetNamedProperty( + [In] V8Object.Handle hObject, + [In] StdString.Ptr pName, + [In] V8Value.Ptr pValue + ); + [DllImport("ClearScriptV8.win-arm64.dll", CallingConvention = CallingConvention.StdCall)] private static extern void V8Object_SetNamedProperty( [In] V8Object.Handle hObject, @@ -6016,6 +6096,7 @@ [In] StdString.Ptr pName [DllImport("ClearScriptV8.win-arm64.dll", CallingConvention = CallingConvention.StdCall)] private static extern void V8Object_GetPropertyNames( [In] V8Object.Handle hObject, + [In] [MarshalAs(UnmanagedType.I1)] bool includeIndices, [In] StdStringArray.Ptr pNames ); diff --git a/ClearScript/V8/V8ScriptEngine.InitScript.cs b/ClearScript/V8/V8ScriptEngine.InitScript.cs index 91b07219a..0e848cc74 100644 --- a/ClearScript/V8/V8ScriptEngine.InitScript.cs +++ b/ClearScript/V8/V8ScriptEngine.InitScript.cs @@ -9,6 +9,6 @@ namespace Microsoft.ClearScript.V8 { public sealed partial class V8ScriptEngine { - private const string initScript = "Object.defineProperty(this,'EngineInternal',{value:(t=>{let e=t=>t.bind();function o(){return new this(...arguments)}let r=t.isHostObjectKey;delete t.isHostObjectKey;let n=t=>!!t&&!0===t[r],i=Promise,c=Symbol(),a=t.toJson;return delete t.toJson,Object.freeze({commandHolder:{},getCommandResult:e(t=>null==t?t:'function'!=typeof t.hasOwnProperty?'Module'===t[Symbol.toStringTag]?'[module]':'[external]':!0===t[r]?t:'function'!=typeof t.toString?'['+typeof t+']':t.toString()),strictEquals:e((t,e)=>t===e),invokeConstructor:e((t,e)=>{if('function'!=typeof t)throw Error('Function expected');return o.apply(t,Array.from(e))}),invokeMethod:e((t,e,o)=>{if('function'!=typeof e)throw Error('Function expected');return e.apply(t,Array.from(o))}),createPromise:e(function(){return new i(...arguments)}),isPromise:e(t=>t instanceof i),isHostObject:e(n),completePromiseWithResult:e((t,e,o)=>{try{e(t())}catch(r){o(r)}}),completePromise:e((t,e,o)=>{try{t(),e()}catch(r){o(r)}}),throwValue:e(t=>{throw t}),getStackTrace:e(()=>{try{throw Error('[stack trace]')}catch(t){return t.stack}}),toIterator:e(function*(t){try{for(;t.ScriptableMoveNext();)yield t.ScriptableCurrent}finally{t.ScriptableDispose()}}),toAsyncIterator:e(async function*(t){try{for(;await t.ScriptableMoveNextAsync();)yield t.ScriptableCurrent}finally{await t.ScriptableDisposeAsync()}}),checkpoint:e(()=>{let e=t[c];if(e)throw e}),toJson:e((t,e)=>a?JSON.parse(a(t,e)):e),asyncGenerator:async function*(){}().constructor})})(this)});"; + private const string initScript = "Object.defineProperty(this,'EngineInternal',{value:(t=>{let e=t=>t.bind();function r(){return new this(...arguments)}let o=t.isHostObjectKey;delete t.isHostObjectKey;let n=t=>!!t&&!0===t[o],c=Promise,i=Symbol(),a=t.toJson;return delete t.toJson,Object.freeze({commandHolder:{},getCommandResult:e(t=>null==t?t:'function'!=typeof t.hasOwnProperty?'Module'===t[Symbol.toStringTag]?'[module]':'[external]':!0===t[o]?t:'function'!=typeof t.toString?'['+typeof t+']':t.toString()),strictEquals:e((t,e)=>t===e),invokeConstructor:e((t,e)=>{if('function'!=typeof t)throw Error('Function expected');return r.apply(t,Array.from(e))}),invokeMethod:e((t,e,r)=>{if('function'!=typeof e)throw Error('Function expected');return e.apply(t,Array.from(r))}),createPromise:e(function(){return new c(...arguments)}),isPromise:e(t=>t instanceof c),isHostObject:e(n),completePromiseWithResult:e((t,e,r)=>{try{e(t())}catch(o){r(o)}}),completePromise:e((t,e,r)=>{try{t(),e()}catch(o){r(o)}}),throwValue:e(t=>{throw t}),getStackTrace:e(()=>{try{throw Error('[stack trace]')}catch(t){return t.stack}}),toIterator:e(function*(t){try{for(;t.ScriptableMoveNext();)yield t.ScriptableCurrent}finally{t.ScriptableDispose()}}),toAsyncIterator:e(async function*(t){try{for(;await t.ScriptableMoveNextAsync();)yield t.ScriptableCurrent}finally{await t.ScriptableDisposeAsync()}}),getIterator:e(t=>t?.[Symbol.iterator]?.()),getAsyncIterator:e(t=>t?.[Symbol.asyncIterator]?.()),checkpoint:e(()=>{let e=t[i];if(e)throw e}),toJson:e((t,e)=>a?JSON.parse(a(t,e)):e),asyncGenerator:async function*(){}().constructor})})(this)});"; } } diff --git a/ClearScript/V8/V8ScriptEngine.InitScript.js b/ClearScript/V8/V8ScriptEngine.InitScript.js index f3642bdf2..052958145 100644 --- a/ClearScript/V8/V8ScriptEngine.InitScript.js +++ b/ClearScript/V8/V8ScriptEngine.InitScript.js @@ -122,6 +122,10 @@ Object.defineProperty(this, 'EngineInternal', { value: (globalObject => { } }), + getIterator: bind(obj => obj?.[Symbol.iterator]?.()), + + getAsyncIterator: bind(obj => obj?.[Symbol.asyncIterator]?.()), + checkpoint: bind(() => { const value = globalObject[checkpointSymbol]; if (value) { diff --git a/ClearScript/V8/V8ScriptItem.cs b/ClearScript/V8/V8ScriptItem.cs index 36f385a30..49eeba8bb 100644 --- a/ClearScript/V8/V8ScriptItem.cs +++ b/ClearScript/V8/V8ScriptItem.cs @@ -3,15 +3,17 @@ using System; using System.Collections; +using System.Collections.Generic; using System.Diagnostics; using System.Dynamic; +using System.Linq; using Microsoft.ClearScript.JavaScript; using Microsoft.ClearScript.Util; using Microsoft.ClearScript.Util.COM; namespace Microsoft.ClearScript.V8 { - internal class V8ScriptItem : ScriptItem, IJavaScriptObject + internal abstract class V8ScriptItem : ScriptItem, IJavaScriptObject { private readonly V8ScriptEngine engine; private readonly IV8Object target; @@ -42,7 +44,7 @@ public static object Wrap(V8ScriptEngine engine, object obj) if (!target.IsArrayBufferOrView) { - return new V8ScriptItem(engine, target); + return new V8ScriptObject(engine, target); } switch (target.ArrayBufferOrViewKind) @@ -85,7 +87,7 @@ public static object Wrap(V8ScriptEngine engine, object obj) return new V8TypedArray(engine, target); default: - return new V8ScriptItem(engine, target); + return new V8ScriptObject(engine, target); } } @@ -208,7 +210,7 @@ protected override bool TryBindAndInvoke(DynamicMetaObjectBinder binder, object[ public override string[] GetPropertyNames() { VerifyNotDisposed(); - return engine.ScriptInvoke(() => target.GetPropertyNames()); + return engine.ScriptInvoke(() => target.GetPropertyNames(false /*includeIndices*/)); } public override int[] GetPropertyIndices() @@ -333,23 +335,206 @@ public override void Dispose() #endregion + #region Nested type: V8ScriptObject + + private sealed class V8ScriptObject : V8ScriptItem, IDictionary + { + public V8ScriptObject(V8ScriptEngine engine, IV8Object target) + : base(engine, target) + { + } + + private bool TryGetProperty(string name, out object value) + { + VerifyNotDisposed(); + + object tempResult = null; + if (engine.ScriptInvoke(() => target.TryGetProperty(name, out tempResult))) + { + var result = engine.MarshalToHost(tempResult, false); + if ((result is V8ScriptItem resultScriptItem) && (resultScriptItem.engine == engine)) + { + resultScriptItem.holder = this; + } + + value = result; + return true; + } + + value = null; + return false; + } + + #region IDictionary implementation + + private IDictionary ThisDictionary => this; + + private IEnumerable PropertyKeys => GetPropertyKeys(); + + private IEnumerable> KeyValuePairs => PropertyKeys.Select(name => new KeyValuePair(name, GetProperty(name))); + + private string[] GetPropertyKeys() + { + VerifyNotDisposed(); + return engine.ScriptInvoke(() => target.GetPropertyNames(true /*includeIndices*/)); + } + + IEnumerator> IEnumerable>.GetEnumerator() + { + return KeyValuePairs.GetEnumerator(); + } + + IEnumerator IEnumerable.GetEnumerator() + { + return ThisDictionary.GetEnumerator(); + } + + void ICollection>.Add(KeyValuePair item) + { + SetProperty(item.Key, item.Value); + } + + void ICollection>.Clear() + { + PropertyKeys.ForEach(name => DeleteProperty(name)); + } + + bool ICollection>.Contains(KeyValuePair item) + { + return TryGetProperty(item.Key, out var value) && Equals(value, item.Value); + } + + void ICollection>.CopyTo(KeyValuePair[] array, int arrayIndex) + { + var source = KeyValuePairs.ToArray(); + Array.Copy(source, 0, array, arrayIndex, source.Length); + } + + bool ICollection>.Remove(KeyValuePair item) + { + return ThisDictionary.Contains(item) && DeleteProperty(item.Key); + } + + int ICollection>.Count => PropertyKeys.Count(); + + bool ICollection>.IsReadOnly => false; + + void IDictionary.Add(string key, object value) + { + SetProperty(key, value); + } + + bool IDictionary.ContainsKey(string key) + { + return PropertyKeys.Contains(key); + } + + bool IDictionary.Remove(string key) + { + return DeleteProperty(key); + } + + bool IDictionary.TryGetValue(string key, out object value) + { + return TryGetProperty(key, out value); + } + + object IDictionary.this[string key] + { + get => TryGetProperty(key, out var value) ? value : throw new KeyNotFoundException(); + set => SetProperty(key, value); + } + + ICollection IDictionary.Keys => PropertyKeys.ToList(); + + ICollection IDictionary.Values => PropertyKeys.Select(name => GetProperty(name)).ToList(); + + #endregion + } + + #endregion + #region Nested type: V8Array - private sealed class V8Array : V8ScriptItem, IList + private sealed class V8Array : V8ScriptItem, IList, IList { public V8Array(V8ScriptEngine engine, IV8Object target) : base(engine, target) { } - #region IList implementation + #region IList implementation + + private IList ThisGenericList => this; - public IEnumerator GetEnumerator() + IEnumerator IEnumerable.GetEnumerator() { return new Enumerator(this); } - public void CopyTo(Array array, int index) + bool ICollection.Remove(object item) + { + var index = ThisList.IndexOf(item); + if (index >= 0) + { + ThisList.RemoveAt(index); + return true; + } + + return false; + } + + int ICollection.Count => ThisList.Count; + + bool ICollection.IsReadOnly => ThisList.IsReadOnly; + + void ICollection.Clear() + { + ThisList.Clear(); + } + + bool ICollection.Contains(object item) + { + return ThisList.Contains(item); + } + + void ICollection.CopyTo(object[] array, int arrayIndex) + { + ThisList.CopyTo(array, arrayIndex); + } + + void ICollection.Add(object item) + { + ThisList.Add(item); + } + + void IList.Insert(int index, object item) + { + ThisList.Insert(index, item); + } + + void IList.RemoveAt(int index) + { + ThisList.RemoveAt(index); + } + + int IList.IndexOf(object item) + { + return ThisList.IndexOf(item); + } + + #endregion + + #region IList implementation + + private IList ThisList => this; + + IEnumerator IEnumerable.GetEnumerator() + { + return ThisGenericList.GetEnumerator(); + } + + void ICollection.CopyTo(Array array, int index) { MiscHelpers.VerifyNonNullArgument(array, nameof(array)); @@ -363,7 +548,7 @@ public void CopyTo(Array array, int index) throw new ArgumentOutOfRangeException(nameof(index)); } - var length = Count; + var length = ThisList.Count; if ((index + length) > array.Length) { throw new ArgumentException("Insufficient space in target array", nameof(array)); @@ -375,58 +560,54 @@ public void CopyTo(Array array, int index) } } - public int Count => Convert.ToInt32(GetProperty("length")); + int ICollection.Count => Convert.ToInt32(GetProperty("length")); - public object SyncRoot => this; + object ICollection.SyncRoot => this; - public bool IsSynchronized => false; + bool ICollection.IsSynchronized => false; - public int Add(object value) + int IList.Add(object value) { return Convert.ToInt32(InvokeMethod("push", value)) - 1; } - public bool Contains(object value) + bool IList.Contains(object value) { - return IndexOf(value) >= 0; + return ThisList.IndexOf(value) >= 0; } - public void Clear() + void IList.Clear() { - InvokeMethod("splice", 0, Count); + InvokeMethod("splice", 0, ThisList.Count); } - public int IndexOf(object value) + int IList.IndexOf(object value) { return Convert.ToInt32(InvokeMethod("indexOf", value)); } - public void Insert(int index, object value) + void IList.Insert(int index, object value) { InvokeMethod("splice", index, 0, value); } - public void Remove(object value) + void IList.Remove(object value) { - var index = IndexOf(value); - if (index >= 0) - { - RemoveAt(index); - } + ThisGenericList.Remove(value); } - public void RemoveAt(int index) + void IList.RemoveAt(int index) { InvokeMethod("splice", index, 1); } - public bool IsReadOnly => false; + bool IList.IsReadOnly => false; - public bool IsFixedSize => false; + bool IList.IsFixedSize => false; #region Nested type: Enumerator - private class Enumerator : IEnumerator + private class Enumerator : IEnumerator { private readonly V8Array array; private readonly int count; @@ -435,7 +616,7 @@ private class Enumerator : IEnumerator public Enumerator(V8Array array) { this.array = array; - count = array.Count; + count = array.ThisList.Count; } public bool MoveNext() @@ -455,6 +636,10 @@ public void Reset() } public object Current => array[index]; + + public void Dispose() + { + } } #endregion diff --git a/ClearScript/ValueRef.cs b/ClearScript/ValueRef.cs new file mode 100644 index 000000000..d799f076a --- /dev/null +++ b/ClearScript/ValueRef.cs @@ -0,0 +1,41 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT license. + +namespace Microsoft.ClearScript +{ + /// + /// Provides a factory method for . + /// + public static class ValueRef + { + /// + /// Creates a instance with the given value. + /// + /// The value type. + /// The value to assign to the instance. + /// A instance holding the given value. + public static ValueRef Create(T value = default) where T : struct + { + return new ValueRef { Value = value }; + } + } + + /// + /// Holds a value on the heap. + /// + /// The value type. + /// + /// This utility class can be used for passing mutable values to asynchronous methods. + /// + public class ValueRef where T : struct + { + internal ValueRef() + { + } + + /// + /// The value currently held by the instance. + /// + public T Value; + } +} diff --git a/ClearScript/Windows/Core/WindowsScriptItem.cs b/ClearScript/Windows/Core/WindowsScriptItem.cs index 6146d5b12..8df318819 100644 --- a/ClearScript/Windows/Core/WindowsScriptItem.cs +++ b/ClearScript/Windows/Core/WindowsScriptItem.cs @@ -2,6 +2,8 @@ // Licensed under the MIT license. using System; +using System.Collections; +using System.Collections.Generic; using System.Diagnostics; using System.Dynamic; using System.Globalization; @@ -14,7 +16,7 @@ namespace Microsoft.ClearScript.Windows.Core { - internal class WindowsScriptItem : ScriptItem, IWindowsScriptObject, IWindowsScriptItemTag + internal class WindowsScriptItem : ScriptItem, IWindowsScriptObject, IDictionary, IWindowsScriptItemTag { private readonly WindowsScriptEngine engine; private readonly IDispatchEx target; @@ -133,6 +135,49 @@ private void VerifyNotDisposed() } } + private bool TryGetProperty(string name, out object value) + { + VerifyNotDisposed(); + + object tempResult = null; + var found = engine.ScriptInvoke(() => + { + try + { + tempResult = target.GetProperty(name, false); + return !(tempResult is Nonexistent); + } + catch (Exception exception) + { + if (!name.IsDispIDName(out _) && (exception.HResult != HResult.DISP_E_UNKNOWNNAME)) + { + // Property retrieval failed, but a method with the given name exists; + // create a tear-off method. This currently applies only to VBScript. + + tempResult = new ScriptMethod(this, name); + return true; + } + + return false; + } + }); + + if (found) + { + var result = engine.MarshalToHost(tempResult, false); + if ((result is WindowsScriptItem resultScriptItem) && (resultScriptItem.engine == engine)) + { + resultScriptItem.holder = this; + } + + value = result; + return true; + } + + value = null; + return false; + } + #region ScriptItem overrides protected override bool TryBindAndInvoke(DynamicMetaObjectBinder binder, object[] args, out object result) @@ -312,6 +357,92 @@ object IWindowsScriptObject.GetUnderlyingObject() #endregion + #region IDictionary implementation + + private IDictionary ThisDictionary => this; + + private IEnumerable PropertyKeys => GetPropertyKeys(); + + private IEnumerable> KeyValuePairs => PropertyKeys.Select(name => new KeyValuePair(name, GetProperty(name))); + + private string[] GetPropertyKeys() + { + VerifyNotDisposed(); + return engine.ScriptInvoke(() => target.GetPropertyNames().ToArray()); + } + + IEnumerator> IEnumerable>.GetEnumerator() + { + return KeyValuePairs.GetEnumerator(); + } + + IEnumerator IEnumerable.GetEnumerator() + { + return ThisDictionary.GetEnumerator(); + } + + void ICollection>.Add(KeyValuePair item) + { + SetProperty(item.Key, item.Value); + } + + void ICollection>.Clear() + { + PropertyKeys.ForEach(name => DeleteProperty(name)); + } + + bool ICollection>.Contains(KeyValuePair item) + { + return TryGetProperty(item.Key, out var value) && Equals(value, item.Value); + } + + void ICollection>.CopyTo(KeyValuePair[] array, int arrayIndex) + { + var source = KeyValuePairs.ToArray(); + Array.Copy(source, 0, array, arrayIndex, source.Length); + } + + bool ICollection>.Remove(KeyValuePair item) + { + return ThisDictionary.Contains(item) && DeleteProperty(item.Key); + } + + int ICollection>.Count => PropertyKeys.Count(); + + bool ICollection>.IsReadOnly => false; + + void IDictionary.Add(string key, object value) + { + SetProperty(key, value); + } + + bool IDictionary.ContainsKey(string key) + { + return PropertyKeys.Contains(key); + } + + bool IDictionary.Remove(string key) + { + return DeleteProperty(key); + } + + bool IDictionary.TryGetValue(string key, out object value) + { + return TryGetProperty(key, out value); + } + + object IDictionary.this[string key] + { + get => TryGetProperty(key, out var value) ? value : throw new KeyNotFoundException(); + set => SetProperty(key, value); + } + + ICollection IDictionary.Keys => PropertyKeys.ToList(); + + ICollection IDictionary.Values => PropertyKeys.Select(name => GetProperty(name)).ToList(); + + #endregion + #region IDisposable implementation public override void Dispose() @@ -333,9 +464,13 @@ public WindowsJavaScriptObject(WindowsScriptEngine engine, IDispatchEx target) { } + #region IJavaScriptObject implementation + public JavaScriptObjectKind Kind => JavaScriptObjectKind.Unknown; public JavaScriptObjectFlags Flags => JavaScriptObjectFlags.None; + + #endregion } #endregion diff --git a/ClearScript/doc/Reference.chm b/ClearScript/doc/Reference.chm index ca2d58318..73c94a7df 100644 Binary files a/ClearScript/doc/Reference.chm and b/ClearScript/doc/Reference.chm differ diff --git a/ClearScriptBenchmarks/Properties/AssemblyInfo.cs b/ClearScriptBenchmarks/Properties/AssemblyInfo.cs index 357a6c245..9aaaecfab 100644 --- a/ClearScriptBenchmarks/Properties/AssemblyInfo.cs +++ b/ClearScriptBenchmarks/Properties/AssemblyInfo.cs @@ -11,6 +11,6 @@ [assembly: AssemblyCopyright("(c) Microsoft Corporation")] [assembly: ComVisible(false)] -[assembly: AssemblyVersion("7.3.7")] -[assembly: AssemblyFileVersion("7.3.7")] -[assembly: AssemblyInformationalVersion("7.3.7")] +[assembly: AssemblyVersion("7.4.0")] +[assembly: AssemblyFileVersion("7.4.0")] +[assembly: AssemblyInformationalVersion("7.4.0")] diff --git a/ClearScriptConsole/Properties/AssemblyInfo.cs b/ClearScriptConsole/Properties/AssemblyInfo.cs index 83f28e22f..8874ea236 100644 --- a/ClearScriptConsole/Properties/AssemblyInfo.cs +++ b/ClearScriptConsole/Properties/AssemblyInfo.cs @@ -11,6 +11,6 @@ [assembly: AssemblyCopyright("(c) Microsoft Corporation")] [assembly: ComVisible(false)] -[assembly: AssemblyVersion("7.3.7")] -[assembly: AssemblyFileVersion("7.3.7")] -[assembly: AssemblyInformationalVersion("7.3.7")] +[assembly: AssemblyVersion("7.4.0")] +[assembly: AssemblyFileVersion("7.4.0")] +[assembly: AssemblyInformationalVersion("7.4.0")] diff --git a/ClearScriptTest/ExtensionsTest.NetStandard.cs b/ClearScriptTest/ExtensionsTest.NetStandard.cs new file mode 100644 index 000000000..4b44acfc2 --- /dev/null +++ b/ClearScriptTest/ExtensionsTest.NetStandard.cs @@ -0,0 +1,134 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT license. + +using System; +using System.Collections.Generic; +using System.Collections; +using System.Threading.Tasks; +using Microsoft.ClearScript.JavaScript; +using Microsoft.VisualStudio.TestTools.UnitTesting; + +namespace Microsoft.ClearScript.Test +{ + public partial class ExtensionsTest + { + #region test methods + + // ReSharper disable InconsistentNaming + + [TestMethod, TestCategory("Extensions")] + public void Extension_JavaScript_ToAsyncEnumerable_Generator() + { + engine.Execute("foo = (function* () { yield 'This'; yield 'is'; yield 'not'; yield 'a'; yield 'drill!'; })()"); + Assert.AreEqual("This is not a drill!", string.Join(" ", IterateAsyncEnumerable(engine.Global["foo"].ToAsyncEnumerable()))); + } + + [TestMethod, TestCategory("Extensions")] + public void Extension_JavaScript_ToAsyncEnumerable_AsyncGenerator() + { + engine.Global["delay"] = new Func(ms => Task.Delay(ms).ToPromise()); + engine.Execute("foo = (async function* () { await delay(1), yield 'This'; await delay(1), yield 'is'; await delay(1), yield 'not'; await delay(1), yield 'a'; await delay(1), yield 'drill!'; })()"); + Assert.AreEqual("This is not a drill!", string.Join(" ", IterateAsyncEnumerable(engine.Global["foo"].ToAsyncEnumerable()))); + } + + [TestMethod, TestCategory("Extensions")] + public void Extension_JavaScript_ToAsyncEnumerable_GenericObject() + { + engine.Execute("foo = { 'This': 1, 'is': 2, 'not': 3, 'a': 4, 'drill!': 5 }"); + TestUtil.AssertException(() => string.Join(" ", IterateAsyncEnumerable(engine.Global["foo"].ToAsyncEnumerable()))); + + engine.Execute("foo[Symbol.iterator] = function* () { for (const item of Object.keys(foo)) yield item; }"); + Assert.AreEqual("This is not a drill!", string.Join(" ", IterateAsyncEnumerable(engine.Global["foo"].ToAsyncEnumerable()))); + + engine.Global["delay"] = new Func(ms => Task.Delay(ms).ToPromise()); + engine.Execute("foo[Symbol.asyncIterator] = async function* () { for (const item of Object.keys(foo)) { await delay(1); yield item; } }"); + Assert.AreEqual("This is not a drill!", string.Join(" ", IterateAsyncEnumerable(engine.Global["foo"].ToAsyncEnumerable()))); + } + + [TestMethod, TestCategory("Extensions")] + public void Extension_JavaScript_ToAsyncEnumerable_Array() + { + engine.Execute("foo = [ 'This', 'is', 'not', 'a', 'drill!' ]"); + Assert.AreEqual("This is not a drill!", string.Join(" ", IterateAsyncEnumerable(engine.Global["foo"].ToAsyncEnumerable()))); + } + + [TestMethod, TestCategory("Extensions")] + public void Extension_JavaScript_ToAsyncEnumerable_Managed_Object() + { + engine.Global["bar"] = new PropertyBag { { "This", 1 }, { "is", 2 }, { "not", 3 }, { "a", 4 }, { "drill!", 5 } }; + TestUtil.AssertException(() => string.Join(" ", IterateAsyncEnumerable(engine.Global["bar"].ToAsyncEnumerable()))); + + engine.Execute("foo = (function* () { for (const item of Object.keys(bar)) yield item; })()"); + Assert.AreEqual("This is not a drill!", string.Join(" ", IterateAsyncEnumerable(engine.Global["foo"].ToAsyncEnumerable()))); + + engine.Global["delay"] = new Func(ms => Task.Delay(ms).ToPromise()); + engine.Execute("foo = (async function* () { for (const item of Object.keys(bar)) { await delay(1); yield item; } })()"); + Assert.AreEqual("This is not a drill!", string.Join(" ", IterateAsyncEnumerable(engine.Global["foo"].ToAsyncEnumerable()))); + } + + [TestMethod, TestCategory("Extensions")] + public void Extension_JavaScript_ToAsyncEnumerable_Managed_Array() + { + engine.Global["bar"] = new[] { "This", "is", "not", "a", "drill!" }; + Assert.AreEqual("This is not a drill!", string.Join(" ", IterateAsyncEnumerable(engine.Global["bar"].ToAsyncEnumerable()))); + + engine.Global["bar"] = new object[] { "This", "is", "not", "a", "drill!" }; + Assert.AreEqual("This is not a drill!", string.Join(" ", IterateAsyncEnumerable(engine.Global["bar"].ToAsyncEnumerable()))); + + engine.Execute("foo = (function* () { for (const item of bar) yield item; })()"); + Assert.AreEqual("This is not a drill!", string.Join(" ", IterateAsyncEnumerable(engine.Global["foo"].ToAsyncEnumerable()))); + + engine.Global["delay"] = new Func(ms => Task.Delay(ms).ToPromise()); + engine.Execute("foo = (async function* () { for (const item of bar) { await delay(1); yield item; } })()"); + Assert.AreEqual("This is not a drill!", string.Join(" ", IterateAsyncEnumerable(engine.Global["foo"].ToAsyncEnumerable()))); + } + + [TestMethod, TestCategory("Extensions")] + public void Extension_JavaScript_ToAsyncEnumerable_Managed_List() + { + engine.Global["bar"] = new List { "This", "is", "not", "a", "drill!" }; + Assert.AreEqual("This is not a drill!", string.Join(" ", IterateAsyncEnumerable(engine.Global["bar"].ToAsyncEnumerable()))); + + engine.Global["bar"] = new List { "This", "is", "not", "a", "drill!" }; + Assert.AreEqual("This is not a drill!", string.Join(" ", IterateAsyncEnumerable(engine.Global["bar"].ToAsyncEnumerable()))); + + engine.Execute("foo = (function* () { for (const item of bar) yield item; })()"); + Assert.AreEqual("This is not a drill!", string.Join(" ", IterateAsyncEnumerable(engine.Global["foo"].ToAsyncEnumerable()))); + + engine.Global["delay"] = new Func(ms => Task.Delay(ms).ToPromise()); + engine.Execute("foo = (async function* () { for (const item of bar) { await delay(1); yield item; } })()"); + Assert.AreEqual("This is not a drill!", string.Join(" ", IterateAsyncEnumerable(engine.Global["foo"].ToAsyncEnumerable()))); + } + + [TestMethod, TestCategory("Extensions")] + public void Extension_JavaScript_ToAsyncEnumerable_Managed_ArrayList() + { + engine.Global["bar"] = new ArrayList { "This", "is", "not", "a", "drill!" }; + Assert.AreEqual("This is not a drill!", string.Join(" ", IterateAsyncEnumerable(engine.Global["bar"].ToAsyncEnumerable()))); + + engine.Execute("foo = (function* () { for (const item of bar) yield item; })()"); + Assert.AreEqual("This is not a drill!", string.Join(" ", IterateAsyncEnumerable(engine.Global["foo"].ToAsyncEnumerable()))); + + engine.Global["delay"] = new Func(ms => Task.Delay(ms).ToPromise()); + engine.Execute("foo = (async function* () { for (const item of bar) { await delay(1); yield item; } })()"); + Assert.AreEqual("This is not a drill!", string.Join(" ", IterateAsyncEnumerable(engine.Global["foo"].ToAsyncEnumerable()))); + } + + // ReSharper restore InconsistentNaming + + #endregion + + #region miscellaneous + + private static IEnumerable IterateAsyncEnumerable(IAsyncEnumerable asyncEnumerable) + { + var asyncEnumerator = asyncEnumerable.GetAsyncEnumerator(); + while (asyncEnumerator.MoveNextAsync().AsTask().Result) + { + yield return asyncEnumerator.Current; + } + } + + #endregion + } +} diff --git a/ClearScriptTest/ExtensionsTest.cs b/ClearScriptTest/ExtensionsTest.cs index ea8fe3bde..2a33d9d05 100644 --- a/ClearScriptTest/ExtensionsTest.cs +++ b/ClearScriptTest/ExtensionsTest.cs @@ -1,7 +1,9 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. +// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT license. using System; +using System.Collections; +using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; using System.Threading; using System.Threading.Tasks; @@ -11,9 +13,11 @@ namespace Microsoft.ClearScript.Test { + // ReSharper disable once PartialTypeWithSinglePart + [TestClass] [SuppressMessage("Microsoft.Design", "CA1001:TypesThatOwnDisposableFieldsShouldBeDisposable", Justification = "Test classes use TestCleanupAttribute for deterministic teardown.")] - public class ExtensionsTest : ClearScriptTest + public partial class ExtensionsTest : ClearScriptTest { #region setup / teardown @@ -149,14 +153,84 @@ public void Extensions_JavaScript_ToPromise_NoResult_Canceled() public void Extensions_JavaScript_ToTask() { engine.AddHostType(typeof(Task)); - Assert.AreEqual(Math.PI, EvaluateAsync(@"(async function () { await Task.Delay(100).ToPromise(); return Math.PI; })()").Result); + Assert.AreEqual(Math.PI, EvaluateAsync("(async function () { await Task.Delay(100).ToPromise(); return Math.PI; })()").Result); } [TestMethod, TestCategory("Extensions")] public void Extensions_JavaScript_ToTask_Fail() { engine.AddHostType(typeof(Task)); - TestUtil.AssertException(() => EvaluateAsync(@"(async function () { await Task.Delay(100).ToPromise(); throw new Error('Unauthorized'); })()").Wait()); + TestUtil.AssertException(() => EvaluateAsync("(async function () { await Task.Delay(100).ToPromise(); throw new Error('Unauthorized'); })()").Wait()); + } + + [TestMethod, TestCategory("Extensions")] + public void Extension_JavaScript_ToEnumerable_Generator() + { + engine.Execute("foo = (function* () { yield 'This'; yield 'is'; yield 'not'; yield 'a'; yield 'drill!'; })()"); + Assert.AreEqual("This is not a drill!", string.Join(" ", engine.Global["foo"].ToEnumerable())); + } + + [TestMethod, TestCategory("Extensions")] + public void Extension_JavaScript_ToEnumerable_GenericObject() + { + engine.Execute("foo = { 'This': 1, 'is': 2, 'not': 3, 'a': 4, 'drill!': 5 }"); + TestUtil.AssertException(() => string.Join(" ", engine.Global["foo"].ToEnumerable())); + + engine.Execute("foo[Symbol.iterator] = function* () { for (const item of Object.keys(foo)) yield item; }"); + Assert.AreEqual("This is not a drill!", string.Join(" ", engine.Global["foo"].ToEnumerable())); + } + + [TestMethod, TestCategory("Extensions")] + public void Extension_JavaScript_ToEnumerable_Array() + { + engine.Execute("foo = [ 'This', 'is', 'not', 'a', 'drill!' ]"); + Assert.AreEqual("This is not a drill!", string.Join(" ", engine.Global["foo"].ToEnumerable())); + } + + [TestMethod, TestCategory("Extensions")] + public void Extension_JavaScript_ToEnumerable_Managed_Object() + { + engine.Global["bar"] = new PropertyBag { { "This", 1 }, { "is", 2 }, { "not", 3 }, { "a", 4 }, { "drill!", 5 } }; + TestUtil.AssertException(() => string.Join(" ", engine.Global["bar"].ToEnumerable())); + + engine.Execute("foo = (function* () { for (const item of Object.keys(bar)) yield item; })()"); + Assert.AreEqual("This is not a drill!", string.Join(" ", engine.Global["foo"].ToEnumerable())); + } + + [TestMethod, TestCategory("Extensions")] + public void Extension_JavaScript_ToEnumerable_Managed_Array() + { + engine.Global["bar"] = new[] { "This", "is", "not", "a", "drill!" }; + Assert.AreEqual("This is not a drill!", string.Join(" ", engine.Global["bar"].ToEnumerable())); + + engine.Global["bar"] = new object[] { "This", "is", "not", "a", "drill!" }; + Assert.AreEqual("This is not a drill!", string.Join(" ", engine.Global["bar"].ToEnumerable())); + + engine.Execute("foo = (function* () { for (const item of bar) yield item; })()"); + Assert.AreEqual("This is not a drill!", string.Join(" ", engine.Global["foo"].ToEnumerable())); + } + + [TestMethod, TestCategory("Extensions")] + public void Extension_JavaScript_ToEnumerable_Managed_List() + { + engine.Global["bar"] = new List { "This", "is", "not", "a", "drill!" }; + Assert.AreEqual("This is not a drill!", string.Join(" ", engine.Global["bar"].ToEnumerable())); + + engine.Global["bar"] = new List { "This", "is", "not", "a", "drill!" }; + Assert.AreEqual("This is not a drill!", string.Join(" ", engine.Global["bar"].ToEnumerable())); + + engine.Execute("foo = (function* () { for (const item of bar) yield item; })()"); + Assert.AreEqual("This is not a drill!", string.Join(" ", engine.Global["foo"].ToEnumerable())); + } + + [TestMethod, TestCategory("Extensions")] + public void Extension_JavaScript_ToEnumerable_Managed_ArrayList() + { + engine.Global["bar"] = new ArrayList { "This", "is", "not", "a", "drill!" }; + Assert.AreEqual("This is not a drill!", string.Join(" ", engine.Global["bar"].ToEnumerable())); + + engine.Execute("foo = (function* () { for (const item of bar) yield item; })()"); + Assert.AreEqual("This is not a drill!", string.Join(" ", engine.Global["foo"].ToEnumerable())); } // ReSharper restore InconsistentNaming diff --git a/ClearScriptTest/JScriptCoreEngineTest.cs b/ClearScriptTest/JScriptCoreEngineTest.cs index 57fd1149a..64caa402f 100644 --- a/ClearScriptTest/JScriptCoreEngineTest.cs +++ b/ClearScriptTest/JScriptCoreEngineTest.cs @@ -2570,6 +2570,78 @@ public void JScriptCoreEngine_ScriptObject() Assert.AreSame(engine, obj.Engine); } + [TestMethod, TestCategory("JScriptCoreEngine")] + public void JScriptCoreEngine_ScriptObject_IDictionary() + { + var pairs = new List> + { + new KeyValuePair("123", 987), + new KeyValuePair("456", 654.321), + new KeyValuePair("abc", 123), + new KeyValuePair("def", 456.789), + new KeyValuePair("ghi", "foo"), + new KeyValuePair("jkl", engine.Evaluate("({ bar: 'baz' })")) + }; + + var dict = (IDictionary)engine.Evaluate("dict = {}"); + + pairs.ForEach(pair => dict.Add(pair)); + Assert.IsTrue(dict.SequenceEqual(pairs)); + + var index = 0; + foreach (var pair in dict) + { + Assert.AreEqual(pairs[index++], pair); + } + + index = 0; + foreach (var pair in (IEnumerable)dict) + { + Assert.AreEqual(pairs[index++], pair); + } + + dict.Clear(); + Assert.AreEqual(0, dict.Count); + + pairs.ForEach(pair => dict.Add(pair.Key, pair.Value)); + Assert.IsTrue(dict.SequenceEqual(pairs)); + + Assert.IsTrue(pairs.All(pair => dict.Contains(pair))); + Assert.IsTrue(pairs.All(pair => dict.ContainsKey(pair.Key))); + + var testPairs = new KeyValuePair[pairs.Count + 3]; + dict.CopyTo(testPairs, 3); + Assert.IsTrue(testPairs.Skip(3).SequenceEqual(pairs)); + + Assert.IsTrue(pairs.All(pair => dict.Remove(pair))); + Assert.AreEqual(0, dict.Count); + + pairs.ForEach(pair => dict.Add(pair.Key, pair.Value)); + Assert.IsTrue(dict.SequenceEqual(pairs)); + + Assert.IsTrue(pairs.All(pair => dict.Remove(pair.Key))); + Assert.AreEqual(0, dict.Count); + + pairs.ForEach(pair => dict.Add(pair.Key, pair.Value)); + Assert.IsTrue(dict.SequenceEqual(pairs)); + + Assert.IsTrue(pairs.All(pair => dict.TryGetValue(pair.Key, out var value) && Equals(value, pair.Value))); + Assert.IsTrue(pairs.All(pair => Equals(dict[pair.Key], pair.Value))); + + Assert.IsTrue(pairs.Select(pair => pair.Key).SequenceEqual(dict.Keys)); + Assert.IsTrue(pairs.Select(pair => pair.Value).SequenceEqual(dict.Values)); + + Assert.IsFalse(dict.TryGetValue("qux", out _)); + TestUtil.AssertException(() => Assert.IsTrue(dict["qux"] is Undefined)); + + engine.Execute("dict[789] = Math.PI"); + Assert.IsTrue(dict.TryGetValue("789", out var pi) && Equals(pi, Math.PI)); + Assert.IsFalse(pairs.SequenceEqual(dict)); + + Assert.IsTrue(Convert.ToBoolean(engine.Evaluate("delete dict[789]"))); + Assert.IsTrue(pairs.SequenceEqual(dict)); + } + [TestMethod, TestCategory("JScriptCoreEngine")] public void JScriptCoreEngine_ArrayInvocability() { diff --git a/ClearScriptTest/JScriptEngineTest.cs b/ClearScriptTest/JScriptEngineTest.cs index 968cab318..67a44be64 100644 --- a/ClearScriptTest/JScriptEngineTest.cs +++ b/ClearScriptTest/JScriptEngineTest.cs @@ -2621,6 +2621,78 @@ public void JScriptEngine_ScriptObject() Assert.AreSame(engine, obj.Engine); } + [TestMethod, TestCategory("JScriptEngine")] + public void JScriptEngine_ScriptObject_IDictionary() + { + var pairs = new List> + { + new KeyValuePair("123", 987), + new KeyValuePair("456", 654.321), + new KeyValuePair("abc", 123), + new KeyValuePair("def", 456.789), + new KeyValuePair("ghi", "foo"), + new KeyValuePair("jkl", engine.Evaluate("({ bar: 'baz' })")) + }; + + var dict = (IDictionary)engine.Evaluate("dict = {}"); + + pairs.ForEach(pair => dict.Add(pair)); + Assert.IsTrue(dict.SequenceEqual(pairs)); + + var index = 0; + foreach (var pair in dict) + { + Assert.AreEqual(pairs[index++], pair); + } + + index = 0; + foreach (var pair in (IEnumerable)dict) + { + Assert.AreEqual(pairs[index++], pair); + } + + dict.Clear(); + Assert.AreEqual(0, dict.Count); + + pairs.ForEach(pair => dict.Add(pair.Key, pair.Value)); + Assert.IsTrue(dict.SequenceEqual(pairs)); + + Assert.IsTrue(pairs.All(pair => dict.Contains(pair))); + Assert.IsTrue(pairs.All(pair => dict.ContainsKey(pair.Key))); + + var testPairs = new KeyValuePair[pairs.Count + 3]; + dict.CopyTo(testPairs, 3); + Assert.IsTrue(testPairs.Skip(3).SequenceEqual(pairs)); + + Assert.IsTrue(pairs.All(pair => dict.Remove(pair))); + Assert.AreEqual(0, dict.Count); + + pairs.ForEach(pair => dict.Add(pair.Key, pair.Value)); + Assert.IsTrue(dict.SequenceEqual(pairs)); + + Assert.IsTrue(pairs.All(pair => dict.Remove(pair.Key))); + Assert.AreEqual(0, dict.Count); + + pairs.ForEach(pair => dict.Add(pair.Key, pair.Value)); + Assert.IsTrue(dict.SequenceEqual(pairs)); + + Assert.IsTrue(pairs.All(pair => dict.TryGetValue(pair.Key, out var value) && Equals(value, pair.Value))); + Assert.IsTrue(pairs.All(pair => Equals(dict[pair.Key], pair.Value))); + + Assert.IsTrue(pairs.Select(pair => pair.Key).SequenceEqual(dict.Keys)); + Assert.IsTrue(pairs.Select(pair => pair.Value).SequenceEqual(dict.Values)); + + Assert.IsFalse(dict.TryGetValue("qux", out _)); + TestUtil.AssertException(() => Assert.IsTrue(dict["qux"] is Undefined)); + + engine.Execute("dict[789] = Math.PI"); + Assert.IsTrue(dict.TryGetValue("789", out var pi) && Equals(pi, Math.PI)); + Assert.IsFalse(pairs.SequenceEqual(dict)); + + Assert.IsTrue(Convert.ToBoolean(engine.Evaluate("delete dict[789]"))); + Assert.IsTrue(pairs.SequenceEqual(dict)); + } + [TestMethod, TestCategory("JScriptEngine")] public void JScriptEngine_ArrayInvocability() { diff --git a/ClearScriptTest/Properties/AssemblyInfo.cs b/ClearScriptTest/Properties/AssemblyInfo.cs index 33c5cad89..1fa0e35b1 100644 --- a/ClearScriptTest/Properties/AssemblyInfo.cs +++ b/ClearScriptTest/Properties/AssemblyInfo.cs @@ -11,6 +11,6 @@ [assembly: AssemblyCopyright("(c) Microsoft Corporation")] [assembly: ComVisible(false)] -[assembly: AssemblyVersion("7.3.7")] -[assembly: AssemblyFileVersion("7.3.7")] -[assembly: AssemblyInformationalVersion("7.3.7")] +[assembly: AssemblyVersion("7.4.0")] +[assembly: AssemblyFileVersion("7.4.0")] +[assembly: AssemblyInformationalVersion("7.4.0")] diff --git a/ClearScriptTest/V8ModuleTest.cs b/ClearScriptTest/V8ModuleTest.cs index 6ef048091..8951f7c51 100644 --- a/ClearScriptTest/V8ModuleTest.cs +++ b/ClearScriptTest/V8ModuleTest.cs @@ -719,7 +719,7 @@ public void V8Module_Standard_CircularReference_MixedImport() [TestMethod, TestCategory("V8Module")] public void V8Module_Standard_ImportCommonJS() { - void DocumentLoadCallback(ref DocumentInfo info) + void OnDocumentLoad(ref DocumentInfo info) { var uri = info.Uri; if (uri.IsFile) @@ -733,7 +733,7 @@ void DocumentLoadCallback(ref DocumentInfo info) } engine.DocumentSettings.AccessFlags = DocumentAccessFlags.EnableFileLoading | DocumentAccessFlags.AllowCategoryMismatch; - engine.DocumentSettings.LoadCallback = DocumentLoadCallback; + engine.DocumentSettings.LoadCallback = OnDocumentLoad; Assert.AreEqual(12, engine.Evaluate(new DocumentInfo { Category = ModuleCategory.Standard }, @" import { Rectangle } from 'JavaScript/CommonJS/Geometry/Geometry'; @@ -759,6 +759,91 @@ void DocumentLoadCallback(ref DocumentInfo info) Assert.AreEqual(engine.Script.Rectangle2, engine.Script.Rectangle3); } + [TestMethod, TestCategory("V8Module")] + public void V8Module_Standard_ImportCommonJS_AsyncLoadCallback() + { + async Task OnDocumentLoadAsync(ValueRef info, Stream contents) + { + await Task.Delay(100).ConfigureAwait(false); + + var uri = info.Value.Uri; + if (uri.IsFile) + { + var path = Path.GetDirectoryName(uri.AbsolutePath); + if (path.Split(Path.DirectorySeparatorChar).Contains("CommonJS")) + { + info.Value.Category = ModuleCategory.CommonJS; + } + } + } + + engine.DocumentSettings.AccessFlags = DocumentAccessFlags.EnableFileLoading | DocumentAccessFlags.AllowCategoryMismatch | DocumentAccessFlags.UseAsyncLoadCallback; + engine.DocumentSettings.AsyncLoadCallback = OnDocumentLoadAsync; + + Assert.AreEqual(12, engine.Evaluate(new DocumentInfo { Category = ModuleCategory.Standard }, @" + import { Rectangle } from 'JavaScript/CommonJS/Geometry/Geometry'; + globalThis.Rectangle1 = Rectangle; + new Rectangle(3, 4).Area; + ")); + + Assert.AreEqual(30, engine.Evaluate(new DocumentInfo { Category = ModuleCategory.Standard }, @" + import { Rectangle } from 'JavaScript/CommonJS/Geometry/Geometry'; + globalThis.Rectangle2 = Rectangle; + new Rectangle(5, 6).Area; + ")); + + Assert.AreEqual(56, engine.Evaluate(@" + (async function() { + let Rectangle = (await import('JavaScript/CommonJS/Geometry/Geometry')).Rectangle; + Rectangle3 = Rectangle; + return new Rectangle(7, 8).Area; + })() + ").ToTask().Result); + + Assert.AreEqual(engine.Script.Rectangle1, engine.Script.Rectangle2); + Assert.AreEqual(engine.Script.Rectangle2, engine.Script.Rectangle3); + } + + [TestMethod, TestCategory("V8Module")] + public void V8Module_Standard_ImportCommonJS_SystemDocument() + { + engine.DocumentSettings.AccessFlags = DocumentAccessFlags.EnableFileLoading | DocumentAccessFlags.AllowCategoryMismatch; + engine.DocumentSettings.AddSystemDocument("Geometry", ModuleCategory.CommonJS, @" + exports.Rectangle = class { + constructor(width, height) { + this.width = width; + this.height = height; + } + get Area() { + return this.width * this.height; + } + } + "); + + Assert.AreEqual(12, engine.Evaluate(new DocumentInfo { Category = ModuleCategory.Standard }, @" + import { Rectangle } from 'Geometry'; + globalThis.Rectangle1 = Rectangle; + new Rectangle(3, 4).Area; + ")); + + Assert.AreEqual(30, engine.Evaluate(new DocumentInfo { Category = ModuleCategory.Standard }, @" + import { Rectangle } from 'Geometry'; + globalThis.Rectangle2 = Rectangle; + new Rectangle(5, 6).Area; + ")); + + Assert.AreEqual(56, engine.Evaluate(@" + (async function() { + let Rectangle = (await import('Geometry')).Rectangle; + Rectangle3 = Rectangle; + return new Rectangle(7, 8).Area; + })() + ").ToTask().Result); + + Assert.AreEqual(engine.Script.Rectangle1, engine.Script.Rectangle2); + Assert.AreEqual(engine.Script.Rectangle2, engine.Script.Rectangle3); + } + [TestMethod, TestCategory("V8Module")] public void V8Module_CommonJS_File() { diff --git a/ClearScriptTest/V8ScriptEngineTest.cs b/ClearScriptTest/V8ScriptEngineTest.cs index 94ee11c06..0d474af0b 100644 --- a/ClearScriptTest/V8ScriptEngineTest.cs +++ b/ClearScriptTest/V8ScriptEngineTest.cs @@ -3668,7 +3668,7 @@ public void V8ScriptEngine_ScriptCaching() } [TestMethod, TestCategory("V8ScriptEngine")] - public void V8ScriptEngine_ScriptArray() + public void V8ScriptEngine_ScriptArray_IList() { var array = (IList)engine.Evaluate("array = []"); Assert.AreEqual(0, array.Add(123)); @@ -3719,6 +3719,78 @@ public void V8ScriptEngine_ScriptArray() Assert.AreEqual("[]", JsonConvert.SerializeObject(engine.Evaluate("array"))); } + [TestMethod, TestCategory("V8ScriptEngine")] + public void V8ScriptEngine_ScriptObject_IDictionary() + { + var pairs = new List> + { + new KeyValuePair("123", 987), + new KeyValuePair("456", 654.321), + new KeyValuePair("abc", 123), + new KeyValuePair("def", 456.789), + new KeyValuePair("ghi", "foo"), + new KeyValuePair("jkl", engine.Evaluate("({ bar: 'baz' })")) + }; + + var dict = (IDictionary)engine.Evaluate("dict = {}"); + + pairs.ForEach(pair => dict.Add(pair)); + Assert.IsTrue(dict.SequenceEqual(pairs)); + + var index = 0; + foreach (var pair in dict) + { + Assert.AreEqual(pairs[index++], pair); + } + + index = 0; + foreach (var pair in (IEnumerable)dict) + { + Assert.AreEqual(pairs[index++], pair); + } + + dict.Clear(); + Assert.AreEqual(0, dict.Count); + + pairs.ForEach(pair => dict.Add(pair.Key, pair.Value)); + Assert.IsTrue(dict.SequenceEqual(pairs)); + + Assert.IsTrue(pairs.All(pair => dict.Contains(pair))); + Assert.IsTrue(pairs.All(pair => dict.ContainsKey(pair.Key))); + + var testPairs = new KeyValuePair[pairs.Count + 3]; + dict.CopyTo(testPairs, 3); + Assert.IsTrue(testPairs.Skip(3).SequenceEqual(pairs)); + + Assert.IsTrue(pairs.All(pair => dict.Remove(pair))); + Assert.AreEqual(0, dict.Count); + + pairs.ForEach(pair => dict.Add(pair.Key, pair.Value)); + Assert.IsTrue(dict.SequenceEqual(pairs)); + + Assert.IsTrue(pairs.All(pair => dict.Remove(pair.Key))); + Assert.AreEqual(0, dict.Count); + + pairs.ForEach(pair => dict.Add(pair.Key, pair.Value)); + Assert.IsTrue(dict.SequenceEqual(pairs)); + + Assert.IsTrue(pairs.All(pair => dict.TryGetValue(pair.Key, out var value) && Equals(value, pair.Value))); + Assert.IsTrue(pairs.All(pair => Equals(dict[pair.Key], pair.Value))); + + Assert.IsTrue(pairs.Select(pair => pair.Key).SequenceEqual(dict.Keys)); + Assert.IsTrue(pairs.Select(pair => pair.Value).SequenceEqual(dict.Values)); + + Assert.IsFalse(dict.TryGetValue("qux", out _)); + TestUtil.AssertException(() => Assert.IsTrue(dict["qux"] is Undefined)); + + engine.Execute("dict[789] = Math.PI"); + Assert.IsTrue(dict.TryGetValue("789", out var pi) && Equals(pi, Math.PI)); + Assert.IsFalse(pairs.SequenceEqual(dict)); + + Assert.IsTrue(Convert.ToBoolean(engine.Evaluate("delete dict[789]"))); + Assert.IsTrue(pairs.SequenceEqual(dict)); + } + [TestMethod, TestCategory("V8ScriptEngine")] public void V8ScriptEngine_UndefinedImportValue() { diff --git a/ClearScriptV8/V8ContextImpl.cpp b/ClearScriptV8/V8ContextImpl.cpp index 3acd7190a..d6531adcb 100644 --- a/ClearScriptV8/V8ContextImpl.cpp +++ b/ClearScriptV8/V8ContextImpl.cpp @@ -1056,6 +1056,34 @@ V8Value V8ContextImpl::GetV8ObjectProperty(void* pvObject, const StdString& name //----------------------------------------------------------------------------- +bool V8ContextImpl::TryGetV8ObjectProperty(void* pvObject, const StdString& name, V8Value& value) +{ + BEGIN_CONTEXT_SCOPE + BEGIN_EXECUTION_SCOPE + FROM_MAYBE_TRY + + auto hObject = ::HandleFromPtr(pvObject); + auto hName = FROM_MAYBE(CreateString(name)); + + if (FROM_MAYBE(hObject->Has(m_hContext, hName))) + { + value = ExportValue(FROM_MAYBE(::HandleFromPtr(pvObject)->Get(m_hContext, hName))); + return true; + } + + return false; + + FROM_MAYBE_CATCH + + throw V8Exception(V8Exception::Type::General, m_Name, StdString(SL("The V8 runtime cannot perform the requested operation because a script exception is pending")), EXECUTION_STARTED); + + FROM_MAYBE_END + END_EXECUTION_SCOPE + END_CONTEXT_SCOPE +} + +//----------------------------------------------------------------------------- + void V8ContextImpl::SetV8ObjectProperty(void* pvObject, const StdString& name, const V8Value& value) { BEGIN_CONTEXT_SCOPE @@ -1092,11 +1120,11 @@ bool V8ContextImpl::DeleteV8ObjectProperty(void* pvObject, const StdString& name //----------------------------------------------------------------------------- -void V8ContextImpl::GetV8ObjectPropertyNames(void* pvObject, std::vector& names) +void V8ContextImpl::GetV8ObjectPropertyNames(void* pvObject, bool includeIndices, std::vector& names) { BEGIN_CONTEXT_SCOPE - GetV8ObjectPropertyNames(::HandleFromPtr(pvObject), names, v8::ONLY_ENUMERABLE); + GetV8ObjectPropertyNames(::HandleFromPtr(pvObject), names, v8::ONLY_ENUMERABLE, includeIndices ? v8::IndexFilter::kIncludeIndices : v8::IndexFilter::kSkipIndices); END_CONTEXT_SCOPE } @@ -1825,13 +1853,13 @@ bool V8ContextImpl::CheckContextImplForHostObjectCallback(V8ContextImpl* pContex //----------------------------------------------------------------------------- -void V8ContextImpl::GetV8ObjectPropertyNames(v8::Local hObject, std::vector& names, v8::PropertyFilter filter) +void V8ContextImpl::GetV8ObjectPropertyNames(v8::Local hObject, std::vector& names, v8::PropertyFilter filter, v8::IndexFilter indexFilter) { names.clear(); FROM_MAYBE_TRY - auto hNames = FROM_MAYBE(hObject->GetPropertyNames(m_hContext, v8::KeyCollectionMode::kIncludePrototypes, static_cast(filter | v8::SKIP_SYMBOLS), v8::IndexFilter::kSkipIndices, v8::KeyConversionMode::kConvertToString)); + auto hNames = FROM_MAYBE(hObject->GetPropertyNames(m_hContext, v8::KeyCollectionMode::kIncludePrototypes, static_cast(filter | v8::SKIP_SYMBOLS), indexFilter, v8::KeyConversionMode::kConvertToString)); auto nameCount = static_cast(hNames->Length()); names.reserve(nameCount); @@ -2055,7 +2083,7 @@ void V8ContextImpl::GetGlobalPropertyNames(const v8::PropertyCallbackInfoGetV8ObjectPropertyNames(it->second, tempNames, v8::ONLY_ENUMERABLE); + pContextImpl->GetV8ObjectPropertyNames(it->second, tempNames, v8::ONLY_ENUMERABLE, v8::IndexFilter::kSkipIndices); } names.insert(names.end(), tempNames.begin(), tempNames.end()); diff --git a/ClearScriptV8/V8ContextImpl.h b/ClearScriptV8/V8ContextImpl.h index 5f4347120..653d628d7 100644 --- a/ClearScriptV8/V8ContextImpl.h +++ b/ClearScriptV8/V8ContextImpl.h @@ -74,9 +74,10 @@ class V8ContextImpl final: public V8Context virtual void Destroy() override; V8Value GetV8ObjectProperty(void* pvObject, const StdString& name); + bool TryGetV8ObjectProperty(void* pvObject, const StdString& name, V8Value& value); void SetV8ObjectProperty(void* pvObject, const StdString& name, const V8Value& value); bool DeleteV8ObjectProperty(void* pvObject, const StdString& name); - void GetV8ObjectPropertyNames(void* pvObject, std::vector& names); + void GetV8ObjectPropertyNames(void* pvObject, bool includeIndices, std::vector& names); V8Value GetV8ObjectProperty(void* pvObject, int index); void SetV8ObjectProperty(void* pvObject, int index, const V8Value& value); @@ -417,7 +418,7 @@ class V8ContextImpl final: public V8Context static bool CheckContextImplForGlobalObjectCallback(V8ContextImpl* pContextImpl); static bool CheckContextImplForHostObjectCallback(V8ContextImpl* pContextImpl); - void GetV8ObjectPropertyNames(v8::Local hObject, std::vector& names, v8::PropertyFilter filter); + void GetV8ObjectPropertyNames(v8::Local hObject, std::vector& names, v8::PropertyFilter filter, v8::IndexFilter indexFilter); void GetV8ObjectPropertyIndices(v8::Local hObject, std::vector& indices, v8::PropertyFilter filter); static void GetGlobalProperty(v8::Local hKey, const v8::PropertyCallbackInfo& info); diff --git a/ClearScriptV8/V8IsolateImpl.cpp b/ClearScriptV8/V8IsolateImpl.cpp index ab6f7bc59..433b471b9 100644 --- a/ClearScriptV8/V8IsolateImpl.cpp +++ b/ClearScriptV8/V8IsolateImpl.cpp @@ -2114,7 +2114,23 @@ size_t V8IsolateImpl::HeapExpansionCallback(void* pvData, size_t currentLimit, s auto multiplier = static_cast(pvData)->m_HeapExpansionMultiplier; if (multiplier > 1.0) { - return static_cast(multiplier * currentLimit); + multiplier = std::max(multiplier, 1.001); + const size_t minBump = 1024 * 1024; + + auto newLimit = static_cast(currentLimit); + while ((static_cast(newLimit) - currentLimit) < minBump) + { + auto tempLimit = multiplier * newLimit; + if (tempLimit > newLimit) + { + newLimit = tempLimit; + continue; + } + + break; + } + + return std::max(static_cast(newLimit), currentLimit); } } diff --git a/ClearScriptV8/V8ObjectHelpers.cpp b/ClearScriptV8/V8ObjectHelpers.cpp index 393d98069..eb5ce4e2d 100644 --- a/ClearScriptV8/V8ObjectHelpers.cpp +++ b/ClearScriptV8/V8ObjectHelpers.cpp @@ -14,6 +14,13 @@ V8Value V8ObjectHelpers::GetProperty(const SharedPtr& spHolder, //----------------------------------------------------------------------------- +bool V8ObjectHelpers::TryGetProperty(const SharedPtr& spHolder, const StdString& name, V8Value& value) +{ + return spHolder.DerefAs().TryGetProperty(name, value); +} + +//----------------------------------------------------------------------------- + void V8ObjectHelpers::SetProperty(const SharedPtr& spHolder, const StdString& name, const V8Value& value) { spHolder.DerefAs().SetProperty(name, value); @@ -28,9 +35,9 @@ bool V8ObjectHelpers::DeleteProperty(const SharedPtr& spHolder, //----------------------------------------------------------------------------- -void V8ObjectHelpers::GetPropertyNames(const SharedPtr& spHolder, std::vector& names) +void V8ObjectHelpers::GetPropertyNames(const SharedPtr& spHolder, bool includeIndices, std::vector& names) { - spHolder.DerefAs().GetPropertyNames(names); + spHolder.DerefAs().GetPropertyNames(includeIndices, names); } //----------------------------------------------------------------------------- diff --git a/ClearScriptV8/V8ObjectHelpers.h b/ClearScriptV8/V8ObjectHelpers.h index aadbd70a8..96b93e78f 100644 --- a/ClearScriptV8/V8ObjectHelpers.h +++ b/ClearScriptV8/V8ObjectHelpers.h @@ -10,9 +10,10 @@ struct V8ObjectHelpers final: StaticBase { static V8Value GetProperty(const SharedPtr& spHolder, const StdString& name); + static bool TryGetProperty(const SharedPtr& spHolder, const StdString& name, V8Value& value); static void SetProperty(const SharedPtr& spHolder, const StdString& name, const V8Value& value); static bool DeleteProperty(const SharedPtr& spHolder, const StdString& name); - static void GetPropertyNames(const SharedPtr& spHolder, std::vector& names); + static void GetPropertyNames(const SharedPtr& spHolder, bool includeIndices, std::vector& names); static V8Value GetProperty(const SharedPtr& spHolder, int index); static void SetProperty(const SharedPtr& spHolder, int index, const V8Value& value); diff --git a/ClearScriptV8/V8ObjectHolderImpl.cpp b/ClearScriptV8/V8ObjectHolderImpl.cpp index a34cd17be..ca444b7c9 100644 --- a/ClearScriptV8/V8ObjectHolderImpl.cpp +++ b/ClearScriptV8/V8ObjectHolderImpl.cpp @@ -65,6 +65,13 @@ V8Value V8ObjectHolderImpl::GetProperty(const StdString& name) const //----------------------------------------------------------------------------- +bool V8ObjectHolderImpl::TryGetProperty(const StdString& name, V8Value& value) const +{ + return m_spBinding->GetContextImpl()->TryGetV8ObjectProperty(m_pvObject, name, value); +} + +//----------------------------------------------------------------------------- + void V8ObjectHolderImpl::SetProperty(const StdString& name, const V8Value& value) const { m_spBinding->GetContextImpl()->SetV8ObjectProperty(m_pvObject, name, value); @@ -79,9 +86,9 @@ bool V8ObjectHolderImpl::DeleteProperty(const StdString& name) const //----------------------------------------------------------------------------- -void V8ObjectHolderImpl::GetPropertyNames(std::vector& names) const +void V8ObjectHolderImpl::GetPropertyNames(bool includeIndices, std::vector& names) const { - m_spBinding->GetContextImpl()->GetV8ObjectPropertyNames(m_pvObject, names); + m_spBinding->GetContextImpl()->GetV8ObjectPropertyNames(m_pvObject, includeIndices, names); } //----------------------------------------------------------------------------- diff --git a/ClearScriptV8/V8ObjectHolderImpl.h b/ClearScriptV8/V8ObjectHolderImpl.h index e180f0ba4..9641f1846 100644 --- a/ClearScriptV8/V8ObjectHolderImpl.h +++ b/ClearScriptV8/V8ObjectHolderImpl.h @@ -22,9 +22,10 @@ class V8ObjectHolderImpl final: public V8ObjectHolder virtual const SharedPtr& GetSharedObjectInfo() const override; V8Value GetProperty(const StdString& name) const; + bool TryGetProperty(const StdString& name, V8Value& value) const; void SetProperty(const StdString& name, const V8Value& value) const; bool DeleteProperty(const StdString& name) const; - void GetPropertyNames(std::vector& names) const; + void GetPropertyNames(bool includeIndices, std::vector& names) const; V8Value GetProperty(int index) const; void SetProperty(int index, const V8Value& value) const; diff --git a/ClearScriptV8/V8SplitProxyNative.cpp b/ClearScriptV8/V8SplitProxyNative.cpp index 507a9733c..e8d21da42 100644 --- a/ClearScriptV8/V8SplitProxyNative.cpp +++ b/ClearScriptV8/V8SplitProxyNative.cpp @@ -1601,6 +1601,26 @@ NATIVE_ENTRY_POINT(void) V8Object_GetNamedProperty(const V8ObjectHandle& handle, //----------------------------------------------------------------------------- +NATIVE_ENTRY_POINT(StdBool) V8Object_TryGetNamedProperty(const V8ObjectHandle& handle, const StdString& name, V8Value& value) noexcept +{ + auto spV8ObjectHolder = handle.GetEntity(); + if (!spV8ObjectHolder.IsEmpty()) + { + try + { + return V8ObjectHelpers::TryGetProperty(spV8ObjectHolder, name, value); + } + catch (const V8Exception& exception) + { + exception.ScheduleScriptEngineException(); + } + } + + return false; +} + +//----------------------------------------------------------------------------- + NATIVE_ENTRY_POINT(void) V8Object_SetNamedProperty(const V8ObjectHandle& handle, const StdString& name, const V8Value& value) noexcept { auto spV8ObjectHolder = handle.GetEntity(); @@ -1639,14 +1659,14 @@ NATIVE_ENTRY_POINT(StdBool) V8Object_DeleteNamedProperty(const V8ObjectHandle& h //----------------------------------------------------------------------------- -NATIVE_ENTRY_POINT(void) V8Object_GetPropertyNames(const V8ObjectHandle& handle, std::vector& names) noexcept +NATIVE_ENTRY_POINT(void) V8Object_GetPropertyNames(const V8ObjectHandle& handle, StdBool includeIndices, std::vector& names) noexcept { auto spV8ObjectHolder = handle.GetEntity(); if (!spV8ObjectHolder.IsEmpty()) { try { - V8ObjectHelpers::GetPropertyNames(spV8ObjectHolder, names); + V8ObjectHelpers::GetPropertyNames(spV8ObjectHolder, includeIndices, names); } catch (const V8Exception& exception) { diff --git a/ClearScriptV8/V8SplitProxyNative.h b/ClearScriptV8/V8SplitProxyNative.h index 16326d5d7..852bdcfa3 100644 --- a/ClearScriptV8/V8SplitProxyNative.h +++ b/ClearScriptV8/V8SplitProxyNative.h @@ -292,9 +292,10 @@ NATIVE_ENTRY_POINT(void) V8Context_SetCpuProfileSampleInterval(const V8ContextHa NATIVE_ENTRY_POINT(void) V8Context_WriteIsolateHeapSnapshot(const V8ContextHandle& handle, void* pvStream) noexcept; NATIVE_ENTRY_POINT(void) V8Object_GetNamedProperty(const V8ObjectHandle& handle, const StdString& name, V8Value& value) noexcept; +NATIVE_ENTRY_POINT(StdBool) V8Object_TryGetNamedProperty(const V8ObjectHandle& handle, const StdString& name, V8Value& value) noexcept; NATIVE_ENTRY_POINT(void) V8Object_SetNamedProperty(const V8ObjectHandle& handle, const StdString& name, const V8Value& value) noexcept; NATIVE_ENTRY_POINT(StdBool) V8Object_DeleteNamedProperty(const V8ObjectHandle& handle, const StdString& name) noexcept; -NATIVE_ENTRY_POINT(void) V8Object_GetPropertyNames(const V8ObjectHandle& handle, std::vector& names) noexcept; +NATIVE_ENTRY_POINT(void) V8Object_GetPropertyNames(const V8ObjectHandle& handle, StdBool includeIndices, std::vector& names) noexcept; NATIVE_ENTRY_POINT(void) V8Object_GetIndexedProperty(const V8ObjectHandle& handle, int32_t index, V8Value& value) noexcept; NATIVE_ENTRY_POINT(void) V8Object_SetIndexedProperty(const V8ObjectHandle& handle, int32_t index, const V8Value& value) noexcept; NATIVE_ENTRY_POINT(StdBool) V8Object_DeleteIndexedProperty(const V8ObjectHandle& handle, int32_t index) noexcept; diff --git a/NetCore/ClearScript.Core/ClearScript.Core.csproj b/NetCore/ClearScript.Core/ClearScript.Core.csproj index 553055bb0..3e40b047e 100644 --- a/NetCore/ClearScript.Core/ClearScript.Core.csproj +++ b/NetCore/ClearScript.Core/ClearScript.Core.csproj @@ -13,6 +13,7 @@ CA1416 true ..\..\bin\Debug + ..\..\bin\Debug\$(TargetFramework)\ClearScript.Core.xml @@ -22,6 +23,7 @@ CA1416 true ..\..\bin\Release + ..\..\bin\Release\$(TargetFramework)\ClearScript.Core.xml @@ -36,6 +38,7 @@ + @@ -58,6 +61,7 @@ + @@ -115,6 +119,7 @@ + diff --git a/NetCore/ClearScript.V8/ClearScript.V8.csproj b/NetCore/ClearScript.V8/ClearScript.V8.csproj index 2bc8eb150..85af2d42d 100644 --- a/NetCore/ClearScript.V8/ClearScript.V8.csproj +++ b/NetCore/ClearScript.V8/ClearScript.V8.csproj @@ -12,6 +12,7 @@ true true ..\..\bin\Debug + ..\..\bin\Debug\$(TargetFramework)\ClearScript.V8.xml @@ -20,6 +21,7 @@ true true ..\..\bin\Release + ..\..\bin\Release\$(TargetFramework)\ClearScript.V8.xml @@ -47,6 +49,7 @@ + diff --git a/NetCore/ClearScript.Windows.Core/ClearScript.Windows.Core.csproj b/NetCore/ClearScript.Windows.Core/ClearScript.Windows.Core.csproj index 92ed8c7ab..2eb5c3e49 100644 --- a/NetCore/ClearScript.Windows.Core/ClearScript.Windows.Core.csproj +++ b/NetCore/ClearScript.Windows.Core/ClearScript.Windows.Core.csproj @@ -13,6 +13,7 @@ CS0618;CA1416 true ..\..\bin\Debug + ..\..\bin\Debug\$(TargetFramework)\ClearScript.Windows.Core.xml @@ -22,6 +23,7 @@ CS0618;CA1416 true ..\..\bin\Release + ..\..\bin\Release\$(TargetFramework)\ClearScript.Windows.Core.xml diff --git a/NetCore/ClearScript.Windows/ClearScript.Windows.csproj b/NetCore/ClearScript.Windows/ClearScript.Windows.csproj index 532d6b0fe..a3149a31c 100644 --- a/NetCore/ClearScript.Windows/ClearScript.Windows.csproj +++ b/NetCore/ClearScript.Windows/ClearScript.Windows.csproj @@ -14,6 +14,7 @@ CS0618;CA1416 true ..\..\bin\Debug + ..\..\bin\Debug\$(TargetFramework)\ClearScript.Windows.xml @@ -23,6 +24,7 @@ CS0618;CA1416 true ..\..\bin\Release + ..\..\bin\Release\$(TargetFramework)\ClearScript.Windows.xml diff --git a/NetCore/ClearScriptBenchmarks/ClearScriptBenchmarks.csproj b/NetCore/ClearScriptBenchmarks/ClearScriptBenchmarks.csproj index 896ddf7a2..1018c5b63 100644 --- a/NetCore/ClearScriptBenchmarks/ClearScriptBenchmarks.csproj +++ b/NetCore/ClearScriptBenchmarks/ClearScriptBenchmarks.csproj @@ -1,5 +1,6 @@  + Exe netcoreapp3.1;net5.0-windows;net6.0-windows;net7.0-windows @@ -8,6 +9,7 @@ false + Exe netcoreapp3.1;net5.0-windows diff --git a/NetCore/ClearScriptConsole/ClearScriptConsole.csproj b/NetCore/ClearScriptConsole/ClearScriptConsole.csproj index b67f106af..49abcfc95 100644 --- a/NetCore/ClearScriptConsole/ClearScriptConsole.csproj +++ b/NetCore/ClearScriptConsole/ClearScriptConsole.csproj @@ -1,5 +1,6 @@ - + + Exe netcoreapp3.1;net5.0-windows;net6.0-windows;net7.0-windows @@ -8,6 +9,7 @@ false + Exe netcoreapp3.1;net5.0-windows diff --git a/NetCore/ClearScriptTest/ClearScriptTest.csproj b/NetCore/ClearScriptTest/ClearScriptTest.csproj index 1715dd7c2..08f0ac6a7 100644 --- a/NetCore/ClearScriptTest/ClearScriptTest.csproj +++ b/NetCore/ClearScriptTest/ClearScriptTest.csproj @@ -1,5 +1,6 @@ - + + netcoreapp3.1;net5.0-windows;net6.0-windows;net7.0-windows Microsoft.ClearScript.Test @@ -7,6 +8,7 @@ false + netcoreapp3.1;net5.0-windows Microsoft.ClearScript.Test @@ -55,6 +57,7 @@ + diff --git a/NetFramework/ClearScript.Core/ClearScript.Core.csproj b/NetFramework/ClearScript.Core/ClearScript.Core.csproj index 76c063370..600fcc71c 100644 --- a/NetFramework/ClearScript.Core/ClearScript.Core.csproj +++ b/NetFramework/ClearScript.Core/ClearScript.Core.csproj @@ -1,4 +1,4 @@ - + net45;net471 @@ -11,6 +11,7 @@ true true ..\..\bin\Debug + ..\..\bin\Debug\$(TargetFramework)\ClearScript.Core.xml @@ -19,6 +20,7 @@ true true ..\..\bin\Release + ..\..\bin\Release\$(TargetFramework)\ClearScript.Core.xml @@ -33,6 +35,7 @@ + @@ -59,6 +62,7 @@ + @@ -118,6 +122,7 @@ + @@ -196,6 +201,7 @@ + diff --git a/NetFramework/ClearScript.V8/ClearScript.V8.csproj b/NetFramework/ClearScript.V8/ClearScript.V8.csproj index 03bdfc8ab..2a04e8c85 100644 --- a/NetFramework/ClearScript.V8/ClearScript.V8.csproj +++ b/NetFramework/ClearScript.V8/ClearScript.V8.csproj @@ -1,4 +1,4 @@ - + net45;net471 @@ -11,6 +11,7 @@ true true ..\..\bin\Debug + ..\..\bin\Debug\$(TargetFramework)\ClearScript.V8.xml @@ -19,6 +20,7 @@ true true ..\..\bin\Release + ..\..\bin\Release\$(TargetFramework)\ClearScript.V8.xml @@ -164,6 +166,7 @@ + diff --git a/NetFramework/ClearScript.Windows/ClearScript.Windows.csproj b/NetFramework/ClearScript.Windows/ClearScript.Windows.csproj index 2b99e9ac5..af707a86c 100644 --- a/NetFramework/ClearScript.Windows/ClearScript.Windows.csproj +++ b/NetFramework/ClearScript.Windows/ClearScript.Windows.csproj @@ -1,4 +1,4 @@ - + net45 @@ -12,6 +12,7 @@ true true ..\..\bin\Debug + ..\..\bin\Debug\$(TargetFramework)\ClearScript.Windows.xml @@ -20,6 +21,7 @@ true true ..\..\bin\Release + ..\..\bin\Release\$(TargetFramework)\ClearScript.Windows.xml diff --git a/NetStandard/ClearScript.Core/ClearScript.Core.csproj b/NetStandard/ClearScript.Core/ClearScript.Core.csproj index 0e0096600..9551d8600 100644 --- a/NetStandard/ClearScript.Core/ClearScript.Core.csproj +++ b/NetStandard/ClearScript.Core/ClearScript.Core.csproj @@ -1,4 +1,4 @@ - + netstandard2.1 @@ -12,6 +12,7 @@ CA1416;CS0618 true ..\..\bin\Debug + ..\..\bin\Debug\$(TargetFramework)\ClearScript.Core.xml @@ -21,6 +22,7 @@ CA1416;CS0618 true ..\..\bin\Release + ..\..\bin\Release\$(TargetFramework)\ClearScript.Core.xml @@ -35,6 +37,7 @@ + @@ -57,6 +60,7 @@ + @@ -114,6 +118,7 @@ + diff --git a/NetStandard/ClearScript.V8.ICUData/ClearScript.V8.ICUData.csproj b/NetStandard/ClearScript.V8.ICUData/ClearScript.V8.ICUData.csproj index 0df7d2ffe..60af8250f 100644 --- a/NetStandard/ClearScript.V8.ICUData/ClearScript.V8.ICUData.csproj +++ b/NetStandard/ClearScript.V8.ICUData/ClearScript.V8.ICUData.csproj @@ -1,4 +1,4 @@ - + netstandard1.0 @@ -11,6 +11,7 @@ true true ..\..\bin\Debug + ..\..\bin\Debug\$(TargetFramework)\ClearScript.V8.ICUData.xml @@ -19,6 +20,7 @@ true true ..\..\bin\Release + ..\..\bin\Release\$(TargetFramework)\ClearScript.V8.ICUData.xml diff --git a/NetStandard/ClearScript.V8/ClearScript.V8.csproj b/NetStandard/ClearScript.V8/ClearScript.V8.csproj index bdbbbf5c2..33820b877 100644 --- a/NetStandard/ClearScript.V8/ClearScript.V8.csproj +++ b/NetStandard/ClearScript.V8/ClearScript.V8.csproj @@ -1,4 +1,4 @@ - + netstandard2.1 @@ -11,6 +11,7 @@ true true ..\..\bin\Debug + ..\..\bin\Debug\$(TargetFramework)\ClearScript.V8.xml @@ -19,6 +20,7 @@ true true ..\..\bin\Release + ..\..\bin\Release\$(TargetFramework)\ClearScript.V8.xml diff --git a/NetStandard/ClearScript.Windows.Core/ClearScript.Windows.Core.csproj b/NetStandard/ClearScript.Windows.Core/ClearScript.Windows.Core.csproj index 24dd5df18..9cfdba0f7 100644 --- a/NetStandard/ClearScript.Windows.Core/ClearScript.Windows.Core.csproj +++ b/NetStandard/ClearScript.Windows.Core/ClearScript.Windows.Core.csproj @@ -1,4 +1,4 @@ - + netstandard2.1 @@ -12,6 +12,7 @@ CS0618;CA1416 true ..\..\bin\Debug + ..\..\bin\Debug\$(TargetFramework)\ClearScript.Windows.Core.xml @@ -21,6 +22,7 @@ CS0618;CA1416 true ..\..\bin\Release + ..\..\bin\Release\$(TargetFramework)\ClearScript.Windows.Core.xml diff --git a/NetStandard/ClearScriptConsole/ClearScriptConsole.csproj b/NetStandard/ClearScriptConsole/ClearScriptConsole.csproj index 3337d1fe2..30b2baa5f 100644 --- a/NetStandard/ClearScriptConsole/ClearScriptConsole.csproj +++ b/NetStandard/ClearScriptConsole/ClearScriptConsole.csproj @@ -1,5 +1,6 @@ - + + Exe netcoreapp3.1;net5.0-windows;net6.0-windows;net7.0-windows @@ -8,6 +9,7 @@ false + Exe netcoreapp3.1;net5.0-windows diff --git a/NetStandard/ClearScriptTest.NetStandard/ClearScriptTest.NetStandard.csproj b/NetStandard/ClearScriptTest.NetStandard/ClearScriptTest.NetStandard.csproj index a8b85ab67..ec64504fe 100644 --- a/NetStandard/ClearScriptTest.NetStandard/ClearScriptTest.NetStandard.csproj +++ b/NetStandard/ClearScriptTest.NetStandard/ClearScriptTest.NetStandard.csproj @@ -1,5 +1,6 @@ - + + netcoreapp3.1;net5.0-windows;net6.0-windows;net7.0-windows true @@ -9,6 +10,7 @@ false + netcoreapp3.1;net5.0-windows true @@ -60,6 +62,7 @@ + diff --git a/UWP/ClearScript.Core/ClearScript.Core.csproj b/UWP/ClearScript.Core/ClearScript.Core.csproj index 9ee76775e..d786b42fa 100644 --- a/UWP/ClearScript.Core/ClearScript.Core.csproj +++ b/UWP/ClearScript.Core/ClearScript.Core.csproj @@ -1,6 +1,8 @@  + + Debug AnyCPU @@ -59,6 +61,7 @@ true + @@ -81,6 +84,7 @@ + @@ -136,6 +140,7 @@ + @@ -210,11 +215,4 @@ 14.0 - - \ No newline at end of file + diff --git a/UWP/ClearScript.V8/ClearScript.V8.csproj b/UWP/ClearScript.V8/ClearScript.V8.csproj index cd374780e..82473e261 100644 --- a/UWP/ClearScript.V8/ClearScript.V8.csproj +++ b/UWP/ClearScript.V8/ClearScript.V8.csproj @@ -1,6 +1,8 @@ - + + + Debug AnyCPU @@ -11,6 +13,7 @@ ClearScript.V8 en-US UAP + 10.0.20348.0 10.0.17763.0 14 @@ -135,15 +138,10 @@ V8\SplitProxy\V8SplitProxyNative.Common.tt + 14.0 - - \ No newline at end of file + + diff --git a/Unix/ClearScriptBenchmarks/ClearScriptBenchmarks.csproj b/Unix/ClearScriptBenchmarks/ClearScriptBenchmarks.csproj index c7b3b4bb5..83cdb0ea9 100644 --- a/Unix/ClearScriptBenchmarks/ClearScriptBenchmarks.csproj +++ b/Unix/ClearScriptBenchmarks/ClearScriptBenchmarks.csproj @@ -1,5 +1,6 @@ - + + Exe netcoreapp3.1;net5.0;net6.0;net7.0 @@ -8,6 +9,7 @@ false + Exe netcoreapp3.1;net5.0 diff --git a/Unix/ClearScriptConsole/ClearScriptConsole.csproj b/Unix/ClearScriptConsole/ClearScriptConsole.csproj index a27b7da8d..724dc8d9a 100644 --- a/Unix/ClearScriptConsole/ClearScriptConsole.csproj +++ b/Unix/ClearScriptConsole/ClearScriptConsole.csproj @@ -1,5 +1,6 @@ - + + Exe netcoreapp3.1;net5.0;net6.0;net7.0 @@ -9,6 +10,7 @@ false + Exe netcoreapp3.1;net5.0 diff --git a/Unix/ClearScriptTest.NetStandard/ClearScriptTest.NetStandard.csproj b/Unix/ClearScriptTest.NetStandard/ClearScriptTest.NetStandard.csproj index ad978ab23..74fbf46db 100644 --- a/Unix/ClearScriptTest.NetStandard/ClearScriptTest.NetStandard.csproj +++ b/Unix/ClearScriptTest.NetStandard/ClearScriptTest.NetStandard.csproj @@ -1,5 +1,6 @@ - + + netcoreapp3.1;net5.0;net6.0;net7.0 false @@ -9,6 +10,7 @@ false + netcoreapp3.1;net5.0 false @@ -57,6 +59,7 @@ + diff --git a/Unix/ClearScriptTest/ClearScriptTest.csproj b/Unix/ClearScriptTest/ClearScriptTest.csproj index d5be9aff8..4127c5688 100644 --- a/Unix/ClearScriptTest/ClearScriptTest.csproj +++ b/Unix/ClearScriptTest/ClearScriptTest.csproj @@ -1,5 +1,6 @@ - + + netcoreapp3.1;net5.0;net6.0;net7.0 false @@ -8,6 +9,7 @@ false + netcoreapp3.1;net5.0 false @@ -55,6 +57,7 @@ + diff --git a/Unix/ClearScriptV8/Makefile b/Unix/ClearScriptV8/Makefile index c1b66d6b1..24dc9943d 100644 --- a/Unix/ClearScriptV8/Makefile +++ b/Unix/ClearScriptV8/Makefile @@ -116,7 +116,6 @@ JSONINCDIR = $(JSONDIR)/single_include OUTDIR = $(ROOTDIR)/bin/$(CONFIG)/Unix OBJDIR = $(OUTDIR)/obj/$(CPU) CLEARSCRIPTV8 = $(OUTDIR)/ClearScriptV8.$(OS)-$(CPU).$(EXTENSION) -ICUDTL = $(V8ROOTDIR)/icudtl.dat CXX = clang++ CXXFLAGS = --target=$(TARGET) -std=c++17 -fvisibility=default -fPIC -fno-rtti -Wno-ignored-attributes $(CXXCONFIGFLAGS) -I$(V8INCDIR) -I$(JSONINCDIR) $(CXXCROSSFLAGS) @@ -139,22 +138,19 @@ OBJECTS = \ $(OBJDIR)/V8SplitProxyManaged.o \ $(OBJDIR)/V8SplitProxyNative.o -.PHONY: all objdir clean buildv8 cleanv8 zapv8 buildallrelease buildalldebug buildall cleanall +.PHONY: all objdir clean buildv8 cleanv8 zapv8 buildallrelease buildalldebug buildall cleanallrelease cleanalldebug cleanall -all: objdir $(CLEARSCRIPTV8) $(ICUDTL) +all: objdir buildv8 $(CLEARSCRIPTV8) objdir: @mkdir -p $(OBJDIR) -$(CLEARSCRIPTV8): $(V8LIBDIR)/libv8_monolith.a $(OBJECTS) $(ENTITLEMENTS) +$(CLEARSCRIPTV8): $(OBJECTS) $(V8LIBDIR)/libv8_monolith.a $(ENTITLEMENTS) $(CXX) $(CXXFLAGS) $(CXXLINKFLAGS) --shared -L$(V8LIBDIR) $(OBJECTS) -o $@ -pthread -lv8_monolith && $(STRIP) $@ && $(CODESIGN) $@ $(OBJDIR)/%.o: $(SRCDIR)/%.cpp $(HEADERS) $(CXX) $(CXXFLAGS) -c $< -o $@ -$(V8LIBDIR)/libv8_monolith.a $(ICUDTL): - cd $(UNIXDIR); ./V8Update.sh -n -y $(CPU) $(CONFIG) - clean: rm -rf $(CLEARSCRIPTV8) $(OBJDIR) @@ -179,10 +175,14 @@ buildalldebug: buildall: buildallrelease buildalldebug -cleanall: +cleanallrelease: make clean CPU=$(HOSTCPU) make clean CPU=$(OTHERCPU) $(MAKELINUX) clean CPU=arm + +cleanalldebug: make clean CPU=$(HOSTCPU) DEBUG=1 make clean CPU=$(OTHERCPU) DEBUG=1 $(MAKELINUX) clean CPU=arm DEBUG=1 + +cleanall: cleanallrelease cleanalldebug diff --git a/Unix/Makefile b/Unix/Makefile index 232742774..970d4a91d 100644 --- a/Unix/Makefile +++ b/Unix/Makefile @@ -47,7 +47,7 @@ UNIXDIR = $(ROOTDIR)/Unix NETCOREDIR = $(ROOTDIR)/NetCore NETSTANDARDDIR = $(ROOTDIR)/NetStandard -.PHONY: all test clean buildv8 cleanv8 zapv8 buildallrelease buildalldebug buildall cleanall +.PHONY: all test clean buildv8 cleanv8 zapv8 buildallrelease buildalldebug buildall cleanallrelease cleanalldebug cleanall all: make -f $(UNIXDIR)/ClearScriptV8/Makefile @@ -88,10 +88,14 @@ buildalldebug: buildall: buildallrelease buildalldebug -cleanall: +cleanallrelease: make clean CPU=$(HOSTCPU) make clean CPU=$(OTHERCPU) $(MAKELINUX) clean CPU=arm + +cleanalldebug: make clean CPU=$(HOSTCPU) DEBUG=1 make clean CPU=$(OTHERCPU) DEBUG=1 $(MAKELINUX) clean CPU=arm DEBUG=1 + +cleanall: cleanallrelease cleanalldebug diff --git a/Unix/V8Update.sh b/Unix/V8Update.sh index d01104c89..0923031f5 100644 --- a/Unix/V8Update.sh +++ b/Unix/V8Update.sh @@ -1,6 +1,6 @@ #!/bin/bash -v8testedrev=10.9.194.10 +v8testedrev=11.1.277.14 v8testedcommit= v8cherrypicks= v8linuxbuildcommit=3d9590754d5d23e62d15472c5baf6777ca59df20 @@ -217,7 +217,7 @@ if [[ $linux == true ]]; then fi echo "Building V8 ..." -gn gen out/$cpu/$mode --args="enable_precompiled_headers=false fatal_linker_warnings=false is_cfi=false is_component_build=false is_debug=$isdebug target_cpu=\"$cpu\" use_custom_libcxx=false use_thin_lto=false v8_embedder_string=\"-ClearScript\" v8_enable_pointer_compression=false v8_enable_31bit_smis_on_64bit_arch=false v8_monolithic=true v8_use_external_startup_data=false v8_target_cpu=\"$cpu\"" >gn-$cpu-$mode.log || fail +gn gen out/$cpu/$mode --args="fatal_linker_warnings=false is_cfi=false is_component_build=false is_debug=$isdebug target_cpu=\"$cpu\" use_custom_libcxx=false use_thin_lto=false v8_embedder_string=\"-ClearScript\" v8_enable_pointer_compression=false v8_enable_31bit_smis_on_64bit_arch=false v8_monolithic=true v8_use_external_startup_data=false v8_target_cpu=\"$cpu\"" >gn-$cpu-$mode.log || fail ninja -C out/$cpu/$mode obj/libv8_monolith.a >build-$cpu-$mode.log || fail cd ../.. diff --git a/V8/PackBuild.cmd b/V8/PackBuild.cmd index 4a844c721..f45b6532f 100644 --- a/V8/PackBuild.cmd +++ b/V8/PackBuild.cmd @@ -1 +1 @@ -7z a build.7z -r build -xr!build\v8\out -xr!.git +7z a build.7z -r build -xr!build\v8\out -xr!.git -mx=9 diff --git a/V8/V8Patch.txt b/V8/V8Patch.txt index 12bb114fb..70b74a9aa 100644 --- a/V8/V8Patch.txt +++ b/V8/V8Patch.txt @@ -1,8 +1,8 @@ diff --git a/BUILD.gn b/BUILD.gn -index 78fd8cd2d3..46ac33e6e9 100644 +index 316bcb4d3c..65833d40b6 100644 --- a/BUILD.gn +++ b/BUILD.gn -@@ -1062,7 +1062,7 @@ config("toolchain") { +@@ -1119,7 +1119,7 @@ config("toolchain") { visibility = [ "./*" ] defines = [] @@ -37,10 +37,10 @@ index d3e35d6ec5..2d2fb458fe 100644 /** * Initialize the ICU library bundled with V8. The embedder should only diff --git a/include/v8-template.h b/include/v8-template.h -index 669012a981..b19ea9c824 100644 +index 11296cd488..0f090446dc 100644 --- a/include/v8-template.h +++ b/include/v8-template.h -@@ -937,6 +937,9 @@ class V8_EXPORT ObjectTemplate : public Template { +@@ -939,6 +939,9 @@ class V8_EXPORT ObjectTemplate : public Template { */ void SetImmutableProto(); @@ -50,8 +50,21 @@ index 669012a981..b19ea9c824 100644 /** * Support for TC39 "dynamic code brand checks" proposal. * +diff --git a/include/v8config.h b/include/v8config.h +index b44995e7cd..cb7928b515 100644 +--- a/include/v8config.h ++++ b/include/v8config.h +@@ -524,7 +524,7 @@ path. Add it with -I to the command line + // Use like: + // V8_NOINLINE V8_PRESERVE_MOST void UnlikelyMethod(); + #if V8_HAS_ATTRIBUTE_PRESERVE_MOST +-# define V8_PRESERVE_MOST __attribute__((preserve_most)) ++# define V8_PRESERVE_MOST /* DISABLED */ + #else + # define V8_PRESERVE_MOST /* NOT SUPPORTED */ + #endif diff --git a/src/api/api-natives.cc b/src/api/api-natives.cc -index d0b2987234..c0837ee625 100644 +index 05a883f2d5..3ea0b8ce62 100644 --- a/src/api/api-natives.cc +++ b/src/api/api-natives.cc @@ -447,6 +447,9 @@ MaybeHandle InstantiateObject(Isolate* isolate, @@ -65,10 +78,10 @@ index d0b2987234..c0837ee625 100644 // Keep prototypes in slow-mode. Let them be lazily turned fast later on. // TODO(dcarney): is this necessary? diff --git a/src/api/api.cc b/src/api/api.cc -index da75db119b..3ea9ddf936 100644 +index 81c7d1e3f9..da9e93fa17 100644 --- a/src/api/api.cc +++ b/src/api/api.cc -@@ -1926,6 +1926,17 @@ void ObjectTemplate::SetImmutableProto() { +@@ -2043,6 +2043,17 @@ void ObjectTemplate::SetImmutableProto() { self->set_immutable_proto(true); } @@ -86,7 +99,7 @@ index da75db119b..3ea9ddf936 100644 bool ObjectTemplate::IsCodeLike() const { return Utils::OpenHandle(this)->code_like(); } -@@ -6312,6 +6323,10 @@ bool v8::V8::InitializeICU(const char* icu_data_file) { +@@ -6466,6 +6477,10 @@ bool v8::V8::InitializeICU(const char* icu_data_file) { return i::InitializeICU(icu_data_file); } @@ -126,21 +139,6 @@ index 88d35540b1..20863d6f5b 100644 #ifndef V8_NO_FAST_TLS #if V8_CC_MSVC && V8_HOST_ARCH_IA32 // __readfsdword is supposed to be declared in intrin.h but it is missing from -diff --git a/src/base/vector.h b/src/base/vector.h -index 1f5e103d4c..6d4975d1f6 100644 ---- a/src/base/vector.h -+++ b/src/base/vector.h -@@ -142,8 +142,8 @@ class Vector { - static Vector cast(Vector input) { - // Casting is potentially dangerous, so be really restrictive here. This - // might be lifted once we have use cases for that. -- static_assert(std::is_pod::value); -- static_assert(std::is_pod::value); -+ static_assert(std::is_standard_layout::value && std::is_trivial::value); -+ static_assert(std::is_standard_layout::value && std::is_trivial::value); - DCHECK_EQ(0, (input.size() * sizeof(S)) % sizeof(T)); - DCHECK_EQ(0, reinterpret_cast(input.begin()) % alignof(T)); - return Vector(reinterpret_cast(input.begin()), diff --git a/src/builtins/builtins-async-module.cc b/src/builtins/builtins-async-module.cc index 417e6f1dfa..108dc20972 100644 --- a/src/builtins/builtins-async-module.cc @@ -156,10 +154,10 @@ index 417e6f1dfa..108dc20972 100644 // The evaluation of async module can not throwing a JavaScript observable // exception. diff --git a/src/codegen/code-stub-assembler.cc b/src/codegen/code-stub-assembler.cc -index b90f235acc..6a7bce3719 100644 +index 7d47afa2c9..cc95781cbc 100644 --- a/src/codegen/code-stub-assembler.cc +++ b/src/codegen/code-stub-assembler.cc -@@ -1890,6 +1890,10 @@ TNode CodeStubAssembler::LoadMapBitField3(TNode map) { +@@ -2006,6 +2006,10 @@ TNode CodeStubAssembler::LoadMapBitField3(TNode map) { return LoadObjectField(map, Map::kBitField3Offset); } @@ -170,7 +168,7 @@ index b90f235acc..6a7bce3719 100644 TNode CodeStubAssembler::LoadMapInstanceType(TNode map) { return LoadObjectField(map, Map::kInstanceTypeOffset); } -@@ -13854,6 +13858,11 @@ TNode CodeStubAssembler::Typeof(TNode value) { +@@ -14308,6 +14312,11 @@ TNode CodeStubAssembler::Typeof(TNode value) { GotoIf(InstanceTypeEqual(instance_type, ODDBALL_TYPE), &if_oddball); @@ -183,10 +181,10 @@ index b90f235acc..6a7bce3719 100644 Word32And(LoadMapBitField(map), Int32Constant(Map::Bits1::IsCallableBit::kMask | diff --git a/src/codegen/code-stub-assembler.h b/src/codegen/code-stub-assembler.h -index 559deafa85..f8f740061e 100644 +index fdd6da6017..c4eb41496c 100644 --- a/src/codegen/code-stub-assembler.h +++ b/src/codegen/code-stub-assembler.h -@@ -1439,6 +1439,8 @@ class V8_EXPORT_PRIVATE CodeStubAssembler +@@ -1409,6 +1409,8 @@ class V8_EXPORT_PRIVATE CodeStubAssembler TNode LoadMapBitField2(TNode map); // Load bit field 3 of a map. TNode LoadMapBitField3(TNode map); @@ -196,10 +194,10 @@ index 559deafa85..f8f740061e 100644 TNode LoadMapInstanceType(TNode map); // Load the ElementsKind of a map. diff --git a/src/common/globals.h b/src/common/globals.h -index 9288e13c5d..53949c434a 100644 +index d379cbfc61..d11438763b 100644 --- a/src/common/globals.h +++ b/src/common/globals.h -@@ -270,7 +270,7 @@ using CodeT = Code; +@@ -270,7 +270,7 @@ const size_t kShortBuiltinCallsOldSpaceSizeThreshold = size_t{2} * GB; // #if V8_HAS_PTHREAD_JIT_WRITE_PROTECT && \ !(defined(V8_COMPRESS_POINTERS) && !defined(V8_EXTERNAL_CODE_SPACE)) @@ -316,22 +314,36 @@ index 2b4af70bc0..2607f22922 100644 set_jslimit(SimulatorStack::JsLimitFromCLimit(isolate, limit)); real_climit_ = limit; diff --git a/src/heap/factory.cc b/src/heap/factory.cc -index a50ec11ccc..a94293b16b 100644 +index caab258158..398cd2bf6c 100644 --- a/src/heap/factory.cc +++ b/src/heap/factory.cc -@@ -2072,6 +2072,7 @@ Map Factory::InitializeMap(Map map, InstanceType type, int instance_size, +@@ -2063,6 +2063,7 @@ Map Factory::InitializeMap(Map map, InstanceType type, int instance_size, Map::Bits3::ConstructionCounterBits::encode(Map::kNoSlackTracking) | Map::Bits3::IsExtensibleBit::encode(true); map.set_bit_field3(bit_field3); + map.set_host_bit_field(0); map.set_instance_type(type); ReadOnlyRoots ro_roots(roots); - HeapObject raw_null_value = ro_roots.null_value(); + map.init_prototype_and_constructor_or_back_pointer(ro_roots); +diff --git a/src/heap/memory-chunk-layout.h b/src/heap/memory-chunk-layout.h +index 67e3a7b9dd..ff68856972 100644 +--- a/src/heap/memory-chunk-layout.h ++++ b/src/heap/memory-chunk-layout.h +@@ -73,6 +73,9 @@ class V8_EXPORT_PRIVATE MemoryChunkLayout { + FIELD(FreeListCategory**, Categories), + FIELD(CodeObjectRegistry*, CodeObjectRegistry), + FIELD(PossiblyEmptyBuckets, PossiblyEmptyBuckets), ++#if defined(V8_TARGET_OS_WIN) && defined(V8_TARGET_ARCH_IA32) ++ FIELD(int32_t, WinIa32Padding), ++#endif // V8_TARGET_OS_WIN && V8_TARGET_ARCH_IA32 + FIELD(ActiveSystemPages, ActiveSystemPages), + #ifdef V8_ENABLE_INNER_POINTER_RESOLUTION_OSB + FIELD(ObjectStartBitmap, ObjectStartBitmap), diff --git a/src/heap/setup-heap-internal.cc b/src/heap/setup-heap-internal.cc -index 48081db0a4..bb37baba83 100644 +index 60ef0cc4b0..245ea249de 100644 --- a/src/heap/setup-heap-internal.cc +++ b/src/heap/setup-heap-internal.cc -@@ -188,6 +188,7 @@ AllocationResult Heap::AllocatePartialMap(InstanceType instance_type, +@@ -240,6 +240,7 @@ AllocationResult Heap::AllocatePartialMap(InstanceType instance_type, Map::Bits3::OwnsDescriptorsBit::encode(true) | Map::Bits3::ConstructionCounterBits::encode(Map::kNoSlackTracking); map.set_bit_field3(bit_field3); @@ -419,10 +431,10 @@ index 2bbbb7e1f4..5cbd5e8c43 100644 IdleTaskSupport idle_task_support, InProcessStackDumping in_process_stack_dumping, diff --git a/src/objects/js-objects.cc b/src/objects/js-objects.cc -index 15356b6c58..5f249b3313 100644 +index 682e77ec24..3b9ec4525b 100644 --- a/src/objects/js-objects.cc +++ b/src/objects/js-objects.cc -@@ -5183,6 +5183,13 @@ void JSObject::SetImmutableProto(Handle object) { +@@ -5203,6 +5203,13 @@ void JSObject::SetImmutableProto(Handle object) { object->set_map(*new_map, kReleaseStore); } @@ -450,10 +462,10 @@ index 06489c2b7b..927d68d926 100644 // the caller to initialize object header. Fill the pre-allocated fields with // undefined_value and the rest with filler_map. diff --git a/src/objects/map-inl.h b/src/objects/map-inl.h -index 04cdb99e10..e481f07e4f 100644 +index bc25dd1117..661972f6c0 100644 --- a/src/objects/map-inl.h +++ b/src/objects/map-inl.h -@@ -115,6 +115,9 @@ BIT_FIELD_ACCESSORS(Map, bit_field3, may_have_interesting_symbols, +@@ -124,6 +124,9 @@ BIT_FIELD_ACCESSORS(Map, bit_field3, may_have_interesting_symbols, BIT_FIELD_ACCESSORS(Map, relaxed_bit_field3, construction_counter, Map::Bits3::ConstructionCounterBits) @@ -464,7 +476,7 @@ index 04cdb99e10..e481f07e4f 100644 DCHECK(has_named_interceptor()); FunctionTemplateInfo info = GetFunctionTemplateInfo(cage_base); diff --git a/src/objects/map.cc b/src/objects/map.cc -index c065533248..c160854bec 100644 +index b29db773e4..92cb13f012 100644 --- a/src/objects/map.cc +++ b/src/objects/map.cc @@ -1179,6 +1179,7 @@ Handle Map::RawCopy(Isolate* isolate, Handle src_handle, @@ -489,7 +501,7 @@ index c065533248..c160854bec 100644 void EnsureInitialMap(Isolate* isolate, Handle map) { #ifdef DEBUG diff --git a/src/objects/map.h b/src/objects/map.h -index 6914a51150..b16a0a7cc9 100644 +index 4f2462c715..cd6cec6b2c 100644 --- a/src/objects/map.h +++ b/src/objects/map.h @@ -319,6 +319,11 @@ class Map : public TorqueGeneratedMap { @@ -504,7 +516,7 @@ index 6914a51150..b16a0a7cc9 100644 // Inobject slack tracking is the way to reclaim unused inobject space. // // The instance size is initially determined by adding some slack to -@@ -657,6 +662,8 @@ class Map : public TorqueGeneratedMap { +@@ -662,6 +667,8 @@ class Map : public TorqueGeneratedMap { DECL_BOOLEAN_ACCESSORS(is_immutable_proto) @@ -513,7 +525,7 @@ index 6914a51150..b16a0a7cc9 100644 // This counter is used for in-object slack tracking. // The in-object slack tracking is considered enabled when the counter is // non zero. The counter only has a valid count for initial maps. For -@@ -825,6 +832,8 @@ class Map : public TorqueGeneratedMap { +@@ -830,6 +837,8 @@ class Map : public TorqueGeneratedMap { static Handle TransitionToImmutableProto(Isolate* isolate, Handle map); @@ -549,10 +561,10 @@ index a8b367ff82..98637087ee 100644 prototype: JSReceiver|Null; constructor_or_back_pointer_or_native_context: Object; diff --git a/src/objects/objects.cc b/src/objects/objects.cc -index 05a8c6f600..ccd12f4578 100644 +index b5f0260f4b..4d41e4f62f 100644 --- a/src/objects/objects.cc +++ b/src/objects/objects.cc -@@ -889,6 +889,12 @@ Handle Object::TypeOf(Isolate* isolate, Handle object) { +@@ -882,6 +882,12 @@ Handle Object::TypeOf(Isolate* isolate, Handle object) { if (object->IsString()) return isolate->factory()->string_string(); if (object->IsSymbol()) return isolate->factory()->symbol_string(); if (object->IsBigInt()) return isolate->factory()->bigint_string(); diff --git a/V8Update.cmd b/V8Update.cmd index d1a2430a0..a15c6b257 100644 --- a/V8Update.cmd +++ b/V8Update.cmd @@ -1,7 +1,7 @@ @echo off setlocal -set v8testedrev=10.9.194.10 +set v8testedrev=11.1.277.14 set v8testedcommit= if not "%v8testedcommit%"=="" goto ProcessArgs @@ -221,9 +221,9 @@ setlocal call "%VSINSTALLDIR%\VC\Auxiliary\Build\vcvarsall" x64_x86 >nul if errorlevel 1 goto Build32BitError echo Building V8 (x86) ... -call gn gen out\Win32\%mode% --args="enable_precompiled_headers=false fatal_linker_warnings=false is_component_build=false is_debug=%isdebug% target_cpu=\"x86\" use_custom_libcxx=false use_thin_lto=false v8_embedder_string=\"-ClearScript\" v8_enable_pointer_compression=false v8_enable_31bit_smis_on_64bit_arch=false v8_monolithic=true v8_target_cpu=\"x86\" v8_use_external_startup_data=false" >gn-Win32-%mode%.log +call gn gen out\Win32\%mode% --args="fatal_linker_warnings=false is_component_build=false is_debug=%isdebug% target_cpu=\"x86\" use_custom_libcxx=false use_thin_lto=false v8_embedder_string=\"-ClearScript\" v8_enable_pointer_compression=false v8_enable_31bit_smis_on_64bit_arch=false v8_monolithic=true v8_target_cpu=\"x86\" v8_use_external_startup_data=false" >gn-Win32-%mode%.log if errorlevel 1 goto Build32BitError -ninja -C out\Win32\%mode% obj\v8_monolith.lib >build-Win32-%mode%.log +call ninja -C out\Win32\%mode% obj\v8_monolith.lib >build-Win32-%mode%.log if errorlevel 1 goto Build32BitError endlocal cd .. @@ -239,9 +239,9 @@ setlocal call "%VSINSTALLDIR%\VC\Auxiliary\Build\vcvarsall" x64 >nul if errorlevel 1 goto Build64BitError echo Building V8 (x64) ... -call gn gen out\x64\%mode% --args="enable_precompiled_headers=false fatal_linker_warnings=false is_component_build=false is_debug=%isdebug% target_cpu=\"x64\" use_custom_libcxx=false use_thin_lto=false v8_embedder_string=\"-ClearScript\" v8_enable_pointer_compression=false v8_enable_31bit_smis_on_64bit_arch=false v8_monolithic=true v8_target_cpu=\"x64\" v8_use_external_startup_data=false" >gn-x64-%mode%.log +call gn gen out\x64\%mode% --args="fatal_linker_warnings=false is_component_build=false is_debug=%isdebug% target_cpu=\"x64\" use_custom_libcxx=false use_thin_lto=false v8_embedder_string=\"-ClearScript\" v8_enable_pointer_compression=false v8_enable_31bit_smis_on_64bit_arch=false v8_monolithic=true v8_target_cpu=\"x64\" v8_use_external_startup_data=false" >gn-x64-%mode%.log if errorlevel 1 goto Build64BitError -ninja -C out\x64\%mode% obj\v8_monolith.lib >build-x64-%mode%.log +call ninja -C out\x64\%mode% obj\v8_monolith.lib >build-x64-%mode%.log if errorlevel 1 goto Build64BitError endlocal cd .. @@ -257,9 +257,9 @@ setlocal call "%VSINSTALLDIR%\VC\Auxiliary\Build\vcvarsall" x64_arm64 >nul if errorlevel 1 goto BuildArm64BitError echo Building V8 (arm64) ... -call gn gen out\arm64\%mode% --args="enable_precompiled_headers=false fatal_linker_warnings=false is_component_build=false is_debug=%isdebug% target_cpu=\"arm64\" use_custom_libcxx=false use_thin_lto=false v8_embedder_string=\"-ClearScript\" v8_enable_pointer_compression=false v8_enable_31bit_smis_on_64bit_arch=false v8_monolithic=true v8_target_cpu=\"arm64\" v8_use_external_startup_data=false" >gn-arm64-%mode%.log +call gn gen out\arm64\%mode% --args="fatal_linker_warnings=false is_component_build=false is_debug=%isdebug% target_cpu=\"arm64\" use_custom_libcxx=false use_thin_lto=false v8_embedder_string=\"-ClearScript\" v8_enable_pointer_compression=false v8_enable_31bit_smis_on_64bit_arch=false v8_monolithic=true v8_target_cpu=\"arm64\" v8_use_external_startup_data=false" >gn-arm64-%mode%.log if errorlevel 1 goto BuildArm64BitError -ninja -C out\arm64\%mode% obj\v8_monolith.lib >build-arm64-%mode%.log +call ninja -C out\arm64\%mode% obj\v8_monolith.lib >build-arm64-%mode%.log if errorlevel 1 goto BuildArm64BitError endlocal cd .. diff --git a/Version.tt b/Version.tt index 8c87e4ff9..4835bad45 100644 --- a/Version.tt +++ b/Version.tt @@ -1,5 +1,5 @@ <# - var version = new Version(7, 3, 7); + var version = new Version(7, 4, 0); var versionSuffix = string.Empty; new Random(versionSuffix.Length); // suppress "versionSuffix not used" warning #> diff --git a/docs/Reference/Working/ClearScript.Windows.xml b/docs/Reference/Working/ClearScript.Windows.xml new file mode 100644 index 000000000..51fac8506 --- /dev/null +++ b/docs/Reference/Working/ClearScript.Windows.xml @@ -0,0 +1,194 @@ + + + + ClearScript.Windows + + + + + Provides the base implementation for all Windows Script engines in a desktop environment. + + + Each Windows Script engine instance in a desktop environment has thread affinity and is + bound to a during instantiation. + Attempting to execute script code on a different thread results in an exception. Script + delegates and event handlers are marshaled synchronously onto the correct thread. + + + + + Initializes a new Windows Script engine instance with the specified list of supported file name extensions. + + The programmatic identifier (ProgID) of the Windows Script engine class. + A name to associate with the instance. Currently this name is used only as a label in presentation contexts such as debugger user interfaces. + A semicolon-delimited list of supported file name extensions. + A value that selects options for the operation. + + The argument can be a class identifier (CLSID) in standard + GUID format with braces (e.g., "{F414C260-6AC0-11CF-B6D1-00AA00BBBB58}"). + + + + + Gets the associated with the current script engine. + + + + + Represents an instance of the JScript engine in a desktop environment. + + + Each Windows Script engine instance in a desktop environment has thread affinity and is + bound to a during instantiation. + Attempting to execute script code on a different thread results in an exception. Script + delegates and event handlers are marshaled synchronously onto the correct thread. + + + + + Initializes a new JScript engine instance. + + + + + Initializes a new JScript engine instance with the specified name. + + A name to associate with the instance. Currently this name is used only as a label in presentation contexts such as debugger user interfaces. + + + + Initializes a new JScript engine instance with the specified options. + + A value that selects options for the operation. + + + + Initializes a new JScript engine instance with the specified name and options. + + A name to associate with the instance. Currently this name is used only as a label in presentation contexts such as debugger user interfaces. + A value that selects options for the operation. + + + + Initializes a new JScript engine instance with the specified programmatic + identifier, name, list of supported file name extensions, and options. + + The programmatic identifier (ProgID) of the JScript engine class. + A name to associate with the instance. Currently this name is used only as a label in presentation contexts such as debugger user interfaces. + A semicolon-delimited list of supported file name extensions. + A value that selects options for the operation. + + The argument can be a class identifier (CLSID) in standard + GUID format with braces (e.g., "{F414C260-6AC0-11CF-B6D1-00AA00BBBB58}"). + + + + + Gets the script engine's recommended file name extension for script files. + + + instances return "js" for this property. + + + + + Executes script code as a command. + + The script command to execute. + The command output. + + + This method is similar to but optimized for + command consoles. The specified command must be limited to a single expression or + statement. Script engines can override this method to customize command execution as + well as the process of converting the result to a string for console output. + + + The version of this method attempts to use + toString + to convert the return value. + + + + + + Represents an instance of the VBScript engine in a desktop environment. + + + Each Windows Script engine instance in a desktop environment has thread affinity and is + bound to a during instantiation. + Attempting to execute script code on a different thread results in an exception. Script + delegates and event handlers are marshaled synchronously onto the correct thread. + + + + + Initializes a new VBScript engine instance. + + + + + Initializes a new VBScript engine instance with the specified name. + + A name to associate with the instance. Currently this name is used only as a label in presentation contexts such as debugger user interfaces. + + + + Initializes a new VBScript engine instance with the specified options. + + A value that selects options for the operation. + + + + Initializes a new VBScript engine instance with the specified name and options. + + A name to associate with the instance. Currently this name is used only as a label in presentation contexts such as debugger user interfaces. + A value that selects options for the operation. + + + + Initializes a new VBScript engine instance with the specified programmatic + identifier, name, list of supported file name extensions, and options. + + The programmatic identifier (ProgID) of the VBScript engine class. + A name to associate with the instance. Currently this name is used only as a label in presentation contexts such as debugger user interfaces. + A semicolon-delimited list of supported file name extensions. + A value that selects options for the operation. + + The argument can be a class identifier (CLSID) in standard + GUID format with braces (e.g., "{F414C260-6AC0-11CF-B6D1-00AA00BBBB58}"). + + + + + Gets the script engine's recommended file name extension for script files. + + + instances return "vbs" for this property. + + + + + Executes script code as a command. + + The script command to execute. + The command output. + + + This method is similar to but optimized for + command consoles. The specified command must be limited to a single expression or + statement. Script engines can override this method to customize command execution as + well as the process of converting the result to a string for console output. + + + The version of this method supports both expressions and + statements. If the specified command begins with "eval " (not case-sensitive), the + engine executes the remainder as an expression and attempts to use + CStr + to convert the result value. Otherwise, it executes the command as a statement and does + not return a value. + + + + + diff --git a/docs/Reference/fti/FTI_100.json b/docs/Reference/fti/FTI_100.json index d1729b1fa..d23244092 100644 --- a/docs/Reference/fti/FTI_100.json +++ b/docs/Reference/fti/FTI_100.json @@ -1 +1 @@ -{"destinationindex":[16121861,17301509,18808837],"disposable":[8192003],"disablebackgroundwork":[56557569],"dimensions":[10289153],"dialogs":[5308417,32243713,33488898,40501249,42532865,44236801,44630017,47185921,48824321,50331649,50855937,52428801,56492033,57344001,57868289,57999363,58261505,58392577,58458113],"defaults":[7733249,9175041,9764865,10289153,10682369,11206657,34537473,52166657],"default":[1,1179649,1245186,1310721,1376257,1441793,1507330,1638401,1703937,1769473,1835009,1900545,2097153,2359297,2424833,2686977,2818049,2883586,3014657,3080193,3211266,3276801,3342337,3473409,3670017,3735553,3801091,3866625,3932161,3997697,4063233,4128769,4194305,4325377,4456449,4521985,4587521,4653057,4718593,4784129,4915203,4980737,5046275,5242883,5505027,5570563,5832707,6094851,6553603,6750209,6946817,11141121,12451841,12713985,15925249,16384001,18284545,19464193,20054017,20185089,22151169,31588354,33554434,34537475,35389442,35520514,35848194,36241410,38141953,38207489,39256065,39714817,40042497,40501249,41746433,42401794,42532865,42663937,42729473,43778049,44105730,44236801,44367873,44433409,44498950,44761089,44957697,45219842,45809666,45875201,46333953,46399490,46530562,46989314,47054849,47185921,47710209,47775745,47841282,48103425,48168961,48824321,48889857,49086465,49348609,49414145,49545217,49610753,49872897,49938433,50331649,50659330,50724866,50790403,51118081,51380226,51576835,51773441,51838977,52035586,52101121,52166660,52232193,52297729,52363265,52559873,53018625,53280769,53411841,53477377,53805057,53936129,54001665,54067201,54263812,54329345,54394881,54460417,54919169,55050241,55508993,55574529,55705603,55771137,55836673,55902209,55967748,56164353,56295425,56360961,56426497,56492036,56557569,56623105,56688641,56754180,56819713,56885249,56950787,57016321,57212929,57344004,57475076,57540609,57671681,57737217,57868292,58064897,58261508,58327041,58392580,58458116],"date":[52625410,54919170],"derived":[1245187,2097155,2359299,2424841,2883587,3080195,3866633,4325379,4456449,35848193,36569089,37748737,40828929,41877505,42401793,52166660,53280777,53805060,55836676,55967748,56164361,56426500,57737217,58064900],"directory":[36175873,36700161,38010881,49217537,54984705,55902209],"documentsettings":[1441794,1507329,5373957,5439489,5636101,6029313,6160390,6815745,6946822,7536641,34537473,36175874,37945345,38141953,38207489,40042497,40501249,42532865,44236801,44826625,45940737,46661633,47185921,47316993,47972353,48300043,48693249,48824321,49217537,50331649,50790401,51314702,53084171,54263809,55902216,56492033,56950785,57016321,57344001,57475073,57868289,58261505,58392577,58458113],"documentname":[13893637,14024709,14680069,15073285,22413318,23265286,24379397,25362437,25493509,26345478,26542085,26607621,27262982,27394053],"defaultdocumentloader":[1507330,4587521,4653057,4784129,6946817,11141125,34537473,41746434,50790408,51576833,55705601],"dispatches":[2424833,3866625,53280769,56164353],"distinct":[52494337,54919169],"disablesourcemanagement":[52625409],"documentflags":[34537473,41680903,54788100],"disablelistindextyperestriction":[38141953,38207489,40042497,40501249,42532865,44236801,46858244,47185921,48824321,50003974,50331649,54263809,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"demand":[51642370],"dynamicmetaobject":[2424834,3866626,53280770,56164354],"double":[3014657,4980737,10813447,14024705,22413313,51642374,52101121,54132737,54329345],"disconnects":[1638401,1769473,5963777,56360961,56623105],"directaccess":[54657025],"dictt":[8585218,11206658],"documentinfo":[1572866,1507329,3211266,3801090,4194307,4849670,5046274,5177350,5242882,5505026,5570562,5636101,5832706,6094853,6160390,6553602,6946822,15728650,15859722,17629197,23330826,24051725,25100298,25296901,27328523,28246027,28966923,30081035,32702465,33685507,33816577,34537473,34930690,34996225,35323905,35782657,36306945,36503553,37224454,37355525,37683203,39452673,40763393,41680897,42663937,43319297,43909121,46006282,46596100,50593799,50790401,52232193,54263813,54525957,55246858,55443461,56492034,56950786,57016323,57344002,57475074,57868290,58261506,58392578,58458114],"drives":[7733250],"details":[14090241,16646145,26411009,27066369,39780353,40697857,53149697],"dispatcher":[47185922,48824322,50331650,53739532,58261507,58392579,58458115],"debugport":[22937605,24444933,25231365,25821189,26083333,26935301,27656197,27852805,27983877,29097989],"dummy":[49610753,52297729,55508993],"dynamically":[38141953,38207489,40042497,40501249,42532865,44236801,45088770,47185921,48824321,50331649,50528258,51511298,53673986,54263809,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"direct":[2228226,2293762,2555906,2752514,2949122,14548994,15400962,15597570,16318466,33095683,33619971,52822018,54132738,54657025,57409538,57606146,57802754],"downloadstring":[10682369],"download":[10682369],"dimension":[8454145,9109505],"decrement":[2424833,3866625,53280769,56164353],"destination":[16121862,17104897,17301510,18808838,18874369,19988481,21823489],"describing":[42139649,43581441,55771137],"dimensional":[14090241,16646145],"discardcacheddocuments":[1507330,1703937,4587525,6356997,50790402,55705601],"document":[1310721,1376259,1441799,1507334,1572865,1703941,2818049,3211278,3801102,4194319,4587521,4653082,4784139,4849667,5046286,5111819,5177347,5242894,5373953,5439499,5505038,5570574,5636114,5701658,5767174,5832718,6029319,6094877,6160403,6225921,6356993,6553614,6815765,6946835,7536649,10682369,11141121,12845058,13172738,13434884,13893638,13959174,14024710,14680068,14876680,15073284,15728643,15859715,16449540,17235974,17629187,18087944,18415620,19333126,19595268,20447240,21168130,22020103,22413318,22806535,23265284,23330819,23789573,23986182,24051715,24117251,24379394,24641541,24772613,24838152,24969221,25100291,25296898,25362434,25427975,25493506,25559042,25624579,25755651,25952261,26279941,26345478,26542082,26607618,26673155,26738691,27262980,27328515,27394050,27787267,28246019,28377095,28966915,29491207,30081027,30801927,32702468,33226756,33685510,33816580,34144266,34209796,34340867,34406410,34537484,34930692,34996228,35323908,35454978,35520515,35586049,35651588,35782660,36175877,36306948,36372483,36503554,36765698,36831236,37224451,37355523,37683206,37945352,38141953,38207489,39452673,40042497,40501249,40763394,41680898,41746434,42467334,42532865,42663939,42926085,43319298,43581442,43909121,44236801,44302337,44498946,44826625,45023233,45219844,45940738,46006274,46596097,46661634,47185921,47316993,47382529,47906817,47972354,48300034,48693250,48824321,49217537,49479682,49741827,50069505,50331649,50593794,50790407,51314690,51576836,52232194,52494340,52625409,53018636,53084162,53477380,54001668,54067213,54263838,54525956,54788100,55246855,55377923,55443460,55705608,55771138,55902221,56492047,56950799,57016336,57344015,57475087,57868303,58261519,58392591,58458127],"documentloadcallback":[34537473,47972359,55443460],"dump":[10682369],"delegat":[15400962,16318466,31195138,37027842],"displaying":[44630017,52428801,57999361],"defaultarg":[7733249,9175041,9764865,10289153,10682369,11206657],"debugger":[6094849,12845057,13172737,13893634,14024706,14680066,15073282,19202049,20905985,21168129,22413314,22937602,23265282,23461889,23527425,23724033,24182785,24313858,24379393,24444930,25231363,25362433,25493505,25559041,25821185,26083330,26345474,26542081,26607617,26935297,27197441,27262978,27394049,27656193,27721729,27852802,27983874,29097985,29687809,29818881,30146561,30343170,30408705,30474241,30670849,30736385,30932993,31260673,31391745,31522817,31784961,31981569,32309249,32571393,32768001,32899073,33423361,54263809,54788099,54919169],"depends":[46858241,50003969],"disabletyperestriction":[38141953,38207489,40042497,40501249,42532865,44236801,46858241,47185921,47841284,48824321,50003969,50331649,50724870,54263809,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"delegates":[34537473,37814274,38141953,38207489,40042497,40501249,40894466,42532865,44236801,47185921,48824321,50331649,54263810,56492033,56950785,57344001,57475073,57868289,58261506,58392578,58458114],"distinction":[12845057,13172737,13434881,13893633,13959169,14024705,14680065,14876673,15073281,15728641,15859713,16449537,17235969,17629185,18087937,18415617,19333121,19595265,20447233,21168129,22413313,23265281,23986177,24051713,24838145,25559041,26345473,27262977],"declared":[47841281,50724865,52625409,58195969],"documentcategory":[1310722,1441794,1507329,3211268,3801092,4194310,5046276,5242884,5439493,5505028,5570564,5636101,5832708,6094858,6160390,6553604,6946822,7536645,13959173,14876677,17235973,18087941,19333127,20447239,22020101,22806533,23789573,23986183,24641541,24772613,24838151,24969221,25427973,25952261,26279941,28377093,29491205,30801925,33226754,34144262,34209794,34340866,34406406,34537473,35651586,36765703,36831234,37945346,39452679,44302342,45023238,50790401,52494337,54001670,54263818,55902210,56492036,56950788,57016326,57344004,57475076,57868292,58261508,58392580,58458116],"del":[3014657,4980737,7077889,9830406,52101121,54329345],"detailed":[39387137,39780353,40173569,40697857,40960001,53149697,57081857,57737217,57933825],"delay":[47448065],"desktop":[32243716,53870593,56492033,57344001,57868289,58261506,58392578,58458114],"debugging":[22937602,24313858,25231362,27721730,30212097,42074113,47644673,52625410,53542913,54788097,54919170,57278466],"disconnect":[1638401,1769473,5963781,56360961,56623105],"debug":[4194306,22937601,24444929,25231361,25821185,26083329,26935297,27656193,27852801,27983873,29097985,35061762,36110340,36896772,54263812,57016326],"data":[458753,2621441,4194316,4456449,6094860,17104899,18874370,19988483,21823490,22020100,22740996,22806532,23592964,23789572,24772612,24903684,24969220,25362436,25755652,25952260,26542084,26607620,26673156,26738692,27328516,27394052,27787268,28246020,28966916,29491204,30081028,30801924,31850500,33685510,34144262,34406406,36044801,36372481,37683206,37879809,38010881,39387137,48103425,51118081,54263820,54460417,54722566,57016332,57737220,57933826],"defaultaccess":[38141953,38207489,40042497,40501249,42532865,44105732,44236801,46989318,47185921,48824321,50331649,54263809,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"documents":[1507329,1703937,4587522,5439490,6029314,6356994,6815746,7536642,36175873,45219841,49217537,50790401,51576833,52494337,53477379,55705601,55902209],"dynamicobject":[2424855,3866647,34537473,53280796,56164381],"deleteproperty":[2162690,2228226,2293762,2555906,2752514,2949122,3604482,3866626,4259842,14221317,14811141,20643846,24248326,34799618,39059458,51249154,52822018,53280770,54132738,57147394,57409538,57606146,57802754,58130434],"documen":[5439489,6029313,6815745,7536641,25296897,34930691,36372481,39452673,42467329,42663937,42926081,43909121,50069505,53018625,54067201,55246851],"declare":[41943041,43843585],"dictionary":[8585221,9764868,11206658],"disablefloatnarrowing":[38141953,38207489,40042497,40501249,42532865,44236801,46333956,47185921,48824321,49348614,50331649,54263809,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"directly":[2424833,3866625,8585217,53280769,56164353],"documentloader":[1507333,1703938,5111809,5636097,5701633,6160385,6225925,6356993,34537474,35520514,41746433,44498951,45219841,48693255,50790412,55705608],"discarded":[12845057,13172737,14680065,15073281,21168129,23265281,25559041,27262977,54788097],"discard":[4587521,6356993,13893639,14024711,22413320,26345480],"dynamichostobject":[2424834,5898241,6488069,34537473,56164360],"disableglobalmembers":[54919169],"deprecated":[39256065],"disableextensionmethods":[38141953,38207489,40042497,40501249,42532865,44236801,45613060,47185921,48496646,48824321,50331649,54263809,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"defined":[2162689,2228225,2293761,2555905,2752513,2949121,3211265,3604481,3801089,3866625,4194305,4259841,4980737,5046273,5242881,5505025,5570561,5832705,6094849,6291457,6553601,6881281,9175041,12058625,14024705,15466497,17760257,18677761,21364737,22413313,25690113,27131905,30212097,34471937,34734081,39387137,39649281,51249153,52101121,52822017,53280769,54132737,54263809,55574529,56492033,56950785,57016321,57147393,57344001,57409537,57475073,57606145,57737217,57802753,57868289,58130433,58261505,58392577,58458113],"defines":[7929857,8192001,31326215,32243713,34537481,35586054,52625409,52756481,52822017,53477377,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55115777,55181313,55312385,55377921,56229889,56557569,56885249,57081857,57278465,57606145,57671681,58195969],"discarding":[3211266,3801090,5046274,5242882,5505026,5570562,5832706,6094850,6553602,13893634,14024706,22413314,26345474,32702465,33816577,34996225,35323905,35782657,36306945,54263810,56492034,56950786,57344002,57475074,57868290,58261506,58392578,58458114],"delegate":[2228226,2293762,2424833,2555906,2752514,2949122,3014660,3538946,3866625,3997698,4980739,8060933,9043973,9830405,12517381,14548997,15400965,15597573,16318469,30539778,31195138,32178178,33095682,33619970,34537473,35979266,37027842,37486594,38600706,42729473,44761089,49545217,52101123,52822018,53280769,54132738,54198277,54329348,54525957,55443461,55640066,56164353,56623105,56688642,57409538,57606146,57802754],"delegating":[9043969,9830401,12517377],"disabledynamicbinding":[38141953,38207489,40042497,40501249,42532865,44236801,44957700,47185921,47710214,48824321,48889857,50331649,51773441,54263809,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"dynamic":[2424846,3014667,3866637,4980747,5898241,6488065,7208963,7471105,7798787,7995395,8257538,8323075,8716291,8978435,9371651,9633794,9961474,10158084,14024705,14090241,16646145,22413313,32636930,34078721,34668546,35192834,38141953,38207489,39387137,40042497,40173569,40501249,40960001,41091073,42532865,42991617,43057153,43122689,44236801,44957699,47185921,47710211,48562177,48824321,50266113,50331649,51052545,52101131,53280782,54263809,54329355,54657025,54919169,56098817,56164367,56492033,56950785,57081857,57278465,57344001,57475073,57737217,57868289,57933825,58261505,58392577,58458113],"display":[32243713,40501249,42532865,44236801,47185921,48824321,50331649,50855937,56492033,57344001,57868289,57999361,58261505,58392577,58458113],"delete":[2424834,3866626,14221313,14811137,20643841,24248321,34799617,39059457,53280770,56164354],"documentcontextcallback":[1441793,1507329,3211266,3801090,4194307,5046274,5242882,5439493,5505026,5570562,5636101,5832706,6094853,6160390,6553602,6946822,14876677,18087941,20447239,22020101,22806533,24838151,25427973,28377093,29491205,30801925,33226753,34144259,34209793,34406403,34537473,35651585,36831233,37945345,40763399,46661639,50790401,54263813,54525956,55902209,56492034,56950786,57016323,57344002,57475074,57868290,58261506,58392578,58458114],"delivered":[49872897,53411841],"different":[4653057,5701633,22937601,24313857,25231361,27721729,44433409,58261505,58392577,58458113],"delimited":[19202049,31784961,31981569,32571393,32768001,32899073,33423361,36175874,36700161,38010881,47316993,49217537,54984705,55902210],"deeply":[46137345],"differ":[54919169],"disabled":[27918337,39256065,47054849,51838977,52625409,54919169,56557570],"description":[65537,131073,196609,262145,327681,393217,458753,524289,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4456449,4521985,4980737,5046273,5242881,5308417,5505025,5570561,5832705,6094849,6553601,6750209,9764865,30998529,31326211,31457281,31588353,31653889,32047105,32112641,32178177,32243715,32374785,32440321,32636929,32702465,32833538,32964609,33030145,33095681,33161217,33226753,33554433,33619969,33685505,33751041,33816577,34013185,34078721,34144257,34209793,34340865,34406401,34471937,34537477,34603009,34668545,34734081,34799617,34865153,34996225,34930689,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586051,35651585,35717121,35782657,35848193,35913729,36044801,36110337,36175873,36241409,36306945,36438017,36503553,36569089,36634625,36700161,36831233,36896769,36962305,37093377,37158913,37289985,37355521,37421057,37486593,37617665,37683201,37748737,37879809,37945345,38076417,38141953,38207489,38338561,38535169,38600705,38666241,38731777,38862849,38928385,39059457,39124993,39321601,39387137,39518209,39649281,39911425,40042497,40108033,40173569,40304641,40501249,40632321,40828929,40960001,41025537,41418753,41615361,41746433,41877505,42336257,42401793,42467329,42532865,42860545,42926081,43253761,43581441,43974657,44040193,44236801,44564481,44630017,44826625,45285377,45481985,47185921,48824321,49414146,49545217,50331649,50790403,51249154,52101122,52166659,52232194,52625409,52756481,52822018,53018627,53280770,53477377,53805059,53870593,54001666,54067203,54132738,54263811,54329346,54460418,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050242,55115777,55181313,55246851,55312385,55377921,55508994,55574532,55640065,55705603,55771138,55836675,55902211,55967747,56033282,56098818,56164354,56229889,56295426,56360961,56426499,56492035,56557569,56623105,56688642,56754180,56819713,56885249,56950786,57016323,57081857,57147394,57212931,57278465,57344003,57409538,57475075,57540610,57606146,57671681,57737220,57802754,57868291,57933827,57999362,58064899,58130434,58195969,58261507,58327042,58392579,58458115],"disable":[22937601,24313857,25231361,27721729,44957697,45613057,46333953,46858241,47710209,47841281,48496641,49348609,50003969,50724865,57671681],"disposing":[18481160,28114952,29360136],"downloaded":[53477377],"disablejitcompilation":[56557569],"disposes":[8192001],"describes":[39387137,57737217],"determine":[43384833,45547521],"dispose":[2162689,2228225,2293761,2555905,2752513,2949121,3211265,3604481,3801090,3866625,4063233,4194305,4259841,5046274,5242883,5505026,5570562,5832706,6094851,6553602,8192002,10682369,17760264,18481163,21364742,25690119,28114955,28508169,29360139,34471939,34734083,39649283,51249153,52232193,52822017,53280769,54132737,54263811,56492034,56950785,57016321,57147393,57344002,57409537,57475074,57606145,57802753,57868291,58130433,58261506,58392578,58458114],"determines":[1179649,1310721,1376257,1441793,1507329,1638401,1703937,1769473,1835009,1900545,2424834,2686978,2818049,3014661,3145730,3276801,3342337,3473409,3538945,3670017,3735553,3801089,3866625,3932162,3997698,4063233,4128769,4194305,4456449,4521985,4980741,5046274,5242882,5505026,5570562,5832706,5898241,6094849,6553602,6750209,7143425,7929858,8388609,8781825,16252929,29949953,32505857,33161218,33882113,49414145,49545217,50790401,52101125,52232193,53018625,53280769,54001665,54067201,54263809,54329349,54460417,55050241,55508993,55574530,55640065,55705601,55771137,55902209,56098818,56164354,56295425,56360961,56492034,56623105,56688642,56754178,56819713,57016321,57212929,57344002,57475073,57540609,57737217,57868290,58261506,58327041,58392578,58458114],"documentaccessflags":[34537473,45940743,53477380],"discards":[1507329,1703937,4587521,6356993,50790401,55705601],"defaultscriptusageattribute":[1245186,4718598,4915206,34537473,35848193,36241413,42401794,44105729,46989313,52035585,52166666,55967750],"datetimeoffset":[55836673],"datetime":[52625409,54919170,55836673],"donotenablevtablepatching":[52625409],"decimal":[3014657,4980737,10092551,52101121,52625409,54329345],"dataview":[35586049,54853633,55115778,57802753],"disables":[5308417,33488897,36700161,37814273,38141962,38207501,38797313,38862849,39256065,39714817,40042506,40501258,40894465,41811969,42074113,42532874,44236810,44826626,44957697,45613057,45875201,46333953,46858241,47185930,47448065,47644673,47710209,47841281,48496641,48824330,48889857,49348609,49872897,50003969,50331658,50724865,51773441,53411841,53542913,53936129,54263821,54394881,54984705,55181313,56492042,56950794,57016322,57344010,57475082,57868298,57999361,58261514,58392586,58458122],"demonstrates":[7405569,9043969,9764865,9830401,10682369,12517377],"dll":[655361,720897,786433,851969,917505,983041,1048577,4390913,4587521,4653057,4718593,4784129,4849665,4915201,5111809,5177345,5373953,5439489,5636097,5701633,5767169,5898241,5963777,6029313,6160385,6225921,6291457,6356993,6422529,6488065,6619137,6684673,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17956865,17891329,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18939905,18874369,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,31064065,31129601,31195137,31260673,31391745,31522817,31719425,31784961,31850497,31916033,31981569,32309249,32505857,32571393,32768001,32899073,33292289,33357825,33423361,33488897,33882113,33947649,34275329,35979265,36372481,36765697,37027841,37224449,37552129,37814273,38010881,38273025,38404097,38469633,38797313,38993921,39190529,39256065,39452673,39583745,39714817,39780353,39845889,39976961,40239105,40370177,40435713,40566785,40697857,40763393,40894465,41091073,41156609,41222145,41353217,41484289,41549825,41680897,41811969,41943041,42008577,42074113,42139649,42205185,42270721,42598401,42663937,42729473,42795009,42991617,43057153,43122689,43188225,43319297,43384833,43450369,43515905,43646977,43712513,43778049,43843585,43909121,44105729,44171265,44302337,44367873,44433409,44498945,44695553,44761089,44892161,44957697,45023233,45088769,45154305,45219841,45350913,45416449,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113],"dict":[8585218,9764868,11206660]} \ No newline at end of file +{"documentflags":[36372487,50921476,55771137],"documentname":[16121861,16384005,16842757,17170437,23724038,24051718,24576006,26673157,27918341,28835845,29884421,31129605,32309253,52690950],"dictionary":[6815746,8978436,9043973],"differ":[50790401],"dump":[10354689],"donotenablevtablepatching":[50659329],"describing":[35258369,43515905,53477377],"data":[65537,2555905,4718593,4849676,6684684,17104898,18219011,20250627,22085634,22872068,23658500,23920644,24313860,25165828,25362436,25624580,26083332,26476548,26607620,27131908,27459588,27918340,28049412,28180484,28704772,28835844,29163524,29425668,30539780,31129604,31653892,31850497,32309252,32702468,33292289,34930689,38666241,40108033,40173569,44564481,50331649,50724870,51970060,55574534,56426502,57802758,58064902,58458124,58720260,58785794],"documentcategory":[1245186,1441793,1572866,3145732,4259844,4849670,5373958,5505029,5636102,6029316,6225925,6291460,6356996,6422532,6488069,6684682,8781828,9306116,13434885,13500421,14286853,14548997,20971527,21102599,21889031,22020103,22413317,23134213,24313861,25100293,25362437,25886725,26476549,27131909,27459589,28180485,29425669,30539781,31326210,32440322,32964610,33357826,34996226,36110337,36241415,36503559,40239110,40828934,48824322,49020929,50135046,51970054,54001666,54329348,55771137,56164356,56426502,57737220,57999364,58064902,58458122,58523652,58589188,58982404,59179012],"discarded":[15073281,15204353,16842753,17170433,22740993,22806529,24576001,50921473,52690945],"deleteproperty":[2031618,2228226,2293762,2359298,2752514,2818050,3211266,4128770,4784130,13762565,14352389,19726342,24117254,31391746,49152002,49676290,50200578,51183618,52756482,52887554,57606146,58130434,58327042,59047938],"detailed":[34930689,35454977,35717121,37224449,41156609,44630017,57016321,58720257,58785793],"debugport":[24641541,24707077,24838149,26279941,26345477,26738693,27197445,27852805,27983877,29294597],"dimensions":[5898241],"defined":[2031617,2228225,2293761,2359297,2752513,2818049,3145729,3211265,3604481,4128769,4259841,4653057,4784129,4849665,6029313,6291457,6356993,6422529,6619137,6684673,7012353,7471105,8781825,9306113,16384001,17563649,19333121,19988481,24051713,24379393,27656193,28246017,31981569,34930689,49152001,49545217,49676289,50200577,51183617,51970049,52559873,52756481,54329345,56164353,56492033,57147393,57606145,57737217,57999361,58130433,58261505,58327041,58458113,58523649,58589185,58720257,58982401,59047937,59179009],"defines":[7798785,8650753,48431105,49152001,49479681,49938433,50593793,50659329,50724865,50790401,50921473,50987009,51052545,51445761,51904513,52166657,52756481,53018625,53542913,54067201,54263809,55771145,55902209,56295430,56885255,57016321,57212929,58195969,58916865],"delay":[49807361],"directaccess":[50987009],"decrement":[2424833,4128769,50397185,59047937],"debugging":[23789570,24707074,26148866,27197442,39124993,43450369,45416449,50659330,50790402,50921473,54067202,56492033],"decimal":[3014657,3604481,11993095,50462721,50659329,52559873],"defaultarg":[5898241,6815745,7012353,8192001,8978433,10354689,27787265],"dummy":[41680897,43188225,53936129],"demand":[45023234],"downloaded":[49479681],"dispatches":[2424833,4128769,50397185,59047937],"distinct":[36110337,50790401],"debug":[4849666,24641537,24707073,24838145,26279937,26345473,26738689,27197441,27852801,27983873,29294593,51970054,55377924,56688642,57278468,58458116],"disablesourcemanagement":[50659329],"dataview":[50200577,51052545,53542914,56295425],"disabled":[18743297,41746433,47775745,49414145,49938434,50659329,50790401],"debugger":[6684673,15073281,15204353,16121858,16384002,16842754,17170434,18808833,19398657,22740993,22806529,23724034,23789569,24051714,24576002,24641537,24707074,24838146,25034753,25231361,25755649,25821185,26148866,26214401,26279938,26345474,26542081,26673153,26738690,26935298,27197443,27852801,27918337,27983873,28835841,28966913,29294593,29360129,29491201,29818881,29884417,29949953,30015489,30343169,30867457,31129601,31522817,32309249,32505857,50790401,50921475,52035585,52690946,52953089,53149697,53870593,53805057,54853633,55640065,58458113],"depends":[38207489,41287681],"downloadstring":[10354689],"documen":[5439489,5505025,5701633,6225921,21299201,34537473,34734081,35586051,36241409,37093377,38404097,38666241,43778049,48955393,49741825,51773443],"disposing":[18350088,25296904,55836680],"delegat":[13893634,17825794,29097986,54984706],"dispose":[2031617,2228225,2293761,2359297,2752513,2818049,3145729,3211265,3670017,4128769,4259842,4784129,4849665,6029314,6291458,6356994,6422530,6684675,8650754,8781827,9306114,10354689,18350091,19988486,24379400,25296907,26804233,27656199,31981571,49152001,49676289,50200577,51183617,51970049,52756481,54329346,55836683,56164353,56754177,57147395,57606145,57737219,57999362,58130433,58261507,58327041,58458115,58523650,58589186,58982402,59047937,59179010],"documentloadcallback":[38141959,52494340,55771137],"disablebackgroundwork":[49938433],"delimited":[19398657,29491201,30867457,31522817,32505857,33488897,36438018,37158913,37421057,40173569,48824322,51904513,52035585,53805057],"distinction":[12582913,12910593,13434881,13500417,14286849,14548993,15007745,15073281,15204353,16121857,16384001,16842753,17170433,17891329,18874369,19070977,19857409,20316161,20971521,21102593,21889025,22020097,22740993,22806529,23724033,24051713,24576001,52690945],"delegates":[34275329,35127297,36569089,36765697,36896769,37617665,38338561,39321601,39518210,41025537,42729474,54329345,55771137,56164353,57737217,57999361,58458114,58523649,58589186,58982402,59179010],"disableextensionmethods":[34275329,35127297,36569089,36765697,36896769,37617665,37683204,38338561,39321601,41025537,42598406,54329345,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"destinationindex":[14811141,14876677,18612229],"del":[3014657,3604481,7667718,7864321,50462721,52559873],"dimension":[7995393,8323073],"direct":[2228226,2293762,2359298,2818050,3211266,13893634,15400962,16908290,17825794,32899075,49152002,49676290,50200578,50987009,51249155,52756482,58130434],"documentinfo":[1376258,1441793,3145730,4259842,4849667,5111814,5308422,5373958,5636102,6029314,6291458,6356994,6422530,6488069,6684677,8781826,9306114,15007754,17891338,18874381,19070989,21299205,21954570,23658507,23920651,25624587,26607627,29622282,31064065,32571393,32636929,33161217,33423361,33816577,35192833,35586050,36241409,36372481,36962305,37093377,37814273,38404097,39387142,44302343,46530565,48889866,49020929,49283076,50528261,51773450,51970051,52494341,53608453,54329346,55574531,55771137,56164354,56754177,57737218,57802755,57999362,58458117,58523650,58589186,58982402,59179010],"dynamically":[34275329,35127297,36569089,36765697,36896769,37617665,38338561,39190530,39321601,41025537,43712514,47185922,49086466,54329345,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"description":[65537,131073,262145,327681,393217,524289,589825,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4718593,4784129,4849665,6029313,6291457,6356993,6422529,6684673,7077889,7143425,8781825,8978433,9306113,30081025,30146561,30212097,30277633,30408705,30605313,30670849,30736385,30801921,30932993,30998529,31064065,31195137,31260673,31326209,31391745,31457281,31588353,31719425,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32374785,32440321,32571393,32636929,32833537,32899073,32964609,33030145,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36438017,36569089,36700161,36765697,36896769,37617665,38338561,39321601,41025537,47644675,47972353,48103427,48168962,48431105,48562177,48824323,48955395,49020931,49152002,49217537,49479681,49545220,49676290,49741827,49872897,49938433,50135042,50200578,50266115,50331650,50397186,50462722,50593793,50659329,50724865,50790401,50921473,50987009,51052545,51118081,51183618,51249153,51445761,51576833,51707906,51773443,51838977,51904513,51970051,52166657,52232193,52363266,52428801,52559874,52756482,52822017,52887553,53018625,53084162,53215233,53280769,53411843,53477378,53542913,53608449,53739521,53936130,54001665,54067201,54132737,54263809,54329347,54460418,54525953,54657025,54788097,54919169,55050241,55246850,55312386,55377921,55443457,55574529,55705601,55771141,55902209,55967745,56033283,56098817,56164354,56295427,56360961,56426497,56557569,56688641,56754178,56885251,56950785,57016321,57147393,57212931,57278465,57344003,57409537,57475074,57540609,57606146,57671681,57737219,57802753,57868290,57933828,57999363,58064897,58130434,58261505,58195969,58327042,58392578,58458115,58523651,58589187,58654722,58720260,58785795,58851331,58916865,58982403,59047938,59113475,59179011],"disposes":[8650753],"dialogs":[4194305,35651585,36765697,36896769,37617665,38338561,39321601,41025537,48627713,50003969,52625410,54329345,57212929,57737217,57868291,57999361,58589185,58982401,59179009],"drives":[8192002],"demonstrates":[7667713,8257537,8388609,8978433,10223617,10354689],"declared":[38993921,42205185,50659329,58916865],"dynamic":[2424846,3014667,3604491,4128781,5767169,6881281,7602179,8519683,8585217,8847362,8912899,9109507,9175043,9568259,9633796,10027010,10616835,10944514,14090241,16384001,19660801,24051713,30081026,30146562,30408705,30605314,34275329,34930689,35127297,35454977,35717121,36569089,36765697,36896769,37552131,37617665,38338561,39321601,39452673,39845889,41025537,41811971,42795009,44236801,44761089,48234497,48758785,50397199,50462731,50790401,50987009,52363265,52559883,54067201,54329345,56164353,57016321,57737217,57999361,58458113,58523649,58589185,58720257,58785793,58982401,59047950,59179009],"date":[50659330,50790402],"deeply":[46399489],"desktop":[47972353,54329345,57212932,57737217,57999361,58589186,58982402,59179010],"disableglobalmembers":[50790401],"dynamichostobject":[2424834,5767173,6881281,50397192,55771137],"documentloader":[1441797,1507330,5242885,5570561,5636097,5963777,6488065,6553601,33619969,36044802,36306951,37027841,38797319,47644680,49020940,55771138],"dict":[6815748,8978436,9043970],"disconnect":[1638401,1703937,6094853,48562177,51118081],"directly":[2424833,4128769,9043969,50397185,59047937],"details":[14090241,19660801,22544385,23199745,37224449,41156609,44630017],"disconnects":[1638401,1703937,6094849,48562177,51118081],"defaultscriptusageattribute":[1310722,4915206,5177350,33947650,36634625,39911425,40960001,48103434,52822017,53215237,55771137,56033286],"declare":[37486593,43843585],"document":[1114115,1245185,1376257,1441798,1507333,1572871,3145742,3866625,4259854,4456449,4522010,4587531,4849679,4980737,5111811,5242881,5308419,5373971,5439495,5505033,5570586,5636115,5701653,5832705,5963777,6029326,6160390,6225931,6291470,6357006,6422542,6488082,6553611,6684701,8781838,9306126,10354689,12582916,12910596,13434886,13500422,14286856,14549000,15007747,15073282,15204354,16121862,16384006,16842756,17170436,17891331,18874371,19070979,19857412,20316164,20971526,21102598,21299202,21692419,21889032,21954563,22020104,22413317,22740994,22806530,22872067,23134215,23658499,23724038,23920643,24051718,24313863,24576004,24772611,25100293,25362439,25624579,25886727,26476549,26607619,26673154,27131911,27459589,27918338,28180487,28704771,28835842,29425669,29622275,29884418,30539781,31064068,31129602,31326212,31653891,32309250,32440324,32571396,32636932,32702467,32964612,33161220,33357828,33423364,33619970,33816580,34275329,34537477,34734086,34996227,35127297,35192834,35258370,35586052,35782657,36044803,36110340,36175876,36241409,36306946,36372482,36438022,36503554,36569089,36831234,36765697,36896769,36962306,37027844,37093379,37158913,37421057,37617665,37748738,37814274,37879811,38141954,38338561,38404097,38469634,38666243,38731778,38797314,39321601,39387139,40239105,40828929,41025537,41877506,43057154,43778049,43909121,44302338,44498945,46530565,47644680,48693250,48824334,48889858,48955404,49020935,49283073,49479684,49741837,50135044,50528260,50659329,50921476,51773447,51970064,52232194,52494340,52690948,53477378,53608451,54001672,54263811,54329359,55574534,55771149,56164367,56295425,56426506,56754178,57737231,57802758,57999375,58064906,58458142,58523663,58589199,58982415,59179023],"dictt":[6815746,9043970],"datetime":[50266113,50659329,50790402],"delivered":[47710209,49348609],"discarding":[3145730,4259842,6029314,6291458,6356994,6422530,6684674,8781826,9306114,16121858,16384002,23724034,24051714,31064065,32571393,32636929,33161217,33423361,33816577,54329346,56164354,57737218,57999362,58458114,58523650,58589186,58982402,59179010],"delegating":[7667713,8257537,10223617],"delete":[2424834,4128770,13762561,14352385,19726337,24117249,31391745,50397186,52887553,59047938],"delegate":[2228226,2293762,2359298,2424833,2818050,3014660,3211266,3604483,3801090,4128769,4325378,7536645,7667717,8257541,10223621,13893637,15400965,16908293,17825797,28377090,29097986,32899074,38273025,44826625,46530565,47120389,48562177,49152002,49676290,49872897,50200578,50397185,50462724,50528261,51249154,52494341,52559875,52756482,54394882,54788098,54984706,55705602,55771137,56360962,56557570,58130434,58392578,59047937],"destination":[14811142,14876678,17104897,18219009,18612230,20250625,22085633],"disablelistindextyperestriction":[34275329,35127297,36569089,36765697,36896769,37617665,38207492,38338561,39321601,41025537,41287686,54329345,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"dynamicobject":[2424855,4128791,50397213,55771137,59047964],"disabledynamicbinding":[34275329,35127297,36569089,36765697,36896769,37552132,37617665,38338561,39321601,40894465,41025537,41811974,42270721,54329345,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"documentcontextcallback":[1441793,1572865,3145730,4259842,4849667,5373958,5636102,6029314,6225925,6291458,6356994,6422530,6488069,6684677,8781826,9306114,14286853,14548997,21889031,22020103,23134213,24313861,25362437,25886725,27131909,28180485,31326209,32440321,32964609,33357825,36831239,36962311,48824321,49020929,50528260,51970051,54001665,54329346,55771137,56164354,56426499,57737218,57999362,58064899,58458117,58523650,58589186,58982402,59179010],"download":[10354689],"datetimeoffset":[50266113],"displaying":[35651585,50003969,57868289],"disablefloatnarrowing":[34275329,35127297,36569089,36765697,36896769,37617665,38338561,38535172,39321601,41025537,43384838,54329345,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"different":[4521985,5570561,23789569,24707073,26148865,27197441,43319297,58589185,58982401,59179009],"disables":[4194305,33488897,34275338,35127306,35520513,35782658,36569101,36765706,36896778,37552129,37617674,37683201,38207489,38338570,38535169,38862849,38993921,39124993,39321610,39518209,39649281,40894465,41025546,41287681,41746433,41811969,42205185,42270721,42598401,42729473,43384833,43450369,43646977,44695553,45416449,47710209,47906817,48496641,49348609,49807361,51445761,51904513,51970050,52625409,54329354,56164362,57737226,57868289,57999370,58458125,58523658,58589194,58982410,59179018],"describes":[34930689,58720257],"disposable":[8650755],"disabletyperestriction":[34275329,35127297,36569089,36765697,36896769,37617665,38207489,38338561,38993924,39321601,41025537,41287681,42205190,54329345,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"double":[3014657,3604481,9240583,16384001,24051713,45023238,49676289,50462721,52559873],"derived":[1310723,1966083,2424841,2621443,2883587,2949123,3276803,4128777,4718593,33554433,33947649,34144257,34603009,34668545,48103428,50266116,50397193,52822017,56033284,57344004,58720257,58851332,59047945,59113476],"dispatcher":[37617666,39321602,41025538,47382540,58589187,58982403,59179011],"dimensional":[14090241,19660801],"discards":[1441793,1507329,4980737,5963777,47644673,49020929],"determines":[1114113,1179649,1245185,1441793,1507329,1572865,1638401,1703937,1769473,2097153,2162690,2424834,2686978,3014661,3080194,3342337,3407873,3473409,3538945,3604485,3670017,3735553,3801089,3866625,3932161,3997697,4128769,4259841,4325378,4390913,4718593,4849665,6029314,6291458,6356994,6422530,6684673,6881281,7077889,7798786,8060929,8716289,8781826,9306114,9437185,17235969,27721729,30277634,47644673,48168961,48562177,48824321,48955393,49020929,49217537,49545218,49741825,49872897,50135041,50331649,50397186,50462725,51118081,51707905,51970049,52363266,52559877,53084161,53411841,53477377,53673985,53936129,54329346,54591489,54788097,55246849,55312385,56754177,57737218,57933826,57999362,58392578,58458113,58523649,58589186,58654721,58720257,58982402,59047937,59179010],"disablejitcompilation":[49938433],"discard":[4980737,5963777,16121863,16384007,23724040,24051720],"disable":[23789569,24707073,26148865,27197441,37552129,37683201,38207489,38535169,38993921,41287681,41811969,42205185,42598401,43384833,55902209],"defaultdocumentloader":[1441794,4456453,4521985,4587521,4980737,5373953,33619970,36175873,47644673,49020936,55771137],"determine":[39059457,45678593],"documents":[1441793,1507329,4980738,5439490,5505026,5701634,5963778,6225922,36110337,36175873,36438017,37027841,37158913,47644673,48824321,49020929,49479683],"dynamicmetaobject":[2424834,4128770,50397186,59047938],"default":[1,1114113,1179649,1245185,1310722,1441794,1507329,1572865,1638401,1703937,1769473,1966081,2097153,2162689,2424833,2621441,2883586,2949121,3014657,3080193,3145730,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3866625,3932161,3997697,4128769,4259843,4325377,4390913,4456449,4521985,4587521,4718593,4915201,4849665,4980737,5177347,5373953,6029315,6291459,6356995,6422531,6684675,7077889,8781827,9306115,15335425,15532033,15925249,16711681,17367041,17629185,20578305,21168129,21233665,31457282,32243714,33226754,33619969,33947650,34275329,35127297,36044802,36175875,36306950,36569089,36634626,36765697,36896769,37027842,37093377,37552129,37617665,38273025,38338561,38535169,38993922,39321601,39583746,39649281,39911426,39976962,40108033,40894465,40960002,41025537,41484289,41680897,41746433,41811969,42205186,42270721,42532866,42860546,42926081,43188225,43319297,43384833,44564481,44695553,44826625,44892162,45547521,45875201,45940737,47054849,47644675,47710209,47775745,47906817,48103428,48168961,48365569,48496641,48562177,48824321,48955393,49020931,49217537,49348609,49414145,49479681,49545217,49741825,49872897,49938433,50069505,50135041,50266113,50331649,50397185,50462721,50790401,51118081,51707905,51970049,52559873,52822018,53084161,53215234,53411841,53477377,53936129,54329348,55246849,55312385,55771139,55902209,56033284,56164355,56754177,57344001,57737220,57933828,57999364,58195969,58392577,58458116,58523652,58589188,58654721,58720257,58851329,58982404,59047937,59113473,59179012],"dll":[196609,458753,720897,786433,851969,917505,983041,1048577,4456449,4521985,4587521,4653057,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6094849,6160385,6225921,6488065,6553601,6619137,6750209,6815745,6881281,6946817,7012353,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28114945,28049409,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30343169,30474241,30539777,30867457,31129601,31522817,31653889,31784961,32309249,32505857,32702465,32768001,36110337,36175873,36241409,36306945,36372481,36503553,36634625,36831233,36962305,37027841,37093377,37158913,37224449,37355521,37289985,37421057,37486593,37552129,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51314689,51445761,51511297,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52297729,52363265,52494337,52559873,52625409,52690945,52756481,52953089,53018625,53084161,53149697,53346305,53411841,53477377,53542913,53673985,53805057,53870593,53936129,54067201,54198273,54263809,54329345,54394881,54460417,54591489,54722561,54788097,54853633,54984705,55115777,55181313,55246849,55312385,55508993,55640065,55836673,55902209,56033281,56164353,56229889,56492033,56623105,56754177,56819713,57016321,57081857,57344001,57606145,57737217,57868289,57933825,57999361,58130433,58195969,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009],"discardcacheddocuments":[1441794,1507329,4980741,5963781,47644673,49020930],"documentsettings":[1441793,1572866,5373958,5439489,5505025,5636102,5701633,5832709,6225921,6488069,34275329,35127297,35782657,36438018,36569089,36765697,36831233,36896769,37158913,37421057,37617665,37748737,38141953,38338561,38469633,38731787,38797313,39321601,41025537,41877518,48693259,48824328,49020929,51970049,54001665,54329345,55771137,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"deprecated":[41746433],"directory":[33488897,36438017,37158913,40173569,48824321,51904513],"display":[36765697,36896769,37617665,38338561,39321601,41025537,48627713,54329345,57212929,57737217,57868289,57999361,58589185,58982401,59179009],"defaults":[5898241,6815745,7012353,8192001,8978433,10354689,27787265,48103425,55771137],"defaultaccess":[34275329,35127297,36569089,36765697,36896769,37617665,38338561,39321601,39911428,40960006,41025537,54329345,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"documentaccessflags":[37748743,49479684,55771137]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_101.json b/docs/Reference/fti/FTI_101.json index 56b288502..0abac9de7 100644 --- a/docs/Reference/fti/FTI_101.json +++ b/docs/Reference/fti/FTI_101.json @@ -1 +1 @@ -{"enablevaluetaskpromiseconversion":[54919169],"enabledatetimeconversion":[54919169],"external":[7471105,7995393,8126465,8847361,35913729,39714817,45875201,47054849,48955394,51838977,57540609],"executed":[13434881,13959169,14876673,19595265,21889025,22020097,22740993,22806529,23330817,23592961,23789569,23986177,24117249,24379393,24641537,24772609,24838145,24903681,24969217,25100289,25362433,25427969,25493505,25624577,25755649,25952257,26279937,26542081,26607617,26673153,26738689,27328513,27394049,27787265,28246017,28377089,28966913,29491201,30081025,30801921,30867457,31326209,31850497,47448065,52232193],"enforceanonymoustypeaccess":[38141953,38207489,39714820,40042497,40501249,42532865,44236801,45875206,47185921,48824321,50331649,54263809,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"enhancements":[54919170],"enableautohostvariables":[37814276,38141953,38207489,40042497,40501249,40894470,42532865,44236801,47185921,48824321,50331649,54263809,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"empty":[3014657,4980737,7471107,14024705,15466497,18677761,22413313,26214401,27131905,28901377,30212098,32243713,34078721,52101121,54329345,58327042],"example":[6881282,7077889,7405570,7471105,7733249,7929857,8192001,8585217,8650753,8847361,8912897,9043969,9109505,9240577,9306113,9502721,9568257,9764865,9830401,10027009,10092545,10682369,10747905,10813441,11010049,11206657,11599873,11665409,11862017,12058626,12320769,12517377,44695553,45350913,46202881,47120385,55574529],"extensions":[2031619,2490369,7012354,7274498,7340034,7602178,7864322,8519682,9043969,15663105,15990785,16515073,16711681,17367041,17563649,18219009,18546689,19202050,19660801,30998530,31653890,31784962,31981570,32571394,32768002,32899074,33423362,34537473,34603009,36175873,37289985,38076417,39124993,40304641,41025537,47316994,52625409,52756487,54591489,55902209,56492033,57344001,57475073,57868289,58261505,58392577,58458113],"exhausting":[51642369],"evaluated":[16449537,17235969,18087937,18415617,19333121,20447233],"evaluates":[3211271,3801095,5046279,5242887,5505031,5570567,5832711,6094856,6553607,12845057,14024705,15073281,15728641,16449537,17235969,17629185,18087937,18415617,19333121,20447233,21168129,22413313,23265281,29556737,32702468,33226755,34996228,35323909,35651587,54263816,56492039,56950791,57344007,57475079,57868295,58261511,58392583,58458119],"engine":[458753,2031619,2490372,3211266,3538946,3801092,3997698,4194310,4456449,5046278,5242886,5505030,5570566,5832710,6094853,6291457,6553606,7012360,7340040,7864328,8650753,9240577,9306113,9502721,9568257,10027009,10092545,10616833,10747905,10813441,11010049,11468801,11534337,11665409,11730945,11796481,11862017,11927559,11993089,12189697,12255233,12386305,12451841,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041666,13107201,13172737,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13893634,13959169,14024707,14090242,14155777,14286849,14352385,14614529,14680065,14876673,14942209,15007745,15073281,15269889,15335425,15466499,15728641,15859713,16056321,16187393,16449537,16515080,16580609,16646146,16711688,16777217,16973825,17039361,17104897,17170433,17235969,17432577,17629185,17694721,17760257,17825793,17956865,17891329,18087937,18219016,18284545,18350081,18415617,18481154,18546696,18612225,18677763,18743297,18874369,19005441,19070977,19136513,19202050,19267586,19333121,19529729,19595265,19791873,19857409,19922945,20119553,20250625,20447233,20709377,20774913,20905986,21037057,21168129,21626881,21692417,21757953,21889025,22020097,22151169,22216705,22282241,22413315,22740993,22806529,22937606,23003137,23265281,23330817,23527428,23592961,23789569,23855105,23986177,24051713,24117249,24313862,24379393,24510465,24641537,24772609,24838145,24903681,24969218,25100289,25231366,25362433,25427969,25493505,25559041,25624578,25755649,25952258,26017793,26083332,26279938,26345474,26476545,26542081,26607617,26673153,26738690,26804228,27000836,27131907,27262977,27328513,27394049,27590658,27656196,27721734,27787266,27852804,27918338,28049410,28114946,28180481,28246017,28311556,28377090,28442625,28573697,28639234,28704769,28770307,28835842,28901377,28966913,29032451,29097988,29163522,29294594,29360130,29425667,29491202,29556737,29622275,29687810,29753346,29818883,29884418,29949954,30015491,30081025,30146562,30212099,30277633,30343170,30408708,30474243,30605315,30670851,30736386,30801922,30867457,30932995,30998529,31064065,31129602,31260674,31326211,31391748,31522819,31588353,31653890,31719426,31784964,31850497,31916033,31981572,32112641,32243715,32309251,32440321,32505858,32571396,32702465,32768003,32833539,32899075,33030145,33226753,33357825,33423364,33554433,33816577,33882115,34013185,34144257,34209793,34275330,34471938,34537475,34603012,34734082,34865154,34996225,35061767,35323905,35651585,35782657,36044801,36306945,36634625,36831233,36896781,37093377,37289987,37552129,37683201,37814274,38076422,38141955,38207490,38273025,38535169,38797313,38993921,39124998,39321601,39387138,39583745,39649282,39714817,39780353,39911425,39976963,40042498,40173569,40239105,40304646,40370177,40501251,40566785,40697857,40894466,40960002,41025542,41091073,41156609,41353217,41418754,41549825,41615362,41811969,41943042,42074114,42205185,42336258,42532867,42729474,42991617,43057153,43253762,43384835,43515906,43843586,43974658,44105729,44236803,44367874,44564482,44761090,44957698,45088769,45154311,45285378,45481986,45547523,45613057,45875201,46137346,46333954,46465025,46792705,46858241,46989313,47185924,47644674,47710210,47841282,48103426,48300033,48365571,48496641,48562177,48824324,48889858,49020929,49086465,49152002,49348610,49610754,49676289,49872897,49938434,50003969,50135046,50266113,50331652,50462721,50528257,50724866,50855937,51052545,51118082,51249154,51314689,51511297,51642369,51773442,51838977,51970050,52297730,52363265,52494337,52625410,52690946,52756483,52887553,52822018,52953089,53215233,53280770,53346305,53673985,53739522,53870593,53936130,54132738,54198273,54263828,54329345,54394882,54591492,54657025,54788098,54919175,55640067,56098817,56492046,56688642,56950788,57016326,57081859,57147394,57344014,57409538,57475080,57606146,57737218,57802754,57868297,57933825,58130434,58261520,58327041,58392592,58458123],"exceeding":[47054849,51642369,51838977],"executecommand":[3211265,3801089,5046274,5242881,5505025,5570562,5832706,6094850,6553602,12779524,18743302,26017799,28704775,29163526,33357831,34275334,54263810,56492034,56950785,57344002,57475073,57868289,58261506,58392578,58458113],"expansion":[35127297,51642372,57212929],"extends":[34537473,56164353],"enableallloading":[53477377],"enablestandardsmode":[52625410],"enumerablet":[7077890,9043969,9830402],"extendedhostfunctions":[4980738,6619141,6881282,7077890,7405569,7667713,7733250,7929857,8192001,8585218,8650753,8847361,8912897,9043969,9109505,9175041,9240577,9306113,9502721,9568257,9764865,9830401,10027009,10092545,10289153,10682369,10747905,10813441,11010049,11206658,11599873,11665409,11862017,12058626,12320769,12517377,34537473,38338561,38928385,52101128,54329345],"expressions":[12845057,13172737,13434881,13893633,13959169,14024705,14680065,14876673,15073281,15728641,15859713,16449537,17235969,17629185,18087937,18415617,19333121,19595265,20447233,21168129,22413313,23265281,23986177,24051713,24838145,25559041,26345473,27262977,29163521,34275329],"expose":[12451841,12648449,12713985,13303809,13500417,13565954,14090243,14155778,14352385,14614529,15007745,15269889,15335425,16580609,16646147,16777218,17432577,17825793,18284545,18612225,19005441,19791874,21037057,21757953,22151169,23003137,39714817,40370177,40763393,41943041,43843585,45875201,46465025,46661633,54329345,55574529],"elementt":[8650754,9240578,9306114,9502722,9568258,10027010,10092546,10747906,10813442,11010050,11665410,11862018],"enums":[9175041,14024705,22413313,52166657,55836673,55967745],"explicitly":[49610753,52297729,53477377,55508993],"enumerations":[4980737,9175043,31326209,32243713,34537473,35586049,52101121],"enabling":[47054849,51838977],"element":[3014661,3145731,4980741,8257541,8454146,8650754,9109507,9240578,9306114,9502722,9568258,9633797,9961478,10027010,10092546,10289154,10747906,10813442,11010050,11665410,11862018,15204354,18808834,20316162,21102594,33751042,38731777,52101125,54132737,54329349,56098820],"exact":[14024705,22413313],"event":[786436,1638402,1769474,1835010,1900546,5963778,6422531,6684675,14090241,16646145,34537476,49545220,53805060,54263809,56360963,56426500,56623108,56819715,58064900,58261505,58392577,58458113],"enableinterruptpropagation":[44826625,53411844,57016321],"enablemodeless":[5308417,33488900,57999361],"execute":[3211268,3801092,5046276,5242884,5505028,5570564,5832708,6094853,6553604,12779522,13172743,13434881,13893639,13959169,14680071,14876673,15859719,18743298,19595265,23986177,24051721,24838145,25559049,26017794,26345481,27262985,28704770,29163522,30277639,33357826,33816581,34209793,34275330,35782662,36306949,36831233,54263813,56492036,56950788,57344004,57475076,57868292,58261509,58392581,58458117],"executedocument":[3211267,3801091,5046275,5242883,5505027,5570563,5832707,6094851,6553603,13434885,13959173,14876677,19595271,23986183,24838151,34209795,36831235,54263811,56492035,56950787,57344003,57475075,57868291,58261507,58392579,58458115],"ending":[42860545,51183617,55050241],"exceeds":[47054849,51838977],"exits":[10682369],"equivalent":[44367873,46333953,49348609,49938433],"enumerates":[34865154,38404097,39190529,41418754,41615362,42336258,43253762,43974658,44564482,45285378,45481986,47251457,48037889,51249154,52822018,53280770,54132738,57147394,57409538,57606146,57802754,58130434],"externally":[22806529,23592961,24772609,24903681,25952257,26607617,26673153,27394049,27787265,28246017,30081025,30801921],"efficient":[11927553,39256065,54722561],"enablefileloading":[53477377],"effect":[8388609,13893633,14024705,22413313,26345473,39256065,44105729,44433409,46989313,47448065,48168961,48889857,49086465,51773441,52559873,52625409,53936129,55967745,56426497,56885249],"enabledynamicmoduleimports":[54919169,57278465],"enforcerelativeprefix":[53477377],"entry":[9764865],"earlier":[39714817,45875201,46858241,50003969],"encounter":[56557569],"executes":[3211272,3801096,5046280,5242888,5505032,5570568,5832712,6094857,6553608,12779521,13172737,13434881,13893633,13959169,14680065,14876673,15859713,18743297,19595265,23986177,24051713,24838145,25559041,26017793,26345473,27262977,28704769,29163523,30277633,33357825,33816580,34209795,34275331,35782661,36306948,36831235,54263817,56492040,56950792,57344008,57475080,57868296,58261512,58392584,58458120],"equal":[1179649,1245185,1310721,1376257,1441793,1572865,1507329,1638401,1703937,1769473,1835009,1900545,2097153,2359297,2424833,2686977,2818049,2883585,3014657,3080193,3276801,3342337,3407873,3473409,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4325377,4456449,4521985,4980737,5046273,5242881,5505025,5570561,5832705,6094849,6553601,6750209,49414145,49545217,50790401,52101121,52166657,52232193,53018625,53280769,53805057,54001665,54067201,54263809,54329345,54460417,55050241,55246849,55508993,55574529,55705601,55771137,55836673,55902209,55967745,56033281,56164353,56295425,56360961,56426497,56492033,56623105,56688641,56754177,56819713,57016321,57212929,57344001,57475073,57540609,57737217,57868289,58064897,58261505,58327043,58392577,58458113],"endtimestamp":[42860545,51183620,55050241],"enabletoplevelawait":[38862849,47448068,55181313,56557569],"experimental":[54919169,57278465],"exempt":[46858241,50003969],"enabletaskpromiseconversion":[54919170],"ecmascript":[35454977,45023233,47448065,55377921],"enumerator":[3145729,56098817],"engaging":[39387137,40173569,40960001,41091073,42991617,43122689,44957697,47710209,57081857,57737217,57933825],"evaluatedocument":[3211267,3801091,5046275,5242883,5505027,5570563,5832707,6094851,6553603,16449541,17235973,18087941,18415623,19333127,20447239,33226755,35651587,54263811,56492035,56950787,57344003,57475075,57868291,58261507,58392579,58458115],"encapsulated":[2424833,3866625,53280769,56164353],"execution":[3211267,3801091,5046275,5242883,5505027,5570563,5832707,6094853,6553603,12779521,12845057,13041665,13172737,13893634,14024706,14680065,15073281,18743297,19267585,21168129,22413314,23265281,25559041,26017793,26345474,27262977,27590657,28704769,29163521,30343169,31064065,31129601,32702465,33357825,33816577,34275329,34537475,34996225,35323905,35782657,36306945,38141953,38207490,39387137,40042497,40173569,40501249,40566786,40960001,41353218,42532865,43384835,44236801,44826625,45547523,47054849,47185921,47775745,48824321,49872897,50331649,51838977,52363265,53411841,53608450,54198274,54263816,56492036,56950788,57016321,57081857,57344004,57475076,57671682,57737218,57868292,57933826,58261508,58392580,58458116],"enforced":[47775745,52363265],"enumeration":[2424833,3866625,31326209,32243713,34537473,35586049,38207490,52625410,53280769,53477378,53936131,54263810,54394883,54657026,54722562,54788098,54853634,54919170,55115778,55312386,56164353,56557570,56885250,57278466,57671682,58195970],"explicit":[14090242,16646146],"enforce":[39714818,43778049,45875202,56492033,56688641,57344001,57868289],"excessive":[47054849,47775745,51838977,52363265],"enginename":[23527429,24313861,25231365,39387137,39976964,40173569,40960001,48365574,52690950,57081857,57737217,57933825],"exceptions":[3014657,4456449,4980737,10682370,52101121,54329345,54919169,57737217],"expression":[12779521,12845057,14024705,15073281,15728641,16449537,17235969,17629185,18087937,18415617,18743297,19333121,20447233,21168129,22413313,23265281,26017793,28704769,29163522,33357825,34275330],"extension":[7012354,7274498,7340034,7602178,7864322,8519682,14090242,15663106,15990786,16515074,16646146,16711682,17367042,17563650,18219010,18546690,19660802,34537473,35586049,38141954,38207491,40042498,40501250,41156610,42532866,44236802,45613058,46792706,47185922,48496642,48824322,49020930,49676290,50331650,50462722,52756481,52953090,53346306,53936133,54263811,54591489,56492034,56950786,57344002,57475074,57868290,58261506,58392578,58458114],"exposed":[1966081,6881281,7077889,7405569,7471105,7733249,7929857,8192001,8585217,8650753,8847361,8912897,9043969,9109505,9240577,9306113,9502721,9568257,9764865,9830401,10027009,10092545,10682369,10747905,10813441,11010049,11206657,11599873,11665409,11862017,11927556,12058625,12320769,12451841,12517377,12648449,12713985,13303809,13565953,14090244,14155777,14614529,15269889,15335425,15532033,16646148,16777217,17498113,17825793,18153473,18284545,18612225,19005441,19791873,21037057,21757953,22151169,34537476,38141954,38207490,40042498,40370177,40501250,41943041,42532866,43843585,44105729,44236802,44433409,46465025,46989313,47185922,47841281,48824322,50331650,50724865,52166657,53805057,53936130,54263810,54329345,54394882,54657029,55836673,56229890,56492034,56950786,57344002,57475074,57868290,58064897,58261506,58392578,58458114],"exposes":[65537,131073,196609,262145,327681,393217,458753,524289,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211294,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801118,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4456449,4521985,4980737,5046302,5242910,5308417,5505054,5570590,5832734,6094878,6553630,6750209,10616833,11468801,11534337,11730945,11796481,11993089,12189697,12255233,12386305,12451841,12582913,12648449,12713985,12910593,12976129,13107201,13303809,13369345,13500417,13565953,13697025,14090241,14155777,14286849,14352385,14614529,15007745,15269889,15335425,16056321,16187393,16580609,16646145,16777217,16973825,17039361,17432577,17825793,17956865,17891329,18284545,18612225,19005441,19070977,19136513,19791873,19857409,19922945,20709377,20774913,21037057,21626881,21692417,21757953,22151169,22216705,22282241,23003137,31588360,32112642,32440328,33030146,33554440,34013186,34340865,34865153,34930689,35127297,35454977,35520513,35848193,35913729,36175873,36503553,36569089,36700161,37093384,37158913,37421057,37748737,38141953,38207489,38535176,38731777,38862849,39321608,39387137,39911426,40042497,40173569,40501249,40828929,40960001,41418753,41615361,41746433,41877505,42336257,42401793,42467329,42532865,42860545,42926081,43253761,43581441,43974657,44040193,44236801,44564481,44630017,44826625,45285377,45481985,47185921,48824321,49414145,49545217,50331649,50790401,51249153,52101121,52166657,52232193,52756481,52822017,53018625,53280769,53805057,54001665,54067201,54132737,54263838,54329345,54460417,54591489,54984705,55050241,55181313,55246849,55377921,55508993,55574529,55640065,55705601,55771137,55836674,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492062,56623105,56688641,56754177,56819713,56950814,57016321,57081857,57147393,57212929,57344030,57409537,57475102,57540609,57606145,57737217,57802753,57868318,57933825,57999361,58064897,58130433,58261534,58327041,58392606,58458142],"evaluation":[47448065],"exists":[44105729,44433409,46989313,55967745,56426497,56885249],"endcpuprofile":[4194305,6094849,26214404,28901380,54263809,57016321],"eval":[29163521,34275329],"enable":[22937601,24313857,25231361,27721729,33488903,37814273,38797313,39714817,40894465,41811969,45875201,47448066,49872897,53411841],"executing":[14548993,15400961,15466497,15597569,16318465,18677761,27131905,30212097,42074113,47644673,53542913,54788097,54919169],"enablejitdebugging":[52625409],"eventsource":[1835010,1900546,6422529,6684673,14090241,16646145,34537474,49545227,56819719],"effective":[45416449,47054849,51838977,52887553,54722562,54788097,57671682],"entered":[41287681],"exposeruntimetype":[47841281,50724865,58195969],"expensive":[11927553,54722562],"expect":[49610753,52297729,55508993],"enableruntimeinterruptpropagation":[38207489,49872900,54263809],"enumerable":[6881282,7077890,9043969,9830401,12058626,53936129,54394881],"exposing":[34537474,54657025,58195969],"enablewebloading":[53477377],"environments":[56492033,57344001,57868289],"events":[65538,262146,458754,14090241,16646145,53805057,55574529,56426497,56754177,57737217,58064897],"expected":[5636097,6160385,6946817],"errordetails":[39387137,39780358,40173569,40697860,40960001,53149702,57081857,57737217,57933825],"engines":[11927553,12779521,13893633,14024705,18743297,22413313,24903681,26017793,26345473,27394049,28704769,29163521,30081025,32243715,32833538,33357825,34275329,34537475,35586049,46137346,52494337,52756481,53870595,54591489,54657025,54788098,56688641,57475073,57868289,57999361,58458113],"enhance":[52625409],"extract":[7405569],"enablesamplecollection":[55312385],"extended":[4980737,6619137,6881281,7077889,7667713,7733249,8585217,9175041,10289153,11206657,12058625,34537474,38338561,38928385,52101122,55902209,58064897],"equals":[1179649,1245186,1310721,1376257,1441793,1572865,1507329,1638401,1703937,1769473,1835009,1900545,2097154,2359298,2424833,2686977,2818049,2883586,3014657,3080194,3276801,3342337,3407873,3473409,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4325378,4456449,4521985,4980737,5046273,5242881,5505025,5570561,5832705,6094849,6553601,6750209,38797313,41811969,49414145,49545217,50790401,52101121,52166658,52232193,53018625,53280769,53805058,54001665,54067201,54263809,54329345,54460417,55050241,55246849,55508993,55574529,55705601,55771137,55836674,55902209,55967746,56033281,56164353,56295425,56360961,56426498,56492033,56623105,56688641,56754177,56819713,57016321,57212929,57344001,57475073,57540609,57737217,57868289,58064898,58195969,58261505,58327041,58392577,58458113],"easy":[53870593],"eligible":[53477377],"end":[26214401,28901377,49414145,49545217,50790401,51183617,51249153,52101121,52166657,52232193,52756481,52822017,53018625,53280769,53805057,54001665,54067201,54132737,54263809,54329345,54460417,54591489,54984705,55050241,55181313,55246849,55377921,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56623105,56688641,56754177,56819713,56950785,57016321,57081857,57147393,57212929,57344001,57409537,57475073,57540609,57606145,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58261505,58327041,58392577,58458113],"existing":[4653057,4980737,5701633,12058625,38338561,52101121],"engin":[3538946,3997698,11599873,12320769,30539778,31195138,35979266,37027842,37486594,38141957,38207493,38600706,40042501,40501253,40763393,41156609,42532869,43057153,44236805,44367873,45088769,46661633,46792705,47185925,48103425,48300033,48562177,48824325,49020929,49610753,49676289,49938433,50266113,50331653,50462721,50528257,51052545,51118081,51314689,51511297,52297729,52953089,53346305,53673985,54263813,54657025,55640066,56492037,56688642,56950789,57344005,57475077,57868293,58261509,58392581,58458117],"executable":[35127297,35913729,44695558,50921474,57212929,57540609],"environment":[32243716,34537473,53870593,56164353,58261506,58392578,58458114],"executionstarted":[39387137,40173569,40566790,40960001,41353220,53608454,57081857,57737217,57933825],"enforces":[3538945,3997697,5046273,5242881,5505025,5570561,5832705,6553601,28049409,28180481,28770305,29687809,29884417,30605313,30670849,31260673,31719425,31784961,31916033,32309249,32833537,32899073,33423361,55640066,56492033,56688641,57344001,57868289,58261505,58392577,58458113],"enum":[52166660,52625410,53477378,53805060,54657026,54722562,54788098,54853634,54919170,55115778,55312386,55967748,56426500,56557570,56885250,57278466,57671682,58195970],"equality":[38797313,41811969,55836674,58195969],"enablenullresultwrapping":[8388610,38141953,38207489,38797316,40042497,40501249,41811974,42532865,44236801,44367873,47185921,48824321,49938433,50331649,54263809,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"enabledebugging":[52625411,54919171,57278466],"export":[38141954,38207490,40042498,40501250,42532866,44236802,44367874,47185922,48824322,49610753,49938434,50331650,52297729,54263810,56492034,56950786,57344002,57475074,57868290,58261506,58392578,58458114],"exception":[458757,2621442,3211265,3801089,4456455,5046273,5242881,5505025,5570561,5832705,6094849,6553601,7405569,8912897,10682375,11599873,12320769,13041665,17104897,17694723,18350081,18874369,19267585,19529729,19988481,20119562,20578307,21233665,21823489,22347777,22872074,27590657,30277633,31129601,34537475,36044803,37552129,37879811,38273034,38993922,39387158,39583745,39780353,39976961,40173575,40239108,40566786,40697857,40960009,41091076,41353218,41484290,41549826,42205188,42270724,42729475,42991620,43122692,43384833,44761091,45547521,48365569,49872897,52690945,53149697,53411841,53608450,54263809,54919170,56492033,56950785,57081866,57344001,57475073,57671683,57737252,57933835,57868289,58261506,58392578,58458114],"extensionattribute":[7012355,7274499,7340035,7602179,7864323,8519683,15663107,15990787,16515075,16711683,17367043,17563651,18219011,18546691,19660803,52756483,54591491],"exemption":[46858241,50003969],"exceeded":[57671682],"enableremotedebugging":[54919169,57278465],"error":[589826,10682369,19529730,20119554,22347778,22872066,34537473,36044802,37552129,37879810,38993921,39387139,39583745,39780354,40173570,40697858,40960004,41484289,41549825,53149698,54919170,57081860,57671681,57737222,57933828],"enhanced":[34537473,56164353],"elements":[2555906,3145729,12845057,13172737,13434881,13893633,13959169,14024705,14680065,14876673,15073281,15728641,15859713,16449537,17235969,17629185,18087937,18415617,18808836,19333121,19595265,20316164,20447233,21168129,22413313,23265281,23986177,24051713,24838145,25559041,26345473,27262977,38141953,38207489,38731777,40042497,40501249,42532865,44236801,46858242,47185921,48824321,50003970,50331649,54132738,54263809,56098818,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"enablestringifyenhancements":[54919169],"encoding":[27459585,28442625,36372495,42467331,42926082,50069518,53018626,54067203],"examples":[8781825,11599873],"errors":[47054849,47775745,51838977,52363265],"evaluate":[3211268,3801092,5046276,5242884,5505028,5570564,5832708,6094853,6553604,8060929,12779521,12845064,14024711,15073288,15728648,16449538,17235970,17629194,18087938,18415618,18743297,19333122,20447234,21168138,22413321,23265290,26017793,28704769,29163521,29556744,30277633,32702469,33226753,33357825,34275329,34996229,35323910,35651585,54263813,56492036,56950788,57344004,57475076,57868292,58261508,58392580,58458116],"exhaustive":[14942214,17170438,22609926,24510471,28573703],"exposehostobjectstaticmembers":[38141953,38207489,40042497,40370180,40501249,42532865,44236801,46465030,47185921,48824321,50331649,54263809,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"enabled":[22937601,24313857,25231361,27721729,30212097,45416449,47448069,52625412,52887553,54788097,54919172,55312385,55836673,56557569,57278467],"enables":[5308417,33488897,36700161,37814273,38141962,38207501,38797313,38862849,39256065,39714817,40042506,40501258,40894465,41811969,42074113,42532874,44236810,44826626,44957697,45613057,45875201,46333953,46858241,47054849,47185930,47448066,47644673,47710209,47841281,48496641,48824330,48889857,49348609,49872897,50003969,50331658,50724865,51642369,51773441,51838977,53411841,53542913,53936129,54263821,54394881,54984705,55181313,56492042,56950794,57016322,57344010,57475082,57868298,57999361,58261514,58392586,58458122],"excluded":[53936129,54394881],"eventconnection":[1638402,1769475,5963777,6422534,6684678,34537474,56360967,56623116]} \ No newline at end of file +{"examples":[8716289,11272193],"exact":[16384001,24051713],"external":[8126465,8585217,9109505,9830401,35913729,39649281,44695553,45285378,47775745,49414145,55246849],"enumerates":[33751042,34013186,34340866,34471938,35061762,35389442,35848194,35979266,36700162,40304641,41091073,43581441,44367873,49152002,49676290,50200578,51183618,52756482,57606146,58130434,58327042,59047938],"exception":[65541,2555906,3145729,4259841,4718599,6029313,6291457,6356993,6422529,6684673,8388609,8781825,9306113,9502721,10354695,11272193,12124161,15859715,16187402,16449537,17104897,17694721,18022401,18219009,19922945,20250625,20905987,21495809,22085633,22609921,23396362,26017793,28901377,31850499,33292291,34930710,35454985,35717127,37224449,37355521,37289986,37945345,38010882,38076426,38273027,38600708,39059457,39452676,40435713,40697858,41156609,41418754,42139652,42336257,42467330,42795012,43122690,43974657,44105732,44630017,44761092,44826627,45678593,47710209,49348609,50790402,54329345,55771139,55902211,56164353,56819713,57016330,57737217,57999361,58458113,58523649,58589186,58720292,58785803,58982402,59179010],"event":[196612,1638402,1703938,1769474,2097154,6094850,6750211,7340035,14090241,19660801,48562180,49217539,49872900,51118083,55771140,57344004,58458113,58589185,58851332,58982401,59113476,59179009],"enablevaluetaskpromiseconversion":[50790401],"eventconnection":[1638402,1703939,6094849,6750214,7340038,48562188,51118087,55771138],"export":[34275330,35127298,36569090,36765698,36896770,37617666,38338562,39321602,41025538,41484290,41680897,42926082,43188225,54329346,56164354,57737218,57999362,58458114,58523650,58589186,58982402,59179010],"executionstarted":[34930689,35454977,35717121,38010884,40697862,42467334,57016321,58720257,58785793],"eventsource":[1769474,2097154,6750209,7340033,14090241,19660801,49217543,49872907,55771138],"expensive":[11403265,50724866],"exposeruntimetype":[38993921,42205185,58916865],"enabletaskpromiseconversion":[50790402],"eval":[32768001,56229889],"enum":[48103428,49479682,49938434,50659330,50724866,50790402,50921474,50987010,51052546,52166658,53542914,54067202,55902210,56033284,57344004,58195970,58916866,59113476],"exposehostobjectstaticmembers":[34275329,35127297,36569089,36765697,36896769,37617665,38338561,38928388,39321601,41025537,42008582,54329345,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"engin":[3801090,4325378,11272193,12124161,28377090,29097986,34275333,35127301,36569093,36765701,36831233,36896773,36962305,37617669,38338565,38731777,39190529,39321605,39714817,39845889,40108033,41025541,41484289,41680897,41877505,42663937,42926081,43188225,43712513,44236801,44564481,46071809,46727169,46792705,47185921,47448065,48234497,48300033,48758785,49086465,50987009,54329349,54394882,54788098,54984706,55705602,56164357,56557570,57737221,57999365,58392578,58458117,58523653,58589189,58982405,59179013],"engaging":[34930689,35454977,35717121,37552129,39452673,41811969,42795009,44761089,57016321,58720257,58785793],"enablenullresultwrapping":[8060930,34275329,35127297,36569089,36765697,36896769,37617665,38338561,38862852,39321601,41025537,41484289,42926081,43646982,54329345,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"exceeds":[47775745,49414145],"enhancements":[50790402],"earlier":[38207489,39649281,41287681,44695553],"expansion":[35323905,45023236,53411841],"exceptions":[3014657,3604481,4718593,10354690,50462721,50790401,52559873,58720257],"enableremotedebugging":[50790401,54067201],"extensionattribute":[7208963,7274499,7733251,7929859,8454147,9371651,14942211,15728643,15794179,16056323,16646147,16777219,16973827,17301507,17432579,17760259,18677763,48431107,50593795],"enumerations":[3604481,7012355,52559873,55771137,56295425,56885249,57212929],"exempt":[38207489,41287681],"exceeded":[55902210],"effect":[8060929,16121857,16384001,23724033,24051713,39911425,40894465,40960001,41746433,42270721,43319297,45875201,47054849,47906817,48365569,49807361,50659329,56033281,57344001,58195969],"events":[65538,14090241,19660801,34078722,49545217,51576834,57344001,57933825,58720257,58851329,59113473],"execution":[3145731,4259843,6029315,6291459,6356995,6422531,6684677,8781827,9306115,15073281,15204353,16121858,16384002,16842753,17170433,18022401,19595265,19922945,22740993,22806529,23724034,24051714,24576001,26869761,26935297,27590657,28311553,28901377,31064065,32571393,32636929,32768001,33161217,33423361,33816577,34275329,34930689,35127297,35454977,35717121,35782657,36569090,36765697,36896769,37617665,38010882,38338561,39059459,39321601,40697858,41025537,42467330,45547521,45678595,47120386,47710209,47775745,49348609,49414145,50069505,50855937,51970049,52690945,54198273,54329348,55771139,55902210,56164356,56229889,56819713,57016321,57737220,57999364,58458120,58523652,58589188,58720258,58785794,58982404,59179012],"enabled":[23789569,24707073,26148865,27197441,45613057,46137345,49807365,49938433,50266113,50659332,50790404,50921473,52166657,54067203,56492033],"enforces":[3801089,4325377,6029313,6291457,6356993,6422529,8781825,9306113,27394049,28442625,28966913,29229057,29360129,29491201,29949953,51314689,52035585,52953089,53805057,54329345,54788098,55508993,56623105,57081857,57475073,57737217,57999361,58392577,58589185,58982401,59179009],"enables":[4194305,33488897,34275338,35127306,35520513,35782658,36569101,36765706,36896778,37552129,37617674,37683201,38207489,38338570,38535169,38862849,38993921,39124993,39321610,39518209,39649281,40894465,41025546,41287681,41746433,41811969,42205185,42270721,42598401,42729473,43384833,43450369,43646977,44695553,45023233,45416449,47710209,47775745,47906817,48496641,49348609,49414145,49479681,49807362,51445761,51904513,51970050,52625409,54329354,56164362,57737226,57868289,57999370,58458125,58523658,58589194,58982410,59179018],"enableruntimeinterruptpropagation":[36569089,47710212,58458113],"extendedhostfunctions":[3604482,5898241,6619138,6815746,6946817,7012353,7405573,7471106,7667713,7798785,7864322,7995393,8126465,8192002,8257537,8388609,8650753,8978433,9043970,9240577,9502721,9764865,9961473,10092545,10223617,10354689,10551297,10878977,11075585,11141121,11272193,11599873,11927553,11993089,12124161,12517377,50462721,52559880,54525953,55050241,55771137],"enablefileloading":[49479681],"exceeding":[45023233,47775745,49414145],"encapsulated":[2424833,4128769,50397185,59047937],"expect":[41680897,43188225,53936129],"enumerablet":[7667714,7864322,8257537],"enablejitdebugging":[50659329],"extension":[7208962,7274498,7733250,7929858,8454146,9371650,14090242,14942210,15728642,15794178,16056322,16646146,16777218,16973826,17301506,17432578,17760258,18677762,19660802,34275330,35127298,36569091,36765698,36896770,37617666,37683202,38338562,39321602,39714818,41025538,42598402,42663938,46071810,46727170,46792706,47448066,47906821,48300034,48431105,50593793,54329346,55771137,56164354,56295425,57737218,57999362,58458115,58523650,58589186,58982402,59179010],"errors":[45547521,47775745,49414145,50069505],"execute":[3145732,4259844,6029316,6291460,6356996,6422532,6684677,8781828,9306116,12910593,13500417,14548993,15204359,16121863,16842759,17891335,18874377,19595266,20316161,21102593,22020097,22806537,23724041,24576009,26017799,26869762,28311554,31064069,31326209,32768002,32964609,33161221,33816582,50855938,54198274,54329348,56164356,56229890,57737220,57999364,58458117,58523652,58589189,58982405,59179013],"enforceanonymoustypeaccess":[34275329,35127297,36569089,36765697,36896769,37617665,38338561,39321601,39649284,41025537,44695558,54329345,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"effective":[45613057,46137345,47775745,49414145,50724866,50921473,55902210],"enginename":[25231365,26148869,27197445,34930689,35454977,35717121,40435718,42336260,43974662,57016321,58720257,58785793],"exposed":[1835009,6619137,6815745,7471105,7667713,7798785,7864321,7995393,8126465,8192001,8257537,8388609,8585217,8650753,8978433,9043969,9240577,9502721,9764865,9961473,10092545,10223617,10354689,10551297,10878977,11075585,11141121,11272193,11403268,11599873,11927553,11993089,12124161,12517377,12713985,12976129,13631489,13697025,14090244,14483457,14745601,15335425,15532033,15597569,16515073,18481153,18546689,19136513,19529729,19660804,20381697,21168129,21233665,22151169,23330817,24444929,25427969,34275330,35127298,36569090,36765698,36896770,37486593,37617666,38338562,38928385,38993921,39321602,39911425,40960001,41025538,42008577,42205185,43319297,43843585,47906818,48103425,48496642,50266113,50462721,50987013,53018626,54329346,55771140,56164354,57737218,57999362,58458114,58523650,58589186,58851329,58982402,59113473,59179010],"exposes":[65537,131073,262145,327681,393217,524289,589825,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145758,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259870,4325377,4390913,4718593,4784129,4849665,6029342,6291486,6357022,6422558,6684702,7077889,7143425,8781854,9306142,10682369,11468801,11534337,11665409,11730945,12189697,12255233,12320769,12386305,12451841,12713985,12779521,12845057,12976129,13041665,13107201,13369345,13565953,13631489,13697025,13959169,14090241,14155777,14483457,14680065,14745601,15335425,15532033,15597569,16580609,17039361,17498113,18153473,18284545,18415617,18481153,19005441,19267585,19529729,19660801,19791873,20381697,20447233,20512769,20840449,21168129,21233665,21364737,21757953,22151169,22347777,22478849,22675457,23068673,23265281,23330817,24444929,25427969,30801922,31195144,31260680,31457288,31916034,32112648,32178184,32243720,32833538,33030146,33488897,33554433,33619969,33751041,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36438017,36569089,36700161,36765697,36896769,37617665,38338561,39321601,41025537,47644673,48103425,48168961,48431105,48562177,48824321,48955393,49020929,49152001,49217537,49545217,49676289,49741825,49872897,50135041,50200577,50266114,50331649,50397185,50462721,50593793,51118081,51183617,51445761,51576833,51707905,51773441,51838977,51904513,51970049,52232193,52363265,52559873,52756481,52822017,53018625,53084161,53411841,53477377,53936129,54263809,54329374,54460417,54788097,55246849,55312385,56033281,56164382,56754177,57016321,57344001,57606145,57737246,57868289,57933825,57999390,58130433,58327041,58392577,58458142,58523678,58589214,58654721,58720257,58785793,58851329,58982430,59047937,59113473,59179038],"enablestandardsmode":[50659330],"explicitly":[41680897,43188225,49479681,53936129],"exits":[10354689],"excessive":[45547521,47775745,49414145,50069505],"extract":[8388609],"exemption":[38207489,41287681],"evaluation":[49807361],"executes":[3145736,4259848,6029320,6291464,6357000,6422536,6684681,8781832,9306120,12910593,13500417,14548993,15204353,16121857,16842753,17891329,18874369,19595265,20316161,21102593,22020097,22806529,23724033,24576001,26017793,26869761,28311553,31064068,31326211,32768003,32964611,33161220,33816581,50855937,54198273,54329352,56164360,56229891,57737224,57999368,58458121,58523656,58589192,58982408,59179016],"exposing":[50987009,55771138,58916865],"equivalent":[38535169,41484289,42926081,43384833],"enforced":[45547521,50069505],"equality":[38862849,43646977,50266114,58916865],"enforce":[39649282,44695554,45940737,54329345,57737217,57999361,58392577],"enablemodeless":[4194305,52625412,57868289],"encoding":[23986177,29687809,34537474,34734083,38666255,43778062,48955394,49741827],"experimental":[50790401,54067201],"enabletoplevelawait":[35520513,49807364,49938433,51445761],"enableinterruptpropagation":[35782657,49348612,51970049],"enablestringifyenhancements":[50790401],"extensions":[1900547,2490369,7208962,7274498,7733250,7929858,8257537,8454146,9371650,14942209,15728641,15794177,16056321,16646145,16777217,16973825,17301505,17432577,17760257,18677761,19398658,29491202,30867458,31522818,32374785,32505858,33685505,36438017,37421058,48431111,48824321,50593793,50659329,52035586,53805058,54329345,55443458,55771137,55967746,56098817,56950785,57409537,57671681,57737217,57999361,58523649,58589185,58982401,59179009],"enableautohostvariables":[34275329,35127297,36569089,36765697,36896769,37617665,38338561,39321601,39518212,41025537,42729478,54329345,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"element":[2686979,3014661,3604485,5898242,7995395,8323074,8847365,9240578,9764866,9961474,10027014,10092546,10551298,10878978,10944517,11075586,11141122,11599874,11927554,11993090,12517378,14024706,14876674,16318466,30212098,34406401,49676289,50462725,52297730,52363268,52559877],"ending":[34799617,45154305,51707905],"enhanced":[50397185,55771137],"equals":[1114113,1179649,1245185,1310722,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1966082,2097153,2162689,2424833,2621442,2883586,2949122,3014657,3080193,3276802,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3866625,3932161,3997697,4063233,4128769,4259841,4325377,4390913,4718593,4849665,6029313,6291457,6356993,6422529,6684673,7077889,8781825,9306113,38862849,43646977,47644673,48168961,48103426,48562177,48824321,48955393,49020929,49217537,49545217,49741825,49872897,50135041,50266114,50331649,50397185,50462721,51118081,51707905,51773441,51970049,52559873,53084161,53411841,53477377,53936129,54329345,54460417,55246849,55312385,56033282,56754177,57344002,57737217,57933825,57999361,58392577,58458113,58523649,58589185,58654721,58720257,58851330,58916865,58982401,59047937,59113474,59179009],"enabledynamicmoduleimports":[50790401,54067201],"enabledatetimeconversion":[50790401],"elements":[2686977,3211266,12582913,12910593,13434881,13500417,14286849,14548993,14876676,15007745,15073281,15204353,16121857,16318468,16384001,16842753,17170433,17891329,18874369,19070977,19857409,20316161,20971521,21102593,21889025,22020097,22740993,22806529,23724033,24051713,24576001,34275329,34406401,35127297,36569089,36765697,36896769,37617665,38207490,38338561,39321601,41025537,41287682,49676290,52363266,52690945,54329345,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"externally":[22872065,23658497,25362433,26083329,26607617,27459585,28180481,28835841,29163521,30539777,32309249,32702465],"engine":[65537,1900547,2490372,3145730,3801090,4259844,4325378,4653057,4718593,4849670,6029318,6291462,6356998,6422534,6684677,7733256,7929864,8781830,9240577,9306118,9371656,9764865,9961473,10092545,10551297,10682369,10878977,11075585,11141121,11403271,11468801,11534337,11599873,11665409,11730945,11927553,11993089,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13369345,13434881,13500417,13565953,13631489,13697025,13959169,14090242,14155777,14221313,14286849,14483457,14548993,14680065,14745601,15007745,15073281,15204353,15335425,15532033,15597569,15794184,15859713,16056328,16121858,16187393,16384003,16449537,16580609,16646152,16842753,17039361,17104897,17170433,17498113,17563651,17694721,17760264,17891329,18022402,18153473,18219009,18284545,18350082,18415617,18481153,18743298,18808834,18874369,19005441,19070977,19267585,19333123,19398658,19529729,19595265,19660802,19791873,19857409,19922946,20316161,20381697,20447233,20512769,20840449,20971521,21037057,21102593,21168129,21233665,21364737,21692417,21757953,21889025,21954561,22020097,22151169,22347777,22413313,22478849,22675457,22740993,22806529,22872065,23068673,23134209,23265281,23330817,23658497,23724034,23789574,23855105,23920641,24051715,24182785,24313857,24379393,24444929,24576001,24707078,24772610,25100290,25165825,25231364,25296898,25362433,25427969,25493505,25624577,25690114,25886722,25952257,26017793,26083329,26148870,26214404,26279940,26411010,26476545,26607617,26673153,26738692,26869761,26935298,27066372,27131906,27197446,27262977,27394049,27459585,27525121,27590657,27721730,27918337,27983876,28049409,28114945,28180482,28246019,28311553,28442626,28639236,28704769,28770305,28835841,28901378,28966914,29163521,29229059,29294596,29360130,29425666,29491204,29556740,29622273,29687809,29753346,29818883,29884417,29949955,30015490,30343171,30474243,30539778,30801921,30867460,31064065,31129601,31195137,31260673,31326209,31457281,31522820,31653890,31850497,31916033,31981570,32112641,32178177,32243713,32309249,32374788,32440321,32505859,32571393,32636929,32702466,32768002,32833537,32964609,33030145,33161217,33357825,33423361,33685507,33751042,33816577,34013186,34275330,34340866,34471938,34930690,35061762,35127299,35389442,35454978,35717121,35848194,35979266,36110337,36569090,36700162,36765699,36896771,37224449,37355521,37289985,37486594,37552130,37617668,37683201,37945345,38010881,38076417,38207489,38273026,38338563,38535170,38600705,38731777,38862849,38928385,38993922,39059459,39124994,39190529,39256070,39321604,39452673,39518210,39649281,39714817,39845889,39911425,40108034,40435715,40566786,40697857,40894466,40960001,41025540,41156609,41287681,41418753,41484290,41680898,41811970,41877505,42008577,42074114,42139649,42205186,42270722,42336259,42598401,42663937,42729474,42795009,42926082,43188226,43384834,43450370,43646977,43712513,43843586,43974658,44040199,44236801,44564482,44695553,44826626,45023233,45613057,45678595,46071809,46333953,46399490,46727169,46792705,47054849,47120385,47185921,47382530,47448065,47710209,47906818,47972353,48234497,48300033,48431107,48496642,48627713,48758785,49086465,49152002,49414145,49610754,49676290,50069505,50200578,50462721,50593796,50659330,50790407,50855937,50921474,50987009,51183618,51314690,51511299,51970054,52035587,52101123,52363265,52690945,52756482,52953091,53149699,53673986,53805060,53870595,54198273,54329358,54591491,54722562,54788099,54853636,55115777,55181315,55377933,55443457,55508993,55640066,55771139,55836674,55967746,56098822,56164356,56229890,56492035,56623106,56688647,56819714,56885251,56950790,57016323,57081859,57147394,57212931,57409542,57475075,57540609,57606146,57671686,57737225,57802753,57999374,58064897,58130434,58261506,58327042,58392578,58458132,58523656,58589200,58654721,58720258,58785793,58982416,59047938,59179019],"enable":[23789569,24707073,26148865,27197441,38862849,39518209,39649281,42729473,43646977,44695553,47710209,49348609,49807362,52625415],"endcpuprofile":[4849665,6684673,25493508,28573700,51970049,58458113],"enumerator":[2686977,52363265],"expected":[5373953,5636097,6488065],"existing":[3604481,4521985,5570561,6619137,52559873,54525953],"extends":[50397185,55771137],"error":[655362,10354689,16187394,17694722,22609922,23396354,31850498,33292290,34930691,35454980,35717122,37224450,37355521,37289985,37945345,41156610,41418753,43122689,44630018,50790402,55771137,55902209,57016324,58720262,58785796],"environment":[47972353,50397185,55771137,57212932,58589186,58982402,59179010],"expressions":[12582913,12910593,13434881,13500417,14286849,14548993,15007745,15073281,15204353,16121857,16384001,16842753,17170433,17891329,18874369,19070977,19857409,20316161,20971521,21102593,21889025,22020097,22740993,22806529,23724033,24051713,24576001,32768001,52690945,56229889],"empty":[3014657,3604481,8585219,16384001,17563649,19333121,24051713,25493505,28246017,28573697,30408705,50462721,52559873,56492034,57212929,58654722],"ecmascript":[40828929,49807361,52232193,54263809],"evaluated":[12582913,13434881,14286849,19857409,20971521,21889025],"endtimestamp":[34799617,45154308,51707905],"evaluates":[3145735,4259847,6029319,6291463,6356999,6422535,6684680,8781831,9306119,12582913,13434881,14286849,15007745,15073281,16384001,17170433,19070977,19857409,20971521,21889025,22740993,24051713,25952257,32440323,32571396,32636932,33357827,33423365,52690945,54329351,56164359,57737223,57999367,58458120,58523655,58589191,58982407,59179015],"extended":[3604481,5898241,6619137,6815745,6946817,7012353,7405569,7471105,7864321,8192001,9043969,48824321,52559874,54525953,55050241,55771138,58851329],"enableallloading":[49479681],"enablewebloading":[49479681],"example":[6619138,6815745,7471106,7667713,7798785,7864321,7995393,8126465,8192001,8257537,8388610,8585217,8650753,8978433,9043969,9240577,9502721,9764865,9961473,10092545,10223617,10354689,10551297,10878977,11075585,11141121,11272193,11599873,11927553,11993089,12124161,12517377,45350913,46268417,46858241,47579137,49545217],"efficient":[11403265,41746433,50724865],"enforcerelativeprefix":[49479681],"evaluate":[3145732,4259844,6029316,6291460,6356996,6422532,6684677,7536641,8781828,9306116,12582914,13434882,14286850,15007752,15073288,16384007,17170440,19070986,19595265,19857410,20971522,21889026,22741002,24051721,25952264,26017793,26869761,28311553,32440321,32571397,32636933,32768001,33357825,33423366,50855937,52690954,54198273,54329348,56164356,56229889,57737220,57999364,58458117,58523652,58589188,58982404,59179012],"elementt":[9240578,9764866,9961474,10092546,10551298,10878978,11075586,11141122,11599874,11927554,11993090,12517378],"environments":[54329345,57737217,57999361],"enumerable":[6619138,7471106,7667713,7864322,8257537,14942209,17301505,47906817,48496641],"evaluatedocument":[3145731,4259843,6029315,6291459,6356995,6422531,6684675,8781827,9306115,12582917,13434885,14286853,19857415,20971527,21889031,32440323,33357827,54329347,56164355,57737219,57999363,58458115,58523651,58589187,58982403,59179011],"easy":[47972353],"entered":[33095681],"entry":[8978433],"executing":[13893633,15400961,16908289,17563649,17825793,19333121,28246017,39124993,43450369,45416449,50790401,50921473,56492033],"enablesamplecollection":[52166657],"expression":[12582913,13434881,14286849,15007745,15073281,16384001,17170433,19070977,19595265,19857409,20971521,21889025,22740993,24051713,26869761,28311553,32768002,50855937,52690945,54198273,56229890],"executecommand":[3145729,4259841,6029314,6291458,6356994,6422530,6684674,8781825,9306113,19595270,26869767,28311559,32768006,50855940,54198279,54329346,56164353,56229894,57737217,57999362,58458114,58523649,58589186,58982402,59179009],"end":[25493505,28573697,45154305,47644673,48103425,48168961,48431105,48562177,48824321,48955393,49020929,49152001,49217537,49545217,49676289,49741825,49872897,50135041,50200577,50266113,50331649,50397185,50462721,50593793,51118081,51183617,51445761,51707905,51773441,51838977,51904513,51970049,52363265,52559873,52756481,53018625,53084161,53411841,53477377,53936129,54263809,54329345,54460417,54788097,55246849,55312385,56033281,56164353,56754177,57016321,57344001,57606145,57737217,57868289,57933825,57999361,58130433,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58982401,59047937,59113473,59179009],"executable":[35323905,35913729,46661634,46858246,53411841,55246849],"enabledebugging":[50659331,50790403,54067202],"engines":[11403265,16121857,16384001,19595265,23724033,24051713,26607617,26869761,28311553,29163521,32309249,32768001,36110337,46399490,47972355,48431105,50593793,50855937,50921474,50987009,54198273,55771139,56229889,56295425,57212931,57475074,57737217,57868289,58392577,58523649,59179009],"executedocument":[3145731,4259843,6029315,6291459,6356995,6422531,6684675,8781827,9306115,12910597,13500421,14548997,20316167,21102599,22020103,31326211,32964611,54329347,56164355,57737219,57999363,58458115,58523651,58589187,58982403,59179011],"exhaustive":[14221318,21430278,23855110,28770311,55115783],"enhance":[50659329],"eligible":[49479681],"encounter":[49938433],"exists":[39911425,40960001,43319297,56033281,57344001,58195969],"exhausting":[45023233],"executed":[12910593,13500417,14548993,20316161,21102593,21692417,21954561,22020097,22413313,22872065,23134209,23658497,23920641,24182785,24313857,24772609,25100289,25165825,25362433,25624577,25886721,26083329,26476545,26607617,26673153,27131905,27262977,27459585,27918337,28049409,28180481,28704769,28835841,29163521,29425665,29622273,29884417,30539777,31129601,31653889,32309249,32702465,49807361,56754177,56885249],"explicit":[14090242,19660802],"enumeration":[2424833,4128769,36569090,47906819,48496643,49479682,49938434,50397185,50659330,50724866,50790402,50921474,50987010,51052546,52166658,53542914,54067202,55771137,55902210,56295425,56885249,57212929,58195970,58458114,58916866,59047937],"equal":[1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1966081,2097153,2162689,2424833,2621441,2883585,2949121,3014657,3080193,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3866625,3932161,3997697,4063233,4128769,4259841,4325377,4390913,4718593,4849665,6029313,6291457,6356993,6422529,6684673,7077889,8781825,9306113,47644673,48168961,48103425,48562177,48824321,48955393,49020929,49217537,49545217,49741825,49872897,50135041,50266113,50331649,50397185,50462721,51118081,51707905,51773441,51970049,52559873,53084161,53411841,53477377,53936129,54329345,54460417,55246849,55312385,56033281,56754177,57344001,57737217,57933825,57999361,58392577,58458113,58523649,58589185,58654723,58720257,58851329,58982401,59047937,59113473,59179009],"expose":[12713985,12845057,12976130,13565953,13631489,13697026,14090243,14483457,14680065,14745601,15335425,15532033,15597569,18481154,19529729,19660803,20381697,20447233,21168129,21233665,22151169,22478849,23265281,23330818,24444929,25427969,36831233,36962305,37486593,38928385,39649281,42008577,43843585,44695553,49545217,50462721],"enabling":[47775745,49414145],"enums":[7012353,16384001,24051713,48103425,50266113,56033281],"excluded":[47906817,48496641],"errordetails":[34930689,35454977,35717121,37224452,41156614,44630022,57016321,58720257,58785793]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_102.json b/docs/Reference/fti/FTI_102.json index 6c606ce66..01e865b8d 100644 --- a/docs/Reference/fti/FTI_102.json +++ b/docs/Reference/fti/FTI_102.json @@ -1 +1 @@ -{"fail":[38797313,41811969,51642369,58195969],"fully":[1572865,3407873,7077889,8585217,10354689,10944513,13565953,14155777,14614529,15269889,16777217,17825793,19791873,21037057,55246849,56033281],"frame":[49872898,53411842],"fields":[131074,196610,327682,393218,524290,53805057,54460417,55508993,56033281,56426497,56688641,56885249,58064897,58327041],"filesystemobject":[7733250],"finallyfunc":[10682376],"fso":[7733250],"floating":[8912897,38141953,38207489,40042497,40501249,42532865,44236801,46333954,47185921,48824321,49348610,50331649,54263809,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"format":[7077889,7733249,11206657,11993089,12255233,12910593,12976129,13107201,13369345,13697025,14286849,15466497,17891329,17956865,18677761,19070977,19136513,21626881,21692417,22216705,22282241,26411009,27131905,27459585,28442625,30212097,31784961,31981569,32571393,32768001,32899073,33423361,42074114,47644674,53542914],"files":[36700161,38010882,38141953,38207489,40042497,40501249,41156609,42532865,44236801,46792705,47185921,48824321,49020929,49676289,50331649,50462721,52953089,53346305,54263809,54984705,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"finished":[28508161],"file":[7405569,19202050,31784962,31981570,32571394,32768002,32899074,33423362,36175873,37289985,38076417,38141953,38207489,39124993,39387137,40042497,40304641,40501249,41025537,41156610,42532865,44236801,46792706,47185921,47316994,48824321,49020930,49676290,50331649,50462722,52953090,53346306,53477377,54263809,55902209,56492034,56950785,57344002,57475074,57737217,57868290,58261506,58392578,58458114],"finally":[10682369],"filenameextension":[38141953,38207490,40042497,40501250,41156612,42532866,44236801,46792709,47185922,48824322,49020935,49676294,50331649,50462727,52953095,53346310,54263810,56492034,56950785,57344002,57475073,57868289,58261506,58392578,58458113],"free":[1179649,1245185,1310721,1376257,1441793,1572865,1507329,1638401,1703937,1769473,1835009,1900545,2097153,2359297,2424833,2686977,2818049,2883585,3014657,3080193,3276801,3342337,3407873,3473409,3670017,3735553,3866625,3932161,3997697,4063233,4128769,4194305,4325377,4456449,4521985,4980737,6750209,49414145,49545217,50790401,52101121,52166657,52232193,53018625,53280769,53805057,54001665,54067201,54329345,54460417,55050241,55246849,55508993,55574529,55705601,55771137,55836673,55902209,55967745,56033281,56164353,56295425,56360961,56426497,56623105,56688641,56754177,56819713,57016321,57212929,57540609,57737217,58064897,58327041],"features":[30212097,35586049,44957697,47710209,52625410,53870593,54788097,54919169,57278465],"formatting":[38141953,38207489,40042497,40501249,42074114,42532865,44236801,44826625,47185921,47644674,48824321,50331649,53542914,54263809,56492033,56950785,57016321,57344001,57475073,57868289,58261505,58392577,58458113],"functionality":[6291457,39256065,52625409],"feature":[39256068,47448069,54919169,57278465],"favor":[14942209,17170433,22609921,24510465,28573697],"fatal":[38993922,39387137,40173569,40960001,41484290,41549826,57081857,57737217,57933825],"flags":[3014657,4980737,7405576,10616838,11468806,11796486,12255238,12451846,12582918,12648454,13107206,13369350,13500422,14090246,14155782,14286854,15269894,16056327,16187399,16646151,16777223,16973831,17039367,17825799,17956871,17891335,18284551,18612231,19070983,19136519,20381702,20971526,21495814,22937606,23003143,23068678,23658502,23724038,24313862,24444934,25034758,25231366,25821190,26083334,26148870,26804230,26935302,27197446,27656198,27721734,27852806,27983878,28311558,28770310,29097990,29425670,29753350,30015494,30408710,30605318,30670854,30932998,31391750,31522822,31784966,31981574,32309254,32571398,32768005,32899077,33423366,34865153,34930689,40828929,41680901,42336257,42598405,43253761,43712517,43974657,44564481,45481985,45940737,48168961,51249153,52101121,52625409,52822017,53477377,54132737,54329345,54657025,54788097,54853633,54919169,55246849,55312385,56557569,57278465,57409537,57606145,57802753,58064897,58195969],"float":[46333953,49348609,51642369,54132737],"fallback":[38141953,38207489,40042497,40501249,42532865,44236801,47185921,48824321,48889858,50331649,51773442,54263809,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"filenameextensions":[19202053,20905988,31784965,31981573,32571397,32768005,32899077,33423365,36175873,47316996,55902209],"func":[2228225,2293761,2555905,2752513,2949121,3014658,3538945,3997697,4980737,7077889,8060935,9043976,15400971,16318475,31195147,32178179,33095681,33619969,37027855,37486593,38600705,52101121,52822017,54132737,54329346,55640065,56688641,57409537,57606145,57802753],"functional":[14090241,16646145],"flag":[3014657,4980737,7405574,52101121,54329345],"final":[10682369],"field":[655362,720898,851970,917506,983042,1048578,8388609,14090241,16646145,38141954,38207490,38797314,40042498,40501250,41811970,42532866,44236802,47185922,47841281,48824322,50331650,50724865,52625409,53805060,54263810,56426500,56492034,56950786,57344002,57475074,57868290,58064900,58195970,58261506,58392578,58458114],"following":[65537,131073,196609,262145,327681,393217,458753,524289,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4456449,4521985,4980737,5046273,5242881,5308417,5505025,5570561,5832705,6094849,6553601,6750209,6881281,7077889,7405569,7471105,7733249,7929857,8192001,8585217,8650753,8847361,8912897,9043969,9109505,9240577,9306113,9502721,9568257,9764866,9830401,10027009,10092545,10682369,10747905,10813441,11010049,11206657,11599873,11665409,11862017,12058625,12320769,12517377,14024705,14090241,16646145,22413313,34340865,34865153,34930689,35127297,35454977,35520513,35848193,35913729,36175873,36503553,36569089,36700161,37158913,37421057,37748737,38141953,38207489,38731777,38862849,39387137,40042497,40173569,40501249,40828929,40960001,41418753,41615361,41746433,41877505,42336257,42401793,42467329,42532865,42860545,42926081,43253761,43581441,43974657,44040193,44236801,44564481,44630017,44826625,45285377,45481985,47185921,48824321,49414145,49545217,50331649,50790401,51249153,52101121,52166657,52232193,52756481,52822017,53018625,53280769,53805057,54001665,54067201,54132738,54263809,54329345,54460417,54591489,54984705,55050241,55181313,55246849,55377921,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56623105,56688641,56754177,56819713,56950785,57016321,57081857,57147393,57212929,57344001,57409537,57475073,57540609,57606145,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58261505,58327041,58392577,58458113],"facilitate":[42074113,47644673,53542913],"foreach":[9830403,12517378],"follow":[1],"false":[4653058,5701634,5898242,6291457,7929857,8257537,8388609,8716289,8781825,9371649,10682370,11599873,12320769,13893633,14024705,14221313,14483457,14811137,14942209,15925249,16252929,16842753,17170433,17498113,18481154,18939905,20185089,20643841,20840449,21495809,22020097,22413313,22609921,22740993,23134209,23789569,24248321,24510465,24969217,25362433,25755649,26345473,26542081,26738689,27328513,28114946,28573697,28639233,28966913,29360130,29491201,29753345,29949953,31850497,32505857,33488897,33882113,43384833,45547521,54198273],"funcname":[13631493,20250630],"framework":[17367041,17563649,18219009,18546689,39256065],"forwards":[14024705,22413313],"formatcode":[38141953,38207489,40042497,40501249,42074116,42532865,44236801,44826625,47185921,47644678,48824321,50331649,53542916,54263809,56492033,56950785,57016321,57344001,57475073,57868289,58261505,58392577,58458113],"functionname":[43581441,44171268,55771137],"flagsattribute":[52625412,53477380,54657028,54788100,54853636,54919172,55312388,56557572,57278468,58195972],"friendly":[57671681],"finalize":[1179649,1245185,1310721,1376257,1441793,1572865,1507329,1638401,1703937,1769473,1835009,1900545,2097153,2359297,2424833,2686977,2818049,2883585,3014657,3080193,3276801,3342337,3407873,3473409,3670017,3735553,3801090,3866625,3932161,3997697,4063233,4128769,4194305,4325377,4456449,4521985,4980737,5046273,5242881,5505025,5570561,5832705,6094849,6553601,6750209,18481154,27918345,28114946,29360130,49414145,49545217,50790401,52101121,52166657,52232193,53018625,53280769,53805057,54001665,54067201,54263809,54329345,54460417,55050241,55246849,55508993,55574529,55705601,55771137,55836673,55902209,55967745,56033281,56164353,56295425,56360961,56426497,56492033,56623105,56688641,56754177,56819713,57016321,57212929,57344001,57475074,57540609,57737217,57868289,58064897,58261505,58327041,58392577,58458113],"function":[1179649,1310721,1376257,1441793,1507329,1638402,1703937,1769474,1835010,1900546,2162689,2228225,2293761,2424833,2555905,2686977,2752513,2818049,2949121,3014661,3211265,3276801,3342337,3473409,3604481,3670017,3735553,3801090,3866626,3932161,3997697,4063233,4128769,4194305,4259841,4456449,4521985,4653057,4784129,4980740,5046274,5111809,5242882,5505026,5570562,5636097,5701633,5832706,5898241,5963777,6094850,6160385,6291457,6422531,6553602,6684675,6750209,6881281,6946817,7012353,7077890,7143426,7208962,7274497,7340033,7405570,7471106,7602177,7667713,7733249,7798786,7864321,7929860,7995394,8060934,8126466,8192004,8257538,8323074,8388610,8454145,8519681,8585217,8650754,8716290,8781826,8847362,8912898,8978434,9043976,9109505,9175041,9240578,9306114,9371650,9502722,9568258,9633794,9764865,9830408,9961474,10027010,10092546,10158082,10223617,10289153,10682377,10747906,10813442,11010050,11206657,11599875,11665410,11862018,12058625,12320771,12517384,12779521,12845057,13238273,13631492,13762561,13828097,14024705,14221313,14483457,14745601,14811137,15073281,15138819,15400961,15466497,15663105,15728641,15794177,15990785,16121857,16252929,16318465,16449537,16515073,16711681,16842753,16908289,17235969,17301505,17367041,17498113,17563649,17629185,17694721,18022401,18087937,18219009,18415617,18546689,18677761,18743297,18808833,18939905,19333121,19398657,19660801,20250628,20316161,20447233,20578305,20643841,20840449,21168129,21495809,21889025,21954561,22020097,22413313,22544385,22740993,22806529,22937601,23134209,23265281,23330817,23527425,23592961,23789569,23920643,24117249,24248321,24313857,24379393,24576001,24641537,24772609,24903681,24969217,25100289,25231361,25362433,25427969,25493505,25624577,25755649,25886721,25952257,26017793,26214401,26279937,26411009,26476545,26542081,26607617,26673153,26738689,26869761,27000833,27131905,27328513,27394049,27721729,27787265,28246017,28377089,28639233,28704769,28901377,28966913,29163521,29229057,29491201,29556737,29753345,29949953,30081025,30212097,30801921,30867457,31195137,31850497,32178178,32505857,33292289,33357825,33882113,33947649,34275329,34537474,37027841,42139649,43450369,43581446,44171266,44892161,46268417,47382529,47448065,47906817,49414145,49545218,50790401,51249153,52101124,52232193,52822017,53018625,53280770,54001665,54067201,54132737,54198273,54263810,54329349,54460417,54525953,54853635,55050241,55115778,55508993,55574529,55705601,55771143,55902209,56164353,56295425,56360963,56492034,56623107,56688641,56754177,56819714,56950785,57016321,57147393,57212929,57344002,57409537,57475074,57540609,57606145,57737217,57802753,57868290,58130433,58261506,58327041,58392578,58458114],"form":[7077889,7667713,8585217,10158081,12451841,12648449,12713985,13303809,13565953,14024705,14155777,14614529,15269889,15335425,16777217,17825793,18284545,18612225,19005441,19791873,21037057,21757953,22151169,22413313],"first":[3145729,7012353,7274497,7340033,7602177,7864321,8519681,9043969,12517377,15663105,15990785,16121858,16515073,16711681,16908290,17301506,17367041,17563649,18022402,18219009,18546689,18808834,19660801,20316162,40763393,46661633,47448065,48168961,54788097,54919169,56098817],"foo":[9764865,11206657],"finalization":[27918337],"freeing":[2162689,2228225,2293761,2555905,2752513,2949121,3211265,3604481,3801089,3866625,4194305,4259841,5046273,5242881,5505025,5570561,5832705,6094849,6553601,17760257,21364737,25690113,34471937,34734081,39649281,51249153,52822017,53280769,54132737,54263809,56492033,56950785,57016321,57147393,57344001,57409537,57475073,57606145,57802753,57868289,58130433,58261505,58392577,58458113],"fails":[3014657,4980737,8192001,8912897,48889857,51773441,52101121,54329345],"functions":[3014657,4980737,6619137,6881281,7077889,7143425,7208961,7405569,7471105,7667713,7733249,7798785,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9764865,9830401,9961473,10027009,10092545,10158081,10289153,10682369,10747905,10813441,11010049,11206657,11599873,11665409,11862017,12058625,12320769,12517377,32178177,32636929,33161217,33751041,34078721,34537474,34668545,35192833,35717121,37814274,38141953,38207489,38338561,38928385,40042497,40501249,40894466,42532865,44236801,45088769,47185921,48824321,50331649,50528257,51511297,52101122,53673985,54263809,54329346,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"filter":[9699334,10485766,11403270,12124166],"formatted":[15466497,18677761,27131905,30212097],"future":[54919169,57278465],"frames":[39387137,57737217]} \ No newline at end of file +{"final":[10354689],"feature":[41746436,49807365,50790401,54067201],"filter":[10420230,10485766,11337734,11796486],"format":[6815745,7864321,8192001,11534337,11730945,12255233,12320769,12386305,12779521,13041665,14155777,16580609,17563649,18284545,19005441,19267585,19333121,19791873,20512769,22544385,22675457,23068673,23986177,28246017,29491201,29687809,30867457,31522817,32505857,39124994,43450370,45416450,52035585,53805057,56492033],"floating":[9502721,34275329,35127297,36569089,36765697,36896769,37617665,38338561,38535170,39321601,41025537,43384834,54329345,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"friendly":[55902209],"finalize":[1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1966081,2097153,2162689,2424833,2621441,2883585,2949121,3014657,3080193,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3866625,3932161,3997697,4063233,4128769,4259842,4325377,4390913,4718593,4849665,6029313,6291457,6356993,6422529,6684673,7077889,8781825,9306113,18350082,18743305,25296898,47644673,48168961,48103425,48562177,48824321,48955393,49020929,49217537,49545217,49741825,49872897,50135041,50266113,50331649,50397185,50462721,51118081,51707905,51773441,51970049,52559873,53084161,53411841,53477377,53936129,54329345,54460417,55246849,55312385,55836674,56033281,56754177,57344001,57737217,57933825,57999361,58392577,58458113,58523650,58589185,58654721,58720257,58851329,58982401,59047937,59113473,59179009],"finallyfunc":[10354696],"funcname":[13172741,21037062],"function":[1114113,1179649,1245185,1441793,1507329,1572865,1638402,1703938,1769474,2031617,2097154,2162689,2228225,2293761,2359297,2424833,2752513,2818049,3014661,3080193,3145729,3211265,3342337,3407873,3473409,3538945,3604484,3670017,3735553,3866625,3932161,3997697,4128770,4259842,4325377,4390913,4521985,4587521,4653057,4718593,4784129,4849665,5373953,5570561,5636097,5898241,6029314,6094849,6291458,6356994,6422530,6488065,6553601,6619137,6684674,6750211,6815745,6881281,6946817,7012353,7077889,7208961,7274497,7340035,7471105,7536646,7602178,7667720,7733249,7798788,7864322,7929857,7995393,8060930,8126466,8192001,8257544,8323073,8388610,8454145,8519682,8585218,8650756,8716290,8781826,8847362,8912898,8978433,9043969,9109506,9175042,9240578,9306114,9371649,9437186,9502722,9568258,9633794,9764866,9830402,9961474,10027010,10092546,10223624,10354697,10551298,10616834,10878978,10944514,11075586,11141122,11272195,11599874,11862017,11927554,11993090,12124163,12517378,12582913,13172740,13238273,13434881,13762561,13828097,13893633,14286849,14352385,14417923,14614529,14811137,14876673,14942209,15007745,15073281,15138817,15269889,15466497,15663105,15728641,15794177,15859713,16056321,16252929,16318465,16384001,16646145,16777217,16973825,17170433,17235969,17301505,17432577,17563649,17760257,17825793,17956865,18546689,18612225,18677761,19070977,19333121,19464193,19595265,19726337,19857409,20185089,20643841,20905985,20971521,21037060,21626881,21692417,21823489,21889025,21954561,22282241,22413313,22544385,22740993,22872065,23003139,23134209,23527425,23658497,23789569,23920641,24051713,24117249,24182785,24248321,24313857,24707073,24772609,24903681,25100289,25165825,25231361,25362433,25493505,25624577,25690113,25886721,25952257,26083329,26148865,26411009,26476545,26607617,26673153,26869761,27131905,27197441,27262977,27328513,27459585,27525121,27721729,27787265,27918337,28049409,28180481,28246017,28311553,28573697,28704769,28835841,29032449,29097985,29163521,29425665,29556737,29622273,29884417,30539777,31129601,31653889,31784961,32309249,32702465,32768001,35258374,43515905,43909121,44498945,45219841,45809666,46530561,46596097,47120385,47644673,48037889,48168961,48562179,48824321,48955393,49020929,49152001,49217538,49545217,49676289,49741825,49807361,49872898,50135041,50200577,50331649,50397185,50462725,50528257,50855937,51052547,51118083,51183617,51707905,51970049,52559876,52690945,52756481,53084161,53346305,53411841,53477383,53542914,53673985,53936129,54198273,54329346,54591489,54984705,55246849,55312385,55771138,56164353,56229889,56360962,56492033,56754177,57606145,57737218,57933825,57999362,58130433,58327041,58392577,58458114,58523650,58589186,58654721,58720257,58982402,59047938,59179010],"fields":[131074,262146,327682,393218,524290,589826,50331649,53084161,53936129,54460417,57344001,58195969,58392577,58654721,58851329,59113473],"formatting":[34275329,35127297,35782657,36569089,36765697,36896769,37617665,38338561,39124994,39321601,41025537,43450370,45416450,51970049,54329345,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"functional":[14090241,19660801],"free":[1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1966081,2097153,2162689,2424833,2621441,2883585,2949121,3014657,3080193,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3866625,3932161,3997697,4063233,4128769,4325377,4390913,4718593,4849665,7077889,47644673,48168961,48103425,48562177,48824321,48955393,49020929,49217537,49545217,49741825,49872897,50135041,50266113,50331649,50397185,50462721,51118081,51707905,51773441,51970049,52559873,53084161,53411841,53477377,53936129,54460417,55246849,55312385,56033281,56754177,57344001,57933825,58392577,58654721,58720257,58851329,59047937,59113473],"fatal":[34930689,35454977,35717121,37289986,41418754,43122690,57016321,58720257,58785793],"fail":[38862849,43646977,45023233,58916865],"functionality":[4653057,41746433,50659329],"functions":[3014657,3604481,5898241,6619137,6815745,6946817,7012353,7405569,7471105,7536641,7602177,7667713,7798785,7864321,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8519681,8585217,8650753,8716289,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9437185,9502721,9568257,9633793,9764865,9830401,9961473,10027009,10092545,10223617,10354689,10551297,10616833,10878977,10944513,11075585,11141121,11272193,11599873,11927553,11993089,12124161,12517377,12648449,30081025,30146561,30212097,30277633,30408705,30605313,30998529,34275329,35127297,36569089,36765697,36896769,37617665,38338561,39190529,39321601,39518210,41025537,42729474,43712513,47185921,49086465,50462722,52559874,54329345,54525953,55050241,55771138,56164353,56360961,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"functionname":[35258369,45809668,53477377],"fails":[3014657,3604481,8650753,9502721,40894465,42270721,50462721,52559873],"finished":[26804225],"follow":[1],"file":[8388609,19398658,29491202,30867458,31522818,32505858,33685505,34275329,34930689,35127297,36438017,36569089,36765697,36896769,37421058,37617665,38338561,39321601,39714818,41025537,42663938,46071810,46727170,46792706,47448066,48300034,48824321,49479681,52035586,53805058,54329346,56098817,56164353,56950785,57409537,57671681,57737218,57999362,58458113,58523650,58589186,58720257,58982402,59179010],"following":[65537,131073,262145,327681,393217,524289,589825,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4718593,4784129,4849665,6029313,6291457,6356993,6422529,6619137,6684673,6815745,7077889,7143425,7471105,7667713,7798785,7864321,7995393,8126465,8192001,8257537,8388609,8585217,8650753,8781825,8978434,9043969,9240577,9306113,9502721,9764865,9961473,10092545,10223617,10354689,10551297,10878977,11075585,11141121,11272193,11599873,11927553,11993089,12124161,12517377,14090241,16384001,19660801,24051713,33488897,33554433,33619969,33751041,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36438017,36569089,36700161,36765697,36896769,37617665,38338561,39321601,41025537,47644673,48103425,48168961,48431105,48562177,48824321,48955393,49020929,49152001,49217537,49545217,49676290,49741825,49872897,50135041,50200577,50266113,50331649,50397185,50462721,50593793,51118081,51183617,51445761,51576833,51707905,51773441,51838977,51904513,51970049,52232193,52363265,52559873,52756481,52822017,53018625,53084161,53411841,53477377,53936129,54263809,54329345,54460417,54788097,55246849,55312385,56033281,56164353,56754177,57016321,57344001,57606145,57737217,57868289,57933825,57999361,58130433,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58982401,59047937,59113473,59179009],"first":[2686977,7208961,7274497,7733249,7929857,8257537,8454145,9371649,10223617,14811138,14876674,14942209,15663106,15728641,15794177,16056321,16318466,16646145,16777217,16973825,17301505,17432577,17760257,18612226,18677761,19464194,36831233,36962305,45875201,49807361,50790401,50921473,52363265],"frames":[34930689,58720257],"fso":[8192002],"framework":[15794177,16056321,17432577,18677761,41746433],"forwards":[16384001,24051713],"foo":[6815745,8978433],"files":[33488897,34275329,35127297,36569089,36765697,36896769,37617665,38338561,39321601,39714817,40173570,41025537,42663937,46071809,46727169,46792705,47448065,48300033,51904513,54329345,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"formatted":[17563649,19333121,28246017,56492033],"frame":[47710210,49348610],"false":[4521986,4653057,5570562,6881282,7798785,8060929,8519681,8716289,9175041,10354690,10944513,11272193,12124161,13762561,13828097,14221313,14352385,15925249,16121857,16384001,16711681,17235969,17956865,18350082,18546689,19726337,20185089,21430273,22282241,23724033,23855105,23920641,24051713,24117249,24248321,24313857,24903681,25165825,25296898,25624577,25690113,26411009,26476545,27131905,27721729,27918337,28049409,28704769,28770305,29425665,31129601,31653889,39059457,45678593,47120385,52625409,53673985,54591489,55115777,55836674],"future":[50790401,54067201],"fully":[1376257,4063233,7864321,9043969,10158081,10813441,12976129,13631489,13697025,14745601,18481153,19529729,23330817,24444929,51773441,54460417],"factory":[51838977,55771137],"favor":[14221313,21430273,23855105,28770305,55115777],"features":[37552129,41811969,47972353,50659330,50790401,50921473,54067201,56295425,56492033],"float":[38535169,43384833,45023233,49676289],"filesystemobject":[8192002],"fallback":[34275329,35127297,36569089,36765697,36896769,37617665,38338561,39321601,40894466,41025537,42270722,54329345,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"form":[6946817,7864321,9043969,9633793,12713985,12976129,13631489,13697025,14483457,14745601,15335425,15532033,15597569,16384001,18481153,19529729,20381697,21168129,21233665,22151169,23330817,24051713,24444929,25427969],"filenameextensions":[18808836,19398661,29491205,30867461,31522821,32505861,36438017,37421060,48824321,52035589,53805061],"finally":[10354689],"flagsattribute":[49479684,49938436,50659332,50790404,50921476,50987012,51052548,52166660,54067204,58916868],"field":[458754,720898,786434,851970,917506,983042,1048578,8060929,14090241,19660801,34275330,35127298,36569090,36765698,36896770,37617666,38338562,38862850,38993921,39321602,41025538,42205185,43646978,50659329,54329346,56164354,57344004,57737218,57999362,58458114,58523650,58589186,58851332,58916866,58982402,59113476,59179010],"foreach":[7667715,10223618],"formatcode":[34275329,35127297,35782657,36569089,36765697,36896769,37617665,38338561,39124996,39321601,41025537,43450374,45416452,51970049,54329345,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"finalization":[18743297],"freeing":[2031617,2228225,2293761,2359297,2752513,2818049,3145729,3211265,4128769,4259841,4784129,4849665,6029313,6291457,6356993,6422529,6684673,8781825,9306113,19988481,24379393,27656193,31981569,49152001,49676289,50200577,51183617,51970049,52756481,54329345,56164353,57147393,57606145,57737217,57999361,58130433,58261505,58327041,58458113,58523649,58589185,58982401,59047937,59179009],"flags":[3014657,3604481,8388616,10682374,11534342,11665414,11730950,12189702,12320774,12386310,12845062,13697030,13959174,14090246,14745606,15532038,15597574,17039367,17498119,18153479,18415623,19005447,19267591,19660807,19791879,20054022,20512775,20774918,21233671,22478855,22937606,23330823,23461894,23789574,24444935,24641542,24707078,24838150,24903686,25427975,25755654,26148870,26214406,26279942,26345478,26411014,26542086,26738694,27000838,27066374,27197446,27852806,27983878,28508166,28639238,29229062,29294598,29491206,29818886,29949958,30343174,30474246,30867462,31522822,32505861,34013185,34340865,34471937,34603009,35061761,35586049,35848193,36372485,36700161,37748737,40632325,42401797,45875201,49152001,49479681,49676289,49938433,50200577,50462721,50659329,50790401,50921473,50987009,51052545,51183617,51773441,52035589,52166657,52559873,52756481,52953094,53805062,54067201,54853638,55181318,57081862,58130433,58851329,58916865],"facilitate":[39124993,43450369,45416449],"filenameextension":[34275329,35127297,36569090,36765698,36896770,37617666,38338561,39321602,39714820,41025537,42663941,46071815,46727175,46792710,47448070,48300039,54329346,56164353,57737217,57999362,58458114,58523649,58589186,58982402,59179009],"func":[2228225,2293761,2359297,2818049,3014658,3211265,3604481,3801089,4325377,7536647,7864321,8257544,13893643,17825803,29097995,32899073,49152001,49676289,50200577,50462722,51249153,52559873,52756481,54788097,54984719,55705601,56360963,56557569,58130433,58392577],"flag":[3014657,3604481,8388614,50462721,52559873]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_103.json b/docs/Reference/fti/FTI_103.json index 11b460c07..5efeb1b34 100644 --- a/docs/Reference/fti/FTI_103.json +++ b/docs/Reference/fti/FTI_103.json @@ -1 +1 @@ -{"grow":[38207489,44826625,47775745,52363265,54263809,57016321],"general":[589825,8257537,9633793,9961473,47841281,50724865],"globalmembers":[54657025,54919169],"getnamespacenode":[3932161,10223620,55574529],"generator":[54853635],"garbage":[1179649,1245185,1310721,1376257,1441793,1572865,1507329,1638401,1703937,1769473,1835009,1900545,2097153,2359297,2424833,2686977,2818049,2883585,3014657,3080193,3211265,3276801,3342337,3407873,3473409,3670017,3735553,3801090,3866625,3932161,3997697,4063233,4128769,4194306,4325377,4456449,4521985,4980737,5046274,5242882,5505026,5570562,5832706,6094850,6553602,6750209,14942211,17170435,22609923,24510467,27918339,28508161,28573699,43778049,49414145,49545217,50790401,52101121,52166657,52232193,53018625,53280769,53805057,54001665,54067201,54263810,54329345,54460417,55050241,55246849,55508993,55574529,55705601,55771137,55836673,55902209,55967745,56033281,56164353,56295425,56360961,56426497,56492034,56557569,56623105,56688641,56754177,56819713,56950785,57016322,57212929,57344002,57475074,57540609,57737217,57868290,58064897,58261506,58327041,58392578,58458114],"getruntimeheapinfo":[6094849,26476548,54263809],"guid":[3211272,3801096,5046280,5242888,5505032,5570568,5832712,6094856,6553608,7733249,10616838,11206657,11468806,11534342,11730950,11796486,11993089,12189702,12255233,12386310,12582918,12910593,12976129,13107201,13369345,13697025,14286849,16056328,16187400,16973832,17039368,17891329,17956865,19070977,19136513,19857416,19922952,20709384,20774920,21626881,21692417,22216705,22282241,31784961,31981569,32440324,32571393,32768001,32899073,33423361,37093380,38535172,39321604,54263816,55836673,56492040,56950792,57344008,57475080,57868296,58261512,58392584,58458120],"getunderlyingobject":[4259841,33947652,58130433],"getheapinfo":[4194305,26869764,57016321],"given":[1179649,3342337,4194305,6094849,6291457,11927553,27066369,27459585,28442625,49414145,54263810,54657025,55050241,57016321],"groups":[8781825,11599873],"generate":[12517377,54722562],"getelement":[3014657,4980737,9633796,52101121,54329345],"giving":[2228226,2293762,2555906,2752514,2949122,14548993,15400961,15597569,16318465,33095682,33619970,52822018,54132738,55836673,57409538,57606146,57802754],"generally":[9764865],"generated":[4194310,6094854,22020098,22740994,22806530,23592962,23789570,24772610,24903682,24969218,25362434,25755650,25952258,26542082,26607618,26673154,26738690,27328514,27394050,27787266,28246018,28966914,29491202,30081026,30801922,31850498,33685507,34144259,34406403,37683203,54263814,54722561,57016326],"generates":[27459585,28442625],"gets":[524290,720897,917505,1179649,1245185,1310721,1376257,1441793,1572865,1507329,1638401,1703937,1769473,1835009,1900545,2097153,2162690,2228226,2293762,2359297,2424833,2555906,2686977,2752514,2818049,2883585,2949122,3014662,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3604482,3670017,3735553,3801090,3866627,3932161,3997697,4063233,4128769,4194305,4259842,4325377,4456449,4521985,4980742,5046274,5242882,5505026,5570562,5832706,6094850,6553602,6750209,7208961,7798785,9633793,11599873,12320769,13238273,13762561,15466497,18677761,21954561,22544385,27131905,30212097,31457282,32636930,34340866,34865161,34930694,35127302,35258370,35454978,35520514,35717122,35848194,35913735,36175878,36372481,36503554,36569090,36700162,36765697,37158916,37224449,37421060,37552129,37748737,38010881,38141961,38207501,38273025,38469633,38731781,38862849,38993921,39387150,39452673,39518210,39583745,39780353,39845889,39976961,40042504,40108034,40173574,40239105,40435713,40501258,40566785,40697857,40763393,40828932,40960009,41091073,41156609,41222145,41353217,41418755,41484289,41549825,41615363,41680897,41746433,41877506,42008577,42139649,42205185,42270721,42336262,42401794,42467331,42598401,42532874,42663937,42795009,42860549,42926083,42991617,43122689,43188225,43253768,43319297,43384833,43450369,43515905,43581450,43646977,43712513,43778049,43909121,43974664,44040194,44105729,44171265,44236810,44302337,44367873,44433409,44498945,44564485,44630017,44695553,44826631,44892161,45023233,45154305,45219841,45285379,45350913,45416449,45481993,45547521,45678593,45744129,45809665,45940737,46006273,46071809,46137346,46202881,46268417,46399489,46530561,46596097,46661633,46727169,46792705,46923777,46989313,47054849,47120385,47185931,47316993,47382529,47513601,47579137,47775745,47906817,47972353,48103425,48168961,48234497,48300033,48365569,48431105,48627713,48693249,48758785,48824331,48955393,49020929,49086465,49152001,49217537,49283073,49479681,49414145,49545217,49610753,49676289,49741825,49807361,49938433,50069505,50135041,50200577,50331659,50397185,50462721,50593793,50659329,50790402,50855937,50921473,50987009,51118081,51183617,51249159,51314689,51380225,51445761,51576833,51642369,51707905,51838977,51904513,51970049,52035585,52101126,52166659,52232195,52297729,52363265,52428801,52494337,52559873,52690945,52822027,52887553,52953089,53018628,53084161,53149697,53215233,53280774,53346305,53608449,53739521,53805059,54001667,54067204,54132747,54263823,54329350,54460417,54984706,55050246,55181313,55246855,55377922,55508993,55574533,55705603,55771147,55836674,55902215,55967747,56033283,56098822,56164353,56295427,56360961,56426499,56492044,56623105,56688641,56754181,56819713,56950793,57016328,57081865,57147397,57212935,57344012,57409544,57475083,57540616,57606154,57737231,57802762,57868300,57933830,57999361,58064901,58130437,58261517,58327041,58392589,58458125],"getvalue":[14090241,16646145],"guide":[7012353,7274497,7340033,7602177,7864321,8519681,15663105,15990785,16515073,16711681,17367041,17563649,18219009,18546689,19660801],"getbaseexception":[4456449,10682369,57737217],"gethashcode":[1179649,1245185,1310721,1376257,1441793,1572865,1507329,1638401,1703937,1769473,1835009,1900545,2097153,2359297,2424833,2686977,2818049,2883585,3014657,3080193,3276801,3342337,3407873,3473409,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4325377,4456449,4521985,4980737,5046273,5242881,5505025,5570561,5832705,6094849,6553601,6750209,49414145,49545217,50790401,52101121,52166657,52232193,53018625,53280769,53805057,54001665,54067201,54263809,54329345,54460417,55050241,55246849,55508993,55574529,55705601,55771137,55836673,55902209,55967745,56033281,56164353,56295425,56360961,56426497,56492033,56623105,56688641,56754177,56819713,57016321,57212929,57344001,57475073,57540609,57737217,57868289,58064897,58261505,58327041,58392577,58458113],"getcacheddocument":[1507330,1703937,4784133,5111813,50790402,55705601],"getting":[2424833,3866625,53280769,56164353],"gain":[10158081],"gadgets":[6881283,12058627,55574531],"greater":[44695553,45350913,46202881,47120385,51642369,54919169],"globalflags":[38862849,48168964,55181313],"getobjectdata":[2621441,4456450,17104902,19988485,57737218,57933825],"generating":[4194310,6094854,22806529,23592961,24772609,24903681,25952257,26607617,26673153,27394049,27787265,28246017,30081025,30801921,33685507,34144259,34406403,37683203,54263814,57016326],"getstacktrace":[3211265,3801089,5046273,5242882,5505025,5570561,5832705,6094850,6553601,15466500,18677765,27131911,30212102,54263810,56492033,56950785,57344001,57475073,57868290,58261505,58392577,58458113],"global":[3211265,3801089,5046273,5242881,5505025,5570561,5832705,6094849,6553601,10616833,11468801,11534337,11730945,11796481,11993089,12189697,12255233,12386305,12451841,12582913,12648449,12713985,12910593,12976129,13107201,13303809,13369345,13500417,13565953,13631490,13697025,14090241,14155777,14286849,14352385,14614529,15007745,15269889,15335425,16056321,16187393,16580609,16646145,16777217,16973825,17039361,17432577,17825793,17891329,17956865,18284545,18612225,19005441,19070977,19136513,19791873,19857409,19922945,20250626,20709377,20774913,21037057,21626881,21692417,21757953,22151169,22216705,22282241,23003137,31326209,34537473,38141953,38207490,38862849,40042497,40501249,40763393,42074113,42532865,43057158,44236802,45088769,46661633,47185921,47644673,48168963,48562183,48824321,50266120,50331649,50528257,51052553,51511297,52625409,53542913,53673985,54263811,54657025,54919169,54984705,55181313,56492034,56557569,56950786,57344002,57475074,57868291,58261506,58392578,58458114],"getcomponents":[7405569],"gettype":[1179649,1245185,1310721,1376257,1441793,1572865,1507329,1638401,1703937,1769473,1835009,1900545,2097153,2359297,2424833,2686977,2818049,2883585,3014657,3080193,3276801,3342337,3407873,3473409,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4325377,4456449,4521985,4980737,5046273,5242881,5505025,5570561,5832705,6094849,6553601,6750209,42729474,44761090,49414145,49545217,50790401,52101121,52166657,52232193,53018625,53280769,53805057,54001665,54067201,54263809,54329345,54460417,55050241,55246849,55508993,55574529,55705601,55771137,55836673,55902209,55967745,56033281,56164353,56295425,56360961,56426497,56492033,56623105,56688641,56754177,56819713,57016321,57212929,57344001,57475073,57540609,57737217,57868289,58064897,58261505,58327041,58392577,58458113],"getproperty":[2162690,2228226,2293762,2555906,2752514,2949122,3014658,3604482,3866626,4259842,4980738,7208965,7798789,13238277,13762565,21954566,22544390,32636930,35258370,39518210,51249154,52101122,52822018,53280770,54132738,54329346,57147394,57409538,57606146,57802754,58130434],"getenumerator":[3145729,7733249,56098817],"generic":[6291457,7077890,7143425,7340033,7405569,7602177,7667713,7929857,8192001,8585221,8650753,8781825,8847361,8912897,9043969,9109505,9175041,9240577,9306113,9502721,9568257,9764866,9830401,10027009,10092545,10289153,10354689,10747905,10813441,10944513,11010049,11599873,11665409,11862017,12320769,12451841,12648449,12713985,13303809,13500417,13565954,14090242,14155778,14352385,14614530,15269890,15335425,15400961,15990785,16318465,16580609,16646146,16711681,16777218,17563649,17825794,18284545,18546689,18612225,19005441,19791874,21037058,21757953,22151169,23003137,31195137,37027841,44957697,47710209,49545217,54132737,55115777,56623105],"getmetaobject":[2424833,3866625,53280769,56164353],"getbytes":[2228225,2293761,2555905,2752513,2949121,14745604,15794180,52822017,54132737,57409537,57606145,57802753],"getdynamicmembernames":[2424833,3866625,53280769,56164353]} \ No newline at end of file +{"globalflags":[35520513,45875204,51445761],"grow":[35782657,36569089,45547521,50069505,51970049,58458113],"gain":[9633793],"garbage":[1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1966081,2097153,2162689,2424833,2621441,2883585,2949121,3014657,3080193,3145729,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3866625,3932161,3997697,4063233,4128769,4259842,4325377,4390913,4718593,4849666,6029314,6291458,6356994,6422530,6684674,7077889,8781826,9306114,14221315,18743299,21430275,23855107,26804225,28770307,45940737,47644673,48168961,48103425,48562177,48824321,48955393,49020929,49217537,49545217,49741825,49872897,49938433,50135041,50266113,50331649,50397185,50462721,51118081,51707905,51773441,51970050,52559873,53084161,53411841,53477377,53936129,54329346,54460417,55115779,55246849,55312385,56033281,56164353,56754177,57344001,57737218,57933825,57999362,58392577,58458114,58523650,58589186,58654721,58720257,58851329,58982402,59047937,59113473,59179010],"generally":[8978433],"getcacheddocument":[1441794,1507329,4587525,6553605,47644673,49020930],"generated":[4849670,6684678,22872066,23658498,23920642,24313858,25165826,25362434,25624578,26083330,26476546,26607618,27131906,27459586,27918338,28049410,28180482,28704770,28835842,29163522,29425666,30539778,31129602,31653890,32309250,32702466,50724865,51970054,55574531,56426499,57802755,58064899,58458118],"generates":[23986177,29687809],"guid":[3145736,4259848,6029320,6291464,6357000,6422536,6684680,6815745,8192001,8781832,9306120,10682374,11468806,11534337,11665414,11730945,12189702,12255233,12320769,12386305,12451846,12779521,13041665,13107206,13369350,13959174,14155777,16580609,17039368,17498120,18153480,18284545,18415624,19005441,19267585,19791873,20512769,20840456,21364744,21757960,22347784,22675457,23068673,29491201,30867457,31195140,31260676,31522817,32112644,32178180,32505857,50266113,52035585,53805057,54329352,56164360,57737224,57999368,58458120,58523656,58589192,58982408,59179016],"gcnew":[27787265,53084161],"general":[655361,8847361,10027009,10944513,38993921,42205185],"getruntimeheapinfo":[6684673,27525124,58458113],"giving":[2228226,2293762,2359298,2818050,3211266,13893633,15400961,16908289,17825793,32899074,49152002,49676290,50200578,50266113,51249154,52756482,58130434],"gettype":[1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1966081,2097153,2162689,2424833,2621441,2883585,2949121,3014657,3080193,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3866625,3932161,3997697,4063233,4128769,4259841,4325377,4390913,4718593,4849665,6029313,6291457,6356993,6422529,6684673,7077889,8781825,9306113,38273026,44826626,47644673,48168961,48103425,48562177,48824321,48955393,49020929,49217537,49545217,49741825,49872897,50135041,50266113,50331649,50397185,50462721,51118081,51707905,51773441,51970049,52559873,53084161,53411841,53477377,53936129,54329345,54460417,55246849,55312385,56033281,56754177,57344001,57737217,57933825,57999361,58392577,58458113,58523649,58589185,58654721,58720257,58851329,58982401,59047937,59113473,59179009],"gets":[589826,720897,786433,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1966081,2031618,2097153,2162689,2228226,2293762,2359298,2424833,2621441,2686977,2752514,2818050,2883585,2949121,3014662,3080193,3145729,3211266,3276801,3342337,3407873,3473409,3538945,3604486,3670017,3735553,3866625,3932161,3997697,4063233,4128771,4259842,4325377,4390913,4718593,4784130,4849665,6029314,6291458,6356994,6422530,6684674,7077889,7602177,8781826,8847361,9306114,9568257,11272193,12124161,13238273,15138817,17563649,19333121,20643841,21626881,28246017,30081026,30998530,31588354,31719426,33488898,33554433,33619969,33751043,33882116,33947650,34013192,34144258,34209796,34275336,34340873,34406405,34471942,34537475,34603012,34668546,34734083,34799621,34865154,34930702,34996226,35061768,35127305,35192834,35258378,35323910,35389443,35454985,35520513,35586054,35651585,35717126,35782663,35848197,35913735,35979267,36044802,36110337,36175873,36241409,36306945,36372481,36438023,36503553,36569101,36634625,36700169,36831233,36765706,36896778,36962305,37027841,37093377,37158913,37224449,37355521,37289985,37421057,37617675,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38338570,38404097,38469633,38600705,38666241,38731777,38797313,39059457,39256065,39321611,39387137,39452673,39583745,39714817,39780353,39911425,39976961,40042497,40108033,40173569,40239105,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40960001,41025547,41156609,41222145,41353217,41418753,41484289,41549825,41615361,41680897,41877505,41943041,42074113,42139649,42336257,42401793,42467329,42532865,42663937,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43515905,43778049,43909121,43974657,44040193,44105729,44171265,44302337,44433409,44498945,44564481,44630017,44761089,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399490,46465025,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47251457,47316993,47382529,47448065,47513601,47579137,47644675,47775745,47841281,48037889,48103427,48168961,48300033,48365569,48562177,48627713,48693249,48824328,48889857,48955396,49020930,49152010,49217537,49283073,49414145,49545221,49610753,49676299,49741828,49872897,50003969,50069505,50135043,50200586,50266114,50331649,50397185,50462726,51118081,51183623,51445761,51707910,51773447,51904514,51970056,52232194,52363270,52559878,52756491,52822018,53084161,53280770,53411847,53477387,53739522,53936129,54263810,54329356,54460419,55246856,55312387,56033283,56164361,56492033,56754179,57016329,57344003,57606149,57737228,57868289,57933829,57999372,58130440,58327045,58392577,58458127,58523659,58589197,58654721,58720271,58785798,58851333,58982413,59047942,59113475,59179021],"gadgets":[6619139,7471107,49545219],"getelement":[3014657,3604481,8847364,50462721,52559873],"generating":[4849670,6684678,22872065,23658497,25362433,26083329,26607617,27459585,28180481,28835841,29163521,30539777,32309249,32702465,51970054,55574531,56426499,57802755,58064899,58458118],"getunderlyingobject":[4784129,53346308,58327041],"generator":[51052547],"getmetaobject":[2424833,4128769,50397185,59047937],"getheapinfo":[4849665,29032452,51970049],"getobjectdata":[2555905,4718594,18219014,20250629,58720258,58785793],"generate":[10223617,50724866],"generic":[4653057,5898241,6946817,7012353,7274497,7667713,7798785,7864322,7929857,7995393,8126465,8257537,8388609,8650753,8716289,8978434,9043973,9240577,9437185,9502721,9764865,9961473,10092545,10158081,10551297,10813441,10878977,11075585,11141121,11272193,11599873,11927553,11993089,12124161,12517377,12713985,12845057,12976130,13565953,13631490,13697026,13893633,14090242,14483457,14745602,15335425,15532033,15597569,16056321,16777217,17760257,17825793,18481154,18677761,19529730,19660802,20381697,21168129,21233665,22151169,22478849,23265281,23330818,24444930,25427969,27787265,29097985,37552129,41811969,48562177,49676289,49872897,53084161,53542913,54984705],"getting":[2424833,4128769,50397185,59047937],"getbytes":[2228225,2293761,2359297,2818049,3211265,14614532,16252932,49152001,49676289,50200577,52756481,58130433],"getstacktrace":[3145729,4259841,6029313,6291457,6356993,6422529,6684674,8781826,9306113,17563652,19333125,28246023,54329345,56164353,56492038,57737218,57999361,58458114,58523649,58589185,58982401,59179009],"gethashcode":[1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1966081,2097153,2162689,2424833,2621441,2883585,2949121,3014657,3080193,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3866625,3932161,3997697,4063233,4128769,4259841,4325377,4390913,4718593,4849665,6029313,6291457,6356993,6422529,6684673,7077889,8781825,9306113,47644673,48168961,48103425,48562177,48824321,48955393,49020929,49217537,49545217,49741825,49872897,50135041,50266113,50331649,50397185,50462721,51118081,51707905,51773441,51970049,52559873,53084161,53411841,53477377,53936129,54329345,54460417,55246849,55312385,56033281,56754177,57344001,57737217,57933825,57999361,58392577,58458113,58523649,58589185,58654721,58720257,58851329,58982401,59047937,59113473,59179009],"getcomponents":[8388609],"getdynamicmembernames":[2424833,4128769,50397185,59047937],"groups":[8716289,11272193],"guide":[7208961,7274497,7733249,7929857,8454145,9371649,14942209,15728641,15794177,16056321,16646145,16777217,16973825,17301505,17432577,17760257,18677761],"greater":[45023233,45350913,46268417,46858241,47579137,50790401],"getbaseexception":[4718593,10354689,58720257],"given":[1179649,3932161,4653057,4849665,6684673,7143425,11403265,23199745,23986177,27787266,29687809,48168961,50987009,51707905,51838977,51970049,58458114],"getvalue":[14090241,19660801],"getenumerator":[2686977,8192001,52363265],"global":[3145729,4259841,6029313,6291457,6356993,6422529,6684673,8781825,9306113,10682369,11468801,11534337,11665409,11730945,12189697,12255233,12320769,12386305,12451841,12713985,12779521,12845057,12976129,13041665,13107201,13172738,13369345,13565953,13631489,13697025,13959169,14090241,14155777,14483457,14680065,14745601,15335425,15532033,15597569,16580609,17039361,17498113,18153473,18284545,18415617,18481153,19005441,19267585,19529729,19660801,19791873,20381697,20447233,20512769,20840449,21037058,21168129,21233665,21364737,21757953,22151169,22347777,22478849,22675457,23068673,23265281,23330817,24444929,25427969,34275329,35127297,35520513,36569090,36831233,36765697,36896769,36962305,37617665,38338562,39124993,39190529,39321601,39845894,41025537,43450369,43712513,44236807,45416449,45875203,47185921,48234504,48758793,49086465,49938433,50659329,50790401,50987009,51445761,51904513,54329346,55771137,56164354,56885249,57737219,57999362,58458115,58523650,58589186,58982402,59179010],"globalmembers":[50790401,50987009],"getproperty":[2031618,2228226,2293762,2359298,2752514,2818050,3014658,3211266,3604482,4128770,4784130,7602181,9568261,13238277,15138821,20643846,21626886,30081026,31588354,49152002,49676290,50200578,50462722,51183618,52559874,52756482,53280770,57606146,58130434,58327042,59047938],"getnamespacenode":[2162689,11862020,49545217]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_104.json b/docs/Reference/fti/FTI_104.json index 370fda837..dfcca6b71 100644 --- a/docs/Reference/fti/FTI_104.json +++ b/docs/Reference/fti/FTI_104.json @@ -1 +1 @@ -{"handled":[10682369,49872897,53411841],"handler":[1638401,1769473,1835009,1900545,5963777,6422529,6684673,34537474,49545218,56360962,56623107,56819713],"hitlines":[43581441,45744132,55771137],"heapsizeviolationpolicy":[44826625,46071812,47054849,57016321],"hierarchical":[6881281,12058625,55574529],"handle":[3014657,4980737,6422529,6684673,10682369,44630017,52101121,52428802,54329345,57999361],"hidden":[54919169],"hosts":[44695553,45350913,46202881,47120385],"hresult":[37552134,39387138,40960002,57081858,57737218],"hierarchy":[49414145,49545217,50790401,52101121,52166657,52232193,52756481,53018625,53280769,53805057,54001665,54067201,54263809,54329345,54460417,54591489,54984705,55050241,55181313,55246849,55377921,55508993,55574529,55705601,55771137,55836673,55902209,55967745,56033281,56164353,56295425,56360961,56426497,56492033,56623105,56688641,56754177,56819713,57016321,57212929,57344001,57475073,57540609,57737217,57868289,57933825,58064897,58261505,58327041,58392577,58458113],"hostexception":[54919169],"hitline":[524290,720897,917505,3407874,31326209,45744134,56033286],"hostsettings":[34537473,36700162,38010881,38469633,39256065,54984710],"hash":[1179649,1245185,1310721,1376257,1441793,1572865,1507329,1638401,1703937,1769473,1835009,1900545,2097153,2359297,2424833,2686977,2818049,2883585,3014657,3080193,3276801,3342337,3407873,3473409,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4325377,4456449,4521985,4980737,5046273,5242881,5505025,5570561,5832705,6094849,6553601,6750209,49414145,49545217,50790401,52101121,52166657,52232193,53018625,53280769,53805057,54001665,54067201,54263809,54329345,54460417,55050241,55246849,55508993,55574529,55705601,55771137,55836673,55902209,55967745,56033281,56164353,56295425,56360961,56426497,56492033,56623105,56688641,56754177,56819713,57016321,57212929,57344001,57475073,57540609,57737217,57868289,58064897,58261505,58327041,58392577,58458113],"handling":[10682369],"host":[65537,1638401,1769473,1835009,1900545,1966081,2031622,2424833,3014681,3211277,3801101,3932169,4980767,5046285,5242893,5505037,5570573,5832717,5898241,5963777,6094861,6422529,6488065,6553613,6619137,6684673,6881288,7012357,7077902,7143428,7208963,7274500,7340037,7405576,7471111,7602180,7667719,7733252,7798787,7864325,7929863,7995395,8060929,8126469,8192007,8257539,8323075,8388609,8454148,8519684,8585230,8650759,8716291,8781828,8847367,8912903,8978435,9043974,9109512,9175044,9240583,9306119,9371651,9437185,9502727,9568263,9633795,9699330,9764879,9830409,9895938,9961475,10027015,10092551,10158083,10223618,10289157,10354690,10420226,10485762,10551298,10616834,10682377,10747911,10813447,10878978,10944514,11010055,11075586,11206660,11337730,11403266,11468802,11534337,11599881,11665415,11730945,11796482,11862023,11927555,11993089,12058638,12124162,12189697,12255234,12320776,12451845,12386305,12517383,12582914,12648453,12713988,12910593,12976129,13107202,13303812,13369346,13500420,13565956,13697025,14024709,14090250,14155781,14286850,14352387,14614532,15007747,15269893,15335428,16056322,16187394,16580611,16646154,16777221,16973826,17039362,17432579,17825797,17891330,17956866,18284549,18612229,19005444,19070978,19136514,19791876,19857409,19922945,20185089,20709377,20774913,21037060,21626881,21692417,21757956,22151172,22216705,22282241,22413317,23003140,30277633,30998531,31588361,31653893,32112643,32178177,32636931,33030147,33161219,33554441,33751043,34013187,34078724,34537482,34668547,35192835,35717123,36438021,36700161,36962308,37421057,37617670,37814275,38010882,38141958,38207493,38273025,38338564,38469633,38928388,39256065,39911427,40042501,40370178,40501253,40763393,40894467,40960001,41943043,42532869,43057153,43843587,44236805,45088769,46137347,46465026,46661633,47185925,47775745,47841281,48103425,48562177,48824325,49545218,49610753,49872897,50266113,50331653,50528257,50724865,50855937,51052545,51118081,51511297,52101152,52297729,52363265,52625409,52756486,53411841,53673985,53936130,54263826,54329369,54394882,54657029,54919173,54984705,55508994,55574547,56164353,56229890,56360962,56492050,56623106,56819714,56950802,57081857,57344018,57475091,57671682,57868306,57933825,58261522,58392594,58458130],"hidehostexceptions":[54919169],"hostwindow":[40501249,42532865,44236801,47185921,48824321,50331649,50855940,56492033,57344001,57868289,57999361,58261505,58392577,58458113],"hosttypecollection":[65538,3932162,4980737,6881285,9175050,9699329,9895937,10223617,10354689,10420229,10485761,10551301,10878981,10944513,11075585,11337729,11403269,12058634,12124165,34537473,36438017,36962305,37421058,37617670,38338561,52101121,55574539,56754177],"hidedynamicmembers":[54657025],"heapsizelimit":[35913729,47513604,57540609],"holds":[9764865,18874369,21823489],"hasmember":[2424833,5898245,56164353],"heapsizesampleinterval":[44826625,45416452,57016321],"handlers":[54263809,58261505,58392577,58458113],"hostitemflags":[3211278,3801102,5046286,5242894,5505038,5570574,5832718,6094862,6553614,10616838,11468806,11534337,11730945,11796486,11993089,12189697,12255238,12451846,12386305,12582918,12648454,12713985,12910593,12976129,13107206,13303809,13369350,13500422,13565953,13697025,14090245,14155782,14286854,14352385,14614529,15007745,15269894,15335425,16056328,16187400,16580609,16646151,16777224,16973832,17039368,17432577,17825800,17956872,17891336,18284552,18612232,19005441,19070984,19136520,19791873,19857409,19922945,20709377,20774913,21037057,21626881,21692417,21757953,22151169,22216705,22282241,23003144,31588356,32112641,32440324,33030145,33554436,34013185,34537473,37093380,38535172,39321604,39911425,54263822,54657028,56492046,56950798,57344014,57475086,57868302,58261518,58392590,58458126],"hitcount":[524289,720900,43581441,44892164,55771137,56033281],"hit":[524290,720899,917505,3407873,43581442,44892162,45744131,55771138,56033282],"hosttypeargs":[7077893,8585221],"hands":[54657025],"helplink":[39387137,57737217],"htm":[7405569],"halt":[38141953,38207489,40042497,40501249,42532865,43384833,44236801,45547521,47185921,48824321,50331649,54263809,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"honor":[13893633,14024705,22413313,26345473,54788098],"hos":[5308417,32243713,33488898,54657025,57999362],"high":[31326209,53870593],"hostfunctions":[3014658,4980777,7143425,7208961,7405569,7471106,7798785,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9240577,9306113,9371649,9437189,9502721,9568257,9633793,9764865,9830401,9961473,10027009,10092545,10158081,10682369,10747905,10813441,11010049,11599873,11665409,11862017,12320769,12517377,14090241,16646145,32178177,32636929,33161217,33751041,34078721,34537473,34668545,35192833,35717121,52101166,54329353],"help":[39387137,51642369,57737217],"heap":[3473409,4194305,6094849,26476545,26869761,27459588,28442628,35127301,35913733,38207491,43778049,44695557,44826627,45350913,45416451,46071810,46202881,47054855,47120385,47513603,48431105,48955393,50200579,50921475,51445761,51642374,51838983,51904515,52887555,53215234,54263812,57016324,57212933,57540613],"http":[7405569,10682369],"heapexpansionmultiplier":[35127297,51642372,57212929]} \ No newline at end of file +{"heapexpansionmultiplier":[35323905,45023236,53411841],"hitline":[589826,720897,786433,4063234,47316998,54460422,56885249],"hasmember":[2424833,6881285,50397185],"helplink":[34930689,58720257],"heapsizeviolationpolicy":[35782657,46923780,47775745,51970049],"hash":[1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1966081,2097153,2162689,2424833,2621441,2883585,2949121,3014657,3080193,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3866625,3932161,3997697,4063233,4128769,4259841,4325377,4390913,4718593,4849665,6029313,6291457,6356993,6422529,6684673,7077889,8781825,9306113,47644673,48168961,48103425,48562177,48824321,48955393,49020929,49217537,49545217,49741825,49872897,50135041,50266113,50331649,50397185,50462721,51118081,51707905,51773441,51970049,52559873,53084161,53411841,53477377,53936129,54329345,54460417,55246849,55312385,56033281,56754177,57344001,57737217,57933825,57999361,58392577,58458113,58523649,58589185,58654721,58720257,58851329,58982401,59047937,59113473,59179009],"handled":[10354689,47710209,49348609],"handler":[1638401,1703937,1769473,2097153,6094849,6750209,7340033,48562179,49217537,49872898,51118082,55771138],"help":[34930689,45023233,58720257],"heapsizelimit":[35913729,46989316,55246849],"heap":[3997697,4849665,6684673,23986180,27525121,29032449,29687812,35323909,35782659,35913733,36569091,45023238,45285377,45350913,45613059,45940737,46006275,46137347,46268417,46333954,46661635,46858245,46923778,46989315,47251457,47513601,47579137,47775751,47841283,49414151,51970052,53084161,53411845,55246853,55771137,58458116],"held":[393217,851969,53084161],"hosts":[45350913,46268417,46858241,47579137],"host":[1638401,1703937,1769473,1835009,1900550,2097153,2162697,2424833,3014681,3145741,3604511,4259853,5767169,5898245,6029325,6094849,6291469,6357005,6422541,6619150,6684685,6750209,6815748,6881281,6946823,7012356,7208964,7274500,7340033,7405569,7471112,7536641,7602179,7667721,7733253,7798791,7864334,7929861,7995400,8060929,8126471,8192004,8257542,8323076,8388616,8454148,8519683,8585223,8650759,8716292,8781837,8847363,8912899,8978447,9043982,9109507,9175043,9240583,9306125,9371653,9437188,9502727,9568259,9633795,9699330,9764871,9830405,9895938,9961479,10027011,10092551,10158082,10223623,10289154,10354697,10420226,10485762,10551303,10616835,10682370,10813442,10878983,10944515,11010050,11075591,11141127,11206658,11272201,11337730,11403267,11468801,11534338,11599879,11665410,11730946,11796482,11862018,11927559,11993095,12058626,12124168,12189698,12255233,12320770,12386306,12451841,12517383,12648449,12713988,12779521,12845060,12976132,13041665,13107201,13369345,13565955,13631492,13697029,13959170,14090250,14155777,14483460,14680067,14745605,15335428,15532037,15597573,15925249,16384005,16580609,17039362,17498114,18153474,18284545,18415618,18481156,19005442,19267586,19529732,19660810,19791874,20381700,20447235,20512770,20840449,21168132,21233669,21364737,21757953,22151172,22347777,22478852,22675457,23068673,23265283,23330821,24051717,24444933,25427973,26017793,30081027,30146563,30212099,30277635,30408708,30605315,30670853,30736388,30801923,30932998,30998531,31457289,31916035,32243721,32833539,33030147,33488897,33882113,34078721,34275333,35127302,35454977,36569093,36765701,36831233,36896773,36962305,37486595,37617669,38076417,38338565,38928386,38993921,39190529,39321605,39518211,39845889,40108033,40173570,40763393,41025541,41746433,41680897,42008578,42205185,42729475,43188225,43712513,43843587,44236801,44564481,45547521,46399491,47185921,47710209,47906818,48234497,48431110,48496642,48562178,48627713,48758785,49086465,49217538,49348609,49545235,49872898,50069505,50397185,50462745,50659329,50790405,50987013,51118082,51904513,52559904,53018626,53936130,54329362,54525956,55050244,55443459,55771146,55902210,55967749,56164370,56360961,57016321,57737234,57999378,58458130,58523667,58589202,58785793,58982418,59179026],"handle":[3014657,3604481,6750209,7340033,10354689,35651585,50003970,50462721,52559873,57868289],"hidehostexceptions":[50790401],"high":[47972353,56885249],"htm":[8388609],"heapsizesampleinterval":[35782657,46137348,51970049],"hostitemflags":[3145742,4259854,6029326,6291470,6357006,6422542,6684686,8781838,9306126,10682374,11468801,11534342,11665414,11730950,12189702,12255233,12320774,12386310,12451841,12713985,12779521,12845062,12976129,13041665,13107201,13369345,13565953,13631489,13697030,13959174,14090245,14155777,14483457,14680065,14745606,15335425,15532038,15597574,16580609,17039368,17498120,18153480,18284545,18415624,18481153,19005448,19267592,19529729,19660807,19791880,20381697,20447233,20512776,20840449,21168129,21233672,21364737,21757953,22151169,22347777,22478856,22675457,23068673,23330824,23265281,24444936,25427976,30801921,31195140,31260676,31457284,31916033,32112644,32178180,32243716,32833537,33030145,50987012,54329358,55771137,56164366,57737230,57999374,58458126,58523662,58589198,58982414,59179022],"hostfunctions":[3014658,3604521,7536641,7602177,7667713,7798785,7995393,8060929,8126465,8257537,8323073,8388609,8519681,8585218,8650753,8716289,8847361,8912897,8978433,9109505,9175041,9240577,9437185,9502721,9568257,9633793,9764865,9830401,9961473,10027009,10092545,10223617,10354689,10551297,10616833,10878977,10944513,11075585,11141121,11272193,11599873,11927553,11993089,12124161,12517377,12648453,14090241,19660801,30081025,30146561,30212097,30277633,30408705,30605313,30998529,50462729,52559918,55771137,56360961],"hitcount":[589825,720900,35258369,46596100,53477377,54460417],"http":[8388609,10354689],"hidden":[50790401],"holding":[27787265],"holds":[8978433,17104897,22085633,53084161,55771137],"hit":[589826,720899,786433,4063233,35258370,46596098,47316995,53477378,54460418],"hitlines":[35258369,47316996,53477377],"hostsettings":[33488898,40173569,40763393,41746433,51904518,55771137],"hos":[4194305,50987009,52625410,57212929,57868290],"hresult":[34930690,35454978,37355526,57016322,58720258],"handling":[10354689],"handlers":[58458113,58589185,58982401,59179009],"hosttypeargs":[7864325,9043973],"honor":[16121857,16384001,23724033,24051713,50921474],"hands":[50987009],"halt":[34275329,35127297,36569089,36765697,36896769,37617665,38338561,39059457,39321601,41025537,45678593,54329345,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"hierarchy":[47644673,48103425,48168961,48431105,48562177,48824321,48955393,49020929,49217537,49545217,49741825,49872897,50135041,50266113,50331649,50397185,50462721,50593793,51118081,51445761,51707905,51773441,51838977,51904513,51970049,52559873,53084161,53411841,53477377,53936129,54263809,54329345,54460417,55246849,55312385,56033281,56754177,57344001,57737217,57933825,57999361,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58982401,59047937,59113473,59179009],"hostwindow":[36765697,36896769,37617665,38338561,39321601,41025537,48627716,54329345,57737217,57868289,57999361,58589185,58982401,59179009],"hidedynamicmembers":[50987009],"hostexception":[50790401],"hosttypecollection":[2162690,3604481,6619146,7012362,7471109,9699329,9895941,10158081,10289157,10420225,10485765,10813441,11010049,11206657,11337733,11796481,11862017,12058629,30670849,30736385,30932998,33882114,34078722,49545227,52559873,54525953,55771137,57933825],"hierarchical":[6619137,7471105,49545217]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_105.json b/docs/Reference/fti/FTI_105.json index ae89ef85b..b91d72652 100644 --- a/docs/Reference/fti/FTI_105.json +++ b/docs/Reference/fti/FTI_105.json @@ -1 +1 @@ -{"importers":[47448065],"implements":[786433,3014665,4980745,7208961,7798785,7929857,8192001,8257537,8323073,8716289,8978433,9371649,9633793,9961473,10158081,14090241,16056321,16187393,16252929,16580609,16646146,16777217,16842753,16973825,17039361,17104897,17170433,17432577,17629185,17760257,17825793,17891329,17956865,18284545,18415617,18612225,18677761,18743297,18939905,19005441,19070977,19136513,19267585,19333121,19595265,19791873,19857409,19922945,20250625,20447233,20643841,20709377,20774913,21037057,21102593,21168129,21299201,21364737,21626881,21692417,21757953,21954561,22151169,22216705,22282241,22413313,22544385,23003137,23134209,23265281,23920641,23986177,24051713,24248321,24510465,24576001,24838145,25165825,25559041,25690113,26017793,26345473,27131905,27262977,27590657,27918337,28180481,28508161,28573697,28704769,29163521,30212097,31129601,32505857,32636930,33357825,34275329,34668546,35192834,35979265,37027841,39780353,40566785,40894465,41484289,41549825,41811969,42205185,42270721,42991617,43122689,43843585,44761089,45154305,45547521,45809665,45875201,46399489,46465025,46530561,46792705,46923777,46989313,47251457,47579137,47644673,47710209,48037889,48365569,48496641,48562177,49020929,49152001,49348609,49676289,49938433,50003969,50266113,50462721,50528257,50724865,51052545,51118081,51314689,51511297,51773441,52101129,52232193,52297729,52690945,52953089,53149697,53280769,53346305,53608449,53673985,54263809,54329354,55115780,56098817,56492033,56688641,56754177,57016321,57475073,57737217,57933825,58261505],"iscriptable":[1966081,11927553,56229889],"iproperty":[3145729,7208961,8323073,8716289,38731777,56098817],"inherit":[6291462,49545217,50790401,52101121,52166657,53280769,53805057,54067201,54263809,55246849,55574529,55836673,55967745,56033281,56164353,56426497,56492033,56623105,57344001,57737217,57868289,57933825,58064897,58261505,58392577,58458113],"idisposable":[2162689,2228225,2293761,2555905,2752513,2949121,3211265,3604481,4259841,8192002,17760257,21364737,25690113,28508161,51249157,52232196,52822021,53280772,54132741,54263812,56492036,56950789,57016324,57147397,57409541,57475076,57606149,57802757,58130437,58261508],"internal":[39256065,39714818,45875202,54263809],"interrupt":[3211265,3801089,5046273,5242882,5505025,5570561,5832705,6094851,6553601,13041669,19267590,27590664,31064067,31129607,38207489,44826625,49872899,53411843,54198273,54263812,56492033,56950785,57016321,57344001,57475073,57671683,57868290,58261505,58392577,58458113],"invocable":[7077889,7667713,8585217,12451841,12648449,12713985,13303809,13565953,14155777,14614529,15269889,15335425,16777217,17825793,18284545,18612225,19005441,19791873,21037057,21757953,22151169,53936129,54394881],"ignorecase":[5898246],"inadvertent":[44695553,45350913,46202881,47120385],"interfere":[52625409],"isfatal":[38993924,39387137,40173569,40960001,41484294,41549830,57081857,57737217,57933825],"invocations":[11927553],"idisposablet":[8192002],"instantiate":[7733249,10616833,11468801,11534337,12189697,12255233,12976129,13107201,13697025,16056321,17039361,17891329,19136513,19922945,20774913,21692417,22282241],"invoke":[2162689,2228225,2293761,2424834,2555905,2752513,2949121,3211265,3538946,3604481,3801089,3866627,3997698,4259841,5046273,5242881,5505025,5570561,5832705,6094849,6291457,6553601,9764865,10682370,13631494,13828098,14090241,14483462,14548994,15138817,15400962,15597570,16318466,16646145,20250632,23134215,23920641,24576002,30539783,31195143,33095681,33619969,35979273,37027849,37486595,38600707,42729473,44761089,51249153,52822017,53280771,54132737,54263809,55640066,56164354,56492033,56688642,56950785,57147393,57344001,57409537,57475073,57606145,57802753,57868289,58130433,58261505,58392577,58458113],"indicates":[1245187,1572865,2097155,2359299,2883587,3080195,3407873,4325379,38993921,39387138,40173570,40566785,40960002,41353217,41484289,41549825,43450369,46268417,52166659,53608449,53805059,54788098,54853636,55115784,55246849,55836675,55967747,56033281,56426499,57081858,57737218,57933826,58064899],"instances":[14024705,21889025,22020097,22413313,22740993,22806529,22937602,23330817,23527425,23592961,23789569,24117249,24313858,24379393,24641537,24772609,24969217,25231362,25362433,25427969,25624577,25755649,25952257,26279937,26607617,26673153,26738689,27000833,27328513,27721730,27787265,28246017,28377089,29491201,30801921,34537473,49020929,49676289,50069505,50462721,52953089,53346305,54263810,55836674],"ienumerable":[3145729,38404102,39190534,47251462,48037894,56098825,56754184],"invocation":[13631489,13828098,14483458,15138818,20250625,23134210,23920642,24576002,46137345],"icustomattributeprovider":[6291462],"itypedarray":[2555906,2752514,18808833,19398657,20316161,34865155,35586050,43646977,45481986,52822021,54132758,55115777],"icomparable":[7929858],"indicating":[38731777,56098817],"invokeasfunction":[2162689,2228225,2293761,2555905,2752513,2949121,3604481,3866625,4259841,15138820,23920646,51249153,52822017,53280769,54132737,57147393,57409537,57606145,57802753,58130433],"iwindows":[4259841,33947649,45285377,58130433],"initial":[9764865,45219841,51576833,52494337],"interprets":[12845057,13172737,13434881,13893633,13959169,14024705,14680065,14876673,15073281,15728641,15859713,16449537,17235969,17629185,18087937,18415617,19333121,19595265,20447233,21168129,22413313,23265281,23986177,24051713,24838145,25559041,26345473,27262977,58327041],"inherits":[49545217,50790401,51249153,52101121,52166657,52822017,53280769,53805057,54067201,54132737,54263809,55574529,55836673,55967745,56098817,56164353,56426497,56492033,56623105,56950785,57147393,57344001,57409537,57606145,57737217,57802753,57868289,57933825,58064897,58130433,58261505,58392577,58458113],"info":[1572865,3473409,4849665,5177345,15728641,15859713,17104902,17629185,18874374,19988486,21823494,23330817,24051713,25100289,25296901,26476545,26869761,27328513,28246017,28966913,30081025,34930689,35913729,37224453,37355521,39452673,40763393,41680897,42467330,42663937,42926081,43319297,43909121,46006273,47513601,48431105,48955393,50200577,50593798,50921473,51445761,51904513,53018625,54067202,54525957,55246849,55443461,57540609],"indices":[8257542,9633798,9961478,14090241,16646145,34865153,38404098,41418753,41615361,42336257,43253761,43974657,44564481,45285377,45481985,47251458,51249153,52822017,53280769,54132737,57147393,57409537,57606145,57802753,58130433],"invalidoperationexception":[57737221],"individual":[2424833,3866625,44105729,46989313,52166657,53280769,55967745,56164353],"invokewithdirectaccess":[2228226,2293762,2555906,2752514,2949122,14548997,15400965,15597573,16318469,33095682,33619970,52822018,54132738,57409538,57606146,57802754],"iarray":[2228225,2949121,14548993,14745601,15400961,15597569,15794177,16121857,16318465,16908289,17301505,18022401,33095681,33619969,39845889,40435713,41222145,42008577,42336257,43253761,57409537,57606145],"interactive":[42074113,47644673,53542913],"iscriptableobject":[1966082,11927553,34537473,54329348,56229893,56754180],"initvalue":[9764871],"iserializable":[17104897],"interval":[38207490,44826626,45416450,49086466,52559874,52887554,54263810,57016322],"import":[6881281,7077890,7405569,7667713,8585218,8650753,9043969,9240577,9306113,9502721,9568257,9764865,9830401,10027009,10092545,10289154,10682369,10747905,10813441,11010049,11206658,11665409,11730945,11796481,11862017,11993089,12058625,12386306,12582914,12910594,13369345,14286850,16187393,16973826,17956865,19070978,19857409,20709378,21626881,22216706,34537473,38141953,38207489,40042497,40501249,40763393,42532865,44236801,46661633,47185921,48103426,48824321,50331649,51118082,52101121,54263809,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"includes":[9830401,14024707,14090241,16646145,22413315,42074113,47644673,53542913],"imports":[3211272,3801096,4980744,5046280,5242888,5505032,5570568,5832712,6094856,6553608,6881282,7077890,7667713,8585218,8847361,9175041,10289153,11206658,11730945,11796481,11993089,12058626,12386305,12582913,12910593,13369345,14286849,16187393,16973825,17956865,19070977,19857409,20709377,21626881,22216705,32440328,38338562,38928387,39321608,52101128,54263816,54919169,56492040,56950792,57278465,57344008,57475080,57868296,58261512,58392584,58458120],"isyncinvoker":[1048581,3538946,28049413,28180481,28770309,29687813,29884421,29949953,30539777,30605317,30670853,31195137,31260677,31784965,31916033,32309253,32505857,32833538,32899077,33423365,35979265,37027841,37486593,38076421,39124997,40501249,42532865,44236801,47185921,48824321,50331649,51970055,55640069,56492039,56688645,57344007,57868290,58261505,58392577,58458113],"idataview":[2293762,35586049,43974658,55115777,57802757],"immutablevalueattribute":[2097154,11272197,34537473,37748738,55836680],"ipropertybag":[3014662,3145730,4980742,7208966,7471105,8323078,8716294,32636930,34537474,34668546,35192834,38731778,52101126,54329350,56098821,56754181],"interface":[1966081,2162689,2228225,2293761,2555905,2752513,2949121,3145729,3211265,3538945,3604481,4259841,5308417,7471105,10616833,11468801,11534337,11730945,11796481,11927553,11993089,12189697,12255233,12386305,12451841,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500418,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352386,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15597569,15728641,15794177,15859713,16121857,16318465,16449537,16580609,16908289,17235969,17301505,18022401,18087937,18808833,19398657,20316161,23003137,29949953,30539777,31195137,31457281,31588353,31916033,32047105,32112641,32243714,32702465,32833537,33095681,33226753,33488897,33619969,33816577,33947649,34209793,34537473,34799617,34865153,35258369,35586049,37486593,37552129,37814273,38273025,38404097,38535169,38731777,38797313,38993921,39190529,39321601,39583745,39714817,39845889,39911425,39976961,40042497,40239105,40370177,40435713,40501249,40697857,40960001,41091073,41156609,41222145,41353217,41615361,41943041,42008577,42074113,42336257,42598401,42532865,42729473,43057154,43188225,43253761,43384833,43515905,43646977,43974657,44105729,44236801,44367873,44564481,44630017,44957697,45088769,45285377,45481985,45613057,46333953,46858241,47185921,47841281,48103425,48300033,48562177,48824321,48889857,49610753,50135041,50266113,50331649,50659329,50855937,51052545,51249159,51380225,52166660,52232193,52428801,52822025,53280770,53805060,54132747,54263810,54329345,55640069,55967748,56098827,56229893,56426500,56492035,56688641,56754183,56950790,57016321,57081861,57147398,57344001,57409544,57475074,57606152,57737217,57802761,57868289,57933825,57999366,58130439,58261507,58392577,58458113],"intended":[2424836,3866628,14024705,22413313,39256065,42074113,47644673,53280772,53542913,56164356],"iscriptobject":[2162697,2228233,2293769,2555913,2752521,2949129,3604482,4259849,13238273,13762561,13828097,14221313,14417921,14483457,14811137,15138817,15204353,20643841,21102593,21954561,22544385,23134209,23920641,24248321,24576001,25165825,31457281,32047105,34537473,34799617,34865157,35258369,38404097,39190529,41615362,42336261,43253765,43974661,44564485,45154305,45285381,45481989,45809665,46530561,47251457,48037889,50135041,50659329,51249170,51380225,52822034,53280772,54132754,57147397,57409554,57606162,57802770,58130450],"ihostwindow":[5308418,32243713,33488897,44630018,50855943,52428801,57999365],"importable":[41943041,43843585],"inner":[38273025],"ijavascriptobject":[2162690,34865154,35586049,42336258,42598401,43188225,43253762,43974658,44564482,45481986,51249157,52822022,54132742,57409542,57606150,57802758],"ignores":[7143425],"ignored":[7143425,52625410,54919172,57278465],"index":[2424836,3145729,3866628,13238278,14090241,14221318,14417926,16121857,16646145,16908289,17301505,18022401,18808839,20316167,21954566,24248326,25165830,38141953,38207489,40042497,40501249,42532865,44236801,45809671,46858242,47185921,48824321,50003970,50331649,50659335,53280772,54263809,56098817,56164356,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"isync":[3538945,28049409,28770305,29687809,29884417,29949953,30539777,30605313,30670849,31195137,31260673,31784961,31916033,32309249,33423361,37486593,55640065],"iwindowsscriptobject":[4259842,32243713,33947649,45285378,58130437],"introduced":[46858241,50003969],"instance":[131073,196609,327682,393217,655361,851969,983041,1048582,1179649,1245189,1310721,1376257,1441793,1572868,1507329,1638401,1703937,1769473,1835009,1900545,2031618,2097157,2359301,2424834,2490377,2686977,2818049,2883589,3014669,3080197,3276801,3342337,3407876,3473409,3670017,3735553,3801089,3866626,3932161,3997697,4063233,4128769,4194311,4325381,4390913,4456449,4521985,4718593,4915201,4980749,5046273,5242881,5373953,5505025,5570561,5636097,5767169,5832705,6094849,6160385,6225921,6488065,6619137,6553601,6750209,6881281,6946817,7012355,7077889,7274498,7340034,7405569,7471105,7602178,7733250,7864322,7929857,8192001,8519683,8585217,8650754,8847362,8912897,9043969,9109505,9175041,9240578,9306114,9437185,9502722,9568258,9764865,9830401,10027010,10092546,10682369,10747906,10813442,11010050,11141121,11206658,11272193,11599873,11665410,11862018,12058625,12320769,12517377,15663107,15990787,16515075,16711683,17367043,17563651,18219011,18350081,18546691,19202050,19660803,19726337,20054017,20381697,20512769,20905986,20971521,21233665,21430273,21561345,22478849,22675457,22937603,23068673,23199746,23396353,23461890,23527428,23658497,23724034,24182787,24313860,24444930,24707073,25034754,25231364,25296897,25821186,26083331,26148865,26804226,26935297,27000835,27197443,27525121,27656194,27721731,27852803,27983875,28049410,28311554,28770306,28835841,29032450,29097986,29294593,29425665,29622274,29687811,29818883,29884418,30015489,30146562,30212097,30408707,30474243,30605314,30670851,30736386,30932994,31260675,31326212,31391747,31522818,31653890,31784963,31981570,32243715,32309251,32374786,32571394,32768002,32833538,32899075,33423363,34603016,35061766,36044801,36110348,36241410,36896780,37289986,37879809,38076421,38141953,38207490,38666248,39124997,39387138,39976961,40042497,40173569,40304645,40501249,40960001,41025541,42532865,43515905,44236801,44826625,47185921,48234497,48365569,48824321,49152001,49414146,49479681,49545217,49872897,50331649,50790402,52101134,52166663,52232193,52625410,52690945,52756482,53018626,53280770,53411841,53805063,54001665,54067202,54263825,54329360,54394885,54460419,54591497,54919169,55050241,55246852,55508995,55574529,55705602,55771137,55836678,55902210,55967750,56033284,56164355,56295425,56360961,56426502,56492040,56623105,56688643,56754177,56819713,56950785,57016341,57081857,57212930,57278465,57344008,57475076,57540609,57737220,57868291,57933826,58064909,58261513,58327043,58392585,58458116],"including":[14024705,22413313],"interrupted":[2621441,19988481,20578305,21233665,21823489,22347777,22872065,34537473,37879809,40173569,41484289,42270721,43122689,49872898,52690945,53149697,53411842,53608449,57933826],"invokes":[2162691,2228229,2293765,2555909,2752517,2949125,3014660,3211265,3538946,3604483,3801089,3866627,3997698,4259843,4980739,5046273,5242881,5505025,5570561,5832705,6094849,6553601,8060930,9043970,9830402,10682369,12517378,13631489,13828097,14483457,14548994,15138817,15400962,15597570,16318466,18481154,20250625,23134209,23920641,24576001,28114946,29360130,30539777,31195137,32178178,33095682,33619970,35979266,37027842,37486594,38600706,43384833,45547521,49610753,51249155,52101123,52297729,52822021,53280771,54132741,54263809,54329348,55508993,55640066,56492033,56688642,56950785,57147395,57344001,57409541,57475073,57606149,57802757,57868289,58130435,58261505,58392577,58458113],"invoker":[327681,1048577,3538945,3997697,28049409,28180481,28770305,29687809,29884417,29949953,30539777,30605313,30670850,31195137,31260673,31784962,31916033,32309250,32505857,32899073,33423362,35979265,37027841,37486593,38076418,38600705,39124994,51970049,55640065,56492034,56688641,57344002,57868289],"invoked":[3014662,4980742,5439489,6029313,6815745,7143425,7536641,8126465,8781825,8847361,10682369,11599873,12320769,13631489,20250625,27918337,33161218,34078722,35717122,40763393,46661633,52101126,54263809,54329350],"imported":[6881281,7077890,7667714,8585218,9175042,10289153,11206657,46333953,49348609],"inference":[14090241,16646145,44957697,47710209],"iarraybufferview":[2293765,2555909,2752517,2949122,14548993,15400961,15794177,16121857,16908289,33095681,34865155,35586049,39845889,40435713,41222145,43253762,43974659,45481987,52822028,54132748,57606149,57802764],"inherited":[65537,458753,1179654,1245192,1310726,1376262,1441798,1572870,1507335,1638406,1703942,1769479,1835014,1900550,2097160,2162698,2228234,2293775,2359304,2424852,2555919,2686982,2752527,2818054,2883592,2949130,3014662,3080200,3145738,3211265,3276805,3342342,3407878,3473414,3604481,3670022,3735558,3801093,3866644,3932173,3997702,4063238,4128773,4194310,4259850,4325384,4456454,4521990,4980783,5046329,5242932,5505082,5570617,5832761,6094899,6553657,6750213,34865163,35848194,36569090,37421060,37748737,38207508,38731781,39387144,40501272,40828930,41877505,42336263,42401793,42532888,43253767,43974666,44236821,44564485,45285381,45481994,47185945,48824345,49414150,49545222,50331673,50790407,51249167,52101167,52166665,52232198,52822041,53018630,53280788,53805065,54001670,54067206,54132762,54263879,54329350,54460421,55050246,55246854,55508997,55574546,55705606,55771142,55836681,55902214,55967754,56033286,56098831,56164372,56295430,56360966,56426506,56492113,56623111,56688646,56754182,56819718,56950785,57016326,57147393,57212934,57344081,57409553,57475077,57540614,57606161,57737231,57802777,57868361,58064906,58130447,58261586,58327045,58392658,58458195],"include":[6291457,7405569,14024705,22413313,44367873,49938433],"increment":[2424833,3866625,53280769,56164353],"intptr":[2228226,2293762,2555906,2752514,2949122,14548997,15400965,15597573,16318469,33095682,33619970,52428806,52822018,54132738,57409538,57606146,57802754],"iscomparable":[7929857],"initialize":[2424833,3866625,10420225,10878977,11403265,12124161,53280769,56164353],"innerexception":[20119557,22872069,38273028,39387137,40960001,57081857,57737217],"icollection":[3145738,38731782,46923783,47579143,56098836,56754180],"idispatchex":[52625409],"ilist":[14090241,16646145,55115777],"iequalitycomparer":[15925253,16384005,35389442,45678598,56754178],"inspector":[26411010,27066369],"implementers":[2424833,3866625,11927553,53280769,56164353],"indentation":[42074113,47644673,53542913],"ityped":[2555905,2752513,18808833,19398657,20316161,34865153,43646977,45481985,52822017,54132737],"iscriptengineexception":[34537473,37552129,38273025,38993921,39583745,39780353,39976961,40239105,40566785,40697857,40960002,41091073,41353217,41484289,41549825,42205185,42270721,42991617,43122689,48365569,52690945,53149697,53608449,57081861,57737220,57933828],"indexing":[2424833,3866625,8257537,9633793,9961473,53280769,56164353],"implementation":[2424844,3866636,6291457,28180481,32243713,32505857,32833538,34537479,35979265,37027841,40501249,40763393,41943041,42532865,43843585,44236801,46661633,47185921,48824321,49479681,50331649,50790401,51970049,53280781,54067201,56164364,56360961,56492034,56688641,56754177,56819713,57344002,57475073,57868291,58261505,58392577,58458114],"iscriptengine":[3211266,10616833,11468801,11534337,11730945,11796481,11993089,12189697,12255233,12386305,12451841,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13893633,13959169,14024705,14090241,14155777,14286849,14352385,14614529,14680065,14876673,14942209,15007745,15073281,15269889,15335425,15466497,15728641,15859713,16056321,16187393,16449537,16580609,16646145,16777217,16973825,17039361,17170433,17235969,17432577,17629185,17825793,17891329,17956865,18087937,18284545,18415617,18612225,18677761,18743297,19005441,19070977,19136513,19267585,19333121,19595265,19791873,19857409,19922945,20250625,20447233,20709377,20774913,21037057,21168129,21626881,21692417,21757953,22151169,22216705,22282241,22413313,23003137,23265281,23986177,24051713,24510466,24838145,25559041,26017794,26345473,27131906,27262977,27590658,28573697,28704770,29163521,30212097,31129601,31588353,32112641,32702465,33226753,33357826,33816577,34209793,34275329,34537473,37814273,38535169,38797313,39321601,39714817,39911425,40042498,40370177,40894465,41156609,41811969,41943041,42074113,42729473,43057153,43384833,43515905,43843585,44105729,44367873,44761089,44957697,45088769,45547521,45613057,45875201,46333953,46465025,46792705,46858241,46989313,47644673,47710209,47841281,48103425,48300033,48496641,48562177,48889857,49020930,49152001,49348609,49610753,49676289,49938433,50003969,50266113,50462722,50528257,50724865,51052546,51118081,51314689,51511297,51773441,52297729,52953090,53346305,53673986,54263812,56492036,56950789,57475076,58261508],"intvalue":[8912897],"ihost":[5308417,33488897,44630017,52428801,57999361],"invoking":[2424833,3866625,8060929,14024705,14090241,16646145,22413313,38141953,46137347,53280769,56164353,57475073],"involvement":[54657025],"ijava":[2162689,42598401,43188225,44564481,51249153],"information":[3211266,3801090,4194308,5046274,5242882,5505026,5570562,5636097,5832706,6094853,6160385,6553602,6946817,7012353,7077889,7274497,7340033,7602177,7667713,7864321,8060929,8126465,8454145,8519681,8585217,8847361,9109505,10616833,11468801,11534337,11730945,11796481,11993089,12189697,12255233,12386305,12451841,12582913,12648449,12713985,12845057,12910593,12976129,13107201,13303809,13369345,13500417,13565953,13697025,14155777,14286849,14352385,14614529,15007745,15073281,15269889,15335425,15663105,15728643,15859714,15990785,16056321,16187393,16449537,16515073,16580609,16711681,16777217,16973825,17039361,17235969,17367041,17432577,17563649,17629187,17825793,17891329,17956865,18087937,18219009,18284545,18415617,18546689,18612225,18874369,19005441,19070977,19136513,19333121,19660801,19791873,19857409,19922945,20447233,20709377,20774913,21037057,21168129,21626881,21692417,21757953,21823489,22151169,22216705,22282241,23003137,23265281,23330818,24051714,25100290,25296897,26476546,26869762,27328514,28246018,28966913,29556737,30081026,31326209,32702465,33685507,33816577,34537474,34996225,35323905,35782657,36306945,36503553,37224449,37683202,38797313,39387137,40763394,41811969,42467329,42926081,46006273,46661634,47054849,50593793,51838977,52232193,53018625,54067201,54263813,54525955,55246849,55443458,56492034,56950786,57016324,57344002,57475074,57540609,57737217,57868290,58195969,58261506,58392578,58458114],"inside":[2424833,3866625,53280769,56164353],"invokemethod":[2162689,2228225,2293761,2555905,2752513,2949121,3604481,3866625,4259841,13828100,24576005,51249153,52822017,53280769,54132737,57147393,57409537,57606145,57802753,58130433],"isreadonly":[15925253,20185093,38731777,56098817],"iscript":[3211265,3604481,10616833,11468801,11534337,11730945,11796481,11993089,12189697,12255233,12386305,12451841,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14614529,14680065,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15466497,15728641,15859713,16449537,17235969,18087937,31457281,31588353,32047105,32112641,32702465,33226753,33816577,34209793,34799617,35258369,37552129,37814273,38273025,38404097,38535169,38797313,38993921,39190529,39321601,39583745,39714817,39911425,39976961,40042497,40239105,40370177,40697857,40960001,41091073,41156609,41353217,41615361,41943041,42074113,42729473,43057153,43384833,43515905,44105729,44367873,44957697,45088769,45613057,46333953,46858241,47841281,48103425,48300033,48889857,49610753,50135041,50659329,51380225,56950785,57081857,57147393],"interchangeable":[9764865],"inotifypropertychanged":[786433,56754180],"interfaces":[13893633,14024705,14680065,15073281,19202049,20905985,22413313,23265281,23461889,23527425,23724033,24182785,24313857,24379393,24444929,25231361,25362433,25493505,26083329,26345473,26542081,26607617,27197441,27262977,27394049,27852801,27983873,29687809,29818881,30146561,30408705,30474241,30670849,30736385,30932993,31260673,31391745,31522817,31784961,31981569,32243713,32309249,32571393,32768001,32833537,32899073,33423361,34537473,35586049,52166657,54132737,55967745],"items":[3145729,54657025,56098817],"integers":[6881281,8454145,9109505,9830401,12058625,54919170],"increases":[51642369],"infrastructure":[2424833,3866625,39387137,40173569,40960001,41091073,42991617,43122689,44957697,47710209,53280769,56164353,57081857,57737217,57933825],"icomparablet":[7929858],"identical":[22020097,22740993,23789569,24969217,25362433,25755649,26542081,26738689,27328513,28966913,29491201,31850497],"indexers":[14090242,16646146],"identify":[8257537,9633793,9961473],"insensitive":[5898241,54919169],"initializes":[4390913,4718593,4849665,4915201,5177345,5373953,5767169,6225921,6488065,6619137,9437185,10420225,10551297,10878977,11141121,11272193,11403265,12124161,15925249,16384001,18350081,18874369,19202049,19464193,19529729,19726337,20054017,20119553,20185089,20381697,20512769,20905985,20971521,21233665,21430273,21561345,21823489,22347777,22478849,22675457,22872065,23068673,23199745,23396353,23461889,23658497,23724033,24182785,24444929,24707073,25034753,25296897,25821185,26083329,26148865,26804225,26935297,27197441,27525121,27656193,27852801,27983873,28049409,28311553,28770305,28835841,29032449,29097985,29294593,29425665,29622273,29687809,29818881,29884417,30015489,30146561,30408705,30474241,30605313,30670849,30736385,30932993,31260673,31391745,31522817,31784961,31981569,32309249,32374786,32571393,32768001,32899073,33423361,35389444,36044804,36110348,36241410,36896780,37289986,37355522,37617669,37879812,38076421,38666248,39124997,40304645,41025541,49414145,50790401,52101121,52166658,53018625,53805058,54067201,54263820,54329345,55246850,55574533,55705601,55836673,55902209,55967745,56164353,56426497,56492037,56754180,57016332,57212929,57344005,57475074,57737220,57868289,57933828,58064904,58261509,58392581,58458113],"iconvertible":[8650757,9240581,9306117,9502725,9568261,10027013,10092549,10747909,10813445,11010053,11665413,11862021],"initonly":[655361,851969,983041,1048577],"instantiation":[3014657,4980737,7471105,7995396,8126466,8847361,34078721,42663937,43909121,52101121,54329345,58261505,58392577,58458113],"istypeobj":[3014658,4980738,7143430,8781830,33161218,52101122,54329346],"int":[8060932,8454148,9043972,9109508,9240577,10027009,10289155,10747905,12517379,13238276,14221316,14417924,14548993,15400961,15597569,16318465,21954564,22937604,24248324,24444932,25165828,25231364,25821188,26083332,26935300,27656196,27852804,27983876,29097988,37552132,38404100,44695557,45219843,45350917,45809669,46202885,47120389,47251460,49086467,50659333,51576835,52494339,52559875,54132737],"implemented":[35848193,36569089,37748737,40828929,41877505,42401793,52166657,53805057,54132737,55836673,55967745,56426497,58064897],"idictionary":[3145735,16252929,16842753,18939905,21299201,38731781,46399489,46923777,47579137,54525957,56098832,56754180],"iarraybuffer":[2228226,14745601,15597569,16318465,17301505,18022401,33619969,35586049,39845894,42008577,42336258,55115777,57409541],"instead":[14090241,16646145,20905988,38797313,41811969,44957697,46596100,47120388,47710209,58195969],"iterator":[54853633,55115778],"idynamicmetaobjectprovider":[3014666,4980746,7798790,7995397,8257542,8978438,9371654,9633798,9961478,10158086,32636930,34078721,34668546,35192834,52101130,54329354,54657025],"ievent":[786434],"integer":[8060929,8454145,8912897,9043969,9109505,10289153,12517377,13238273,14221313,14417921,21954561,22937601,24248321,24444929,25165825,25231361,25821185,26083329,26935297,27656193,27852801,27983873,29097985,37552129,38404097,44695553,45350913,45809665,46202881,47120385,47251457,50659329],"inheritance":[49414145,49545217,50790401,52101121,52166657,52232193,52756481,53018625,53280769,53805057,54001665,54067201,54263809,54329345,54460417,54591489,54984705,55050241,55181313,55246849,55377921,55508993,55574529,55705601,55771137,55836673,55902209,55967745,56033281,56164353,56295425,56360961,56426497,56492033,56623105,56688641,56754177,56819713,57016321,57212929,57344001,57475073,57540609,57737217,57868289,57933825,58064897,58261505,58327041,58392577,58458113],"immutable":[2097153,11272193,34537473,37748737,55836674],"identifier":[3211280,3801104,5046288,5242896,5439495,5505040,5570576,5832720,6029319,6094864,6553616,6815751,7536647,7733250,10616834,11206658,11468802,11534338,11730946,11796482,11993091,12189698,12255235,12386306,12582914,12910595,12976131,13107203,13369347,13697027,14286851,16056322,16187394,16973826,17039362,17956867,17891331,19070979,19136515,19857410,19922946,20709378,20774914,21626883,21692419,22216707,22282243,31784963,31981571,32440328,32571395,32768002,32899074,33423363,35848193,36569089,37093384,37748737,38076417,38535176,39124993,39321608,40304641,40828929,41025537,41877505,42401793,43581442,46727169,47382529,52166657,53805057,54263824,55771138,55836673,55967745,56426497,56492049,56950800,57344017,57475088,57868304,58064897,58261521,58392593,58458128],"introduce":[54919169],"istype":[3014657,4980737,7929861,52101121,54329345],"indexer":[14090241,16646145],"indexed":[2162691,2228227,2293763,2555907,2752515,2949123,3604483,3866627,4259843,13238273,14221313,14417921,21954561,24248321,25165825,31457281,32047105,34799617,34865153,35258369,39059457,39518209,40108033,40632321,41418753,41615361,42336257,43253761,43974657,44564481,45285377,45481985,45809665,46858241,50003969,50659329,51249156,52822020,53280772,54132740,57147396,57409540,57606148,57802756,58130436],"instantiating":[47448065,48168961],"isnull":[3014657,4980737,8388612,38797314,41811970,52101121,54329345,58195969],"interrupts":[3211265,3801089,5046273,5242881,5505025,5570561,5832705,6094849,6553601,13041665,19267585,27590657,31129601,54263809,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"iterates":[3145729,56098817],"implement":[14090241,16646145,54657025,56098817],"idata":[2293761,43974657,57802753],"ireadonlylist":[42795014,45744134,49283078],"issues":[56557569],"initializing":[31326210,32243713,52625409,54919169,57278465],"itemname":[10616837,11468805,11534341,11730949,11796485,11993093,12189701,12255237,12386309,12582917,12648453,12910597,12976133,13107205,13369349,13500421,13565957,13697029,14090245,14155781,14286853,14352389,14614533,15007749,15269893,15335429,16056326,16187398,16580614,16646150,16777222,16973830,17039366,17432582,17825798,17891334,17956870,18612230,19070982,19136518,19791878,19857414,19922950,20709382,20774918,21037062,21626886,21692422,21757958,22216710,22282246,23003142],"isdefaultattribute":[1245185,2097153,2359297,2883585,3080193,4325377,52166657,53805057,55836673,55967745,56426497,58064897],"iequality":[15925249,16384001],"immediate":[39387137,57737217],"idynamic":[7798785,7995393,8978433,9371649],"item":[3145729,7471107,10616834,11468802,11534337,11730945,11796482,11993089,12189697,12255234,12451842,12386305,12582914,12648450,12713985,12910593,12976129,13107202,13303809,13369346,13500418,13565953,13697025,14090243,14155778,14286850,14352385,14614529,15007745,15269890,15335425,16056322,16187394,16580609,16646147,16777218,16973826,17039362,17432577,17825794,17891330,17956866,18284546,18612226,19005441,19070978,19136514,19791873,19857409,19922945,20709377,20774913,21037057,21626881,21692417,21757953,22151169,22216705,22282241,23003138,31457283,34865154,37158913,37421057,38731777,40108035,41418754,41615362,42336258,43253762,43974658,44564482,45285378,45481986,45809670,46399493,46530566,50659332,51249154,51380228,52822018,53280770,54132738,54657025,54919169,55574529,56098818,56754177,57147394,57409538,57606146,57802754,58130434],"istransient":[54788097]} \ No newline at end of file +{"implementers":[2424833,4128769,11403265,50397185,59047937],"invocations":[11403265],"int":[5898243,7536644,7995396,8257540,8323076,10092545,10223619,11141121,11927553,13303812,13762564,13893633,15138820,15400961,16908289,17825793,20643844,24117252,24641540,24707076,24838148,26279940,26345476,26738692,27197444,27852804,27983876,29294596,36110339,36175875,37027843,37355524,39976965,40304644,43581444,44892165,45350917,46268421,46858245,47054851,47579141,48365571,49676289,51642372],"immediate":[34930689,58720257],"interchangeable":[8978433],"importers":[49807361],"intvalue":[9502721],"indentation":[39124993,43450369,45416449],"idynamicmetaobjectprovider":[3014666,3604490,7602182,8847366,8912902,9109509,9175046,9633798,10027014,10944518,30081026,30146562,30408705,30605314,50462730,50987009,52559882],"iarray":[2228225,2818049,13893633,14614529,14811137,15400961,15663105,16252929,16908289,17825793,18612225,19464193,32899073,34013185,34471937,39780353,40042497,40370177,41615361,49152001,51249153,58130433],"ijavascriptobject":[2752514,34013186,34340866,34471938,35061762,35848194,36700162,40632321,41222145,49152006,49676294,50200582,51183621,52756486,56295425,58130438],"iscriptengineexception":[35454978,37224449,37355521,37289985,37945345,38010881,38076417,38600705,39452673,40435713,40697857,41156609,41418753,42139649,42336257,42467329,42795009,43122689,43974657,44105729,44630017,44761089,55771137,57016325,58720260,58785796],"idictionary":[2686983,15990785,17235969,17956865,20185089,34406405,40501249,41353217,42532865,50528261,52363280,57933828],"ihost":[4194305,35651585,50003969,52625409,57868289],"immutable":[1966081,10747905,33554433,50266114,55771137],"interval":[35782658,36569090,45613058,46137346,47054850,48365570,51970050,58458114],"ilist":[14090241,19660801,53542913],"initialize":[2424833,4128769,10289153,10485761,11337729,12058625,50397185,59047937],"indexer":[14090241,19660801],"indexers":[14090242,19660802],"indexed":[2031619,2228227,2293763,2359299,2752515,2818051,3211267,4128771,4784131,13303809,13762561,15138817,20643841,24117249,31391745,31588353,31719425,32047105,33751041,34013185,34340865,34471937,35061761,35389441,35848193,35979265,36700161,38207489,39976961,41287681,44892161,49152004,49676292,50200580,51183620,51642369,52756484,52887553,53280769,53739521,54132737,57606148,58130436,58327044,59047940],"itypedarray":[2359298,3211266,14876673,15466497,16318465,34340867,36700162,41943041,49676310,52756485,53542913,56295426],"iscriptableobject":[1835010,11403265,50462724,53018629,55771137,57933828],"increases":[45023233],"interfere":[50659329],"instances":[16384001,21692417,21954561,22413313,22872065,23134209,23658497,23789570,23920641,24051713,24182785,24313857,24707074,24772609,25100289,25165825,25231361,25362433,25886721,26083329,26148866,26476545,26673153,27131905,27197442,27459585,27918337,28180481,28704769,28835841,29425665,29556737,30539777,31653889,32702465,43778049,46071809,46727169,46792705,47448065,48300033,50266114,55771137,58458114],"istransient":[50921473],"iterates":[2686977,52363265],"icomparablet":[7798786],"ienumerable":[2686977,14942215,40304646,41091078,43581446,44367878,52363273,57933832],"ipropertybag":[2686978,3014662,3604486,8519686,8585217,9568262,10616838,30081026,30146562,30605314,34406402,50462726,52363269,52559878,55771138,57933829],"implement":[14090241,19660801,50987009,52363265],"isreadonly":[15925253,16711685,34406401,52363265],"interfaces":[16121857,16384001,16842753,17170433,18808833,19398657,23724033,24051713,24576001,24838145,25034753,25231361,25755649,25821185,26148865,26214401,26279937,26345473,26542081,26673153,26738689,27197441,27918337,28835841,28966913,29360129,29491201,29818881,29884417,29949953,30015489,30343169,30867457,31129601,31522817,32309249,32505857,48103425,49676289,52035585,52690945,52953089,53149697,53870593,53805057,54853633,55640065,55771137,56033281,56295425,57212929,57475073],"introduced":[38207489,41287681],"icollection":[2686986,34406406,40501255,41353223,52363284,57933828],"itemname":[10682373,11468805,11534341,11665413,11730949,12189701,12255237,12320773,12386309,12451845,12779525,12845061,12976133,13041669,13107205,13369349,13565957,13631493,13697029,13959173,14090245,14155781,14483461,14680069,14745605,15597573,16580614,17039366,17498118,18153478,18284550,18415622,18481158,19005446,19267590,19529734,19660806,19791878,20381702,20447238,20512774,20840454,21364742,21757958,22347782,22478854,22675462,23068678,23265286,23330822,24444934,25427974],"instantiation":[3014657,3604481,8126465,8585217,9109508,9830402,30408705,37093377,38404097,50462721,52559873,58589185,58982401,59179009],"import":[5898242,6619137,6815746,6946817,7471105,7667713,7864322,8257537,8388609,8978433,9043970,9240577,9764865,9961473,10092545,10354689,10551297,10878977,11075585,11141121,11599873,11665410,11730946,11927553,11993089,12386305,12451841,12517377,12779522,13369346,13959169,14155777,17498113,18284546,18415618,19267585,20512770,21364737,22347778,23068673,34275329,35127297,36569089,36831233,36765697,36896769,36962305,37617665,38338561,39321601,40108034,41025537,44564482,52559873,54329345,55771137,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"including":[16384001,24051713],"iscriptobject":[2031618,2228233,2293769,2359305,2752521,2818057,3211273,4784137,13238273,13303809,13762561,13828097,14024705,14352385,14417921,15138817,15269889,19726337,20643841,21626881,22282241,23003137,23527425,24117249,31391745,31588353,31719425,32047105,33751042,34013189,34340869,34471941,35061765,35848197,35979269,36700165,39256065,39583745,39976961,40304641,41091073,42860545,43581441,44040193,44367873,44892161,49152018,49676306,50200594,51183634,51642369,52297729,52756498,55771137,57606149,58130450,58327058,59047940],"invokewithdirectaccess":[2228226,2293762,2359298,2818050,3211266,13893637,15400965,16908293,17825797,32899074,49152002,49676290,50200578,51249154,52756482,58130434],"invalidoperationexception":[58720261],"iscomparable":[7798785],"ignorecase":[6881286],"indices":[8847366,10027014,10944518,14090241,19660801,33751041,34013185,34340865,34471937,35061761,35389441,35848193,35979265,36700161,40304642,43581442,49152001,49676289,50200577,51183617,52756481,57606145,58130433,58327041,59047937],"idisposable":[2031617,2228225,2293761,2359297,2752513,2818049,3145729,3211265,4784129,8650754,19988481,24379393,26804225,27656193,49152005,49676293,50200581,51183621,51970052,52756485,56164357,56754180,57606149,57999364,58130437,58327045,58458116,58523652,58589188,59047940],"instead":[14090241,18808836,19660801,37552129,38862849,41811969,43646977,46268420,49283076,49479681,58916865],"iscriptengine":[3145730,10682369,11468801,11534337,11665409,11730945,12189697,12255233,12320769,12386305,12451841,12582913,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13369345,13434881,13500417,13565953,13631489,13697025,13959169,14155777,14090241,14221313,14286849,14483457,14548993,14680065,14745601,15007745,15073281,15204353,15335425,15532033,15597569,16121857,16384001,16580609,16842753,17039361,17170433,17498113,17563649,17891329,18022401,18153473,18284545,18415617,18481153,18874369,19005441,19070977,19267585,19333121,19529729,19595265,19660801,19791873,19857409,19922945,20316161,20381697,20447233,20512769,20840449,20971521,21037057,21102593,21168129,21233665,21364737,21757953,21889025,22020097,22151169,22347777,22478849,22675457,22740993,22806529,23068673,23265281,23330817,23724033,23855105,24051713,24444929,24576001,25427969,26869762,28246018,28311554,28770306,28901378,30801921,31064065,31195137,31260673,31326209,31457281,31916033,32571393,32768001,33357825,34275330,37486593,37552129,37683201,38207489,38273025,38535169,38731777,38862849,38928385,38993921,39059457,39124993,39190529,39518209,39649281,39714817,39845889,39911425,40108033,40566785,40894465,40960001,41287681,41484289,41680897,41811969,41877505,42008577,42074113,42205185,42270721,42598401,42663937,42729473,42926081,43188225,43384833,43450369,43646977,43712513,43843585,44236801,44564481,44695553,44826625,45678593,46071810,46727170,46792705,47185922,47448065,48234497,48300034,48758786,49086465,50855937,52690945,54198274,55115777,55771137,56164357,56229889,56492033,56819713,57999364,58458116,58523652,58589188],"isync":[3801089,27394049,27721729,28377089,28442625,28966913,29097985,29229057,29360129,29491201,29949953,52953089,53805057,54788097,55705601,56623105,57081857],"intptr":[2228226,2293762,2359298,2818050,3211266,13893637,15400965,16908293,17825797,32899074,49152002,49676290,50003974,50200578,51249154,52756482,58130434],"invokes":[2031619,2228229,2293765,2359301,2752515,2818053,3014660,3145729,3211269,3604483,3801090,4128771,4259841,4325378,4784131,6029313,6291457,6356993,6422529,6684673,7536642,7667714,8257538,8781825,9306113,10223618,10354689,13172737,13828097,13893634,14417921,15269889,15400962,16908290,17825794,18350082,21037057,22282241,23003137,23527425,25296898,28377089,29097985,32899074,39059457,41680897,43188225,45678593,49152005,49676293,50200581,50462724,51183619,51249154,52559875,52756485,53936129,54394882,54329345,54788098,54984706,55705602,55836674,56164353,56360962,56557570,57606147,57737217,57999361,58130437,58327043,58392578,58458113,58523649,58589185,58982401,59047939,59179009],"invoker":[327681,1048577,3801089,4325377,27394049,27721729,28377089,28442625,28966913,29097985,29229057,29360129,29491202,29949954,49610753,52035585,52953090,53673985,53805058,54329346,54394881,54788097,54984705,55508993,55705601,56098818,56557569,56623105,56950786,57081857,57737217,57999362,58392577],"iarraybuffer":[2228226,16252929,16908289,17825793,18612225,19464193,34471938,40042497,41615366,51249153,53542913,56295425,58130437],"ignores":[9437185],"identical":[23920641,24313857,25165825,25624577,26476545,27131905,27918337,28049409,28704769,29425665,31129601,31653889],"invoked":[3014662,3604486,5439489,5505025,5701633,6225921,8126465,8716289,9437185,9830401,10354689,11272193,12124161,13172737,18743297,21037057,30277634,30408706,30998530,36831233,36962305,50462726,52559878,58458113],"ignored":[9437185,50659330,50790404,54067201],"iequality":[16711681,17367041],"include":[4653057,8388609,16384001,24051713,41484289,42926081],"importable":[37486593,43843585],"inheritance":[47644673,48103425,48168961,48431105,48562177,48824321,48955393,49020929,49217537,49545217,49741825,49872897,50135041,50266113,50331649,50397185,50462721,50593793,51118081,51445761,51707905,51773441,51838977,51904513,51970049,52559873,53084161,53411841,53477377,53936129,54263809,54329345,54460417,55246849,55312385,56033281,56754177,57344001,57737217,57933825,57999361,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58982401,59047937,59113473,59179009],"icomparable":[7798786],"implementation":[2424844,4128780,4653057,14942209,17301505,36831233,36765697,36896769,36962305,37486593,37617665,38338561,39321601,41025537,43057153,43843585,49020929,49217537,49610753,49741825,50397196,51118081,53673985,54329346,54394881,54984705,55508993,55771143,57212929,57475074,57737219,57933825,57999362,58392577,58523649,58589185,58982401,59047949,59179010],"inherits":[48103425,48562177,49020929,49152001,49545217,49676289,49741825,49872897,50200577,50266113,50397185,51183617,52363265,52559873,52756481,54329345,56033281,56164353,57344001,57606145,57737217,57999361,58130433,58327041,58458113,58589185,58720257,58785793,58851329,58982401,59047937,59113473,59179009],"inherited":[65537,1114118,1179654,1245190,1310728,1376262,1441799,1507334,1572870,1638406,1703943,1769478,1966088,2031617,2097158,2162701,2228234,2293775,2359311,2424852,2621448,2686986,2752522,2818058,2883592,2949128,3014662,3080198,3145729,3211279,3276808,3342341,3407878,3473414,3538950,3604527,3670022,3735558,3866630,3932166,3997702,4063238,4128788,4259845,4325382,4390917,4718598,4784138,4849670,6029369,6291513,6357049,6422585,6684723,7077893,8781876,9306170,33554433,33882116,33947649,34013191,34078721,34144258,34340875,34406405,34471943,34603010,34668545,34930696,35061770,35848197,35979269,36569108,36700170,36765720,36896792,37617689,38338581,39321625,41025561,47644678,48168966,48103433,48562183,48824326,48955398,49020935,49152017,49217542,49545234,49676314,49741830,49872902,50135046,50200601,50266121,50331653,50397204,50462726,51118086,51183631,51707910,51773446,51970054,52363279,52559919,52756505,52822018,53084166,53411846,53477382,53936133,54329425,54460422,55246854,55312390,56033290,56164353,56754182,57344010,57606145,57737289,57933830,57999441,58130449,58327055,58392582,58458183,58523653,58589266,58654725,58720271,58851338,58982482,59047956,59113481,59179091],"iserializable":[18219009],"ihostwindow":[4194306,35651586,48627719,50003969,52625409,57212929,57868293],"initonly":[458753,917505,983041,1048577],"information":[3145730,4259842,4849668,5373953,5636097,6029314,6291458,6356994,6422530,6488065,6684677,6946817,7208961,7274497,7536641,7733249,7864321,7929857,7995393,8126465,8323073,8454145,8781826,9043969,9306114,9371649,9830401,10682369,11468801,11534337,11665409,11730945,12189697,12255233,12320769,12386305,12451841,12582913,12713985,12779521,12845057,12976129,13041665,13107201,13369345,13434881,13565953,13631489,13697025,13959169,14155777,14286849,14483457,14680065,14745601,14942209,15007747,15073281,15335425,15532033,15597569,15728641,15794177,16056321,16580609,16646145,16777217,16973825,17039361,17104897,17170433,17301505,17432577,17498113,17760257,17891330,18153473,18284545,18415617,18481153,18677761,18874370,19005441,19070979,19267585,19529729,19791873,19857409,20381697,20447233,20512769,20840449,20971521,21168129,21233665,21299201,21364737,21757953,21889025,21954562,22085633,22151169,22347777,22478849,22675457,22740993,23068673,23265281,23330817,23658498,23920642,24444929,25427969,25624577,25952257,26607618,27525122,29032450,29622274,31064065,32571393,32636929,33161217,33423361,33816577,34537473,34734081,34930689,35192833,36831234,36962306,38862849,39387137,43646977,44302337,46530562,47775745,48889857,48955393,49414145,49741825,50528259,51773441,51970052,52494338,52690945,54329346,55246849,55574531,55771138,56164354,56754177,56885249,57737218,57802754,57999362,58458117,58523650,58589186,58720257,58916865,58982402,59179010],"icustomattributeprovider":[4653062],"iterable":[2490370,14942216,17301506,50593794],"idata":[2293761,35061761,50200577],"issues":[49938433],"interrupts":[3145729,4259841,6029313,6291457,6356993,6422529,6684673,8781825,9306113,18022401,19922945,28901377,54329345,56164353,56819713,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"isnull":[3014657,3604481,8060932,38862850,43646978,50462721,52559873,58916865],"ityped":[2359297,3211265,14876673,15466497,16318465,34340865,36700161,41943041,49676289,52756481],"internal":[39649282,41746433,44695554,58458113],"iwindows":[4784129,35979265,53346305,58327041],"isyncinvoker":[1048581,3801090,27394049,27721729,28377089,28442629,28966917,29097985,29229061,29360133,29491205,29949957,36765697,36896769,37617665,38338561,39321601,41025537,49610759,52035589,52953093,53673985,53805061,54329351,54394881,54788101,54984705,55508993,55705601,56098821,56623109,56950789,57081861,57475074,57737218,57999367,58392581,58589185,58982401,59179009],"inside":[2424833,4128769,50397185,59047937],"item":[2686977,8585219,10682370,11468801,11534338,11665410,11730946,12189698,12255233,12320770,12386306,12451841,12713985,12779521,12845058,12976129,13041665,13107201,13369345,13565953,13631489,13697026,13959170,14090243,14155777,14483457,14680065,14745602,15335425,15532034,15597570,16580609,17039362,17498114,18153474,18284545,18415618,18481153,19005442,19267586,19529729,19660803,19791874,20381697,20447233,20512770,20840449,21168129,21233666,21364737,21757953,22151169,22347777,22478850,22675457,23068673,23330818,23265281,24444930,25427970,31719427,33751042,33882113,34013186,34209793,34340866,34406401,34471938,35061762,35389442,35848194,35979266,36700162,39583748,39976964,42532869,42860549,44892165,49152002,49545217,49676290,50200578,50790401,50987009,51183618,52363266,52756482,53739523,57606146,57933825,58130434,58327042,59047938],"iarraybufferview":[2293765,2359301,2818050,3211269,13893633,14614529,14811137,15400961,15663105,32899073,34013186,34340867,35061763,36700163,39780353,40370177,41615361,49152005,49676300,50200588,52756492,56295425],"idisposablet":[8650754],"iwindowsscriptobject":[4784130,35979266,53346305,57212929,58327045],"invoking":[2424833,4128769,7536641,14090241,16384001,19660801,24051713,35127297,46399491,50397185,58523649,59047937],"interactive":[39124993,43450369,45416449],"inotifypropertychanged":[196609,57933828],"info":[1376257,3997697,5111809,5308417,15007745,17104902,17891329,18219014,18874369,19070977,20250630,21299205,21954561,22085638,23658497,23920641,25624577,26607617,27525121,29032449,29622273,34537473,34734082,35586049,35913729,36241409,36372481,36962305,37093377,37814273,38404097,39387141,44302342,45285377,46006273,46530565,46661633,46989313,47251457,47513601,47841281,48889857,48955393,49741826,50528261,51773441,52494341,53608449,55246849],"iconvertible":[9240581,9764869,9961477,10092549,10551301,10878981,11075589,11141125,11599877,11927557,11993093,12517381],"immutablevalueattribute":[1966082,10747909,33554434,50266120,55771137],"iproperty":[2686977,8519681,9568257,10616833,34406401,52363265],"instantiate":[8192001,10682369,11468801,11534337,12189697,12255233,12320769,13041665,13107201,16580609,17039361,18153473,19005441,19791873,20840449,21757953,22675457],"increment":[2424833,4128769,50397185,59047937],"inner":[38076417],"imports":[3145736,3604488,4259848,5898241,6029320,6291464,6357000,6422536,6619138,6684680,6815746,6946817,7012353,7471106,7864322,8126465,8781832,9043970,9306120,11665409,11730945,12386305,12451841,12779521,13369345,13959169,14155777,17498113,18284545,18415617,19267585,20512769,21364737,22347777,23068673,31260680,32112648,50790401,52559880,54067201,54329352,54525954,55050243,56164360,57737224,57999368,58458120,58523656,58589192,58982408,59179016],"individual":[2424833,4128769,39911425,40960001,48103425,50397185,56033281,59047937],"iasyncenumerable":[17301509],"iequalitycomparer":[16711685,17367045,33226754,41549830,57933826],"idynamic":[7602177,8912897,9109505,9175041],"iterator":[51052545,53542914],"insensitive":[6881281,50790401],"interrupt":[3145729,4259841,6029313,6291457,6356993,6422529,6684675,8781826,9306113,18022405,19922950,27590659,28901384,35782657,36569089,47120385,47710211,49348611,51970049,54329345,55902211,56164353,56819719,57737218,57999361,58458116,58523649,58589185,58982401,59179009],"invokemethod":[2031617,2228225,2293761,2359297,2752513,2818049,3211265,4128769,4784129,15269892,23527429,49152001,49676289,50200577,51183617,52756481,57606145,58130433,58327041,59047937],"invocable":[6946817,7864321,9043969,12713985,12976129,13631489,13697025,14483457,14745601,15335425,15532033,15597569,18481153,19529729,20381697,21168129,21233665,22151169,23330817,24444929,25427969,47906817,48496641],"invocation":[13172737,13828098,14417922,15269890,21037057,22282242,23003138,23527426,46399489],"instance":[131073,262145,327682,393217,458753,524289,851969,917505,983041,1048582,1114113,1179649,1245185,1310725,1376260,1441793,1507329,1572865,1638401,1703937,1769473,1900546,1966085,2097153,2162689,2424834,2490377,2621445,2883589,2949125,3014669,3080193,3276805,3342337,3407873,3473409,3538945,3604493,3670017,3735553,3866625,3932161,3997697,4063236,4128770,4259841,4325377,4390913,4456449,4718593,4849671,4915201,5046273,5177345,5242881,5373953,5636097,5767169,5832705,6029313,6160385,6291457,6356993,6422529,6488065,6619137,6684673,6815746,7012353,7077889,7143425,7208962,7274498,7405569,7471105,7667713,7733250,7798785,7864321,7929858,7995393,8126466,8192002,8257537,8388609,8454147,8585217,8650753,8781825,8978433,9043969,9240578,9306113,9371651,9502721,9764866,9961474,10092546,10223617,10354689,10551298,10747905,10878978,11075586,11141122,11272193,11599874,11927554,11993090,12124161,12517378,12648449,14942210,15728643,15794179,16056323,16449537,16646147,16777219,16973828,17301506,17432579,17629185,17760259,18087937,18677763,18808834,18939905,19202049,19398658,20054017,20119553,20709377,20774913,21299201,21495809,21561345,22216705,22937601,23461889,23592961,23789571,24510465,24641537,24707075,24838147,24969218,25034754,25231364,25755650,25821187,26148868,26214403,26279939,26345474,26542083,26738691,27000834,27066370,27197444,27787267,27852802,27983874,28442626,28508161,28639234,28966915,29229058,29294594,29360131,29491203,29556739,29753345,29818882,29949955,30015490,30343170,30474241,30867458,31522818,31850497,32374792,32505858,33292289,33685506,34275329,34930690,35127297,35454977,35717121,35782657,36569090,36765697,36896769,37617665,38338561,39321601,40435713,40566785,41025537,42074113,42336257,43057153,43974657,46202881,47644674,47710209,48103431,48168962,48431106,48496645,48562177,48824322,48955394,49020930,49217537,49348609,49545217,49741826,49872897,50135041,50266118,50331651,50397187,50462736,50593801,50659330,50790401,51118081,51511298,51707905,51773444,51838977,51970069,52035587,52101122,52428808,52559886,52953091,53084162,53149699,53215234,53411842,53477377,53805059,53870595,53936131,54067201,54329352,54460420,54657026,54722561,54853635,55181313,55246849,55312385,55377932,55640066,55967746,56033286,56098821,56164353,56492033,56623106,56688646,56754177,56885252,56950789,57016321,57081858,57212931,57278476,57344006,57409541,57475074,57671685,57737219,57933825,57999368,58392579,58458129,58523652,58589193,58654723,58720260,58785794,58851341,58982409,59047938,59113479,59179012],"identify":[8847361,10027009,10944513],"imported":[5898241,6815745,6946818,7012354,7471105,7864322,9043970,38535169,43384833],"items":[2686977,50987009,52363265],"inherit":[4653062,48103425,48562177,49020929,49545217,49741825,49872897,50266113,50397185,51773441,52559873,54329345,54460417,56033281,57344001,57737217,57999361,58458113,58589185,58720257,58785793,58851329,58982401,59047937,59113473,59179009],"inference":[14090241,19660801,37552129,41811969],"iteration":[2490370,14942210,17301506,50593794],"invoke":[2031617,2228225,2293761,2359297,2424834,2752513,2818049,3145729,3211265,3801090,4128771,4259841,4325378,4653057,4784129,6029313,6291457,6356993,6422529,6684673,8781825,8978433,9306113,10354690,13172742,13828102,13893634,14090241,14417921,15269890,15400962,16908290,17825794,19660801,21037064,22282247,23003137,23527426,28377095,29097991,32899073,38273025,44826625,49152001,49676289,50200577,50397186,51183617,51249153,52756481,54394889,54329345,54788098,54984713,55705603,56164353,56557571,57606145,57737217,57999361,58130433,58327041,58392578,58458113,58523649,58589185,58982401,59047939,59179009],"index":[2424836,2686977,4128772,13303814,13762566,14090241,14811137,14876679,15138822,15663105,16318471,18612225,19464193,19660801,20643846,24117254,34275329,35127297,36569089,36765697,36896769,37617665,38207490,38338561,39321601,39976967,41025537,41287682,44892167,50397188,51642374,52363265,54329345,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59047940,59179009],"indicates":[1310723,1376257,1966083,2621443,2883587,2949123,3276803,4063233,34930690,35454978,35717122,37289985,38010881,40697857,41418753,42467329,43122689,45219841,48037889,48103427,50266115,50921474,51052548,51773441,53542920,54460417,56033283,57016322,57344003,58720258,58785794,58851331,59113475],"identifier":[3145744,4259856,5439495,5505031,5701639,6029328,6225927,6291472,6357008,6422544,6684688,6815746,8192002,8781840,9306128,10682370,11468802,11534339,11665410,11730947,12189698,12255235,12320771,12386307,12451842,12779523,13041667,13107202,13369346,13959170,14155779,16580611,17039362,17498114,18153474,18284547,18415618,19005443,19267587,19791875,20512771,20840450,21364738,21757954,22347778,22675459,23068675,29491203,30867459,31195144,31260680,31522819,32112648,32178184,32505858,33554433,33947649,34144257,34603009,34668545,35258370,43253761,43909121,48103425,50266113,52035586,52822017,53477378,53805059,54329361,56033281,56098817,56164368,56950785,57344001,57409537,57671681,57737232,57999377,58458128,58523664,58589201,58851329,58982417,59113473,59179024],"interrupted":[2555905,20250625,20905985,21495809,22085633,22609921,23396353,33292289,35717121,42467329,43122689,43974657,44105729,44630017,44761089,47710210,49348610,55771137,58785794],"instantiating":[45875201,49807361],"iscriptable":[1835009,11403265,53018625],"initvalue":[8978439],"iasyncenumerator":[17301506],"infrastructure":[2424833,4128769,34930689,35454977,35717121,37552129,39452673,41811969,42795009,44761089,50397185,57016321,58720257,58785793,59047937],"inspector":[22544386,23199745],"intended":[2424836,4128772,16384001,24051713,39124993,41746433,43450369,45416449,50397188,59047940],"idispatchex":[50659329],"isdefaultattribute":[1310721,1966081,2621441,2883585,2949121,3276801,48103425,50266113,56033281,57344001,58851329,59113473],"initializing":[50659329,50790401,54067201,56885250,57212929],"includes":[7667713,14090241,16384003,19660801,24051715,39124993,43450369,45416449],"invokeasfunction":[2031617,2228225,2293761,2359297,2752513,2818049,3211265,4128769,4784129,14417924,23003142,49152001,49676289,50200577,51183617,52756481,57606145,58130433,58327041,59047937],"istypeobj":[3014658,3604482,8716294,9437190,30277634,50462722,52559874],"iscript":[2031617,3145729,10682369,11468801,11534337,11665409,11730945,12189697,12255233,12320769,12386305,12451841,12582913,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14680065,14745601,15007745,15073281,15138817,15204353,15269889,15335425,15532033,15597569,16121857,16384001,16842753,17170433,17563649,17891329,18022401,30801921,31064065,31195137,31260673,31326209,31391745,31457281,31588353,31719425,31916033,32047105,32571393,33357825,33751041,34275329,35454977,37224449,37355521,37289985,37486593,37552129,37683201,37945345,38010881,38076417,38207489,38273025,38535169,38600705,38731777,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39452673,39518209,39583745,39649281,39714817,39845889,39911425,39976961,40108033,40304641,40566785,40894465,41091073,41484289,41680897,42336257,50855937,56164353,57016321,57606145],"ijava":[2752513,35848193,40632321,41222145,51183617],"implemented":[33554433,33947649,34144257,34603009,34668545,48103425,49676289,50266113,52822017,56033281,57344001,58851329,59113473],"introduce":[50790401],"initializes":[4456449,4915201,5046273,5111809,5177345,5242881,5308417,5767169,5832705,6160385,7405569,9895937,10289153,10485761,10747905,11337729,12058625,12648449,15925249,16187393,16449537,16711681,17104897,17367041,17629185,17694721,18087937,18808833,18939905,19202049,19398657,20054017,20119553,20578305,20709377,20774913,21299201,21495809,21561345,22085633,22216705,22609921,22937601,23396353,23461889,23592961,24510465,24641537,24838145,24969217,25034753,25755649,25821185,26214401,26279937,26345473,26542081,26738689,27000833,27066369,27852801,27983873,28442625,28508161,28639233,28966913,29229057,29294593,29360129,29491201,29753345,29818881,29949953,30015489,30343169,30474241,30867457,30932997,31522817,31850500,32505857,33226756,33292292,33685506,47644673,48103426,48168961,48824321,48955393,49020929,49545221,49741825,50266113,50397185,50462721,51511297,51773442,51970060,52035585,52101121,52428808,52559873,52953089,53149697,53215234,53411841,53608450,53805057,53870593,54329349,54657026,54722561,54853633,55181313,55377932,55640065,56033281,56098821,56623105,56950789,57081857,57278476,57344001,57409541,57671685,57737217,57933828,57999365,58458124,58523650,58589189,58720260,58785796,58851336,58982405,59113474,59179009],"interprets":[12582913,12910593,13434881,13500417,14286849,14548993,15007745,15073281,15204353,16121857,16384001,16842753,17170433,17891329,18874369,19070977,19857409,20316161,20971521,21102593,21889025,22020097,22740993,22806529,23724033,24051713,24576001,52690945,58654721],"innerexception":[16187397,23396357,34930689,35454977,38076420,57016321,58720257],"ireadonlylist":[44171270,44433414,47316998],"isfatal":[34930689,35454977,35717121,37289988,41418758,43122694,57016321,58720257,58785793],"istype":[3014657,3604481,7798789,50462721,52559873],"indexing":[2424833,4128769,8847361,10027009,10944513,50397185,59047937],"inadvertent":[45350913,46268417,46858241,47579137],"involvement":[50987009],"implements":[196609,3014665,3604489,7602177,7798785,8519681,8650753,8847361,8912897,9175041,9568257,9633793,10027009,10616833,10944513,14090241,14942209,15990785,16580609,17039361,17235969,17301505,17498113,17956865,18153473,18219009,18284545,18415617,18481153,18743297,18874369,19005441,19070977,19267585,19333121,19529729,19595265,19660802,19726337,19791873,19857409,19922945,19988481,20185089,20316161,20381697,20447233,20512769,20643841,20840449,20971521,21037057,21102593,21168129,21233665,21364737,21626881,21757953,21889025,22020097,22151169,22282241,22347777,22478849,22675457,22740993,22806529,23003137,23068673,23265281,23330817,23527425,23724033,23855105,24051713,24117249,24379393,24444929,24576001,25427969,26804225,26869761,27656193,28246017,28311553,28770305,28901377,30081026,30146562,30605314,32768001,40435713,40501249,40697857,40960001,41156609,41287681,41353217,41418753,41811969,41877505,42008577,42074113,42139649,42205185,42270721,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,43122689,43188225,43384833,43450369,43581441,43646977,43712513,43843585,43974657,44040193,44105729,44236801,44367873,44564481,44630017,44695553,44761089,44826625,44892161,45678593,46071809,46727169,46792705,47185921,47448065,48234497,48300033,48758785,49086465,50462730,51642369,51970049,52297729,52363265,52559881,52690945,53542916,53673985,54198273,54394881,54984705,55115777,55508993,56229889,56492033,56754177,56819713,57933825,57999361,58392577,58458113,58523649,58589185,58720257,58785793,59047937],"integer":[5898241,7536641,7995393,8257537,8323073,9502721,10223617,13303809,13762561,15138817,20643841,24117249,24641537,24707073,24838145,26279937,26345473,26738689,27197441,27852801,27983873,29294593,37355521,39976961,40304641,43581441,44892161,45350913,46268417,46858241,47579137,51642369],"integers":[6619137,7471105,7667713,7995393,8323073,50790402],"idataview":[2293762,35061762,50200581,53542913,56295425],"ievent":[196610],"initial":[8978433,36110337,36175873,37027841],"indicating":[34406401,52363265],"interface":[1835009,2031617,2228225,2293761,2359297,2686977,2752513,2818049,3145729,3211265,3801089,4194305,4784129,8585217,10682369,11403265,11468801,11534337,11665409,11730945,12189697,12255233,12320769,12386305,12451841,12582913,12713985,12779521,12845058,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565954,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14155777,14090241,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,16121857,16252929,16318465,16384001,16842753,16908289,17170433,17563649,17825793,17891329,18022401,18612225,19464193,22478849,23265281,27394049,27721729,28377089,29097985,30801921,31064065,31195137,31260673,31326209,31391745,31457281,31588353,31719425,31916033,32047105,32571393,32899073,33357825,33751041,34013185,34275329,34340865,34406401,34471937,35061761,35454977,35651585,35848193,35979265,36700161,36765697,36896769,37224449,37355521,37289985,37486593,37552129,37617665,37683201,37945345,38010881,38076417,38207489,38273025,38338561,38535169,38600705,38731777,38862849,38928385,38993921,39059457,39124993,39256065,39190529,39321601,39452673,39518209,39583745,39649281,39714817,39780353,39845890,39911425,39976961,40042497,40108033,40304641,40370177,40566785,40632321,40894465,41025537,41091073,41222145,41484289,41615361,41680897,41943041,42336257,44236801,48103428,48234497,48627713,48758785,49152008,49676299,50003969,50200585,50462721,50855937,51183623,51249153,51970049,52363275,52625409,52756489,53018629,53346305,54329345,54788101,55705601,55771137,56033284,56164358,56295425,56754177,57016325,57212930,57344004,57475073,57606150,57737217,57868294,57933831,57999363,58130440,58327047,58392577,58458114,58523650,58589187,58720257,58785793,58982401,59047938,59113476,59179009]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_106.json b/docs/Reference/fti/FTI_106.json index 053097bee..dbad51664 100644 --- a/docs/Reference/fti/FTI_106.json +++ b/docs/Reference/fti/FTI_106.json @@ -1 +1 @@ -{"javascriptextensions":[2490370,15663105,15990785,16515073,16711681,17367041,17563649,18219009,18546689,19660801,34603009,35586049,54591494],"javascript":[2162689,2228225,2293761,2490369,2555905,2752513,2949121,6881281,7077889,7405569,7471105,7733249,7929857,8192001,8585218,8650753,8847361,8912897,9043969,9109505,9240577,9306113,9502721,9568257,9764865,9830401,10027009,10092545,10682369,10747905,10813441,11010049,11206657,11599873,11665409,11862017,12058625,12320769,12517377,14548994,14745602,15400962,15597570,15663106,15794178,15990786,16121858,16318466,16515074,16711682,16908290,17301506,17367042,17563650,18022402,18219010,18546690,18808834,19398658,19660802,20316162,31326211,33095681,33619969,34603009,34865155,35454977,35586059,39845890,40435714,40763393,41222146,42008578,42336259,42598403,43188227,43253763,43646978,43778049,43974659,44302338,44564483,45023234,45481987,46661633,49872897,51249157,52822021,53411841,53870596,54132742,54263809,54591492,54853635,54919174,55115779,55377924,57409541,57606148,57671681,57802757],"jscript":[5046273,6553601,28049410,28704769,28770306,29294594,29687810,30015490,30670850,30736386,31522818,31784963,32243714,32571395,32833538,33357825,38076422,40304646,40501249,47185921,49020929,52625411,52953089,53870594,56492039,58261511,58327041],"javascrip":[14024705,22413313,38797313,41811969,58195969],"javascriptobjectkind":[35586049,43188230,55115780],"java":[2490369,15663105,15990785,16515073,16711681,17367041,17563649,18219009,18546689,19660801,34603009,35586049,54591489,54853633,55115777],"json":[3342338,26411012,27066371,27459585,28442625,54919170,55050242],"javascriptobjectflags":[35586049,42598406,54853636],"just":[52625409,56557570],"jscriptengine":[5046274,6553602,28049413,28704770,28770309,29294597,29687813,30015493,30670853,30736389,31522821,31784965,32243713,32571397,32833537,33357826,38076422,40304646,40501250,47185922,49020930,52625410,52953090,56492043,57868289,58261515,58458113]} \ No newline at end of file +{"javascriptobjectflags":[40632326,51052548,56295425],"json":[3932162,22544388,23199747,23986177,29687809,50790402,51707906],"java":[2490369,14942209,15728641,15794177,16056321,16646145,16777217,16973825,17301505,17432577,17760257,18677761,32374785,50593793,51052545,53542913,56295425],"jscript":[6291457,6356993,28311553,28442626,28966914,29229058,29491203,29818882,29949954,30867459,36765697,37617665,46071809,46727169,47972354,50659331,54198273,54722562,55181314,55640066,56098822,57212930,57409542,57475074,57999367,58589191,58654721],"javascript":[2228225,2293761,2359297,2490369,2752513,2818049,3211265,6619137,6815745,7471105,7667713,7798785,7864321,7995393,8126465,8192001,8257537,8388609,8585217,8650753,8978433,9043970,9240577,9502721,9764865,9961473,10092545,10223617,10354689,10551297,10878977,11075585,11141121,11272193,11599873,11927553,11993089,12124161,12517377,13893634,14614530,14811138,14876674,14942210,15400962,15466498,15663106,15728642,15794178,16056322,16252930,16318466,16646146,16777218,16908290,16973826,17301506,17432578,17760258,17825794,18612226,18677762,19464194,32374785,32899073,34013187,34340867,34471939,35061763,35848195,36700163,36831233,36962305,39780354,40042498,40239106,40370178,40632323,40828930,41222147,41615362,41943042,45940737,47710209,47972356,49152004,49348609,49676294,50200581,50593796,50790406,51052547,51183621,51249153,52232193,52756485,53542915,54263812,55902209,56295435,56885251,58130437,58458113],"javascriptobjectkind":[41222150,53542916,56295425],"javascrip":[16384001,24051713,38862849,43646977,58916865],"javascriptextensions":[2490370,14942209,15728641,15794177,16056321,16646145,16777217,16973825,17301505,17432577,17760257,18677761,32374785,50593798,56295425],"jscriptengine":[6291458,6356994,28311554,28442629,28966917,29229061,29491205,29818885,29949957,30867461,36765698,37617666,46071810,46727170,50659330,54198274,54722565,55181317,55640069,56098822,57212929,57409542,57475073,57737217,57999371,58589195,59179009],"just":[49938434,50659329]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_107.json b/docs/Reference/fti/FTI_107.json index 570cfca4d..e11666b81 100644 --- a/docs/Reference/fti/FTI_107.json +++ b/docs/Reference/fti/FTI_107.json @@ -1 +1 @@ -{"keyword":[14024705,22413313],"kind":[22020098,22740994,22806530,23592962,23789570,24772610,24903682,24969218,25362434,25755650,25952258,26542082,26607618,26673154,26738690,27328514,27394050,27787266,28246018,28966914,29491202,30081026,30801922,31850498,34865154,42336258,43188230,43253762,43974658,44564482,45481986,51249154,52822018,54132738,54722561,54919169,55115778,57409538,57606146,57802754],"key":[3145732,16252935,16842758,18939910,21299206,38731777,39387137,46399494,56098821,57737217],"keys":[37158913,37421057,38731778,46923783,55574529,56098818,56754177],"kinds":[35586049,55115777],"keyvaluepair":[3145734,38731778,56098832,56754184]} \ No newline at end of file +{"kind":[22872066,23658498,23920642,24313858,25165826,25362434,25624578,26083330,26476546,26607618,27131906,27459586,27918338,28049410,28180482,28704770,28835842,29163522,29425666,30539778,31129602,31653890,32309250,32702466,34013186,34340866,34471938,35061762,35848194,36700162,41222150,49152002,49676290,50200578,50724865,50790401,51183618,52756482,53542914,58130434],"keys":[33882113,34209793,34406402,40501255,49545217,52363266,57933825],"key":[2686980,15990790,17235975,17956870,20185094,34406401,34930689,42532870,52363269,58720257],"keyword":[16384001,24051713],"keyvaluepair":[2686982,34406402,52363280,57933832],"kinds":[53542913,56295425]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_108.json b/docs/Reference/fti/FTI_108.json index d5a6961d4..878989303 100644 --- a/docs/Reference/fti/FTI_108.json +++ b/docs/Reference/fti/FTI_108.json @@ -1 +1 @@ -{"list":[7733249,8650758,9240582,9306118,9502726,9568262,10027014,10092550,10747910,10813446,11010054,11665414,11862022,14090241,16646145,19202050,30998529,31457281,31588353,31653889,31784962,31981570,32047105,32112641,32178177,32374785,32440321,32571394,32636929,32702465,32768002,32899074,32964609,33030145,33095681,33161217,33226753,33423362,33554433,33619969,33685505,33751041,33816577,34013185,34078721,34144257,34209793,34406401,34471937,34603009,34668545,34734081,34799617,34996225,35061761,35192833,35258369,35323905,35389441,35651585,35717121,35782657,36044801,36110337,36175874,36241409,36306945,36438017,36634625,36700161,36831233,36896769,36962305,37093377,37289986,37355521,37486593,37617665,37683201,37879809,37945345,38010881,38076418,38141953,38207489,38338561,38535169,38600705,38666241,38928385,39059457,39124994,39321601,39518209,39649281,39911425,40042497,40108033,40304642,40501249,40632321,41025538,42532865,44236801,46858243,47185921,47316993,48824321,49217537,50003971,50331649,54263809,54984705,55902210,56492034,56950785,57344002,57475074,57868290,58261506,58392578,58458114],"loaddocument":[1507329,1703937,6160389,50790401,55705601],"locks":[54263809],"leaks":[47054849,51838977],"loaddocumentasync":[1507330,1703937,5636100,6946821,50790402,55705601],"long":[720898,917508,16121864,16908296,17301512,18022408,18808840,20316168,40435716,41222148,42008580,43450374,43646980,43778054,44892164,46268422,46727174,47382536,47513604,48431108,48955396,50200580,50397188,50921476,50987012,51183620,51445764,51904516,54132737,54919170],"loade":[35520513,41746433,45219841,50790401,51576833,55705601],"loads":[1179649,1507330,1703938,3211270,3801094,4194313,5046278,5242886,5505030,5570566,5636097,5832710,6094863,6160385,6291458,6553606,6946817,13434881,13959169,14876673,16449537,17235969,18087937,18415617,19333121,19595265,20447233,22020097,22806529,23789569,23986177,24117249,24641537,24772609,24838145,24969217,25427969,25624577,25755649,25952257,26279937,26673153,26738689,27787265,28377089,29491201,30801921,33226755,34144265,34209795,34406409,35651587,36831235,49414145,50790402,54263823,55705602,56492038,56950790,57016329,57344006,57475078,57868294,58261510,58392582,58458118],"lists":[54132737],"listt":[8650754,9240578,9306114,9502722,9568258,10027010,10092546,10747906,10813442,11010050,11665410,11862018],"label":[7471105,13893633,14024705,14680065,15073281,19202049,20905985,22413313,23265281,23461889,23527425,23724033,24182785,24313857,24379393,24444929,25231361,25362433,25493505,26083329,26345473,26542081,26607617,27197441,27262977,27394049,27852801,27983873,29687809,29818881,30146561,30408705,30474241,30670849,30736385,30932993,31260673,31391745,31522817,31784961,31981569,32309249,32571393,32768001,32899073,33423361],"loadcustomattributes":[1179649,6291461,49414145],"like":[14090241,16646145],"line":[524291,720899,917507,3407873,31326209,43581442,45744129,46268419,54788097,54919169,55771138,56033284],"listen":[22937601,24444929,25231361,25821185,26083329,26935297,27656193,27852801,27983873,29097985],"limited":[12779521,18743297,26017793,28704769,29163521,33357825,34275329],"legacy":[39256065,48889857,51773441],"linq":[6881281,7077889,9043971,9830401,12058625],"leave":[43778049],"lines":[42074113,45744130,47644673,53542913],"longer":[41287681,47448068],"languag":[14090241,16646145,56098817],"leading":[42074113,47644673,53542913],"local":[7733249],"let":[7733249,9175041,9764865,10289153,10682369,11206657],"language":[2424834,3866626,14024705,22413313,37814273,40894465,44367873,49610753,49938433,52297729,52625409,53280770,55508993,56164354],"length":[18808837,20316165,34865154,43646982,45481986,52822018,54132738],"locating":[38010881],"leaf":[6881281,12058625,55574529],"loaded":[5439489,5636099,6029313,6160387,6815745,6946819,7536641,13434882,13959170,14876674,16449538,17235970,18087938,18415618,19333122,19595266,20447234,22020097,22806529,23789569,23986178,24117249,24641537,24772609,24838146,24969217,25427969,25624577,25755649,25952257,26279937,26673153,26738689,27787265,28377089,29491201,30801921,34537473,36175873,47972353,53477379,55443457,55902209],"lossy":[54919171],"location":[53477377],"link":[1,39387137,57737217],"lib":[4980738,6881287,9175041,12058633,38338563,52101122],"leaves":[28508161],"lengths":[8454150,9109510],"load":[589825,5636098,6160386,6291459,6946818,47972353,55443457],"loader":[1179649,1507329,1703937,4390913,4587521,4653057,4784129,5111809,5439489,5636097,5701633,6029313,6160385,6225921,6291457,6356993,6815745,6946817,7536641,11141121,34537474,35520514,36175874,36700161,38469634,41746433,44498946,45219843,48693254,49414146,50790401,51576835,54984705,55705603,55902210],"level":[38862849,47448072,52625409,53477377,55181313,56557569],"locates":[3932161,10223617,55574529],"look":[9764865],"linenumber":[524289,917508,43581441,46268420,55771137,56033281],"loadcallback":[36175873,47972356,55902209],"languages":[7208961,7471105,7798785,7995393,8126465,8257537,8323073,8716289,8847361,8978433,9371649,9633793,9961473,12845057,13172737,13434881,13893633,13959169,14024705,14680065,14876673,15073281,15728641,15859713,16449537,17235969,17629185,18087937,18415617,19333121,19595265,20447233,21168129,22413313,23265281,23986177,24051713,24838145,25559041,26345473,27262977,48103425,49610753,51118081,52297729,54460417,55508993,56098817],"loaders":[5636097,6160385,6946817,52494337,55902209],"low":[52625409],"library":[65537,131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980738,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175043,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024706,14090242,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646146,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17956865,17891329,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413314,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101122,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625410,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870595,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460418,54525953,54591489,54657025,54722561,54788097,54853633,54919170,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508994,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113],"lower":[47054849,51838977],"loading":[39256065],"looking":[41287681],"likely":[43057153,46333953,48562177,49348609,50266113,51052545],"locate":[10223617,16252929,18939905,41287681],"larger":[54722561],"limit":[35913729,38207489,43778049,44695553,44826625,45350913,46202881,47054850,47120385,47513602,47775745,51642369,51838978,52363265,54263809,57016321,57540609,57671682],"looks":[2686977,3932161,18939905,55574529,56754177]} \ No newline at end of file +{"leaf":[6619137,7471105,49545217],"locates":[2162689,11862017,49545217],"loaddocument":[1441793,1507329,5636101,47644673,49020929],"leaks":[47775745,49414145],"loaders":[5373953,5636097,6488065,36110337,48824321],"languages":[7602177,8126465,8519681,8585217,8847361,8912897,9109505,9175041,9568257,9830401,10027009,10616833,10944513,12582913,12910593,13434881,13500417,14286849,14548993,15007745,15073281,15204353,16121857,16384001,16842753,17170433,17891329,18874369,19070977,19857409,20316161,20971521,21102593,21889025,22020097,22740993,22806529,23724033,24051713,24576001,40108033,41680897,43188225,44564481,50331649,52363265,52690945,53936129],"languag":[14090241,19660801,52363265],"looks":[2162689,3080193,20185089,49545217,57933825],"lower":[47775745,49414145],"lines":[39124993,43450369,45416449,47316994],"locks":[58458113],"loaded":[5373955,5439489,5505025,5636099,5701633,6225921,6488067,12582914,12910594,13434882,13500418,14286850,14548994,19857410,20316162,20971522,21102594,21692417,21889026,22020098,22413313,22872065,23134209,24313857,24772609,25100289,25362433,25886721,26476545,27131905,27459585,28180481,28704769,29425665,30539777,31653889,32702465,36438018,38141953,38469633,46530561,48824322,49479683,52494337,55771138],"larger":[50724865],"local":[8192001],"lengths":[7995398,8323078],"limited":[19595265,26869761,28311553,32768001,50855937,54198273,56229889],"locate":[11862017,17235969,20185089,33095681],"long":[720898,786436,14811144,14876680,15663112,16318472,18612232,19464200,39780356,40042500,40370180,41943044,43253766,43909128,45154308,45219846,45285380,45744132,45940742,46006276,46465028,46596100,46661636,46989316,47251460,47513604,47841284,48037894,49676289,50790402],"loadcallback":[36438017,38141956,48824321,49479681],"look":[8978433],"loading":[41746433],"label":[8585217,16121857,16384001,16842753,17170433,18808833,19398657,23724033,24051713,24576001,24838145,25034753,25231361,25755649,25821185,26148865,26214401,26279937,26345473,26542081,26673153,26738689,27197441,27918337,28835841,28966913,29360129,29491201,29818881,29884417,29949953,30015489,30343169,30867457,31129601,31522817,32309249,32505857,52035585,52690945,52953089,53149697,53870593,53805057,54853633,55640065],"like":[14090241,19660801],"line":[589827,720899,786435,4063233,35258370,47316993,48037891,50790401,50921473,53477378,54460420,56885249],"lossy":[50790403],"lib":[3604482,6619145,7012353,7471111,52559874,54525955],"likely":[38535169,39845889,43384833,44236801,48234497,48758785],"let":[5898241,6815745,7012353,8192001,8978433,10354689,27787265],"low":[50659329],"load":[655361,4653059,5373954,5636098,6488066,38141953,38469633,46530561,52494337],"list":[8192001,9240582,9764870,9961478,10092550,10551302,10878982,11075590,11141126,11599878,11927558,11993094,12517382,14090241,19398658,19660801,29491202,30081025,30146561,30212097,30277633,30408705,30605313,30670849,30736385,30801921,30867458,30932993,30998529,31064065,31195137,31260673,31326209,31391745,31457281,31522818,31588353,31719425,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32374785,32440321,32505858,32571393,32636929,32833537,32899073,32964609,33030145,33161217,33226753,33292289,33357825,33423361,33488897,33685506,33816577,34275329,35127297,36438018,36569089,36765697,36896769,37158913,37421057,37617665,38207491,38338561,39321601,40173569,41025537,41287683,48824322,51249153,51904513,52035586,52428801,52887553,53215233,53280769,53608449,53739521,53805058,54001665,54132737,54329346,54525953,54657025,54919169,55050241,55377921,55443457,55574529,55705601,55967745,56098818,56164353,56360961,56426497,56557569,56688641,56950786,57147393,57278465,57409538,57540609,57671682,57737218,57802753,57999362,58064897,58261505,58458113,58523650,58589186,58982402,59179010],"loader":[1179649,1441793,1507329,4456449,4521985,4587521,4653057,4980737,5046273,5242881,5373953,5439489,5505025,5570561,5636097,5701633,5963777,6225921,6488065,6553601,33488897,33619969,36044802,36175875,36306946,36438018,37027843,38797318,40763394,47644675,48168962,48824322,49020929,51904513,55771138],"limit":[35782657,35913729,36569089,45023233,45350913,45547521,45940737,46268417,46858241,46989314,47579137,47775746,49414146,50069505,51970049,55246849,55902210,58458113],"leave":[45940737],"lists":[49676289],"listt":[9240578,9764866,9961474,10092546,10551298,10878978,11075586,11141122,11599874,11927554,11993090,12517378],"longer":[33095681,49807364],"locating":[40173569],"linq":[6619137,7471105,7667713,7864321,8257539],"link":[1,34930689,58720257],"loade":[33619969,36044801,36175873,37027841,47644673,49020929],"loads":[1179649,1441794,1507330,3145734,4259846,4653058,4849673,5373953,5636097,6029318,6291462,6356998,6422534,6488065,6684687,8781830,9306118,12582913,12910593,13434881,13500417,14286849,14548993,19857409,20316161,20971521,21102593,21692417,21889025,22020097,22413313,22872065,23134209,24313857,24772609,25100289,25362433,25886721,26476545,27131905,27459585,28180481,28704769,29425665,30539777,31326211,31653889,32440323,32702465,32964611,33357827,47644674,48168961,49020930,51970057,54329350,56164358,56426505,57737222,57999366,58064905,58458127,58523654,58589190,58982406,59179014],"loadcustomattributes":[1179649,4653061,48168961],"legacy":[40894465,41746433,42270721],"location":[49479681],"looking":[33095681],"level":[35520513,49479681,49807368,49938433,50659329,51445761],"linenumber":[589825,786436,35258369,48037892,53477377,54460417],"listen":[24641537,24707073,24838145,26279937,26345473,26738689,27197441,27852801,27983873,29294593],"language":[2424834,4128770,16384001,24051713,39518209,41484289,41680897,42729473,42926081,43188225,50397186,50659329,53936129,59047938],"leaves":[26804225],"length":[14876677,16318469,34340866,36700162,41943046,49676290,52756482],"loaddocumentasync":[1441794,1507329,5373957,6488068,47644673,49020930],"library":[65537,131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604482,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012355,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090242,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384002,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660802,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051714,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972355,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331650,50397185,50462721,50528257,50593793,50659330,50724865,50790402,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559874,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936130,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009],"leading":[39124993,43450369,45416449]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_109.json b/docs/Reference/fti/FTI_109.json index a7db1bbfa..d15433ff9 100644 --- a/docs/Reference/fti/FTI_109.json +++ b/docs/Reference/fti/FTI_109.json @@ -1 +1 @@ -{"marshalalllongasbigint":[54919170],"manner":[10158081],"memory":[4194305,6094849,14548995,15400963,15597571,16318467,26476546,26869762,28508161,31326209,34537473,35127297,35913731,43778050,47054851,48431105,48955393,51445761,51642369,51838979,54067201,54263809,54853633,57016321,57212929,57540612],"method":[2162689,2228225,2293761,2424846,2555905,2752513,2949121,3604481,3866639,4259841,4587521,4653057,4784129,5111809,5439490,5636097,5701633,5898241,5963777,6029314,6160385,6291458,6356993,6422529,6684673,6815746,6881281,6946817,7012357,7077889,7143426,7208961,7274501,7340037,7405569,7471105,7536642,7602181,7667713,7733249,7798785,7864325,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388610,8454145,8519685,8585217,8650753,8716289,8781825,8847362,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9502721,9568257,9633793,9699329,9764867,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10485761,10616833,10682369,10747905,10813441,10944513,11010049,11075585,11206657,11337729,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927555,11993089,12058625,12189697,12255233,12320769,12386305,12451842,12517377,12582913,12648449,12713986,12779523,12845058,12910593,12976129,13041666,13107201,13172738,13238273,13303810,13369345,13434882,13500418,13565953,13631489,13697025,13762561,13828101,13893634,13959170,14024708,14090250,14155777,14221313,14286849,14352386,14417921,14483457,14548994,14614529,14680066,14745601,14811137,14876674,14942209,15007745,15073282,15138817,15204353,15269889,15335425,15400962,15466498,15532033,15597570,15663109,15728642,15794177,15859714,15990789,16056321,16121857,16187393,16252929,16318466,16449538,16515077,16580610,16646154,16711685,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235970,17301505,17367046,17432577,17498113,17563654,17629186,17694721,17760257,17825793,17956865,17891329,18022401,18087938,18153473,18219014,18284546,18415618,18481157,18546694,18612225,18677762,18743299,18808833,18939905,19005442,19070977,19136513,19267586,19333122,19398657,19595266,19660805,19791873,19857409,19922945,19988481,20250625,20316161,20447234,20578305,20643841,20709377,20774913,20840449,21037057,21102593,21168130,21299201,21364737,21495809,21626881,21692417,21757953,21889025,21954561,22020097,22085633,22151170,22216705,22282241,22413316,22544385,22609921,22740993,22806529,22937602,23003138,23134209,23265282,23330817,23527426,23592961,23789569,23855105,23920641,23986178,24051714,24117249,24248321,24313858,24379393,24510465,24576005,24641537,24772609,24838146,24903681,24969217,25100289,25165825,25231362,25362433,25427969,25493505,25559042,25624577,25690113,25755649,25886722,25952257,26017796,26214401,26279937,26345474,26411009,26476545,26542081,26607617,26673153,26738689,26869761,27000834,27066369,27131906,27262978,27328513,27394049,27459586,27590658,27721730,27787265,27918340,28114949,28180482,28246017,28377089,28442626,28508161,28573697,28639233,28704772,28901377,28966913,29163524,29229058,29360133,29491201,29556737,29753345,29949953,30081025,30212099,30277634,30343170,30539777,30801921,30867457,30998529,31064066,31129602,31195137,31588353,31653889,31719425,31850497,31916033,32047105,32112641,32178177,32440321,32505858,32636929,32702465,32964609,33030145,33095681,33161217,33226753,33292290,33357828,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275332,34406401,34471937,34537477,34603009,34668545,34734081,34799617,34996225,35061761,35192833,35258369,35323905,35651585,35717121,35782657,35979266,36175873,36306945,36438017,36634625,36831233,36962305,37027842,37093377,37486593,37683201,37945345,38141957,38207495,38338561,38535169,38600705,38797314,38928385,39059457,39321601,39387137,39518209,39649281,39911425,40042501,40501253,40632321,41811970,42532869,42729473,44105730,44236805,44433410,44761089,44957699,45613057,46333953,46989314,47185925,47710211,47841282,47972353,48496641,48824325,48889860,49348609,49610754,50331653,50724866,51249153,51773444,52297730,52625412,52822017,53280783,53805060,53936130,54132737,54198273,54263815,54394882,54525953,55443457,55508995,55902209,55967746,56164366,56229889,56426502,56492037,56885250,56950789,57147393,57344005,57409537,57475077,57606145,57737217,57802753,57868293,58064900,58130433,58195970,58261509,58392581,58458117],"maxruntimestackusage":[38207489,52363268,54263809],"make":[15925250,20185090],"multiplier":[35127297,51642371,57212929],"mutable":[720897,917505,55443457],"maxoldspacesize":[35127297,44695556,46202884,47054849,51838977,57212929],"mustinherit":[52232193,53018625,53280769,54001665,55705601,56164353,56360961,56819713,57475073,57868289,58458113],"marshal":[30277633],"mscorlib":[6881281,12058625],"maxarraybufferallocation":[35127297,43778052,47054849,51838977,57212929],"meta":[3211266,3801090,4194307,5046274,5242882,5505026,5570562,5636097,5832706,6094852,6160385,6553602,6946817,7798785,7995393,8978433,9371649,15728642,15859714,17629186,23330818,24051714,25100290,25296897,27328514,28246018,28966913,30081026,32702465,33685507,33816577,34537473,34996225,35323905,35782657,36306945,36503553,37224449,37683202,40763394,42467329,42926081,46006273,46661634,50593793,52232193,53018625,54067201,54263812,54525953,55246849,55443458,56492034,56950786,57016323,57344002,57475074,57868290,58261506,58392578,58458114],"manage":[5636097,6160385,6946817],"microsoft":[65539,131075,196611,262147,327683,393219,458755,524291,655364,720900,786436,851972,917508,983044,1048580,1179651,1245187,1310723,1376259,1441795,1507331,1572867,1638403,1703939,1769475,1835011,1900547,1966083,2031619,2097155,2162691,2228227,2293763,2359299,2424835,2490371,2555907,2621443,2686979,2752515,2818051,2883587,2949123,3014659,3080195,3145731,3211267,3276803,3342339,3407875,3473411,3538947,3604483,3670019,3735555,3801091,3866627,3932163,3997699,4063235,4128771,4194307,4259843,4325379,4390916,4456451,4521987,4587524,4653060,4718596,4784132,4849668,4915204,4980739,5046275,5111812,5177348,5242883,5308419,5373956,5439492,5505027,5570563,5636100,5701636,5767172,5832707,5898244,5963780,6029316,6094851,6160388,6225924,6291460,6356996,6422532,6488068,6619140,6553603,6684676,6750211,6815748,6881284,6946820,7012356,7077892,7143428,7208964,7274500,7340036,7405572,7471108,7536644,7602180,7667716,7733252,7798788,7864324,7929860,7995396,8060932,8126468,8192004,8257540,8323076,8388612,8454148,8519684,8585220,8650756,8716292,8781828,8847364,8912900,8978436,9043972,9109508,9175044,9240580,9306116,9371652,9437188,9502724,9568260,9633796,9699332,9764868,9830404,9895940,9961476,10027012,10092548,10158084,10223620,10289156,10354692,10420228,10485764,10551300,10616836,10682372,10747908,10813444,10878980,10944516,11010052,11075588,11141124,11206660,11272196,11337732,11403268,11468804,11534340,11599876,11665412,11730948,11796484,11862020,11927556,11993092,12058628,12124164,12189700,12255236,12320772,12386308,12451844,12517380,12582916,12648452,12713988,12779524,12845060,12910596,12976132,13041668,13107204,13172740,13238276,13303812,13369348,13434884,13500420,13565956,13631492,13697028,13762564,13828100,13893636,13959172,14024708,14090244,14155780,14221316,14286852,14352388,14417924,14483460,14548996,14614532,14680068,14745604,14811140,14876676,14942212,15007748,15073284,15138820,15204356,15269892,15335428,15400964,15466500,15532036,15597572,15663108,15728644,15794180,15859716,15925252,15990788,16056324,16121860,16187396,16252932,16318468,16384004,16449540,16515076,16580612,16646148,16711684,16777220,16842756,16908292,16973828,17039364,17104900,17170436,17235972,17301508,17367044,17432580,17498116,17563652,17629188,17694724,17760260,17825796,17956868,17891332,18022404,18087940,18153476,18219012,18284548,18350084,18415620,18481156,18546692,18612228,18677764,18743300,18808836,18939908,18874372,19005444,19070980,19136516,19202052,19267588,19333124,19398660,19464196,19529732,19595268,19660804,19726340,19791876,19857412,19922948,19988484,20054020,20119556,20185092,20250628,20316164,20381700,20447236,20512772,20578308,20643844,20709380,20774916,20840452,20905988,20971524,21037060,21102596,21168132,21233668,21299204,21364740,21430276,21495812,21561348,21626884,21692420,21757956,21823492,21889028,21954564,22020100,22085636,22151172,22216708,22282244,22347780,22413316,22478852,22544388,22609924,22675460,22740996,22806532,22872068,22937604,23003140,23068676,23134212,23199748,23265284,23330820,23396356,23461892,23527428,23592964,23658500,23724036,23789572,23855108,23920644,23986180,24051716,24117252,24182788,24248324,24313860,24379396,24444932,24510468,24576004,24641540,24707076,24772612,24838148,24903684,24969220,25034756,25100292,25165828,25231364,25296900,25362436,25427972,25493508,25559044,25624580,25690116,25755652,25821188,25886724,25952260,26017796,26083332,26148868,26214404,26279940,26345476,26411012,26476548,26542084,26607620,26673156,26738692,26804228,26869764,26935300,27000836,27066372,27131908,27197444,27262980,27328516,27394052,27459588,27525124,27590660,27656196,27721732,27787268,27852804,27918340,27983876,28049412,28114948,28180484,28246020,28311556,28377092,28442628,28508164,28573700,28639236,28704772,28770308,28835844,28901380,28966916,29032452,29097988,29163524,29229060,29294596,29360132,29425668,29491204,29556740,29622276,29687812,29753348,29818884,29884420,29949956,30015492,30081028,30146564,30212100,30277636,30343172,30408708,30474244,30539780,30605316,30670852,30736388,30801924,30867460,30932996,30998531,31064068,31129604,31195140,31260676,31326212,31391748,31457283,31522820,31588355,31653891,31719428,31784964,31850500,31916036,31981572,32047107,32112643,32178179,32243716,32309252,32374787,32440323,32505860,32571396,32636931,32702467,32768004,32833540,32899076,32964611,33030147,33095683,33161219,33226755,33292292,33357828,33423364,33488900,33554435,33619971,33685507,33751043,33816579,33882116,33947652,34013187,34078723,34144259,34209795,34275332,34340867,34406403,34471939,34537476,34603011,34668547,34734083,34799619,34865155,34996227,34930691,35061763,35127299,35192835,35258371,35323907,35389443,35454979,35520515,35586052,35651587,35717123,35782659,35848195,35913731,35979268,36044803,36110339,36175875,36241411,36306947,36372484,36438019,36503555,36569091,36634627,36700163,36765700,36831235,36896771,36962307,37027844,37093379,37158915,37224452,37289987,37355523,37421059,37486595,37552132,37617667,37683203,37748739,37814276,37879811,37945347,38010884,38076419,38141955,38273028,38207491,38338563,38404100,38469636,38535171,38600707,38666243,38731779,38797316,38862851,38928387,38993924,39059459,39124995,39190532,39256068,39321603,39387139,39452676,39518211,39583748,39649283,39714820,39780356,39845892,39911427,39976964,40042499,40108035,40173571,40239108,40304643,40370180,40435716,40501251,40566788,40632323,40697860,40763396,40828931,40894468,40960003,41025539,41091076,41156612,41222148,41353220,41418755,41484292,41549828,41615363,41680900,41746435,41811972,41877507,41943044,42008580,42074116,42139652,42205188,42270724,42336259,42401795,42467331,42598404,42532867,42663940,42729476,42795012,42860547,42926083,42991620,43057156,43122692,43188228,43253763,43319300,43384836,43450372,43515908,43581443,43646980,43712516,43778052,43843588,43909124,43974659,44040195,44105732,44171268,44236803,44302340,44367876,44433412,44498948,44564483,44630019,44695556,44761092,44826627,44892164,44957700,45023236,45088772,45154308,45219844,45285379,45350916,45416452,45481987,45547524,45613060,45678596,45744132,45809668,45875204,45940740,46006276,46071812,46137348,46202884,46268420,46333956,46399492,46465028,46530564,46596100,46661636,46727172,46792708,46858244,46923780,46989316,47054852,47120388,47185923,47251460,47316996,47382532,47448068,47513604,47579140,47644676,47710212,47775748,47841284,47906820,47972356,48037892,48103428,48168964,48234500,48300036,48365572,48431108,48496644,48562180,48627716,48693252,48758788,48824323,48889860,48955396,49020932,49086468,49152004,49217540,49283076,49348612,49414149,49479684,49545222,49610756,49676292,49741828,49807364,49872900,49938436,50003972,50069508,50135044,50200580,50266116,50331651,50397188,50462724,50528260,50593796,50659332,50724868,50790406,50855940,50921476,50987012,51052548,51118084,51183620,51249156,51314692,51380228,51445764,51511300,51576836,51642372,51707908,51773444,51838980,51904516,51970052,52035588,52101126,52166662,52232197,52297732,52363268,52428804,52494340,52559876,52625412,52690948,52756485,52822020,52887556,52953092,53018630,53084164,53149700,53215236,53280773,53346308,53411844,53477380,53542916,53608452,53673988,53739524,53805063,53870604,53936132,54001669,54067206,54132740,54198276,54263814,54329350,54394884,54460421,54525956,54591493,54657028,54722564,54788100,54853636,54919172,54984709,55050245,55115780,55181317,55246853,55312388,55377925,55443460,55508997,55574534,55640068,55705606,55771141,55836677,55902213,55967750,56033285,56098820,56164357,56229892,56295429,56360966,56426502,56492039,56557572,56623110,56688645,56754182,56819718,56885252,56950788,57016325,57081860,57147396,57212933,57278468,57344007,57409540,57475079,57540613,57606148,57671684,57737221,57802756,57868297,57933829,57999364,58064902,58130436,58195972,58261512,58327045,58392584,58458121],"multiple":[11927553,20840449,21495809,21889025,22020097,22740993,22806529,23330817,23592961,23789569,24117249,24379393,24641537,24772609,24903681,24969217,25100289,25362433,25427969,25493505,25624577,25755649,25952257,26279937,26542081,26607617,26673153,26738689,27328513,27394049,27787265,28246017,28377089,28639233,28966913,29491201,29753345,30081025,30801921,30867457,31326209,31850497,46137345,52232193],"min_safe_integer":[54919169],"message":[19529735,20119559,22347783,22872071,36044802,37879810,39387139,39583750,39780353,40173569,40697857,40960003,53149697,57081859,57737221,57933827],"management":[52625409],"max_safe_integer":[54919169],"multiplication":[2424833,3866625,53280769,56164353],"minimum":[38207489,44826625,45416449,52887553,54263809,57016321],"modified":[9043969],"malicious":[51642369],"maintains":[52494337],"memberwiseclone":[1179649,1245185,1310721,1376257,1441793,1572865,1507329,1638401,1703937,1769473,1835009,1900545,2097153,2359297,2424833,2686977,2818049,2883585,3014657,3080193,3276801,3342337,3407873,3473409,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4325377,4456449,4521985,4980737,5046273,5242881,5505025,5570561,5832705,6094849,6553601,6750209,49414145,49545217,50790401,52101121,52166657,52232193,53018625,53280769,53805057,54001665,54067201,54263809,54329345,54460417,55050241,55246849,55508993,55574529,55705601,55771137,55836673,55902209,55967745,56033281,56164353,56295425,56360961,56426497,56492033,56623105,56688641,56754177,56819713,57016321,57212929,57344001,57475073,57540609,57737217,57868289,58064897,58261505,58327041,58392577,58458113],"makes":[53870593,54919169],"mechanisms":[57671681],"mentioned":[14024705,22413313],"modulecategory":[35454978,35586049,44302337,45023233,55377926],"maxyoungspacesize":[35127297,47120388,57212929],"members":[65537,131073,196609,262145,327681,393217,458753,524289,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4456449,4521985,4915201,4980737,5046273,5242881,5308417,5505025,5570561,5832705,6094849,6553601,6750209,7012353,7077890,7340033,7602177,7667714,8126465,8454145,8519681,8585218,8847361,9109505,10158084,10616833,11468801,11534337,11730945,11796481,11993089,12189697,12255233,12386305,12451842,12582913,12648450,12713986,12910593,12976129,13107201,13303810,13369345,13500419,13565954,13697025,14090242,14155778,14286849,14352387,14614530,15007745,15269890,15335426,16056321,16187393,16580611,16646146,16777218,16973825,17039361,17432577,17825794,17891329,17956865,18284546,18612226,19005442,19070977,19136513,19791874,19857409,19922945,20709377,20774913,21037058,21626881,21692417,21757954,22151170,22216705,22282241,23003139,34340865,34537476,34865153,34930689,35127297,35454977,35520513,35848194,35913729,36175873,36503553,36569089,36700161,37158913,37421057,37748737,38141955,38207491,38731777,38862849,39387137,40042499,40173569,40370178,40501251,40828929,40960001,41418753,41615361,41746433,41877505,41943041,42336257,42401794,42467329,42532867,42729473,42860545,42926081,43253761,43581441,43843585,43974657,44040193,44105730,44236803,44564481,44630017,44761089,44826625,45285377,45481985,46137346,46465026,46989314,47185923,48824323,49414145,49545217,50331651,50790401,51249153,52035585,52101121,52166660,52232193,52625409,52756481,52822017,53018625,53280769,53477377,53805057,54001665,54067201,54132737,54263811,54329345,54460417,54591489,54657028,54722561,54788097,54853633,54919171,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967748,56033281,56098819,56164353,56229889,56295425,56360961,56426497,56492035,56557569,56623105,56688641,56754177,56819713,56885250,56950787,57016321,57081857,57147393,57212929,57278465,57344003,57409537,57475075,57540609,57606145,57671681,57737217,57802753,57868291,57933825,57999361,58064897,58130433,58195970,58261507,58327041,58392579,58458115],"member":[2424838,3080193,3866629,5439489,5898244,5963777,6029313,6422529,6684673,6815745,6881281,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10485761,10682369,10747905,10813441,10944513,11010049,11075585,11206657,11337729,11599873,11665409,11862017,12058625,12320769,12517377,14090242,15532033,15663105,15990785,16515073,16646146,16711681,17367041,17498113,17563649,18153473,18219009,18546689,19660801,19726338,20381700,20840449,20971523,21430274,21495809,21889025,22020097,22085633,22478851,22609921,22740993,22806529,22937601,23068677,23330817,23396353,23527425,23592961,23658500,23789569,23855105,24117249,24313857,24379393,24641537,24707073,24772609,24903681,24969217,25100289,25231361,25362433,25427969,25493505,25624577,25755649,25952257,26214401,26279937,26411009,26476545,26542081,26607617,26673153,26738689,26869761,27000833,27066369,27328513,27394049,27459585,27721729,27787265,28246017,28377089,28442625,28639233,28901377,28966913,29491201,29556737,29753345,30081025,30277633,30343169,30801921,30867457,31064065,31719425,31850497,33882113,34537475,36569089,36765697,38010881,38141953,38469633,38666241,39256065,39452673,40763393,40828932,41680897,41877505,42139649,42663937,42795009,43319297,43450369,43712515,43778049,43909121,44171265,44302337,44433412,44498945,44695553,44892161,45023233,45350913,45416449,45678593,45744129,45940737,46006273,46071809,46137346,46202881,46268417,46596097,46661633,46727169,47054849,47120385,47316993,47382529,47448065,47513601,47775745,47906817,47972353,48168961,48234497,48431105,48627713,48693249,48758786,48955393,49086465,49217537,49283073,49807361,49872897,50200577,50397185,50855937,50921473,50987009,51183617,51445761,51642369,51707905,51838977,51904513,51970049,52035585,52363265,52494337,52559873,52625409,52887553,53084161,53215233,53280773,53411841,53477377,53542913,53739521,53805058,53936129,54394881,54657025,54722561,54788097,54853633,54919169,55115777,55312385,56098817,56164358,56426498,56557569,56885252,57278465,57475073,57671681,58064901,58195970],"monitoring":[45416449,47054852,47775745,51642369,51838980,52363265,52887553,57671681],"merged":[14090241,16646145],"match":[1245185,2097153,2359297,2883585,3080193,4325377,14090241,16646145,52166657,53805057,55836673,55967745,56426497,58064897],"maxruntimeheapsize":[38207489,51642369,51838980,52887553,54263809,57671681],"maxheapsize":[44826625,45416449,47054852,51642369,57016321,57671681],"marshalnullasdispatch":[44367873,49938433,52625409],"manipulate":[7471105],"modeless":[5308417,33488899,57999361],"machine":[7733249],"maximum":[16121857,16908289,17301505,18022401,18808833,20316161,34340865,35127301,35520513,38207490,41746433,43778049,44695554,44826626,45219842,45350914,46071809,46202882,47120386,47775745,50790401,51576834,51642369,52363265,52494338,53215233,54001665,54263810,55705601,57016322,57212933],"marshalarraysbyvalue":[52625409],"marshaling":[54263809,54657025],"multidimensional":[14090241,16646145],"movenext":[7733249],"mib":[35127300,44695555,45350915,46202883,47120387,57212932],"maxstackusage":[44826625,47775748,57016321],"maxcachesize":[34340865,35520513,41746434,45219845,50790402,51576837,52494341,54001665,55705601],"merge":[9175041,12058625],"maps":[44367873,48103425,49938433,51118081,54460417],"methods":[1179650,1245186,1310722,1376258,1441794,1507330,1572866,1638402,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424835,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407874,3473410,3538946,3604482,3670018,3735554,3801090,3866627,3932162,3997698,4063234,4128770,4194306,4259842,4325378,4456450,4521986,4980738,5046274,5242882,5308418,5505026,5570562,5832706,6094850,6291457,6553602,6750210,7012354,7077890,7274498,7340034,7602178,7667714,7864322,8126465,8454145,8519682,8585218,8847361,9109505,10616833,10682369,11468801,11534337,11730945,11796481,11993089,12189697,12255233,12386305,12451842,12582913,12648450,12713986,12910593,12976129,13107201,13303810,13369345,13500417,13565954,13697025,14090246,14155778,14286849,14352385,14614530,15007745,15269890,15335426,15663106,15990786,16056321,16187393,16515074,16580609,16646150,16711682,16777218,16973825,17039361,17367042,17432577,17563650,17825794,17891329,17956865,18219010,18284546,18546690,18612226,19005442,19070977,19136513,19660802,19791874,19857409,19922945,20709377,20774913,21037058,21626881,21692417,21757954,22151170,22216705,22282241,23003137,34537473,35586051,45088769,45613057,48496641,49414145,49545217,50528257,50790401,51249153,51511297,52101121,52166657,52232193,52756482,52822018,53018625,53280770,53673985,53805058,53936131,54001665,54067201,54132737,54263809,54329345,54394883,54460417,54591490,55050241,55246849,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164354,56229889,56295425,56360961,56426498,56492033,56623105,56688641,56754177,56819713,56950785,57016321,57147393,57212929,57344001,57409537,57475073,57540609,57606146,57737217,57802753,57868289,57933825,57999361,58064898,58130433,58261505,58327041,58392577,58458113],"marshaled":[38797313,41811969,44367873,48103425,49938433,51118081,52625412,54919170,58195969,58261505,58327041,58392577,58458113],"modify":[20185089,55443457],"mapping":[7077889,7667713,8126465,8454145,8585217,8847361,9109505,10616833,11468801,11534337,11730945,11796481,11993089,12189697,12255233,12386305,12451841,12582913,12648449,12713985,12910593,12976129,13107201,13303809,13369345,13500417,13565953,13697025,14090241,14155777,14286849,14352385,14614529,15007745,15269889,15335425,16056321,16187393,16580609,16646145,16777217,16973825,17039361,17432577,17825793,17956865,17891329,18284545,18612225,19005441,19070977,19136513,19791873,19857409,19922945,20709377,20774913,21037057,21626881,21692417,21757953,22151169,22216705,22282241,23003137],"mustoverride":[5636097,17170433,18677761,19267585,20643841,21102593,21364737,21954561,22544385,23134209,24248321,24576001,25165825,28508161,37224449,45154305,46792705,47251457,48037889,48562177,49741825,50528257],"monitor":[47775745,52363265],"misspelled":[41287681],"mechanism":[40763393,46661633,52625409],"max":[43778049,44695553,45219841,45350913,46202881,47054849,47120385,47775745,51576833,51838977,52363265,52494337],"map":[5439489,6029313,6815745,7536641,34930689,43319298,55246849],"module":[35454977,40763397,44302337,45023233,46661637,47448065,54919169,55377921,57278465],"moment":[50397186,50987010,51183618],"marshalunsafelongasbigint":[54919169],"managed":[3801089,5046273,5242881,5505025,5570561,5832705,6094849,6553601,18481154,28114946,29360130,34471937,34734081,39649281,52625409,54263809,54919169,56492033,57344001,57475073,57671681,57868289,58261505,58392577,58458113],"modules":[35454978,35586049,40763393,44302337,45023233,47448065,55377923],"marshaldatetimeasdate":[52625409],"maxexecutablesize":[35127297,44695556,57212929],"microseconds":[38207489,42860546,44040193,44826625,49086465,50397185,50987009,51183617,52559873,54263809,55050242,56295425,57016321],"memorystream":[49479681],"missing":[48103425,51118081,54460417],"marshaldecimalascurrency":[52625409],"maxnewspacesize":[35127297,45350916,47120388,57212929],"merges":[4980737,12058625,38338561,52101121]} \ No newline at end of file +{"modify":[15925249,46530561,52494337],"marshalalllongasbigint":[50790402],"meta":[3145730,4259842,4849667,5373953,5636097,6029314,6291458,6356994,6422530,6488065,6684676,7602177,8781826,8912897,9109505,9175041,9306114,15007746,17891330,18874370,19070978,21299201,21954562,23658498,23920642,25624577,26607618,29622274,31064065,32571393,32636929,33161217,33423361,33816577,34537473,34734081,35192833,36831234,36962306,39387137,44302337,46530562,48889857,48955393,49741825,50528257,51773441,51970051,52494338,54329346,55574531,55771137,56164354,56754177,57737218,57802754,57999362,58458116,58523650,58589186,58982402,59179010],"members":[65537,131073,262145,327681,393217,524289,589825,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4718593,4784129,4849665,5177345,6029313,6291457,6356993,6422529,6684673,6946818,7077889,7143425,7274497,7864322,7929857,7995393,8126465,8323073,8454145,8781825,9043970,9306113,9371649,9633796,9830401,10682369,11468801,11534337,11665409,11730945,12189697,12255233,12320769,12386305,12451841,12713986,12779521,12845059,12976130,13041665,13107201,13369345,13565955,13631490,13697026,13959169,14090242,14155777,14483458,14680065,14745602,15335426,15532034,15597570,16580609,17039361,17498113,18153473,18284545,18415617,18481154,19005441,19267585,19529730,19660802,19791873,20381698,20447233,20512769,20840449,21168130,21233666,21364737,21757953,22151170,22347777,22478851,22675457,23068673,23265283,23330818,24444930,25427970,33488897,33554433,33619969,33751041,33882113,33947650,34013185,34078721,34144257,34209793,34275331,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127299,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36438017,36569091,36634625,36700161,36765699,36896771,37486593,37617667,38273025,38338563,38928386,39321603,39911426,40960002,41025539,42008578,43843585,44826625,46399490,47644673,48103428,48168961,48431105,48562177,48824321,48955393,49020929,49152001,49217537,49479681,49545217,49676289,49741825,49872897,49938433,50135041,50200577,50266113,50331649,50397185,50462721,50593793,50659329,50724865,50790403,50921473,50987012,51052545,51118081,51183617,51445761,51576833,51707905,51773441,51838977,51904513,51970049,52166657,52232193,52363267,52559873,52756481,52822018,53018625,53084161,53411841,53477377,53542913,53936129,54067201,54263809,54329347,54460417,54788097,55246849,55312385,55771140,55902209,56033284,56164355,56754177,57016321,57344001,57606145,57737219,57868289,57933825,57999363,58130433,58195970,58327041,58392577,58458115,58523651,58589187,58654721,58720257,58785793,58851329,58916866,58982403,59047937,59113473,59179011],"microseconds":[34799618,34865153,35782657,36569089,45154305,45744129,46465025,47054849,48365569,51707906,51970049,55312385,58458113],"maxyoungspacesize":[35323905,46268420,53411841],"maxruntimeheapsize":[36569089,45023233,45613057,49414148,55902209,58458113],"memory":[4849665,6684673,13893635,15400963,16908291,17825795,26804225,27525122,29032450,35323905,35913731,45023233,45285377,45940738,47251457,47513601,47775747,49414147,49741825,51052545,51970049,53411841,55246852,55771137,56885249,58458113],"multiplier":[35323905,45023235,53411841],"max":[36110337,36175873,37027841,45350913,45547521,45940737,46268417,46858241,47579137,47775745,49414145,50069505],"multidimensional":[14090241,19660801],"map":[5439489,5505025,5701633,6225921,35586049,37814274,51773441],"merge":[6619137,7012353],"mutable":[720897,786433,851969,46530561,52494337,53084161],"max_safe_integer":[50790401],"maintains":[36110337],"monitoring":[45023233,45547521,45613057,46137345,47775748,49414148,50069505,55902209],"monitor":[45547521,50069505],"memberwiseclone":[1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1966081,2097153,2162689,2424833,2621441,2883585,2949121,3014657,3080193,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3866625,3932161,3997697,4063233,4128769,4259841,4325377,4390913,4718593,4849665,6029313,6291457,6356993,6422529,6684673,7077889,8781825,9306113,47644673,48103425,48168961,48562177,48824321,48955393,49020929,49217537,49545217,49741825,49872897,50135041,50266113,50331649,50397185,50462721,51118081,51707905,51773441,51970049,52559873,53084161,53411841,53477377,53936129,54329345,54460417,55246849,55312385,56033281,56754177,57344001,57737217,57933825,57999361,58392577,58458113,58523649,58589185,58654721,58720257,58851329,58982401,59047937,59113473,59179009],"multiple":[11403265,21692417,21954561,22413313,22872065,23134209,23658497,23920641,24182785,24248321,24313857,24772609,24903681,25100289,25165825,25362433,25624577,25690113,25886721,26083329,26411009,26476545,26607617,26673153,27131905,27262977,27459585,27918337,28049409,28180481,28704769,28835841,29163521,29425665,29622273,29884417,30539777,31129601,31653889,32309249,32702465,46399489,56754177,56885249],"modeless":[4194305,52625411,57868289],"malicious":[45023233],"movenext":[8192001],"maxarraybufferallocation":[35323905,45940740,47775745,49414145,53411841],"manner":[9633793],"methods":[1114114,1179650,1245186,1310722,1376258,1441794,1507330,1572866,1638402,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424835,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407874,3473410,3538946,3604482,3670018,3735554,3801090,3866626,3932162,3997698,4063234,4128771,4194306,4259842,4325378,4390914,4653057,4718594,4784130,4849666,6029314,6291458,6356994,6422530,6684674,6946818,7077890,7143426,7208962,7274498,7733250,7864322,7929858,7995393,8126465,8323073,8454146,8781826,9043970,9306114,9371650,9830401,10354689,10682369,11468801,11534337,11665409,11730945,12189697,12255233,12320769,12386305,12451841,12713986,12779521,12845057,12976130,13041665,13107201,13369345,13565953,13631490,13697026,13959169,14090246,14155777,14483458,14680065,14745602,14942210,15335426,15532034,15597570,15728642,15794178,16056322,16580609,16646146,16777218,16973826,17039361,17301506,17432578,17498113,17760258,18153473,18284545,18415617,18481154,18677762,19005441,19267585,19529730,19660806,19791873,20381698,20447233,20512769,20840449,21168130,21233666,21364737,21757953,22151170,22347777,22478849,22675457,23068673,23265281,23330818,24444930,25427970,37683201,39190529,42598401,43712513,47185921,47644673,47906819,48168961,48103425,48431106,48496643,48562177,48824321,48955393,49020929,49086465,49152002,49217537,49545217,49676289,49741825,49872897,50135041,50200577,50266113,50331649,50397186,50462721,50593794,51118081,51183617,51707905,51773441,51838977,51970049,52363265,52559873,52756482,53018625,53084162,53411841,53477377,53936129,54329345,54460417,54788097,55246849,55312385,55771137,56033281,56164353,56295427,56754177,57344002,57606145,57737217,57868289,57933825,57999361,58130433,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851330,58982401,59047938,59113474,59179009],"manage":[5373953,5636097,6488065],"maxoldspacesize":[35323905,45350916,46858244,47775745,49414145,53411841],"maxheapsize":[35782657,45023233,46137345,47775748,51970049,55902209],"marshaled":[38862849,40108033,41484289,42926081,43646977,44564481,50659332,50790402,58589185,58654721,58916865,58982401,59179009],"marshalnullasdispatch":[41484289,42926081,50659329],"maxexecutablesize":[35323905,46858244,53411841],"misspelled":[33095681],"mib":[35323908,45350915,46268419,46858243,47579139,53411844],"metho":[46530561],"moment":[45154306,45744130,46465026],"memorystream":[43057153],"marshalarraysbyvalue":[50659329],"match":[1310721,1966081,2621441,2883585,2949121,3276801,14090241,19660801,48103425,50266113,56033281,57344001,58851329,59113473],"maxstackusage":[35782657,45547524,51970049],"make":[15925250,16711682],"maps":[40108033,41484289,42926081,44564481,50331649],"module":[36831237,36962309,40239105,40828929,49807361,50790401,52232193,54067201,54263809],"minimum":[35782657,36569089,45613057,46137345,51970049,58458113],"message":[16187399,17694727,22609927,23396359,31850498,33292290,34930691,35454979,35717121,37224449,37945350,41156609,44630017,57016323,58720261,58785795],"method":[2031617,2228225,2293761,2359297,2424846,2752513,2818049,3211265,4128783,4521985,4587521,4653058,4784129,4980737,5373953,5439490,5505026,5570561,5636097,5701634,5898241,5963777,6094849,6225922,6488065,6553601,6619137,6750209,6815745,6881281,6946817,7012353,7208965,7274501,7340033,7471105,7536641,7602177,7667713,7733253,7798785,7864321,7929861,7995393,8060930,8126466,8192001,8257537,8323073,8388609,8454149,8519681,8585217,8650753,8716289,8847361,8912897,8978435,9043969,9109505,9175041,9240577,9371653,9437186,9502721,9568257,9633793,9699329,9764865,9830401,9961473,10027009,10092545,10158081,10223617,10354689,10420225,10551297,10616833,10682369,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11403267,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582914,12713986,12779521,12845058,12910594,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434882,13500418,13565954,13631489,13697025,13762561,13828097,13893634,13959169,14024705,14090250,14155777,14221313,14286850,14352385,14417921,14483457,14548994,14614529,14680065,14745601,14811137,14876673,14942214,15007746,15073282,15138817,15204354,15269893,15335426,15400962,15466497,15532034,15597569,15663105,15728645,15794182,15859713,15990785,16056326,16121858,16252929,16318465,16384004,16515073,16580609,16646149,16777221,16842754,16908290,16973830,17039361,17170434,17235969,17301510,17432582,17498113,17563650,17760261,17825794,17891330,17956865,18022402,18153473,18219009,18284545,18350085,18415617,18481153,18546689,18612225,18677766,18743300,18874370,19005441,19070978,19136513,19267585,19333122,19464193,19529729,19595267,19660810,19726337,19791873,19857410,19922946,19988481,20185089,20250625,20316162,20381697,20447233,20512769,20643841,20840449,20905985,20971522,21037057,21102594,21168130,21233666,21364737,21430273,21626881,21692417,21757953,21823490,21889026,21954561,22020098,22151170,22282241,22347777,22413313,22478850,22544385,22675457,22740994,22806530,22872065,23003137,23068673,23134209,23199745,23265282,23330817,23527429,23658497,23724034,23789570,23855105,23920641,23986178,24051716,24117249,24182785,24248321,24313857,24379393,24444929,24576002,24707074,24772609,24903681,25100289,25165825,25231362,25296901,25362433,25427969,25493505,25559041,25624577,25690113,25886721,25952257,26017794,26083329,26148866,26411009,26476545,26607617,26673153,26804225,26869764,26935298,27131905,27197442,27262977,27328514,27394049,27459585,27525121,27590658,27656193,27721729,27787265,27918337,28049409,28114945,28180481,28246018,28311556,28377089,28573697,28704769,28770305,28835841,28901378,29032449,29097985,29163521,29425665,29556738,29622273,29687810,29884417,30081025,30146561,30212097,30277633,30408705,30539777,30605313,30670849,30736385,30801921,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31588353,31653889,31784962,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32571393,32636929,32702465,32768004,32833537,32899073,32964609,33030145,33161217,33357825,33423361,33816577,34275333,34930689,35127301,36438018,36569095,36765701,36896773,37552131,37617669,37683201,38141953,38273025,38338565,38469633,38535169,38862850,38993922,39321605,39911426,40894468,40960002,41025541,41680898,41811971,42205186,42270724,42598401,43188226,43319298,43384833,43646978,44826625,46530561,47120385,47906818,48496642,48824322,49152001,49676289,50200577,50397198,50528257,50659332,50855939,51183617,51249153,51314689,51642369,51838977,52297729,52494337,52625409,52690946,52756481,52887553,53018625,53280769,53346305,53673986,53936131,54001665,54132737,54198276,54329349,54394882,54525953,54591489,54919169,54984706,55050241,55115777,55443457,55508994,55574529,55705601,55771143,55836677,55967745,56033282,56164357,56229892,56360961,56426497,56492035,56557569,56688641,56819714,57147393,57344006,57540609,57606145,57737221,57802753,57999365,58064897,58130433,58261505,58195970,58327041,58458119,58523653,58589189,58720257,58851332,58916866,58982405,59047951,59113476,59179013],"marshaling":[50987009,58458113],"modified":[8257537],"maximum":[14811137,14876673,15663105,16318465,18612225,19464193,33619969,34996225,35323909,35782658,36044801,36110338,36175874,36569090,37027842,45023233,45350914,45547521,45940737,46268418,46333953,46858242,46923777,47579138,47644673,49020929,50069505,50135041,51970050,53411845,58458114],"marshalunsafelongasbigint":[50790401],"maxnewspacesize":[35323905,46268420,47579140,53411841],"mustoverride":[6488065,19333121,19726337,19922945,19988481,20643841,21626881,22282241,23527425,23855105,24117249,26804225,37879809,39387137,42663937,42860545,43581441,43712513,44040193,44236801,44367873,44892161,51642369,52297729],"marshaldatetimeasdate":[50659329],"merged":[14090241,19660801],"mscorlib":[6619137,7471105],"marshal":[26017793],"mapping":[6946817,7864321,7995393,8126465,8323073,9043969,9830401,10682369,11468801,11534337,11665409,11730945,12189697,12255233,12320769,12386305,12451841,12713985,12779521,12845057,12976129,13041665,13107201,13369345,13565953,13631489,13697025,13959169,14090241,14155777,14483457,14680065,14745601,15335425,15532033,15597569,16580609,17039361,17498113,18153473,18284545,18415617,18481153,19005441,19267585,19529729,19660801,19791873,20381697,20447233,20512769,20840449,21168129,21233665,21364737,21757953,22151169,22347777,22478849,22675457,23068673,23265281,23330817,24444929,25427969],"modulecategory":[40239105,40828929,52232194,54263814,56295425],"mustinherit":[47644673,48955393,49217537,50135041,50397185,51118081,56754177,57737217,58523649,59047937,59179009],"missing":[40108033,44564481,50331649],"member":[2424838,2949121,4128773,5439489,5505025,5701633,5898241,6094849,6225921,6619137,6750209,6815745,6881284,6946817,7012353,7208961,7274497,7340033,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9961473,10027009,10092545,10158081,10223617,10354689,10420225,10551297,10616833,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11599873,11796481,11862017,11927553,11993089,12124161,12517377,14090242,14942209,15728641,15794177,16056321,16515073,16646145,16777217,16973825,17301505,17432577,17760257,18546689,18677761,18939905,19136513,19202050,19660802,20054020,20709377,20774915,21430273,21561346,21692417,21954561,22216707,22413313,22544385,22872065,22937605,23134209,23199745,23461892,23658497,23789569,23920641,23986177,24182785,24248321,24313857,24707073,24772609,24903681,25100289,25165825,25231361,25362433,25493505,25559041,25624577,25690113,25886721,25952257,26017793,26083329,26148865,26411009,26476545,26607617,26673153,26935297,27131905,27197441,27262977,27459585,27525121,27590657,27787265,27918337,28114945,28049409,28180481,28573697,28704769,28835841,29032449,29163521,29425665,29556737,29622273,29687809,29884417,30539777,31129601,31653889,32309249,32702465,34144257,34603012,34668545,35127297,36110337,36241409,36306945,36372481,36503553,36634625,36831233,36962305,37093377,37158913,37421057,37748737,37814273,38141953,38404097,38469633,38797313,40173569,40239105,40763393,40828929,41549825,41746433,42401795,42991617,43253761,43319300,43515905,43909121,44171265,44433409,44498945,44957697,45023233,45088770,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45744129,45809665,45875201,45940737,46006273,46137345,46202881,46268417,46333953,46399490,46465025,46596097,46661633,46858241,46923777,46989313,47054849,47251457,47316993,47382529,47513601,47579137,47710209,47775745,47841281,47906817,48037889,48365569,48496641,48627713,48693249,48889857,49283073,49348609,49414145,49479681,49610753,49807361,49938433,50069505,50397190,50659329,50724865,50790401,50921473,50987009,51052545,51314689,52166657,52363265,52428801,53542913,54067201,54591489,55771139,55902209,57344002,58195972,58523649,58851333,58916866,59047941,59113474],"maxruntimestackusage":[36569089,50069508,58458113],"multiplication":[2424833,4128769,50397185,59047937],"merges":[3604481,6619137,52559873,54525953],"makes":[47972353,50790401],"min_safe_integer":[50790401],"managed":[2490370,4259841,6029313,6291457,6356993,6422529,6684673,8781825,9306113,14942210,17301506,18350082,25296898,31981569,50593794,50659329,50790401,54329345,55836674,55902209,57147393,57737217,57999361,58261505,58458113,58523649,58589185,58982401,59179009],"microsoft":[65539,131075,196612,262147,327683,393219,458756,524291,589827,720900,786436,851972,917508,983044,1048580,1114115,1179651,1245187,1310723,1376259,1441795,1507331,1572867,1638403,1703939,1769475,1835011,1900547,1966083,2031619,2097155,2162691,2228227,2293763,2359299,2424835,2490371,2555907,2621443,2686979,2752515,2818051,2883587,2949123,3014659,3080195,3145731,3276803,3211267,3342339,3407875,3473411,3538947,3604483,3670019,3735555,3801091,3866627,3932163,3997699,4063235,4128771,4194307,4259843,4325379,4390915,4456452,4521988,4587524,4653060,4718595,4784131,4915204,4849667,4980740,5046276,5111812,5177348,5242884,5308420,5373956,5439492,5505028,5570564,5636100,5701636,5767172,5832708,5898244,5963780,6029315,6094852,6160388,6225924,6291459,6356995,6422531,6488068,6553604,6619140,6684675,6750212,6815748,6881284,6946820,7012356,7077891,7143427,7208964,7274500,7340036,7405572,7471108,7536644,7602180,7667716,7733252,7798788,7864324,7929860,7995396,8060932,8126468,8192004,8257540,8323076,8388612,8454148,8519684,8585220,8650756,8716292,8781827,8847364,8912900,8978436,9043972,9109508,9175044,9240580,9306115,9371652,9437188,9502724,9568260,9633796,9699332,9764868,9830404,9895940,9961476,10027012,10092548,10158084,10223620,10289156,10354692,10420228,10485764,10551300,10616836,10682372,10747908,10813444,10878980,10944516,11010052,11075588,11141124,11206660,11272196,11337732,11403268,11468804,11534340,11599876,11665412,11730948,11796484,11862020,11927556,11993092,12058628,12124164,12189700,12255236,12320772,12386308,12451844,12517380,12582916,12648452,12713988,12779524,12845060,12910596,12976132,13041668,13107204,13172740,13238276,13303812,13369348,13434884,13500420,13565956,13631492,13697028,13762564,13828100,13893636,13959172,14024708,14090244,14155780,14221316,14286852,14352388,14417924,14483460,14548996,14614532,14680068,14745604,14811140,14876676,14942212,15007748,15073284,15138820,15204356,15269892,15335428,15400964,15466500,15532036,15597572,15663108,15728644,15794180,15859716,15925252,15990788,16056324,16121860,16187396,16252932,16318468,16384004,16449540,16515076,16580612,16646148,16711684,16777220,16842756,16908292,16973828,17039364,17104900,17170436,17235972,17301508,17367044,17432580,17498116,17563652,17629188,17694724,17760260,17825796,17891332,17956868,18022404,18087940,18153476,18219012,18284548,18350084,18415620,18481156,18546692,18612228,18677764,18743300,18808836,18874372,18939908,19005444,19070980,19136516,19202052,19267588,19333124,19398660,19464196,19529732,19595268,19660804,19726340,19791876,19857412,19922948,19988484,20054020,20119556,20185092,20250628,20316164,20381700,20447236,20512772,20578308,20643844,20709380,20774916,20840452,20905988,20971524,21037060,21102596,21168132,21233668,21299204,21364740,21430276,21495812,21561348,21626884,21692420,21757956,21823492,21889028,21954564,22020100,22085636,22151172,22216708,22282244,22347780,22413316,22478852,22544388,22609924,22675460,22740996,22806532,22872068,22937604,23003140,23068676,23134212,23199748,23265284,23330820,23396356,23461892,23527428,23592964,23658500,23724036,23789572,23855108,23920644,23986180,24051716,24117252,24182788,24248324,24313860,24379396,24444932,24510468,24576004,24641540,24707076,24772612,24838148,24903684,24969220,25034756,25100292,25165828,25231364,25296900,25362436,25427972,25493508,25559044,25624580,25690116,25755652,25821188,25886724,25952260,26017796,26083332,26148868,26214404,26279940,26345476,26411012,26476548,26542084,26607620,26673156,26738692,26804228,26869764,26935300,27000836,27066372,27131908,27197444,27262980,27328516,27394052,27459588,27525124,27590660,27656196,27721732,27787268,27852804,27918340,27983876,28114948,28049412,28180484,28246020,28311556,28377092,28442628,28508164,28573700,28639236,28704772,28770308,28835844,28901380,28966916,29032452,29097988,29163524,29229060,29294596,29360132,29425668,29491204,29556740,29622276,29687812,29753348,29818884,29884420,29949956,30015492,30081027,30146563,30212099,30277635,30343172,30408707,30474244,30539780,30605315,30670851,30736387,30801923,30867460,30932995,30998531,31064067,31129604,31195139,31260675,31326211,31391747,31457283,31522820,31588355,31653892,31719427,31784964,31850499,31916035,31981571,32047107,32112643,32178179,32243715,32309252,32374787,32440323,32505860,32571395,32636931,32702468,32768004,32833539,32899075,32964611,33030147,33161219,33226755,33292291,33357827,33423363,33488899,33554435,33619971,33685507,33751043,33816579,33882115,33947651,34013187,34078723,34144259,34209795,34275331,34340867,34406403,34471939,34537475,34603011,34668547,34734083,34799619,34865155,34930691,34996227,35061763,35127299,35192835,35258371,35323907,35389443,35454979,35520515,35586051,35651587,35717123,35782659,35848195,35913731,35979267,36044803,36110340,36175876,36241412,36306948,36372484,36438019,36503556,36569091,36634628,36700163,36831236,36765699,36896771,36962308,37027844,37093380,37158916,37224452,37289988,37355524,37421060,37486596,37552132,37617667,37683204,37748740,37814276,37879812,37945348,38010884,38076420,38141956,38207492,38273028,38338563,38404100,38469636,38535172,38600708,38666244,38731780,38797316,38862852,38928388,38993924,39059460,39124996,39190532,39256068,39321603,39387140,39452676,39518212,39583748,39649284,39714820,39780356,39845892,39911428,39976964,40042500,40108036,40173572,40239108,40304644,40370180,40435716,40501252,40566788,40632324,40697860,40763396,40828932,40894468,40960004,41025539,41091076,41156612,41222148,41287684,41353220,41418756,41484292,41549828,41615364,41680900,41746436,41811972,41877508,41943044,42008580,42074116,42139652,42205188,42270724,42336260,42401796,42467332,42532868,42598404,42663940,42729476,42795012,42860548,42926084,42991620,43057156,43122692,43188228,43253764,43319300,43384836,43450372,43515908,43581444,43646980,43712516,43778052,43843588,43909124,43974660,44040196,44105732,44171268,44236804,44302340,44367876,44433412,44498948,44564484,44630020,44695556,44761092,44826628,44892164,44957700,45023236,45088772,45154308,45219844,45285380,45350916,45416452,45481988,45547524,45613060,45678596,45744132,45809668,45875204,45940740,46006276,46071812,46137348,46202884,46268420,46333956,46399492,46465028,46530564,46596100,46661636,46727172,46792708,46858244,46923780,46989316,47054852,47120388,47185924,47251460,47316996,47382532,47448068,47513604,47579140,47644678,47710212,47775748,47841284,47906820,47972364,48037892,48103430,48168965,48234500,48300036,48365572,48431109,48496644,48562182,48627716,48693252,48758788,48824325,48889860,48955398,49020934,49086468,49152004,49217542,49283076,49348612,49414148,49479684,49545222,49610756,49676292,49741830,49807364,49872902,49938436,50003972,50069508,50135045,50200580,50266117,50331653,50397189,50462726,50528260,50593797,50659332,50724868,50790404,50855940,50921476,50987012,51052548,51118086,51183620,51249155,51314692,51445765,51511300,51576835,51642372,51707909,51773445,51838981,51904517,51970053,52035588,52101124,52166660,52232195,52297732,52363268,52428803,52494340,52559878,52625412,52690948,52756484,52822019,52887555,52953092,53018628,53084165,53149700,53215235,53280771,53346308,53411845,53477381,53542916,53608451,53673988,53739523,53805060,53870596,53936133,54001667,54067204,54132739,54263813,54198276,54329351,54394884,54460421,54525955,54591492,54657027,54722564,54788100,54853636,54919171,54984708,55050243,55115780,55181316,55246853,55312389,55377923,55443459,55508996,55574531,55640068,55705603,55771140,55836676,55902212,55967747,56033286,56098819,56164356,56229892,56295428,56360963,56426499,56492036,56557571,56623108,56688643,56754181,56819716,56885252,56950787,57016324,57081860,57147395,57212932,57278467,57344006,57409539,57475076,57540611,57606148,57671683,57737225,57802755,57868292,57933830,57999367,58064899,58130436,58195972,58261507,58327044,58392581,58458118,58523655,58589192,58654725,58720261,58785797,58851334,58916868,58982408,59047941,59113479,59179017],"machine":[8192001],"manipulate":[8585217],"mechanisms":[55902209],"modules":[36962305,40239105,40828929,49807361,52232194,54263811,56295425],"maxcachesize":[33619970,34996225,36044801,36110341,36175877,37027845,47644673,49020930,50135041],"marshaldecimalascurrency":[50659329],"mentioned":[16384001,24051713],"mechanism":[36831233,36962305,50659329],"management":[50659329]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_110.json b/docs/Reference/fti/FTI_110.json index 21df0f138..280317e0b 100644 --- a/docs/Reference/fti/FTI_110.json +++ b/docs/Reference/fti/FTI_110.json @@ -1 +1 @@ -{"narrowest":[46333953,49348609],"native":[14024707,14090241,16646145,22413315,38010881,52625410,55836673,56098817],"null":[327681,1048577,3014658,3997697,4784129,4980738,5111809,7733250,8192002,8388612,9175043,9764866,10223617,10682370,11206658,12058625,14024706,15925249,16384001,18939905,22413314,26214401,28180481,28901377,32505857,32833537,35979265,36372481,37027841,38141954,38207490,38273025,38600705,38797316,39387139,39780353,40042498,40173571,40239105,40501250,40697857,40960004,41091073,41811972,42205185,42270721,42532866,42663937,42795009,42991617,43122689,43909121,44236802,44367877,45744129,46137345,47185922,48103425,48824322,49283073,49938437,50331650,51118081,52101122,52625409,53149697,54263810,54329346,54460417,56492034,56688642,56950786,57081860,57344002,57475074,57737219,57868290,57933827,58195970,58261506,58392578,58458114],"num":[7077890],"nullexportvalue":[38141953,38207489,40042497,40501249,42532865,44236801,44367876,47185921,48824321,49938438,50331649,54263809,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"noscriptaccessattribute":[2359298,20512773,34537473,36569090,52166657,53805057,55967745,56426504],"natively":[8650753,9240577,9306113,9502721,9568257,10027009,10092545,10747905,10813441,11010049,11665409,11862017,37814273,40894465],"nonexistent":[48103425,51118081,54460417],"nested":[7077889,7667713,8585217,12451841,12648449,12713985,13303809,13565953,14155777,14614529,15269889,15335425,16777217,17825793,18284545,18612225,19005441,19791873,20119553,21037057,21757953,22151169,22872065,36044801,37879809,46137345,49872897,53411841,53805057,56426497,57737217,57933825],"nodefaultscriptaccessattribute":[2883586,20054021,34537473,35848194,52166657,55967752],"normal":[34340865,36765697,39714817,45875201,49872897,53411841,54001665],"newobj":[3014660,4980740,7405569,7471110,7995397,8126470,8585218,8650753,8847367,9240577,9306113,9502721,9568257,9764865,10027009,10092545,10682369,10747905,10813441,11010049,11206657,11665409,11862017,14090241,16646145,34078724,52101124,54329348],"notifies":[1966081,11927553,56229889],"nullable":[1507329,5636099,6160388,6946820,41680901,50790401,52625410],"new":[2424833,3866625,4194312,4390915,4718595,4849667,4915203,5177347,5373955,5767171,6094850,6225923,6488067,6619139,7471106,7733250,7995394,8060929,8126466,8323073,8454146,8847362,8978433,9043969,9109506,9175041,9437187,9764866,9830401,9961473,10420227,10551299,10616833,10878979,11141123,11272195,11403267,11468801,11534337,11730945,11796481,11993089,12058625,12124163,12189697,12255233,12386305,12451841,12517377,12582913,12648449,12713985,12910593,12976129,13107201,13303809,13369345,13500417,13565953,13697025,14090241,14155777,14286849,14352385,14417921,14614529,14745601,15007745,15204354,15269889,15335425,15794177,15925251,16056321,16187393,16384003,16580609,16646145,16777217,16973825,17039361,17432577,17825793,17891329,17956865,18284545,18350083,18612225,18874371,19005441,19070977,19136513,19202051,19398657,19464195,19529731,19726339,19791873,19857409,19922945,20054019,20119555,20185091,20381699,20512771,20709377,20774913,20840449,20905987,20971523,21037057,21102594,21233667,21430275,21495809,21561347,21626881,21692417,21757953,21823491,22151169,22216705,22282241,22347779,22478851,22675459,22872067,22937603,23003137,23068675,23199747,23396355,23461891,23527427,23658499,23724035,24182787,24313859,24444931,24707075,25034755,25165825,25231363,25296899,25821187,26083332,26148867,26804228,26935299,27000835,27197443,27525123,27656196,27721731,27852804,27983875,28049411,28311556,28639233,28770307,28835843,29032452,29097988,29294595,29425667,29622276,29687811,29753345,29818884,29884419,30015491,30146563,30408708,30474244,30605315,30670851,30736387,30932995,31260675,31326210,31391748,31522819,31784963,31981571,32243713,32309251,32374786,32571395,32768003,32899075,32964610,33423363,33751041,34078721,35061766,35127297,35389444,36044804,36110348,36241410,36634626,36896780,37289986,37355522,37617669,37879812,38076421,38666248,39124997,40304645,41025541,45350914,49414145,50790401,52101121,52166658,52625409,53018625,53280769,53805058,54067201,54263822,54329345,54919169,55246850,55574533,55705601,55836673,55902209,55967745,56164354,56426497,56492037,56754180,57016340,57212930,57278465,57344005,57475074,57671682,57737220,57868289,57933828,58064904,58261509,58392581,58458113],"net":[10682369,14024709,17367041,17563649,18219009,18546689,22413317,38797313,39256065,41811969,46333953,49348609,53870593,54919172,58195969],"needed":[2621441,4456449,17104897,19988481,30277633,57737217,57933825],"negation":[2424833,3866625,53280769,56164353],"newer":[39714817,45875201],"newvar":[3014657,4980737,9764869,37814273,40894465,52101121,54329345],"narrowing":[38141953,38207489,40042497,40501249,42532865,44236801,46333954,47185921,48824321,49348610,50331649,54263809,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"nodes":[6881282,12058626,42795010,55574530],"namespaces":[6881281,12058625,53870593,55574529],"nullptr":[7733249,9175041,9764865,10682369,11206657],"nextdouble":[8847362],"node":[524290,720898,917506,3407874,3670019,10223618,31326211,42139650,42795018,42860545,43450370,43581444,44040194,44171266,44892162,45744137,46268418,46727171,47382530,47906818,48627720,49807372,55050241,55771145,56033283,56295426],"namespace":[65537,131073,196609,262145,327681,393217,458753,524289,655362,720898,786434,851970,917506,983042,1048578,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932162,3997697,4063233,4128769,4194305,4259841,4325377,4390914,4456449,4521985,4587522,4653058,4718594,4784130,4849666,4915202,4980737,5046273,5111810,5177346,5242881,5308417,5373954,5439490,5505025,5570561,5636098,5701634,5767170,5832705,5898242,5963778,6029314,6094849,6160386,6225922,6291458,6356994,6422530,6488066,6619138,6553601,6684674,6750209,6815746,6881282,6946818,7012354,7077890,7143426,7208962,7274498,7340034,7405570,7471106,7536642,7602178,7667714,7733250,7798786,7864322,7929858,7995394,8060930,8126466,8192002,8257538,8323074,8388610,8454146,8519682,8585218,8650754,8716290,8781826,8847362,8912898,8978434,9043970,9109506,9175042,9240578,9306114,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895938,9961474,10027010,10092546,10158082,10223622,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747906,10813442,10878978,10944514,11010050,11075586,11141122,11206658,11272194,11337730,11403266,11468802,11534338,11599874,11665410,11730946,11796482,11862018,11927554,11993090,12058626,12124162,12189698,12255234,12320770,12386306,12451842,12517378,12582914,12648450,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13172738,13238274,13303810,13369346,13434882,13500418,13565954,13631490,13697026,13762562,13828098,13893634,13959170,14024706,14090242,14155778,14221314,14286850,14352386,14417922,14483458,14548994,14614530,14680066,14745602,14811138,14876674,14942210,15007746,15073282,15138818,15204354,15269890,15335426,15400962,15466498,15532034,15597570,15663106,15728642,15794178,15859714,15925250,15990786,16056322,16121858,16187394,16252930,16318466,16384002,16449538,16515074,16580610,16646146,16711682,16777218,16842754,16908290,16973826,17039362,17104898,17170434,17235970,17301506,17367042,17432578,17498114,17563650,17629186,17694722,17760258,17825794,17956866,17891330,18022402,18087938,18153474,18219010,18284546,18350082,18415618,18481154,18546690,18612226,18677762,18743298,18808834,18939906,18874370,19005442,19070978,19136514,19202050,19267586,19333122,19398658,19464194,19529730,19595266,19660802,19726338,19791874,19857410,19922946,19988482,20054018,20119554,20185090,20250626,20316162,20381698,20447234,20512770,20578306,20643842,20709378,20774914,20840450,20905986,20971522,21037058,21102594,21168130,21233666,21299202,21364738,21430274,21495810,21561346,21626882,21692418,21757954,21823490,21889026,21954562,22020098,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,22609922,22675458,22740994,22806530,22872066,22937602,23003138,23068674,23134210,23199746,23265282,23330818,23396354,23461890,23527426,23592962,23658498,23724034,23789570,23855106,23920642,23986178,24051714,24117250,24182786,24248322,24313858,24379394,24444930,24510466,24576002,24641538,24707074,24772610,24838146,24903682,24969218,25034754,25100290,25165826,25231362,25296898,25362434,25427970,25493506,25559042,25624578,25690114,25755650,25821186,25886722,25952258,26017794,26083330,26148866,26214402,26279938,26345474,26411010,26476546,26542082,26607618,26673154,26738690,26804226,26869762,26935298,27000834,27066370,27131906,27197442,27262978,27328514,27394050,27459586,27525122,27590658,27656194,27721730,27787266,27852802,27918338,27983874,28049410,28114946,28180482,28246018,28311554,28377090,28442626,28508162,28573698,28639234,28704770,28770306,28835842,28901378,28966914,29032450,29097986,29163522,29229058,29294594,29360130,29425666,29491202,29556738,29622274,29687810,29753346,29818882,29884418,29949954,30015490,30081026,30146562,30212098,30277634,30343170,30408706,30474242,30539778,30605314,30670850,30736386,30801922,30867458,30932994,30998529,31064066,31129602,31195138,31260674,31326210,31391746,31457281,31522818,31588353,31653889,31719426,31784962,31850498,31916034,31981570,32047105,32112641,32178177,32243714,32309250,32374785,32440321,32505858,32571394,32636929,32702465,32768002,32833538,32899074,32964609,33030145,33095681,33161217,33226753,33292290,33357826,33423362,33488898,33554433,33619969,33685505,33751041,33816577,33882114,33947650,34013185,34078721,34144257,34209793,34275330,34340865,34406401,34471937,34537474,34603009,34668545,34734081,34799617,34865153,34996225,34930689,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586050,35651585,35717121,35782657,35848193,35913729,35979266,36044801,36110337,36175873,36241409,36306945,36372482,36438017,36503553,36569089,36634625,36700161,36765698,36831233,36896769,36962305,37027842,37093377,37158913,37224450,37289985,37355521,37421057,37486593,37552130,37617665,37683201,37748737,37814274,37879809,37945345,38010882,38076417,38141953,38273026,38207489,38338561,38404098,38469634,38535169,38600705,38666241,38731777,38797314,38862849,38928385,38993922,39059457,39190530,39124993,39256066,39321601,39387137,39452674,39518209,39583746,39649281,39714818,39780354,39845890,39911425,39976962,40042497,40108033,40173569,40239106,40304641,40370178,40435714,40501249,40566786,40632321,40697858,40763395,40828929,40894466,40960001,41025537,41091074,41156610,41222146,41353218,41418753,41484290,41549826,41615361,41680898,41746433,41811970,41877505,41943042,42008578,42074114,42139650,42205186,42270722,42336257,42401793,42467329,42598402,42532865,42663938,42729474,42795010,42860545,42926081,42991618,43057155,43122690,43188226,43253761,43319298,43384834,43450370,43515906,43581441,43646978,43712514,43778050,43843586,43909122,43974657,44040193,44105730,44171266,44236801,44302338,44367874,44433410,44498946,44564481,44630017,44695554,44761090,44826625,44892162,44957698,45023234,45088771,45154306,45219842,45285377,45350914,45416450,45481985,45547522,45613058,45678594,45744130,45809666,45875202,45940738,46006274,46071810,46137346,46202882,46268418,46333954,46399490,46465026,46530562,46596098,46661635,46727170,46792706,46858242,46923778,46989314,47054850,47120386,47185921,47251458,47316994,47382530,47448066,47513602,47579138,47644674,47710210,47775746,47841282,47906818,47972354,48037890,48103426,48168962,48234498,48300034,48365570,48431106,48496642,48562179,48627714,48693250,48758786,48824321,48889858,48955394,49020930,49086466,49152002,49217538,49283074,49348610,49414146,49479682,49545218,49610754,49676290,49741826,49807362,49872898,49938434,50003970,50069506,50135042,50200578,50266115,50331649,50397186,50462722,50528259,50593794,50659330,50724866,50790402,50855938,50921474,50987010,51052547,51118082,51183618,51249154,51314690,51380226,51445762,51511299,51576834,51642370,51707906,51773442,51838978,51904514,51970050,52035586,52101122,52166658,52232194,52297730,52363266,52428802,52494338,52559874,52625410,52690946,52756482,52822018,52887554,52953090,53018626,53084162,53149698,53215234,53280770,53346306,53411842,53477378,53542914,53608450,53673987,53739522,53805058,53870598,53936130,54001666,54067202,54132738,54198274,54263810,54329346,54394882,54460418,54525954,54591490,54657027,54722562,54788098,54853634,54919170,54984706,55050242,55115778,55181314,55246850,55312386,55377922,55443458,55508994,55574531,55640066,55705602,55771138,55836674,55902210,55967746,56033282,56098818,56164354,56229890,56295426,56360962,56426498,56492034,56557570,56623106,56688642,56754178,56819714,56885250,56950786,57016322,57081858,57147394,57212930,57278466,57344002,57409538,57475074,57540610,57606146,57671682,57737218,57802754,57868290,57933826,57999362,58064898,58130434,58195970,58261506,58327042,58392578,58458114],"necessary":[47448065],"notinheritable":[49545217,52756481,54263809,54591489,54984705,55181313,55377921,55771137,55836673,55967745,56295425,56426497,56623105,57016321,57212929,58064897],"nullsyncinvoker":[327683,1048578,3997698,28180482,32505858,32833537,35979266,37027842,38600705,56688647],"nodeid":[43581441,46727172,55771137],"nod":[42139649,42795009,43450369,43581450,44171265,44892162,45744129,46268417,46727169,47382529,47906817,55771146],"numeric":[8650753,9240577,9306113,9502721,9568257,10027009,10092545,10747905,10813441,11010049,11665409,11862017,14024706,14090241,16646145,22413314,43581442,46727169,47382529,52625409,55771138,55836673],"newarr":[3014658,4980737,8454150,9043969,9109511,12517378,33751042,52101121,54329346],"newcomobj":[4980737,7733253,52101121],"numerical":[39387137,57737217],"number":[524289,720897,917506,7077889,8060929,9043969,10289153,12517377,14024705,14090241,16121858,16646145,16908290,17301506,18022402,18808834,20316162,22413313,38731777,43450371,43581442,44892161,45219841,46268419,51576833,52494337,54919170,55771138,56033281,56098817],"named":[2162691,2228227,2293763,2424833,2555907,2752515,2949123,3604483,3866627,4259843,5898242,6881284,12058628,13762561,14090241,14811137,15204353,16646145,20643841,21102593,22544385,31457281,32047105,34537473,34799617,34865153,35258369,39059457,39518209,40108033,40632321,41418753,41615361,42336257,43253761,43974657,44564481,45285377,45481985,46530561,51249156,51380225,52822020,53280772,54132740,55574532,56098817,56164353,57147396,57409540,57606148,57802756,58130436],"names":[2424833,3866625,6881281,10878977,12058625,12124161,14090241,15925249,16384001,16646145,34865153,37158913,37421057,39190530,41418753,41615361,42336257,43253761,43974657,44564481,45285377,45481985,46923777,48037890,51249153,52822017,53280770,54132737,54919169,55574529,56164353,56754177,57147393,57409537,57606145,57802753,58130433]} \ No newline at end of file +{"notifies":[1835009,11403265,53018625],"nonexistent":[40108033,44564481,50331649],"node":[589826,720898,786434,3473411,4063234,11862018,34799617,34865154,35258372,43253763,43515906,43909122,44433418,44498946,44957708,45219842,45481992,45809666,46596098,47317001,48037890,51707905,53477385,54460419,55312386,56885251],"noscriptaccessattribute":[2621442,18087941,34144258,48103425,55771137,56033281,57344008,59113473],"namespaces":[6619137,7471105,47972353,49545217],"num":[7864322],"numeric":[9240577,9764865,9961473,10092545,10551297,10878977,11075585,11141121,11599873,11927553,11993089,12517377,14090241,16384002,19660801,24051714,35258370,43253761,43909121,50266113,50659329,53477378],"named":[2031619,2228227,2293763,2359299,2424833,2752515,2818051,3211267,4128771,4784131,6619140,6881282,7471108,13238273,14024705,14090241,14352385,19726337,19660801,21626881,31391745,31588353,31719425,32047105,33751041,34013185,34340865,34471937,35061761,35389441,35848193,35979265,36700161,39583745,42860545,49152004,49545220,49676292,50200580,50397185,51183620,52297729,52363265,52756484,52887553,53280769,53739521,54132737,55771137,57606148,58130436,58327044,59047940],"number":[589825,720897,786434,5898241,7536641,7864321,8257537,10223617,14090241,14811138,14876674,15663106,16318466,16384001,18612226,19464194,19660801,24051713,34406401,35258370,36110337,36175873,37027841,45219843,46596097,48037891,50790402,52363265,53477378,54460417],"names":[2424833,4128769,6619137,7471105,10289153,11337729,14090241,16711681,17367041,19660801,33751041,33882113,34013185,34209793,34340865,34471937,35061761,35389441,35848193,35979265,36700161,40501249,41091074,44367874,49152001,49545217,49676289,50200577,50397185,50790401,51183617,52756481,57606145,57933825,58130433,58327041,59047938],"needed":[2555905,4718593,18219009,20250625,26017793,58720257,58785793],"nodeid":[35258369,43253764,53477377],"nullsyncinvoker":[327683,1048578,4325378,53673986,54394882,54984706,55508994,56557569,57475073,58392583],"newvar":[3014657,3604481,8978437,39518209,42729473,50462721,52559873],"negation":[2424833,4128769,50397185,59047937],"notinheritable":[48431105,48562177,49872897,50266113,50593793,51445761,51838977,51904513,51970049,53411841,53477377,54263809,55312385,56033281,57344001,58458113,58851329],"new":[2424833,4128769,4456451,4849672,4915203,5046275,5111811,5177347,5242883,5308419,5767171,5832707,6160387,6619137,6684674,7012353,7405571,7536641,7667713,7995394,8126466,8192002,8257537,8323074,8585218,8912897,8978434,9109506,9830402,9895939,10027009,10223617,10289155,10485763,10616833,10747907,10682369,11337731,11468801,11534337,11665409,11730945,12058627,12189697,12255233,12320769,12386305,12451841,12648451,12713985,12779521,12845057,12976129,13041665,13107201,13303809,13369345,13565953,13631489,13697025,13959169,14024706,14090241,14155777,14483457,14614529,14680065,14745601,15335425,15466497,15532033,15597569,15925251,16187395,16252929,16449539,16580609,16711683,17039361,17104899,17367043,17498113,17629187,17694723,18087939,18153473,18284545,18415617,18481153,18808835,18939907,19005441,19202051,19267585,19398659,19529729,19660801,19791873,20054019,20119555,20381697,20447233,20512769,20578307,20709379,20774915,20840449,21168129,21233665,21299203,21364737,21495811,21561347,21757953,22085635,22151169,22216707,22347777,22478849,22609923,22675457,22937603,23068673,23265281,23330817,23396355,23461891,23592963,23789571,24248321,24510467,24444929,24641539,24707075,24838147,24903681,24969219,25034755,25231363,25427969,25690113,25755651,25821187,26148867,26214404,26279940,26345475,26411009,26542083,26738692,27000835,27066372,27197443,27787267,27852803,27983876,28442627,28508163,28639236,28966915,29229059,29294596,29360131,29491203,29556739,29753347,29818883,29949955,30015491,30212097,30343171,30408705,30474243,30867459,30932997,31522819,31850500,32505859,33226756,33292292,33685506,35323905,47579138,47644673,48103426,48168961,48824321,48955393,49020929,49545221,49741825,50266113,50397186,50462721,50659329,50790401,51511300,51642369,51773442,51970068,52035587,52101124,52297730,52428808,52559873,52953091,53084163,53149700,53215234,53411842,53608450,53805059,53870596,54067201,54329349,54657026,54722563,54853636,54919170,55181315,55377932,55640067,55902210,56033281,56098821,56623107,56688646,56950789,56885250,57081859,57212929,57278476,57344001,57409541,57540610,57671685,57737217,57933828,57999365,58458126,58523650,58589189,58720260,58785796,58851336,58982405,59047937,59113474,59179009],"net":[10354689,15794177,16056321,16384005,17432577,18677761,24051717,38535169,38862849,41746433,43384833,43646977,47972353,50790404,58916865],"nod":[35258378,43253761,43515905,43909121,44433409,44498945,45219841,45809665,46596098,47316993,48037889,53477386],"newer":[39649281,44695553],"null":[327681,1048577,3014658,3604482,4325377,4587521,6553601,6619137,6815746,7012355,8060932,8192002,8650754,8978434,10354690,11862017,16384002,16711681,17367041,20185089,24051714,25493505,27787266,28573697,34275330,34930691,35127298,35454980,35717123,36569090,36765698,36896770,37093377,37224449,37617666,38076417,38338562,38404097,38600705,38666241,38862852,39321602,39452673,40108033,41025538,41156609,41484293,42139649,42795009,42926085,43646980,44105729,44171265,44433409,44564481,44630017,44761089,46399489,47316993,50331649,50462722,50659329,52559874,53673985,54329346,54394881,54984705,55508993,56164354,56557569,57016324,57475073,57737218,57999362,58392578,58458114,58523650,58589186,58720259,58785795,58916866,58982402,59179010],"nullptr":[6815745,7012353,8192001,8978433,10354689,27787265],"normal":[34996225,36503553,39649281,44695553,47710209,49348609,50135041],"nested":[6946817,7864321,9043969,12713985,12976129,13631489,13697025,14483457,14745601,15335425,15532033,15597569,16187393,18481153,19529729,20381697,21168129,21233665,22151169,23330817,23396353,24444929,25427969,31850497,33292289,46399489,47710209,49348609,57344001,58720257,58785793,59113473],"numerical":[34930689,58720257],"natively":[9240577,9764865,9961473,10092545,10551297,10878977,11075585,11141121,11599873,11927553,11993089,12517377,39518209,42729473],"newcomobj":[3604481,8192005,52559873],"namespace":[65537,131073,196610,262145,327681,393217,458754,524289,589825,720898,786434,851970,917506,983042,1048578,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162690,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3276801,3211265,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456450,4521986,4587522,4653058,4718593,4784129,4915202,4849665,4980738,5046274,5111810,5177346,5242882,5308418,5373954,5439490,5505026,5570562,5636098,5701634,5767170,5832706,5898242,5963778,6029313,6094850,6160386,6225922,6291457,6356993,6422529,6488066,6553602,6619138,6684673,6750210,6815746,6881282,6946818,7012354,7077889,7143425,7208962,7274498,7340034,7405570,7471106,7536642,7602178,7667714,7733250,7798786,7864322,7929858,7995394,8060930,8126466,8192002,8257538,8323074,8388610,8454146,8519682,8585218,8650754,8716290,8781825,8847362,8912898,8978434,9043970,9109506,9175042,9240578,9306113,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895938,9961474,10027010,10092546,10158082,10223618,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747906,10813442,10878978,10944514,11010050,11075586,11141122,11206658,11272194,11337730,11403266,11468802,11534338,11599874,11665410,11730946,11796482,11862022,11927554,11993090,12058626,12124162,12189698,12255234,12320770,12386306,12451842,12517378,12582914,12648450,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13172738,13238274,13303810,13369346,13434882,13500418,13565954,13631490,13697026,13762562,13828098,13893634,13959170,14024706,14090242,14155778,14221314,14286850,14352386,14417922,14483458,14548994,14614530,14680066,14745602,14811138,14876674,14942210,15007746,15073282,15138818,15204354,15269890,15335426,15400962,15466498,15532034,15597570,15663106,15728642,15794178,15859714,15925250,15990786,16056322,16121858,16187394,16252930,16318466,16384002,16449538,16515074,16580610,16646146,16711682,16777218,16842754,16908290,16973826,17039362,17104898,17170434,17235970,17301506,17367042,17432578,17498114,17563650,17629186,17694722,17760258,17825794,17891330,17956866,18022402,18087938,18153474,18219010,18284546,18350082,18415618,18481154,18546690,18612226,18677762,18743298,18808834,18874370,18939906,19005442,19070978,19136514,19202050,19267586,19333122,19398658,19464194,19529730,19595266,19660802,19726338,19791874,19857410,19922946,19988482,20054018,20119554,20185090,20250626,20316162,20381698,20447234,20512770,20578306,20643842,20709378,20774914,20840450,20905986,20971522,21037058,21102594,21168130,21233666,21299202,21364738,21430274,21495810,21561346,21626882,21692418,21757954,21823490,21889026,21954562,22020098,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,22609922,22675458,22740994,22806530,22872066,22937602,23003138,23068674,23134210,23199746,23265282,23330818,23396354,23461890,23527426,23592962,23658498,23724034,23789570,23855106,23920642,23986178,24051714,24117250,24182786,24248322,24313858,24379394,24444930,24510466,24576002,24641538,24707074,24772610,24838146,24903682,24969218,25034754,25100290,25165826,25231362,25296898,25362434,25427970,25493506,25559042,25624578,25690114,25755650,25821186,25886722,25952258,26017794,26083330,26148866,26214402,26279938,26345474,26411010,26476546,26542082,26607618,26673154,26738690,26804226,26869762,26935298,27000834,27066370,27131906,27197442,27262978,27328514,27394050,27459586,27525122,27590658,27656194,27721730,27787266,27852802,27918338,27983874,28114946,28049410,28180482,28246018,28311554,28377090,28442626,28508162,28573698,28639234,28704770,28770306,28835842,28901378,28966914,29032450,29097986,29163522,29229058,29294594,29360130,29425666,29491202,29556738,29622274,29687810,29753346,29818882,29884418,29949954,30015490,30081025,30146561,30212097,30277633,30343170,30408705,30474242,30539778,30605313,30670849,30736385,30801921,30867458,30932993,30998529,31064065,31129602,31195137,31260673,31326209,31391745,31457281,31522818,31588353,31653890,31719425,31784962,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309250,32374785,32440321,32505858,32571393,32636929,32702466,32768002,32833537,32899073,32964609,33030145,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110338,36175874,36241410,36306946,36372482,36438017,36503554,36569089,36634626,36700161,36831235,36765697,36896769,36962307,37027842,37093378,37158914,37224450,37289986,37355522,37421058,37486594,37552130,37617665,37683202,37748738,37814274,37879810,37945346,38010882,38076418,38141954,38207490,38273026,38338561,38404098,38469634,38535170,38600706,38666242,38731778,38797314,38862850,38928386,38993922,39059458,39124994,39190531,39256066,39321601,39387138,39452674,39518210,39583746,39649282,39714818,39780354,39845891,39911426,39976962,40042498,40108034,40173570,40239106,40304642,40370178,40435714,40501250,40566786,40632322,40697858,40763394,40828930,40894466,40960002,41025537,41091074,41156610,41222146,41287682,41353218,41418754,41484290,41549826,41615362,41680898,41746434,41811970,41877506,41943042,42008578,42074114,42139650,42205186,42270722,42336258,42401794,42467330,42532866,42598402,42663938,42729474,42795010,42860546,42926082,42991618,43057154,43122690,43188226,43253762,43319298,43384834,43450370,43515906,43581442,43646978,43712515,43778050,43843586,43909122,43974658,44040194,44105730,44171266,44236803,44302338,44367874,44433410,44498946,44564482,44630018,44695554,44761090,44826626,44892162,44957698,45023234,45088770,45154306,45219842,45285378,45350914,45416450,45481986,45547522,45613058,45678594,45744130,45809666,45875202,45940738,46006274,46071810,46137346,46202882,46268418,46333954,46399490,46465026,46530562,46596098,46661634,46727170,46792706,46858242,46923778,46989314,47054850,47120386,47185923,47251458,47316994,47382530,47448066,47513602,47579138,47644674,47710210,47775746,47841282,47906818,47972358,48037890,48103426,48168962,48234499,48300034,48365570,48431106,48496642,48562178,48627714,48693250,48758787,48824322,48889858,48955394,49020930,49086467,49152002,49217538,49283074,49348610,49414146,49479682,49545219,49610754,49676290,49741826,49807362,49872898,49938434,50003970,50069506,50135042,50200578,50266114,50331650,50397186,50462722,50528258,50593794,50659330,50724866,50790402,50855938,50921474,50987011,51052546,51118082,51183618,51249153,51314690,51445762,51511298,51576833,51642370,51707906,51773442,51838978,51904514,51970050,52035586,52101122,52166658,52232193,52297730,52363266,52428801,52494338,52559874,52625410,52690946,52756482,52822017,52887553,52953090,53018626,53084162,53149698,53215233,53280769,53346306,53411842,53477378,53542914,53608449,53673986,53739521,53805058,53870594,53936130,54001665,54067202,54132737,54198274,54263810,54329346,54394882,54460418,54525953,54591490,54657025,54722562,54788098,54853634,54919169,54984706,55050241,55115778,55181314,55246850,55312386,55377921,55443457,55508994,55574529,55640066,55705601,55771138,55836674,55902210,55967745,56033282,56098817,56164354,56229890,56295426,56360961,56426497,56492034,56557569,56623106,56688641,56754178,56819714,56885250,56950785,57016322,57081858,57147393,57212930,57278465,57344002,57409537,57475074,57540609,57606146,57671681,57737218,57802753,57868290,57933826,57999362,58064897,58130434,58195970,58261505,58327042,58392578,58458114,58523650,58589186,58654722,58720258,58785794,58851330,58916866,58982402,59047938,59113474,59179010],"nodes":[6619138,7471106,44433410,49545218],"necessary":[49807361],"nullexportvalue":[34275329,35127297,36569089,36765697,36896769,37617665,38338561,39321601,41025537,41484292,42926086,54329345,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"narrowing":[34275329,35127297,36569089,36765697,36896769,37617665,38338561,38535170,39321601,41025537,43384834,54329345,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"narrowest":[38535169,43384833],"nodefaultscriptaccessattribute":[2883586,17629189,48103425,52822018,55771137,56033288],"newarr":[3014658,3604481,7995399,8257537,8323078,10223618,30212098,50462722,52559873],"newobj":[3014660,3604484,6815745,8126471,8388609,8585222,8978433,9043970,9109509,9240577,9764865,9830406,9961473,10092545,10354689,10551297,10878977,11075585,11141121,11599873,11927553,11993089,12517377,14090241,19660801,30408708,50462724,52559876],"nullable":[1441793,5373956,5636100,6488067,36372485,49020929,50659330],"nextdouble":[8126466],"native":[14090241,16384003,19660801,24051715,40173569,50266113,50659330,52363265]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_111.json b/docs/Reference/fti/FTI_111.json index 1a6f1efec..54e5be387 100644 --- a/docs/Reference/fti/FTI_111.json +++ b/docs/Reference/fti/FTI_111.json @@ -1 +1 @@ -{"outside":[14548993,15400961,15597569,16318465,43778049,47054849,51838977],"old":[35127297,44695556,46202882,57212929],"occurs":[65537,262145,458753,786433,34537473,55574529,56754177,57737218],"owner":[44630017,52428802,57999361],"object":[458753,1179659,1245193,1310731,1376267,1441803,1572870,1507339,1638411,1703947,1769483,1835019,1900555,1966082,2031626,2097161,2162701,2228236,2293772,2359305,2424852,2555916,2621441,2686987,2752524,2818059,2883593,2949132,3014700,3080201,3145739,3211278,3276811,3342347,3407878,3473419,3604493,3670027,3735563,3801112,3866655,3932171,3997707,4063243,4128779,4194315,4259854,4325385,4456457,4521995,4980781,5046295,5242903,5505047,5570583,5832727,5898242,6094871,6422533,6488065,6553623,6684677,6750219,6881282,7012372,7077901,7143427,7208967,7274502,7340045,7405569,7471108,7602188,7667718,7733256,7798792,7864326,7929865,7995406,8060941,8126485,8192014,8257543,8323085,8388613,8454151,8519699,8585228,8650759,8716290,8781833,8847372,8912909,8978446,9043983,9109510,9240583,9306119,9371651,9502727,9568263,9633804,9764871,9830407,9961489,10027015,10092551,10158089,10289157,10616835,10682385,10747911,10813447,11010055,11206661,11468804,11534339,11599880,11665415,11730945,11796481,11862023,11927557,11993089,12058626,12189700,12255235,12320771,12386305,12451842,12517388,12582913,12648450,12713986,12845061,12910593,12976131,13107204,13238279,13303810,13369345,13500421,13565954,13631498,13697028,13762573,13828108,14024711,14090251,14155778,14221314,14286849,14352389,14417928,14483470,14614530,14811138,15007755,15073285,15138829,15204360,15269890,15335426,15663110,15728645,15990790,16056323,16187393,16449541,16515078,16580613,16646157,16711686,16777218,16973825,17039364,17104898,17235973,17367046,17432589,17563654,17629190,17825794,17891331,17956865,18087941,18153477,18219014,18284546,18415622,18546694,18612226,18939910,18874369,19005442,19136516,19070977,19333126,19660812,19791874,19922947,19857409,19988482,20250637,20447238,20643842,20709377,20774916,21037058,21102601,21168134,21299206,21364737,21626881,21692419,21757954,21823489,21954567,22151170,22216705,22282244,22413320,22544398,23003141,23134223,23265286,23920656,24248322,24576013,25165833,25886722,26476545,26869761,27918338,28049409,28770305,29229058,29556741,29687809,29884417,30605313,30670849,31260673,31457284,31653899,31784961,32047109,32112643,32178178,32243714,32309249,32636930,32833537,32899073,33030149,33161221,33292290,33423361,33751041,33947658,34013187,34078727,34537475,34668546,34799619,34865157,35127299,35192836,35258372,35586051,35717123,37093384,38404097,38535176,38731781,38797316,38928386,39059459,39190529,39387137,39518212,39714817,39911429,40108036,40239110,40370177,40632325,41091079,41418757,41615365,41811972,42205191,42270727,42336261,42598401,42729474,42991624,43057153,43122696,43188226,43253765,43778049,43974661,44367880,44564486,44695556,44761090,45088775,45154306,45285381,45350913,45481989,45809674,45875201,46202881,46399496,46465025,46530578,47120385,47251457,47579143,48037889,48103431,48562177,49414156,49545228,49610759,49938441,50135042,50266113,50528263,50659337,50790412,51052545,51118088,51249171,51380240,51511304,52101166,52166666,52232204,52297736,52625411,52756491,52822033,53018636,53280804,53673992,53805066,54001676,54067212,54132753,54263832,54329389,54460428,54525957,54591489,54657026,54853637,54919174,54984705,55050252,55115786,55181313,55246855,55377921,55509004,55574542,55640065,55705612,55771148,55836683,55902220,55967754,56033287,56098847,56164373,56229891,56295436,56360972,56426506,56492056,56623116,56688652,56754200,56819724,56950798,57016332,57147410,57212943,57344024,57409553,57475097,57540620,57606161,57737229,57802769,57868312,57933825,58064906,58130451,58195971,58261528,58327054,58392600,58458136],"overriding":[55443457],"optional":[5439490,5636099,6160387,6946819,7077889,7536641,7733251,7995393,8126465,8585217,8847361,9175043,9764867,10289154,10354689,10682371,10944513,11206659,13565953,13631489,13762561,13828097,13959169,14090241,14155777,14483457,14614529,14876674,15138817,15204353,15269889,16646145,16777217,17235969,17825793,18087938,19333121,19791873,20250625,20447234,21037057,21102593,22020098,22544385,22806530,23134209,23789569,23920641,23986177,24576001,24641537,24772609,24838146,24969217,25427970,25952257,26279937,28377090,29491202,30801922,34537474,34930691,36175874,40763393,41680897,42139649,43319297,43581441,46530561,46661633,47972353,51380225,52101121,54329345,55246851,55771137,55902210],"occupying":[28508161],"optimized":[12779521,18743297,26017793,28704769,29163521,33357825,34275329,42139649,43581441,55771137],"override":[786433,2424841,3866633,4587523,4653059,4784131,5111809,5701633,5898241,6160385,6291457,6356993,6946819,10158081,12779521,16056321,16187393,16252929,16580609,16646145,16777217,16842753,16973825,17039361,17104899,17432577,17629185,17694723,17760257,17825793,17891329,17956865,18284545,18415617,18481153,18612225,18743298,18939905,19005441,19070977,19136513,19333121,19595265,19791873,19857409,19922945,19988481,20250625,20447233,20578305,20709377,20774913,21037057,21168129,21299201,21626881,21692417,21757953,22151169,22216705,22282241,22413313,23003137,23265281,23920641,23986177,24051713,24510467,24838145,25559041,25690113,25886723,26017796,26345473,27131907,27262977,27590659,27918339,28114947,28180481,28573699,28704772,29163524,29229059,29360131,30212099,31129603,32505857,33292291,33357828,34275332,35979265,36372481,37027841,39714817,39780353,40566785,40894465,41484289,41549825,41811969,42205185,42270721,42991617,43122689,43843585,44105729,44761089,45219841,45547521,45809665,45875202,46399489,46465025,46530561,46923777,46989314,47579137,47644673,47710209,48168961,48365569,48496641,49020931,49152001,49348609,49479683,49676291,49938433,50003969,50069507,50266115,50462723,50593795,50724865,51052547,51118081,51314689,51511299,51576836,51773441,52166657,52297729,52690945,52953091,53149697,53280777,53346307,53608449,53673987,55967745,56164361],"operationcanceledexception":[57933829],"outermost":[47448065,49872897,53411841],"occurred":[589825],"options":[3211278,3801102,4194309,5046286,5242894,5505038,5570574,5832718,6094863,6553614,10616834,11468802,11796482,12255234,12451842,12582914,12648450,13107202,13369346,13500418,14090242,14155778,14286850,15269890,16056322,16187394,16646146,16777218,16973826,17039362,17825794,17956866,17891330,18284546,18612226,19070978,19136514,20381698,20971522,21495810,22937602,23003138,23068674,23658498,23724034,24313858,24444930,25034754,25231362,25821186,26083330,26148866,26804226,26935298,27197442,27656194,27721730,27852802,27983874,28311554,28770306,29097986,29425666,29753346,30015490,30408706,30605314,30670850,30932994,31326214,31391746,31522818,31588356,31784962,31981570,32112641,32243713,32309250,32440324,32571394,32768001,32899073,32964609,33030145,33423362,33554436,34013185,34537476,35061764,36110344,36175873,36634625,36896776,37093380,38076419,38535172,38666244,38862849,39124995,39321604,39911425,40304643,40828929,41025539,43712513,45940737,48168962,52625410,53477378,54263831,54657026,54722561,54919170,55181313,55312386,55902209,56492049,56557570,56950798,57016333,57278466,57344017,57475086,57671681,57868302,58064902,58195970,58261521,58392593,58458126],"overloads":[22937601,23527425,24313857,25231361,27000833,27721729],"offset":[16121862,16908294,17301510,18022406,34865154,40435718,43253762,43974658,45481986,50397185,50987009,51183617,52822018,54132738,57606146,57802754],"overridable":[5111809,5701633,5898241,6160385,6291457,6356993,18481153,18743297,19988481,20578305,36372481,45219841],"operators":[55836673],"operation":[5636099,6160386,6946819,7995394,8323073,8978433,9961473,10616833,10682369,11468801,11796481,12255233,12451841,12582913,12648449,13107201,13369345,13500417,14090241,14155777,14286849,15269889,15532033,15663105,15990785,16056321,16187393,16515073,16646145,16711681,16777217,16973825,17039361,17367041,17498113,17563649,17825793,17891329,17956865,18153473,18219009,18284545,18546689,18612225,19070977,19136513,19660801,22937601,23003137,23724033,24313857,24444929,25034753,25231361,25821185,26083329,26148865,26804225,26935297,27197441,27656193,27721729,27852801,27983873,28311553,28770305,29097985,29425665,30015489,30408705,30605313,30670849,30932993,31391745,31522817,31784961,31981569,32309249,32571393,32768001,32899073,33423361,42074113,47644673,53542913],"output":[9830401,12517377,12779522,18743298,26017794,28704770,29163522,33357826,34275330,37814273,40894465],"operations":[1179649,1245185,1310721,1376257,1441793,1572865,1507329,1638401,1703937,1769473,1835009,1900545,2097153,2359297,2424854,2686977,2818049,2883585,3014657,3080193,3276801,3342337,3407873,3473409,3670017,3735553,3801089,3866646,3932161,3997697,4063233,4128769,4194305,4325377,4456449,4521985,4980737,5046273,5242881,5505025,5570561,5832705,6094849,6553601,6750209,11927554,27918337,49414145,49545217,50790401,52101121,52166657,52232193,53018625,53280790,53805057,54001665,54067201,54263809,54329345,54460417,55050241,55246849,55508993,55574529,55705601,55771137,55836673,55902209,55967745,56033281,56164374,56295425,56360961,56426497,56492033,56623105,56688641,56754177,56819713,57016321,57212929,57344001,57475073,57540609,57737217,57868289,58064897,58261505,58327041,58392577,58458113],"obj":[7143425,7471105,7733249,7995393,8126465,8781825,8847361,9175045,33161217,34078721],"observed":[720897,31326209,44892161,56033281],"owns":[34865153,41418753,41615361,42336257,43253761,43974657,44564481,45154305,45285377,45481985,50135041,51249153,52822017,53280769,54132737,57147393,57409537,57606145,57802753,58130433],"operator":[7929857,8192001,11599873,12320769],"option":[52625413,54657026,54722561,54919175,56557569,57278465,57671682],"onexposedtoscriptcode":[1966081,11927556,56229889],"overridden":[1245186,2097154,2359298,2883586,3080194,4325378,4456449,10158081,52166658,53805058,55836674,55967746,56426498,57737217,58064898],"occurrence":[3145729,56098817],"outcome":[10682369],"objec":[27918337,34865155,38404097,39190529,41418754,41615362,42336259,42598401,43253763,43974659,44564483,45285378,45481987,47251457,48037889,51249155,52822019,53280770,54132739,54394881,54919169,57147394,57409539,57606147,57802755,58130434],"outattribute":[18939906,22020098,22740994,22806530,23592962,23789570,24772610,24903682,24969218,25362434,25755650,25952258,26542082,26607618,26673154,26738690,27328514,27394050,27787266,28246018,28966914,29491202,30081026,30801922,31850498],"optionally":[3211266,3801091,5046275,5242883,5505027,5570563,5832707,6094851,6553603,13893633,14024705,18481153,22413313,26345473,28114945,29360129,32702465,33816577,34471937,34734081,34996225,35323905,35782657,36306945,39649281,54263811,56492035,56950786,57344003,57475075,57868291,58261507,58392579,58458115],"overload":[4718593,4849665,4915201,5177345,5439489,6029313,6815745,6881281,7012353,7077889,7143425,7208961,7274497,7340033,7471105,7536641,7602177,7667713,7798785,7864321,7995393,8060929,8126465,8323073,8454145,8519681,8585217,8716289,8781825,8847361,8978433,9043969,9109505,9371649,9699329,9895937,10354689,10420225,10485761,10551297,10616833,10878977,10944513,11075585,11337729,11403265,11468801,11534337,11599873,11730945,11796481,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12582913,12648449,12713985,12845057,12910593,12976129,13107201,13172737,13238273,13369345,13434881,13500417,13565953,13697025,13762561,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14548993,14614529,14680065,14811137,14876673,15007745,15073281,15204353,15269889,15335425,15400961,15597569,15663105,15728641,15859713,15925249,15990785,16056321,16187393,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16973825,17039361,17235969,17367041,17432577,17563649,17629185,17760257,17825793,17891329,17956865,18087937,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18874369,19070977,19136513,19202049,19333121,19464193,19529729,19595265,19726337,19791873,19857409,19922945,20119553,20185089,20381697,20447233,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22675457,22740993,22872065,22806529,22937601,23003137,23068673,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25362433,25427969,25493505,25559041,25624577,25755649,25821185,25952257,26083329,26148865,26279937,26345473,26542081,26607617,26673153,26738689,26804225,26935297,27000833,27197441,27262977,27328513,27394049,27656193,27721729,27787265,27852801,27983873,28049409,28114945,28246017,28311553,28377089,28639233,28770305,28835841,28966913,29032449,29097985,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,30015489,30081025,30146561,30277633,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31195137,31260673,31391745,31457281,31522817,31588353,31653889,31784961,31850497,31981569,32047105,32112641,32178177,32309249,32374785,32440321,32571393,32636929,32702465,32964609,33030145,33095681,33161217,33226753,33423361,33554433,33619969,33685505,33751041,33816577,34013185,34078721,34144257,34209793,34406401,34471937,34603009,34668545,34734081,34799617,34996225,35061761,35192833,35258369,35323905,35389441,35651585,35717121,35782657,35979265,36044801,36110337,36241409,36306945,36438017,36634625,36831233,36896769,36962305,37027841,37093377,37289985,37355521,37486593,37617665,37683201,37879809,37945345,38076417,38338561,38535169,38600705,38666241,38928385,39059457,39124993,39321601,39518209,39649281,39911425,40108033,40304641,40632321,41025537,44105729,44433409,45809665,46530561,46989313,50659329,51380225,55967745,56426497,56885249],"obsoleteattribute":[20905988,44695556,46596100,47120388,47448068],"omit":[7012353,7274497,7340033,7602177,7864321,8519681,15663105,15990785,16515073,16711681,17367041,17563649,18219009,18546689,19660801],"one":[2424833,3866625,4456449,4980738,6881282,8257537,8454145,9109505,9633793,9961473,10420225,10682369,10878977,11403265,11927553,12058626,12124161,14090242,15204353,16646146,21102593,22937601,24313857,25231361,27721729,37552129,37617668,38273025,38338562,39387139,39780353,40173571,40239105,40697857,40960005,41091073,42205185,42270721,42991617,43122689,46137345,48103425,51118081,52101122,53149697,53280769,54329345,54460417,55574533,56164353,57081861,57737220,57933827],"objects":[2424833,3866625,7077889,7667713,8585217,12451841,12648449,12713985,13303809,13565953,14024707,14090242,14155777,14614529,15269889,15335425,16646146,16777217,17825793,18284545,18612225,19005441,19791873,21037057,21757953,22151169,22413315,34537473,38141954,38207490,40042498,40370177,40501250,42532866,44105729,44236802,45088769,46465025,46989313,47185922,48824322,50331650,50528257,51511297,52625410,53280770,53673985,53936130,54263810,54394881,54657026,54919172,55836673,56098817,56164353,56492034,56950786,57344002,57475074,57868290,58261506,58392578,58458114],"overloaded":[7143425,8126465,8781826,8847361,11599874,12320769,14090241,16646145],"occupies":[44695556],"open":[31326209,53870593],"older":[39256065,46858241,50003969],"ownerhandle":[44630017,52428804,57999361],"obsolete":[20905985,35127298,36503553,37289985,38862849,44695553,46596097,47120385,47448065,52232193,54722561,55181313,56557569,57212930,57475073],"overrides":[1507332,3276801,3801089,4128769,4456450,4587521,4653057,4784129,5046273,5242884,5570561,5832705,6094853,6291457,6553601,6750209,6946817,17104897,17694721,24510465,25886721,26017793,27131905,27590657,27918338,28114945,28573697,28704769,29163521,29229057,29360129,30212097,31129601,33292289,33357825,34275329,38207491,40501249,41746433,42467331,42532865,44236802,47185921,48824321,49020929,49479681,49676289,50069505,50266113,50462721,50593793,50790405,51052545,51511297,51576833,52953089,53346305,53673985,54067203,54263816,54460417,55508993,56492034,57344002,57475073,57737218,57868294,58261506,58327041,58392578]} \ No newline at end of file +{"overloads":[23789569,24707073,25231361,26148865,27197441,29556737],"omit":[7208961,7274497,7733249,7929857,8454145,9371649,14942209,15728641,15794177,16056321,16646145,16777217,16973825,17301505,17432577,17760257,18677761],"option":[49938433,50659333,50724865,50790407,50987010,54067201,55902210],"one":[2424833,3604482,4128769,4718593,6619138,7471106,7995393,8323073,8847361,10027009,10289153,10354689,10485761,10944513,11337729,11403265,12058625,14024705,14090242,19660802,23789569,24707073,26148865,27197441,30932996,34930691,35454981,35717123,37224449,37355521,38076417,38600705,39452673,40108033,41156609,42139649,42795009,44105729,44564481,44630017,44761089,46399489,49545221,50331649,50397185,50462721,52297729,52559874,54525954,57016325,58720260,58785795,59047937],"old":[35323905,45350914,46858244,53411841],"ownerhandle":[35651585,50003972,57868289],"objects":[2424833,4128769,6946817,7864321,9043969,12713985,12976129,13631489,13697025,14090242,14483457,14745601,15335425,15532033,15597569,16384003,18481153,19529729,19660802,20381697,21168129,21233665,22151169,23330817,24051715,24444929,25427969,34275330,35127298,36569090,36765698,36896770,37617666,38338562,38928385,39190529,39321602,39911425,40960001,41025538,42008577,43712513,47185921,47906818,48496641,49086465,50266113,50397185,50659330,50790404,50987010,52363265,54329346,55771137,56164354,57737218,57999362,58458114,58523650,58589186,58982402,59047938,59179010],"overload":[4915201,5111809,5177345,5308417,5439489,5505025,5701633,6225921,6619137,6946817,7208961,7274497,7471105,7536641,7602177,7733249,7864321,7929857,7995393,8126465,8257537,8323073,8454145,8519681,8585217,8716289,8912897,9043969,9109505,9175041,9371649,9437185,9568257,9699329,9830401,9895937,10158081,10289153,10420225,10485761,10616833,10682369,10813441,11010049,11206657,11272193,11337729,11468801,11534337,11665409,11730945,11796481,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12582913,12779521,12845057,12910593,12976129,13041665,13107201,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13893633,13959169,14024705,14155777,14090241,14286849,14352385,14483457,14548993,14680065,14745601,15007745,15073281,15138817,15204353,15335425,15400961,15532033,15597569,15728641,15794177,15925249,16056321,16121857,16187393,16384001,16449537,16580609,16646145,16711681,16777217,16842753,16908289,17039361,17104897,17170433,17367041,17432577,17498113,17694721,17760257,17825793,17891329,18153473,18284545,18350081,18415617,18481153,18677761,18808833,18874369,18939905,19005441,19070977,19202049,19267585,19398657,19529729,19726337,19660801,19791873,19857409,20054017,20119553,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20971521,21102593,21168129,21233665,21364737,21495809,21561345,21626881,21692417,21757953,21889025,21954561,22020097,22085633,22216705,22347777,22413313,22478849,22609921,22675457,22740993,22806529,22872065,22937601,23068673,23134209,23265281,23330817,23396353,23461889,23658497,23724033,23789569,23920641,24051713,24117249,24182785,24248321,24313857,24379393,24510465,24444929,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,27000833,27066369,27131905,27197441,27262977,27459585,27852801,27918337,27983873,28049409,28180481,28377089,28442625,28508161,28639233,28704769,28835841,28966913,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32571393,32636929,32702465,32833537,32899073,32964609,33030145,33161217,33226753,33292289,33357825,33423361,33685505,33816577,39583745,39911425,39976961,40960001,42860545,43319297,44892161,51249153,51511297,51642369,52101121,52297729,52428801,52690945,52887553,52953089,53149697,53215233,53280769,53608449,53739521,53870593,53805057,54001665,54132737,54394881,54525953,54657025,54722561,54853633,54919169,54984705,55050241,55181313,55377921,55443457,55574529,55640065,55705601,55836673,55967745,56033281,56098817,56360961,56426497,56557569,56623105,56688641,56950785,57081857,57147393,57278465,57344001,57409537,57540609,57671681,57802753,58064897,58261505,58195969],"occurs":[65537,196609,34078721,49545217,51576833,55771137,57933825,58720258],"onexposedtoscriptcode":[1835009,11403268,53018625],"owner":[35651585,50003970,57868289],"objec":[18743297,33751042,34013187,34340867,34471939,35061763,35389442,35848195,35979266,36700163,40304641,40632321,41091073,43581441,44367873,48496641,49152003,49676291,50200579,50790401,51183619,52756483,57606146,58130435,58327042,59047938],"owns":[33751041,34013185,34340865,34471937,35061761,35389441,35848193,35979265,36700161,39256065,44040193,49152001,49676289,50200577,51183617,52756481,57606145,58130433,58327041,59047937],"outcome":[10354689],"outside":[13893633,15400961,16908289,17825793,45940737,47775745,49414145],"obsolete":[18808833,33685505,35192833,35323906,35520513,46268417,46858241,49283073,49807361,49938433,50724865,51445761,53411842,56754177,58523649],"optional":[5373955,5505025,5636099,5898242,6225922,6488067,6815747,7012355,7864321,8126465,8192003,8978435,9043969,9109505,9830401,10158081,10354691,10813441,12976129,13172737,13238273,13434881,13500417,13631489,13697025,13828097,14024705,14090241,14286850,14417921,14548994,14745601,15269889,18481153,19529729,19660801,20971521,21037057,21102593,21626881,21889026,22020098,22282241,22413313,23003137,23134210,23330817,23527425,24313858,24444929,25100289,25362434,25886722,26476545,27131906,27459585,27787266,28180482,29425665,30539777,35258369,35586051,36372481,36438019,36831233,36962305,37814273,38141953,38469633,39583745,42860545,43515905,48824323,50462721,51773443,52297729,52559873,53477377,55771138],"operationcanceledexception":[58785797],"obj":[7012357,8126465,8192001,8585217,8716289,9109505,9437185,9830401,30277633,30408705],"occurrence":[2686977,52363265],"optionally":[3145730,4259843,6029315,6291459,6356995,6422531,6684675,8781827,9306115,16121857,16384001,18350081,23724033,24051713,25296897,31064065,31981569,32571393,32636929,33161217,33423361,33816577,54329347,55836673,56164354,57147393,57737219,57999363,58261505,58458115,58523651,58589187,58982403,59179011],"overridden":[1310722,1966082,2621442,2883586,2949122,3276802,4718593,9633793,48103426,50266114,56033282,57344002,58720257,58851330,59113474],"options":[3145742,4259854,4849669,6029326,6291470,6357006,6422542,6684687,8781838,9306126,10682370,11534338,11665410,11730946,12189698,12320770,12386306,12845058,13697026,13959170,14090242,14745602,15532034,15597570,17039362,17498114,18153474,18415618,19005442,19267586,19660802,19791874,20054018,20512770,20774914,21233666,22478850,22937602,23330818,23461890,23789570,24444930,24641538,24707074,24838146,24903682,25427970,25755650,26148866,26214402,26279938,26345474,26411010,26542082,26738690,27000834,27066370,27197442,27852802,27983874,28508162,28639234,29229058,29294594,29491202,29818882,29949954,30343170,30474242,30801921,30867458,31195140,31260676,31457284,31522818,31916033,32112644,32178180,32243716,32505857,32833537,33030145,34603009,35520513,36438017,37748737,42401793,45875202,48824321,49479682,49938434,50659330,50724865,50790402,50987010,51445761,51970061,52035585,52166658,52428804,52953090,53805058,54067202,54329361,54853634,54919169,55181314,55377928,55771140,55902209,56098819,56164366,56688644,56950787,56885254,57081858,57212929,57278472,57409539,57540609,57671683,57737230,57999377,58458135,58523662,58589201,58851334,58916866,58982417,59179022],"obsoleteattribute":[18808836,46268420,46858244,49283076,49807364],"object":[65537,1114123,1179659,1245195,1310729,1376262,1441803,1507339,1572875,1638411,1703947,1769483,1835010,1900554,1966089,2031629,2097163,2162699,2228236,2293772,2359308,2424852,2490371,2555905,2621449,2686987,2752525,2818060,2883593,2949129,3014700,3080203,3145742,3211276,3276809,3342347,3407883,3473419,3538955,3604525,3670027,3735563,3866635,3932171,3997707,4063238,4128799,4259864,4325387,4390923,4718601,4784142,4849675,5767169,5898245,6029335,6291479,6357015,6422551,6619138,6684695,6750213,6815749,6881282,6946822,7077899,7208966,7274508,7340037,7471106,7536653,7602184,7667719,7733254,7798793,7864333,7929869,7995398,8060933,8126476,8192008,8257551,8323079,8388609,8454163,8519682,8585220,8650766,8716297,8781847,8847372,8912910,8978439,9043980,9109518,9175043,9240583,9306135,9371668,9437187,9502733,9568263,9633801,9764871,9830421,9961479,10027025,10092551,10223628,10354705,10551303,10616845,10682372,10878983,10944519,11075591,11141127,11272200,11403269,11468804,11534339,11599879,11665409,11730945,11927559,11993095,12124163,12189699,12255235,12320772,12386305,12451841,12517383,12582917,12713986,12779521,12845061,12976130,13041668,13107203,13172746,13238285,13303816,13369345,13434885,13565957,13631490,13697026,13762562,13828110,13959169,14024712,14090251,14155777,14286853,14352386,14417933,14483458,14680075,14745602,14942224,15007749,15073285,15138823,15269900,15335426,15532034,15597570,15728646,15794182,15990790,16056326,16384007,16580612,16646150,16777222,16973838,17039363,17104897,17170437,17301520,17432582,17498113,17760262,18153476,18219010,18284545,18415617,18481154,18677766,18743298,19005443,19070982,19136517,19267585,19529730,19660813,19726338,19791876,19857414,19988481,20185094,20250626,20381698,20447245,20512769,20643847,20840451,20971526,21037069,21168130,21233666,21364737,21626894,21757956,21823490,21889030,22085633,22151170,22282255,22347777,22478853,22675459,22740998,23003152,23068673,23265285,23330818,23527437,24051720,24117250,24444930,25427970,25952261,27328514,27525121,28442625,28966913,29032449,29229057,29360129,29491201,29949953,30081026,30146562,30212097,30277637,30408711,30605316,30801925,30998531,31195144,31391747,31588356,31719428,31784962,31916035,32047109,32178184,32833541,33030147,33751045,34013189,34340869,34406405,34471941,34930689,35061765,35323907,35389445,35848198,35979269,36700165,38273026,38600710,38862852,38928385,39256066,39190535,39452679,39583760,39649281,39845889,39976969,40108039,40304641,40632321,41091073,41222146,41353223,41484296,41680903,42008577,42139655,42532872,42795016,42860561,42926089,43188232,43581441,43646980,43712519,44040194,44105735,44236801,44367873,44564488,44695553,44761096,44826626,44892169,45350913,45940737,46268417,46858244,47185928,47579137,47644684,48103434,48168972,48234497,48431115,48562188,48758785,48824332,48955404,49020940,49086472,49152017,49217548,49545230,49676305,49741836,49872908,50135052,50200593,50266123,50331660,50397205,50462765,50528261,50593796,50659331,50790406,50987010,51052549,51118092,51183635,51445761,51642377,51707916,51773447,51838977,51904513,51970060,52035585,52297737,52363295,52559918,52690950,52756497,52887555,52953089,53018627,53084172,53280772,53346314,53411855,53477388,53542922,53739524,53805057,53936140,54132741,54263809,54329368,54460423,54788097,55050242,55246860,55312396,55771139,55967755,56033290,56164366,56360962,56295427,56623105,56754188,57081857,57212930,57344010,57475073,57606162,57737240,57933848,57999384,58130449,58327059,58392588,58458136,58523673,58589208,58654734,58720269,58785793,58851338,58916867,58982424,59047972,59113482,59179032],"overridable":[4653057,5570561,5636097,5963777,6553601,6881281,18350081,19595265,20250625,20905985,37027841,38666241],"occupies":[46858244],"overriding":[46530561,52494337],"older":[38207489,41287681,41746433],"occupying":[26804225],"observed":[720897,46596097,54460417,56885249],"occurred":[655361],"overrides":[1441796,3342337,4259841,4390913,4521985,4587521,4653057,4718594,4980737,5373953,6029313,6291457,6356993,6422529,6684677,7077889,8781828,15859713,18219009,18743298,21823489,25296897,26869761,27328513,28246017,28311553,28770305,28901377,31784961,32768001,33619969,34734083,36175873,36569091,36765697,36896769,37617665,38338562,39321601,43057153,43778049,44302337,46071809,46727169,46792705,47185921,47448065,48234497,48300033,48758785,49020933,49086465,49741827,50331649,53936129,54198273,54329346,55115777,55836673,56229889,56492033,56819713,57737222,57999362,58458120,58523649,58589186,58654721,58720258,58982402],"overloaded":[8126465,8716290,9437185,9830401,11272194,12124161,14090241,19660801],"output":[7667713,10223617,19595266,26869762,28311554,32768002,39518209,42729473,50855938,54198274,56229890],"override":[196609,2424841,4128777,4521987,4587523,4653057,4980739,5373955,5570561,5636097,5963777,6553601,6881281,9633793,15859715,15990785,16580609,17039361,17235969,17498113,17956865,18153473,18219011,18284545,18350081,18415617,18481153,18743299,18874369,19005441,19070977,19267585,19529729,19595266,19660801,19791873,19857409,20185089,20250625,20316161,20381697,20447233,20512769,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21364737,21757953,21823491,21889025,22020097,22151169,22347777,22478849,22675457,22740993,22806529,23003137,23068673,23265281,23330817,23724033,24051713,24379393,24444929,24576001,25296899,25427969,26869764,27328515,27656193,28246019,28311556,28770307,28901379,31784963,32768004,36175876,37027841,38666241,39649281,39911425,40435713,40501249,40697857,40960002,41156609,41287681,41353217,41418753,41811969,41877505,42008577,42074113,42139649,42205185,42270721,42467329,42532865,42598401,42729473,42795009,42926081,43057155,43122689,43188225,43384833,43450369,43646977,43778051,43843585,43974657,44105729,44302339,44564481,44630017,44695554,44761089,44826625,45678593,45875201,46071811,46727171,46792707,47185923,47448067,48103425,48234499,48300035,48758787,49086467,50397193,50855937,52690945,53673985,54198276,54394881,54984705,55115779,55508993,55836675,56033281,56229892,56492035,56819715,59047945],"open":[47972353,56885249],"operators":[50266113],"outermost":[47710209,49348609,49807361],"offset":[14811142,15663110,18612230,19464198,34013186,34340866,35061762,36700162,39780358,45154305,45744129,46465025,49152002,49676290,50200578,52756482],"operations":[1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1966081,2097153,2162689,2424854,2621441,2883585,2949121,3014657,3080193,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3866625,3932161,3997697,4063233,4128790,4259841,4325377,4390913,4718593,4849665,6029313,6291457,6356993,6422529,6684673,7077889,8781825,9306113,11403266,18743297,47644673,48168961,48103425,48562177,48824321,48955393,49020929,49217537,49545217,49741825,49872897,50135041,50266113,50331649,50397206,50462721,51118081,51707905,51773441,51970049,52559873,53084161,53411841,53477377,53936129,54329345,54460417,55246849,55312385,56033281,56754177,57344001,57737217,57933825,57999361,58392577,58458113,58523649,58589185,58654721,58720257,58851329,58982401,59047958,59113473,59179009],"optimized":[19595265,26869761,28311553,32768001,35258369,43515905,50855937,53477377,54198273,56229889],"operator":[7798785,8650753,11272193,12124161],"outattribute":[20185090,22872066,23658498,23920642,24313858,25165826,25362434,25624578,26083330,26476546,26607618,27131906,27459586,27918338,28049410,28180482,28704770,28835842,29163522,29425666,30539778,31129602,31653890,32309250,32702466],"operation":[5373955,5636098,6488067,8912897,9109506,10027009,10354689,10616833,10682369,11534337,11665409,11730945,12189697,12320769,12386305,12845057,13697025,13959169,14090241,14745601,15532033,15597569,15728641,15794177,16056321,16515073,16646145,16777217,16973825,17039361,17432577,17498113,17760257,18153473,18415617,18546689,18677761,19005441,19136513,19267585,19660801,19791873,20512769,21233665,22478849,23330817,23789569,24444929,24641537,24707073,24838145,25427969,25755649,26148865,26214401,26279937,26345473,26542081,26738689,27000833,27066369,27197441,27852801,27983873,28508161,28639233,29229057,29294593,29491201,29818881,29949953,30343169,30474241,30867457,31522817,32505857,39124993,43450369,45416449,46530561,52035585,52953089,53805057,54853633,55181313,57081857]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_112.json b/docs/Reference/fti/FTI_112.json index 948e365f0..d29bcea59 100644 --- a/docs/Reference/fti/FTI_112.json +++ b/docs/Reference/fti/FTI_112.json @@ -1 +1 @@ -{"presentation":[13893633,14024705,14680065,15073281,19202049,20905985,22413313,23265281,23461889,23527425,23724033,24182785,24313857,24379393,24444929,25231361,25362433,25493505,26083329,26345473,26542081,26607617,27197441,27262977,27394049,27852801,27983873,29687809,29818881,30146561,30408705,30474241,30670849,30736385,30932993,31260673,31391745,31522817,31784961,31981569,32309249,32571393,32768001,32899073,33423361],"point":[8912897,38141953,38207489,40042497,40501249,42532865,44236801,46333954,47185921,48824321,49348610,50331649,54263809,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"present":[12845057,13172737,13893633,14024705,14680065,15073281,21168129,22413313,23265281,25559041,26345473,27262977,54788097,54853633],"propagation":[38207489,44826625,49872898,53411842,54263809,57016321],"platform":[17367041,17563649,18219009,18546689,39256065],"page":[589825,41287684],"process":[12779521,18743297,26017793,28704769,29163521,33357825,34275329,47054850,47775745,51838978,52363265,57671682],"polluting":[40763393,46661633],"policy":[46071809,53215233,57671681],"preventing":[57671682],"proc":[3014657,4980737,12517382,52101121,54329345],"patching":[52625411],"provider":[7798785,7995393,8978433,9371649],"params":[6881281,7077889,7405569,7995393,8126465,8257537,8454145,8585217,8847361,9109505,9633793,9961473,10354689,10420225,10878977,10944513,11403265,12058625,12124161,13303809,13565953,13631489,13762561,13828097,14155777,14483457,14614529,15138817,15204353,15269889,16777217,17825793,19005441,19791873,20250625,21037057,21102593,22544385,23134209,23920641,24576001,46530561,51380225],"populates":[2621441,4456449,17104897,19988481,57737217,57933825],"propertychangedeventhandler":[786440],"protocol":[26411009,27066369],"parameter":[7012353,7274497,7340033,7602177,7864321,8519681,8650753,9240577,9306113,9502721,9568257,9764865,10027009,10092545,10747905,10813441,11010049,11665409,11862017,15663105,15990785,16515073,16711681,17367041,17563649,18219009,18481153,18546689,19660801,28114945,29360129],"profiler":[720897,31326209,44892161,56033281],"particular":[3145729,13500417,14352385,16580609,23003137,56098817],"pause":[54788097,54919169],"perform":[1179649,1245185,1310721,1376257,1441793,1572865,1507329,1638401,1703937,1769473,1835009,1900545,2097153,2359297,2424833,2686977,2818049,2883585,3014657,3080193,3276801,3342337,3407873,3473409,3670017,3735553,3866625,3932161,3997697,4063233,4128769,4194305,4325377,4456449,4521985,4980737,5898241,6750209,7995393,14942209,17170433,22609921,24510465,28573697,38797313,41811969,43057153,48562177,49414145,49545217,50266113,50790401,51052545,52101121,52166657,52232193,53018625,53280769,53805057,54001665,54067201,54329345,54460417,54919171,55050241,55246849,55508993,55574529,55705601,55771137,55836673,55902209,55967745,56033281,56164353,56295425,56360961,56426497,56623105,56688641,56754177,56819713,57016321,57212929,57540609,57737217,58064897,58195969,58327041],"propertybag":[65537,262146,786433,2686985,3932174,7471109,10223621,15532034,15925255,16252931,16384006,16842754,17498114,18153474,18939906,19464198,20185096,21299202,34537473,35389449,37158918,37421064,45678594,46399490,46923778,47579138,55574556,56754201],"paramarray":[6881281,7077889,7405569,7995393,8126465,8257537,8454145,8585217,8847361,9109505,9633793,9961473,10354689,10420225,10878977,10944513,11403265,12058625,12124161,13303809,13565953,13631489,13762561,13828097,14155777,14483457,14614529,15138817,15204353,15269889,16777217,17825793,19005441,19791873,20250625,21037057,21102593,22544385,23134209,23920641,24576001,46530561,51380225],"platforms":[39256065],"physical":[35913729,51445762,57540609],"possibilities":[44367873,49938433],"passing":[8650753,9240577,9306113,9502721,9568257,9764865,10027009,10092545,10747905,10813441,11010049,11665409,11862017,14548993,15400961,15597569,16318465],"prevent":[47054849,51838977],"predicate":[3932162,9699334,10485766,11403270,12124166,36438018,37617666,55574532],"profiles":[4194305,6094849,20840449,21495809,22085633,23855105,28639233,29753345,49086465,52559873,54263809,57016321],"progid":[3211272,3801096,5046280,5242888,5505032,5570568,5832712,6094856,6553608,7733255,11206663,11993096,12255240,12910600,12976136,13107208,13369352,13697032,14286856,17956873,17891337,19070985,19136521,21626889,21692425,22216713,22282249,31784967,31981575,32440324,32571399,32768007,32899079,33423367,37093380,38535172,39321604,54263816,56492040,56950792,57344008,57475080,57868296,58261512,58392584,58458120],"provide":[2424833,3866625,6881281,12058625,30277633,31326209,32243713,32833537,35586049,38141953,38207489,39256065,39387137,40042497,40370177,40501249,42532865,44236801,46465025,47185921,48824321,50331649,53280769,53870596,54263809,55574529,56164353,56492033,56950785,57344001,57475073,57737217,57868289,58261505,58392577,58458113],"permitted":[38141953,38207490,39714817,40042497,40501249,42532865,42729474,44236801,44761090,44826625,45875201,47185921,47775745,48824321,50331649,52363265,54263810,56492033,56950785,57016321,57344001,57475073,57868289,58261505,58392577,58458113],"processing":[57671681],"path":[7405570,7733249,38010881,49217537,53477380],"predate":[44695553,45350913,46202881,47120385],"provides":[2424845,3866637,4259841,7995393,14024705,14090241,16646145,22413313,32243713,32833538,33947649,34537482,42467329,42926081,49479681,49741825,50790401,52101121,53018626,53280782,54067202,54329345,55508993,56164365,56360961,56688641,56754177,56819713,57475073,57868289,58130433,58458113],"post":[57671681],"port":[4194306,22937604,24313858,24444930,25231364,25821186,26083330,26935298,27656194,27721730,27852802,27983874,29097986,35061762,36110340,36896772,54263812,57016326],"populate":[9043969,9764865,9830401,11206657,12517377,17104897,19988481],"pairs":[39387137,57737217],"previously":[4194310,6094854,22020097,22740993,23789569,24969217,25362433,25755649,26542081,26738689,27328513,28966913,29491201,31850497,33685507,34144259,34406403,37683203,54263814,57016326],"provided":[3145729,7208961,7471105,7798785,7995393,8126465,8257537,8323073,8716289,8847361,8978433,9371649,9633793,9961473,56098817],"programming":[7012353,7274497,7340033,7602177,7864321,8519681,15663105,15990785,16515073,16711681,17367041,17563649,18219009,18546689,19660801],"propertynames":[34865153,39190532,41418753,41615361,42336257,43253761,43974657,44564481,45285377,45481985,48037893,51249153,52822017,53280769,54132737,57147393,57409537,57606145,57802753,58130433],"packages":[8650753,9240577,9306113,9502721,9568257,10027009,10092545,10747905,10813441,11010049,11665409,11862017],"public":[655363,720899,786435,851971,917507,983043,1048579,4390915,4587523,4653059,4718595,4784131,4849667,4915203,5111811,5177347,5373955,5439491,5636099,5701635,5898243,5963779,6029315,6160387,6291459,6356995,6422531,6619139,6684675,6815747,6881283,6946819,7012355,7077891,7143427,7208963,7274499,7340035,7405571,7471107,7536643,7602179,7667715,7733251,7798787,7864323,7929859,7995395,8060931,8126467,8192003,8257539,8323075,8388611,8454147,8519683,8585219,8650755,8716291,8781827,8847363,8912899,8978435,9043971,9109507,9175043,9240579,9306115,9371651,9437187,9502723,9568259,9633795,9699331,9764867,9830403,9895939,9961475,10027011,10092547,10158083,10223619,10289155,10354691,10420227,10485763,10551299,10682371,10747907,10813443,10878979,10944515,11010051,11075587,11141123,11206659,11272195,11337731,11403267,11599875,11665411,11862019,12058627,12124163,12320771,12517379,15532035,15663107,15925251,15990787,16056323,16187395,16252931,16384003,16515075,16580611,16646147,16711683,16777219,16842755,16973827,17039363,17104899,17170435,17367043,17432579,17498115,17563651,17629187,17694723,17760259,17825795,17891331,17956867,18153475,18219011,18284547,18350083,18415619,18481153,18546691,18612227,18677763,18743299,18939907,19005443,19070979,19136515,19267587,19333123,19464195,19529731,19595267,19660803,19726339,19791875,19857411,19922947,19988483,20054019,20119555,20185091,20250627,20381699,20447235,20512771,20578307,20643843,20709379,20774915,20840451,20971523,21037059,21102595,21168131,21233667,21299203,21364739,21430275,21495811,21561347,21626883,21692419,21757955,21889027,21954563,22020099,22085635,22151171,22216707,22282243,22347779,22413315,22478851,22544387,22609923,22675459,22740995,22806531,22872067,22937603,23003139,23068675,23134211,23199747,23265283,23330819,23396355,23461891,23527427,23592963,23658499,23724035,23789571,23855107,23920643,23986179,24051715,24117251,24182787,24248323,24313859,24379395,24444931,24510467,24576003,24641539,24707075,24772611,24838147,24903683,24969219,25034755,25100291,25165827,25231363,25296899,25362435,25427971,25493507,25559043,25624579,25690115,25755651,25821187,25886723,25952259,26017795,26083331,26148867,26214403,26279939,26345475,26411011,26476547,26542083,26607619,26673155,26738691,26804227,26869763,26935299,27000835,27066371,27131907,27197443,27262979,27328515,27394051,27459587,27525123,27590659,27656195,27721731,27787267,27852803,27983875,28049411,28114945,28180483,28246019,28311555,28377091,28442627,28508163,28573699,28639235,28704771,28770307,28835843,28901379,28966915,29032451,29097987,29163523,29229059,29294595,29360129,29425667,29491203,29556739,29622275,29687811,29753347,29818883,29884419,30015491,30081027,30146563,30212099,30277635,30343171,30408707,30474243,30605315,30670851,30736387,30801923,30867459,30932995,31064067,31129603,31260675,31391747,31522819,31719427,31850499,32309251,32505859,33292291,33357827,33882115,34275331,35979267,36372483,36765699,37027843,37224451,38010883,38469635,39256067,39452675,39780355,40566787,40763395,40894467,41484291,41549827,41680899,41811971,42139651,42205187,42270723,42663939,42795011,42991619,43122691,43319299,43450371,43712515,43778051,43843587,43909123,44171267,44302339,44433411,44498947,44695555,44761091,44892163,45023235,45154307,45219843,45350915,45416451,45547523,45678595,45744131,45809667,45875203,45940739,46006275,46071811,46137347,46202883,46268419,46399491,46465027,46530563,46596099,46661635,46727171,46792707,46923779,46989315,47054851,47120387,47251459,47316995,47382531,47448067,47513603,47579139,47644675,47710211,47775747,47906819,47972355,48037891,48168963,48234499,48365571,48431107,48496643,48562179,48627715,48693251,48758787,48955395,49020931,49086467,49152003,49217539,49283075,49348611,49414147,49479683,49545220,49676291,49741827,49807363,49872899,49938435,50003971,50069507,50200579,50266115,50397187,50462723,50528259,50593795,50724867,50790404,50855939,50921475,50987011,51052547,51118083,51183619,51249155,51314691,51445763,51511299,51576835,51642371,51707907,51773443,51838979,51904515,51970051,52035587,52101124,52166660,52232195,52297731,52363267,52494339,52559875,52625411,52690947,52756483,52822019,52887555,52953091,53018627,53084163,53149699,53215235,53280772,53346307,53411843,53477379,53542915,53608451,53673987,53739523,53805060,53936131,54001667,54067204,54132739,54198275,54263812,54329347,54394883,54460419,54525955,54591491,54657028,54722563,54788099,54853635,54919171,54984707,55050243,55115779,55181315,55246851,55312387,55377923,55443459,55508995,55574532,55640067,55705603,55771139,55836676,55902211,55967748,56033283,56098819,56164356,56229891,56295427,56360963,56426500,56492036,56557571,56623108,56688643,56754179,56819715,56885251,56950787,57016323,57081859,57147395,57212931,57278467,57344004,57409539,57475075,57540611,57606147,57671683,57737220,57802755,57868292,57933828,57999363,58064900,58130435,58195971,58261508,58327043,58392580,58458116],"performs":[2162689,2228225,2293761,2555905,2752513,2949121,3014657,3211266,3604481,3801091,3866625,4194306,4259841,4980737,5046275,5242883,5505027,5570563,5832707,6094851,6553603,7995393,10682369,14942209,17170433,17760257,21364737,22609921,24510465,25690113,27918337,28180481,28573697,34078721,34471937,34734081,39649281,51249153,52101121,52822017,53280769,54132737,54263811,54329345,56492035,56557569,56950786,57016322,57147393,57344003,57409537,57475075,57606145,57802753,57868291,58130433,58261507,58392579,58458115],"prepared":[52494337],"properties":[2686977,3932161,7077890,7208961,7471105,7667714,7798785,8126465,8323073,8454145,8585218,8716289,8847361,8978433,9109505,9371649,9764865,10616833,10682369,11468801,11534337,11730945,11796481,11993089,12189697,12255233,12386305,12451842,12582913,12648450,12713986,12910593,12976129,13107201,13303810,13369345,13500417,13565954,13697025,14090244,14155778,14286849,14352385,14614530,15007745,15269890,15335426,15532033,16056321,16187393,16580609,16646148,16777218,16973825,17039361,17432577,17825794,17891329,17956865,18284546,18612226,19005442,19070977,19136513,19791874,19857409,19922945,20709377,20774913,21037058,21626881,21692417,21757954,22151170,22216705,22282241,23003137,31326209,34340866,34537475,34865154,34930690,35127298,35454978,35520514,35586050,35848194,35913730,36175874,36503554,36569090,36700162,37158914,37421058,37748738,38141954,38207490,38731778,38862850,39387138,39714818,40042498,40173570,40501250,40763393,40828930,40960002,41418754,41615362,41746434,41877506,42336258,42401794,42467330,42532866,42860546,42926082,43253762,43581442,43974658,44040194,44236802,44564482,44630018,44826626,45088769,45285378,45481986,45875202,46661633,47185922,48824322,50331650,50528257,50790401,51249153,51511297,52166657,52232193,52822018,53018625,53280769,53673985,53805058,53936129,54001665,54067201,54132737,54263809,54394881,54984706,55050241,55181314,55246849,55377921,55443457,55574530,55705601,55771137,55836673,55902209,55967745,56098820,56295425,56426498,56492033,56754178,56885249,56950785,57016321,57081858,57147393,57212929,57344001,57409537,57475073,57540609,57606146,57737217,57802753,57868289,57933825,57999361,58064898,58130433,58261505,58392577,58458113],"performance":[6291457,30277633,31326209,34537473,53870593,54919169,56164353],"parent":[6881281,9175041,12058625,49872897,53411841,55574529],"passed":[8650753,9240577,9306113,9502721,9568257,9764866,9830401,10027009,10092545,10682369,10747905,10813441,11010049,11665409,11862017,52625409,58327041],"persists":[589825],"promise":[2490377,15663108,15990788,16515077,16711685,17367044,17563652,18219013,18546693,19660807,34603017,54591497,54919169,55115778,57671681],"possible":[14024705,22413313,54657025],"parameters":[4653057,4784129,4849665,4915201,5111809,5177345,5439489,5636097,5701633,5898241,6029313,6160385,6291458,6422529,6684673,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340034,7405570,7536641,7602178,7667713,7733249,7798785,7864321,7929858,7995393,8060930,8126465,8192002,8257537,8323073,8388609,8454145,8519681,8585217,8650754,8716289,8781825,8847362,8912898,8978433,9043971,9109506,9175042,9240578,9306114,9371649,9502722,9568258,9633793,9699329,9764866,9830403,9895937,9961473,10027010,10092546,10158081,10223617,10289154,10354689,10420225,10485761,10616833,10682369,10747906,10813442,10878977,10944513,11010050,11075585,11206657,11337729,11403265,11468801,11534337,11599873,11665410,11730945,11796481,11862018,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451842,12517378,12582913,12648450,12713986,12779521,12845057,12910593,12976129,13107201,13172737,13238273,13303810,13369345,13434881,13500418,13565954,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155778,14221313,14286849,14352386,14417921,14483457,14548993,14614530,14680065,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269890,15335426,15400962,15597569,15663105,15728641,15859713,15925249,15990786,16056321,16121857,16187393,16252929,16318466,16384001,16449537,16515073,16580610,16646145,16711682,16777218,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563650,17629185,17825794,17956865,17891329,18022401,18087937,18153473,18219009,18284546,18415617,18481153,18546690,18612226,18743297,18808833,18874369,18939905,19005442,19070977,19136513,19202049,19333121,19529729,19595265,19660801,19726337,19791874,19857409,19922945,19988481,20119553,20185089,20250625,20316161,20381697,20447233,20643841,20709377,20774913,20840449,20905985,20971521,21037058,21102593,21168129,21299201,21430273,21495809,21626881,21692417,21757954,21823489,21889025,21954561,22020097,22151170,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22740993,22872065,22806529,22937601,23003138,23068673,23134209,23199745,23265281,23330817,23461889,23527425,23592961,23658497,23724033,23789569,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25755649,25821185,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26542081,26607617,26673153,26738689,26804225,26935297,27066369,27197441,27262977,27328513,27394049,27459585,27656193,27721729,27787265,27852801,27983873,28049409,28114945,28246017,28311553,28377089,28442625,28573697,28639233,28704769,28770305,28901377,28966913,29097985,29163521,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,30015489,30081025,30146561,30277633,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,31195138,31260673,31391745,31522817,31784961,31850497,31981569,32309249,32571393,32768001,32899073,33357825,33423361,33488897,34275329,35979265,37027842,45809665,46399489,46530561,49545217,50659329,51380225,54132737,54525953,55443457,56623105],"propertyindices":[34865153,38404100,41418753,41615361,42336257,43253761,43974657,44564481,45285377,45481985,47251461,51249153,52822017,53280769,54132737,57147393,57409537,57606145,57802753,58130433],"pending":[6094849,31064065,54263809],"promis":[19660801],"processed":[49872897,53411841],"processes":[22806529,23592961,24772609,24903681,25952257,26607617,26673153,27394049,27787265,28246017,30081025,30801921],"promises":[54919170],"place":[14090241,16646145,54919169],"profile":[720897,917505,3342339,4194307,6094851,20840452,21495814,22085633,23855105,26214405,26411011,27066371,28639236,28901381,29753350,31326211,32964611,36634627,38207489,42139649,42795009,42860545,43450369,44171265,44826625,44892161,45744129,46268417,46727170,47382529,47906817,48627713,49086466,49283074,49807361,50397186,50987010,51183618,51707905,52559874,54263812,55050244,55312386,55771137,56033281,56295426,57016324],"progress":[47775745,52363265],"programmatic":[3211272,3801096,5046280,5242888,5505032,5570568,5832712,6094856,6553608,7733249,11206657,11993090,12255234,12910594,12976130,13107202,13369346,13697026,14286850,17891330,17956866,19070978,19136514,21626882,21692418,22216706,22282242,31784962,31981570,32440324,32571394,32768001,32899073,33423362,37093380,38076417,38535172,39124993,39321604,40304641,41025537,54263816,56492041,56950792,57344009,57475080,57868296,58261513,58392585,58458120],"pass":[8060929,9043969,12517377,52625409],"parser":[54722564],"profil":[31326209,42860549,44040193,48627713,49283073,49807361,50987009,51183617,51707905,55050245,55771137,56295425],"private":[52494337],"ptr":[14548993,15400961,15597569,16318465],"periodically":[43384833,45547521],"past":[50397185,50987009,51183617],"part":[41943041,43843585],"particularly":[39714817,45875201],"propert":[53936129,54394881],"propertychangedeventargs":[786434],"protected":[5767171,6225923,6488067,18481156,18874371,19202051,20905987,21823491,27918339,28114948,29360132,31784963,31981571,32571395,32768003,32899075,33423363],"procedure":[3211265,3801089,5046273,5242881,5505025,5570561,5832705,6094849,6553601,13631490,20250626,54263809,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"propertychanged":[65537,262145,786438,55574529,56754177],"paths":[36175873,36700161,38010881,49217537,54984705,55902209],"precedence":[5439489,6029313,6815745,7536641,44367873,49938433],"privateaccess":[54657025],"property":[65537,262146,786435,2162694,2228230,2293766,2424834,2555910,2686983,2752518,2949126,3014662,3604486,3866632,3932166,4259846,4980742,6881283,7208965,7471105,7798789,8323078,8388609,8716293,8978438,9371653,9764865,9830401,11599873,12058627,12320769,13238276,13762565,14090244,14221316,14417924,14811140,15204357,15532033,15925250,16252932,16384002,16646148,16842756,17498117,18153477,18939910,19464194,20185090,20643844,21102597,21299204,21954564,22544389,24248324,25165828,31457283,32047107,32636931,34668547,34799619,34865156,35192835,35258371,35389443,36372485,36765700,37158917,37224452,37421060,37552132,37814277,38010885,38141954,38207490,38273028,38404102,38469636,38797319,38993924,39059459,39190534,39256069,39452676,39518211,39583748,39714821,39780356,39845892,39976964,40042498,40108035,40239108,40370180,40435716,40501250,40566788,40632323,40697860,40763397,40894469,41091076,41156612,41222148,41353220,41418756,41484292,41549828,41615364,41680900,41811975,41943045,42008580,42074117,42139652,42205188,42270724,42336260,42598404,42532866,42663942,42729477,42795013,42991620,43057157,43122692,43188228,43253764,43319300,43384836,43450372,43515908,43646980,43712516,43778054,43843589,43909125,43974660,44105735,44171268,44236802,44302340,44367878,44433413,44498948,44564484,44695556,44761093,44892164,44957701,45023236,45088773,45154308,45219845,45285380,45350916,45416453,45481988,45547524,45613060,45678598,45744133,45809670,45875205,45940740,46006276,46071812,46137350,46202884,46268420,46333958,46399495,46465028,46530567,46596100,46661637,46727172,46792708,46858245,46923782,46989319,47054854,47120388,47185922,47251462,47316996,47382532,47448069,47513604,47579142,47644677,47710213,47775749,47841287,47906820,47972356,48037894,48103429,48168965,48234500,48300036,48365572,48431108,48496644,48562181,48627716,48693252,48758788,48824322,48889862,48955396,49020933,49086469,49152004,49217540,49283077,49348614,49479685,49610757,49676293,49741828,49807364,49872901,49938438,50003973,50069509,50135044,50200580,50266117,50331650,50397188,50462725,50528261,50593796,50659334,50724871,50855940,50921476,50987012,51052549,51118085,51183620,51249162,51314692,51380231,51445764,51511301,51576837,51642373,51707908,51773446,51838982,51904516,51970052,52035588,52101126,52297733,52363269,52428804,52494341,52559877,52625410,52690948,52887557,52822026,52953093,53084164,53149700,53215236,53280780,53346309,53411845,53542917,53608452,53673989,53739524,53805060,53936135,54132746,54263810,54329350,54394886,54525953,54919170,55574542,56164354,56426500,56492034,56754190,56950786,57147402,57344002,57409546,57475074,57606154,57802762,57868290,58064900,58130442,58195970,58261506,58392578,58458114]} \ No newline at end of file +{"process":[19595265,26869761,28311553,32768001,45547521,47775746,49414146,50069505,50855937,54198273,55902210,56229889],"precedence":[5439489,5505025,5701633,6225921,41484289,42926081],"parameters":[4521985,4587521,4653058,5111809,5177345,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5898242,6225921,6488065,6553601,6619137,6750209,6815745,6881281,6946817,7012354,7208961,7274498,7340033,7471105,7536642,7602177,7667715,7733249,7798786,7864321,7929858,7995394,8060929,8126466,8192001,8257539,8323073,8388610,8454145,8519681,8650754,8716289,8847361,8912897,8978434,9043969,9109505,9175041,9240578,9371649,9437185,9502722,9568257,9633793,9699329,9764866,9830401,9961474,10027009,10092546,10158081,10223618,10289153,10354689,10420225,10485761,10551298,10616833,10682369,10813441,10878978,10944513,11010049,11075586,11141122,11206657,11272193,11337729,11403265,11468801,11534337,11599874,11665409,11730945,11796481,11862017,11927554,11993090,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517378,12582913,12713986,12779521,12845058,12910593,12976130,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565954,13631490,13697026,13762561,13828097,13893634,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483458,14548993,14680065,14745602,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335426,15400961,15532034,15597570,15663105,15728641,15794177,15925249,15990785,16056322,16121857,16187393,16318465,16384001,16580609,16646145,16711681,16777218,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17694721,17760258,17825794,17891329,17956865,18153473,18219009,18284545,18350081,18415617,18481154,18546689,18612225,18677762,18808833,18874369,19005441,19070977,19136513,19202049,19267585,19398657,19464193,19529730,19595265,19660801,19726337,19791873,19857409,20054017,20185089,20250625,20316161,20381698,20447233,20512769,20643841,20709377,20774913,20840449,20971521,21037057,21102593,21168130,21233666,21299201,21364737,21430273,21561345,21626881,21692417,21757953,21889025,21954561,22020097,22085633,22151170,22216705,22282241,22347777,22413313,22478850,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265282,23330818,23396353,23461889,23527425,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24444930,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427970,25493505,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26869761,27000833,27066369,27131905,27197441,27262977,27459585,27787266,27852801,27918337,27983873,28049409,28180481,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28966913,29097986,29163521,29229057,29294593,29360129,29425665,29491201,29622273,29687809,29818881,29884417,29949953,30015489,30343169,30474241,30539777,30867457,31129601,31522817,31653889,32309249,32505857,32702465,32768001,39583745,39976961,42532865,42860545,44892161,46530561,48562177,49676289,49872897,50528257,50855937,51642369,52035585,52101121,52297729,52494337,52625409,52690945,52953089,53084161,53149697,53870593,53805057,54198273,54394881,54853633,54984706,55115777,55181313,55640065,55836673,56229889,56623105,57081857],"propertynames":[33751041,34013185,34340865,34471937,35061761,35389441,35848193,35979265,36700161,41091076,44367877,49152001,49676289,50200577,51183617,52756481,57606145,58130433,58327041,59047937],"populate":[6815745,7667713,8257537,8978433,10223617,18219009,20250625],"place":[14090241,19660801,50790401],"propertychangedeventargs":[196610],"progress":[45547521,50069505],"persists":[655361],"protected":[5242883,5767171,6160387,17104899,18350084,18743299,18808835,19398659,22085635,25296900,29491203,30867459,31522819,32505859,52035587,53805059,55836676],"patching":[50659331],"public":[196611,458755,720899,786435,851971,917507,983043,1048579,4456451,4521987,4587523,4653059,4915203,4980739,5046275,5111811,5177347,5308419,5373955,5439491,5505027,5570563,5636099,5701635,5832707,5898243,5963779,6094851,6225923,6488067,6553603,6619139,6750211,6815747,6881283,6946819,7012355,7208963,7274499,7340035,7405571,7471107,7536643,7602179,7667715,7733251,7798787,7864323,7929859,7995395,8060931,8126467,8192003,8257539,8323075,8388611,8454147,8519683,8585219,8650755,8716291,8847363,8912899,8978435,9043971,9109507,9175043,9240579,9371651,9437187,9502723,9568259,9633795,9699331,9764867,9830403,9895939,9961475,10027011,10092547,10158083,10223619,10289155,10354691,10420227,10485763,10551299,10616835,10747907,10813443,10878979,10944515,11010051,11075587,11141123,11206659,11272195,11337731,11599875,11796483,11862019,11927555,11993091,12058627,12124163,12517379,12648451,14942211,15728643,15794179,15859715,15925251,15990787,16056323,16187395,16449539,16515075,16580611,16646147,16711683,16777219,16973827,17039363,17235971,17301507,17367043,17432579,17498115,17629187,17694723,17760259,17956867,18087939,18153475,18219011,18284547,18350081,18415619,18481155,18546691,18677763,18874371,18939907,19005443,19070979,19136515,19202051,19267587,19333123,19529731,19595267,19660803,19726339,19791875,19857411,19922947,19988483,20054019,20119555,20185091,20250627,20316163,20381699,20447235,20512771,20578307,20643843,20709379,20774915,20840451,20905987,20971523,21037059,21102595,21168131,21233667,21299203,21364739,21430275,21495811,21561347,21626883,21692419,21757955,21823491,21889027,21954563,22020099,22151171,22216707,22282243,22347779,22413315,22478851,22544387,22609923,22675459,22740995,22806531,22872067,22937603,23003139,23068675,23134211,23199747,23265283,23330819,23396355,23461891,23527427,23592963,23658499,23724035,23789571,23855107,23920643,23986179,24051715,24117251,24182787,24248323,24313859,24379395,24444931,24510467,24576003,24641539,24707075,24772611,24838147,24903683,24969219,25034755,25100291,25165827,25231363,25296897,25362435,25427971,25493507,25559043,25624579,25690115,25755651,25821187,25886723,25952259,26017795,26083331,26148867,26214403,26279939,26345475,26411011,26476547,26542083,26607619,26673155,26738691,26804227,26869763,26935299,27000835,27066371,27131907,27197443,27262979,27328515,27459587,27525123,27590659,27656195,27787267,27852803,27918339,27983875,28114947,28049411,28180483,28246019,28311555,28442627,28508163,28573699,28639235,28704771,28770307,28835843,28901379,28966915,29032451,29163523,29229059,29294595,29360131,29425667,29556739,29622275,29687811,29753347,29818883,29884419,29949955,30015491,30343171,30474243,30539779,31129603,31653891,31784963,32309251,32702467,32768003,36110339,36175875,36241411,36306947,36372483,36503555,36634627,36831235,36962307,37027843,37093379,37158915,37421059,37748739,37814275,37879811,38141955,38404099,38469635,38666243,38797315,39387139,40173571,40239107,40435715,40501251,40697859,40763395,40828931,40960003,41156611,41287683,41353219,41418755,41549827,41746435,41811971,41877507,42008579,42074115,42139651,42205187,42270723,42401795,42467331,42532867,42598403,42663939,42729475,42795011,42860547,42926083,42991619,43057155,43122691,43188227,43253763,43319299,43384835,43450371,43515907,43581443,43646979,43712515,43778051,43843587,43909123,43974659,44040195,44105731,44171267,44236803,44302339,44367875,44433411,44498947,44564483,44630019,44695555,44761091,44826627,44892163,44957699,45023235,45088771,45154307,45219843,45285379,45350915,45416451,45481987,45547523,45613059,45678595,45744131,45809667,45875203,45940739,46006275,46071811,46137347,46202883,46268419,46333955,46399491,46465027,46530563,46596099,46661635,46727171,46792707,46858243,46923779,46989315,47054851,47120387,47185923,47251459,47316995,47382531,47448067,47513603,47579139,47644675,47710211,47775747,47841283,47906819,48037891,48103428,48168963,48234499,48300035,48365571,48431107,48496643,48562180,48627715,48693251,48758787,48824323,48889859,48955395,49020932,49086467,49152003,49217539,49283075,49348611,49414147,49479683,49545220,49610755,49676291,49741828,49807363,49872900,49938435,50069507,50135043,50200579,50266116,50331651,50397188,50462723,50528259,50593795,50659331,50724867,50790403,50921475,50987012,51052547,51118083,51183619,51314691,51445763,51511299,51642371,51707907,51773443,51838979,51904515,51970051,52101123,52166659,52297731,52363267,52494339,52559876,52690947,52756483,52953091,53018627,53084163,53149699,53411843,53477379,53542915,53673987,53870595,53936131,54067203,54198275,54263811,54329348,54394883,54460419,54591491,54722563,54788099,54853635,54984707,55115779,55181315,55246851,55312387,55508995,55640067,55836673,55902211,56033284,56164355,56229891,56492035,56623107,56754179,56819715,57016323,57081859,57344004,57606147,57737220,57868291,57933827,57999364,58130435,58195971,58327043,58392579,58458116,58523651,58589188,58654723,58720260,58785796,58851332,58916867,58982404,59047940,59113476,59179012],"particularly":[39649281,44695553],"path":[8192001,8388610,37158913,40173569,49479684],"programming":[7208961,7274497,7733249,7929857,8454145,9371649,14942209,15728641,15794177,16056321,16646145,16777217,16973825,17301505,17432577,17760257,18677761],"propertyindices":[33751041,34013185,34340865,34471937,35061761,35389441,35848193,35979265,36700161,40304644,43581445,49152001,49676289,50200577,51183617,52756481,57606145,58130433,58327041,59047937],"polluting":[36831233,36962305],"periodically":[39059457,45678593],"previously":[4849670,6684678,23920641,24313857,25165825,25624577,26476545,27131905,27918337,28049409,28704769,29425665,31129601,31653889,51970054,55574531,56426499,57802755,58064899,58458118],"pending":[6684673,27590657,58458113],"properties":[2162689,3080193,6946818,7602177,7864322,7995393,8126465,8323073,8519681,8585217,8912897,8978433,9043970,9175041,9568257,9830401,10354689,10616833,10682369,11468801,11534337,11665409,11730945,12189697,12255233,12320769,12386305,12451841,12713986,12779521,12845057,12976130,13041665,13107201,13369345,13565953,13631490,13697026,13959169,14090244,14155777,14483458,14680065,14745602,15335426,15532034,15597570,16515073,16580609,17039361,17498113,18153473,18284545,18415617,18481154,19005441,19267585,19529730,19660804,19791873,20381698,20447233,20512769,20840449,21168130,21233666,21364737,21757953,22151170,22347777,22478849,22675457,23068673,23265281,23330818,24444930,25427970,33488898,33554434,33619970,33751042,33882114,33947650,34013186,34144258,34209794,34275330,34340866,34406402,34471938,34537474,34603010,34668546,34734082,34799618,34865154,34930690,34996226,35061762,35127298,35192834,35258370,35323906,35389442,35454978,35520514,35586050,35651586,35717122,35782658,35848194,35913730,35979266,36044802,36438018,36569090,36700162,36765698,36831233,36896770,36962305,37617666,38338562,39190529,39321602,39649282,41025538,43712513,44695554,46530561,47185921,47644673,47906817,48103425,48496641,48824321,48955393,49020929,49086465,49152002,49545218,49676289,49741825,50135041,50200577,50266113,51183617,51445762,51707905,51773441,51904514,51970049,52232194,52363268,52494337,52756482,52822018,53411841,53477377,54263809,54329345,55246849,55312385,55771139,56033281,56164353,56295426,56754177,56885249,57016322,57344002,57606145,57737217,57868289,57933826,57999361,58130433,58195969,58327041,58458113,58523649,58589185,58720257,58785793,58851330,58982401,59047937,59113474,59179009],"profile":[720897,786433,3932163,4849667,6684675,22544387,23199747,24248324,24903686,25493509,25559041,25690116,26411014,28114945,28573701,34799617,35782657,36569089,42991617,43253762,43515905,43909121,44171266,44433409,44498945,44957697,45154306,45219841,45481985,45744130,45809665,46465026,46596097,47054850,47316993,48037889,48365570,51707908,51970052,52166658,53477377,54460417,54919171,55312386,56885251,57540611,58458116],"procedure":[3145729,4259841,6029313,6291457,6356993,6422529,6684673,8781825,9306113,13172738,21037058,54329345,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"passed":[7667713,8978434,9240577,9764865,9961473,10092545,10354689,10551297,10878977,11075585,11141121,11599873,11927553,11993089,12517377,50659329,58654721],"promis":[16973825],"performs":[2031617,2228225,2293761,2359297,2752513,2818049,3014657,3145730,3211265,3604481,4128769,4259843,4784129,4849666,6029315,6291459,6356995,6422531,6684675,8781827,9109505,9306115,10354689,14221313,18743297,19988481,21430273,23855105,24379393,27656193,28770305,30408705,31981569,49152001,49676289,49938433,50200577,50462721,51183617,51970050,52559873,52756481,54329347,55115777,55508993,56164354,57147393,57606145,57737219,57999363,58130433,58261505,58327041,58458115,58523651,58589187,58982403,59047937,59179011],"profiles":[4849665,6684673,24248321,24903681,25559041,25690113,26411009,28114945,47054849,48365569,51970049,58458113],"prevent":[47775745,49414145],"post":[55902209],"port":[4849666,23789570,24641538,24707076,24838146,26148866,26279938,26345474,26738690,27197444,27852802,27983874,29294594,51970054,55377924,56688642,57278468,58458116],"policy":[46333953,46923777,55902209],"point":[9502721,34275329,35127297,36569089,36765697,36896769,37617665,38338561,38535170,39321601,41025537,43384834,54329345,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"progid":[3145736,4259848,6029320,6291464,6357000,6422536,6684680,6815751,8192007,8781832,9306120,11534344,11730952,12255240,12320776,12386312,12779528,13041672,14155784,16580617,18284553,19005449,19267593,19791881,20512777,22675465,23068681,29491207,30867463,31195140,31260676,31522823,32112644,32178180,32505863,52035591,53805063,54329352,56164360,57737224,57999368,58458120,58523656,58589192,58982408,59179016],"particular":[2686977,12845057,13565953,22478849,23265281,52363265],"paths":[33488897,36438017,37158913,40173569,48824321,51904513],"presentation":[16121857,16384001,16842753,17170433,18808833,19398657,23724033,24051713,24576001,24838145,25034753,25231361,25755649,25821185,26148865,26214401,26279937,26345473,26542081,26673153,26738689,27197441,27918337,28835841,28966913,29360129,29491201,29818881,29884417,29949953,30015489,30343169,30867457,31129601,31522817,32309249,32505857,52035585,52690945,52953089,53149697,53870593,53805057,54853633,55640065],"perform":[1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1966081,2097153,2162689,2424833,2621441,2883585,2949121,3014657,3080193,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3866625,3932161,3997697,4063233,4128769,4325377,4390913,4718593,4849665,6881281,7077889,9109505,14221313,21430273,23855105,28770305,38862849,39845889,43646977,44236801,47644673,48168961,48103425,48234497,48562177,48758785,48824321,48955393,49020929,49217537,49545217,49741825,49872897,50135041,50266113,50331649,50397185,50462721,50790403,51118081,51707905,51773441,51970049,52559873,53084161,53411841,53477377,53936129,54460417,55115777,55246849,55312385,56033281,56754177,57344001,57933825,58392577,58654721,58720257,58851329,58916865,59047937,59113473],"processing":[55902209],"proc":[3014657,3604481,10223622,50462721,52559873],"ptr":[13893633,15400961,16908289,17825793],"params":[6619137,7471105,7864321,7995393,8126465,8323073,8388609,8847361,9043969,9109505,9830401,10027009,10158081,10289153,10485761,10813441,10944513,11337729,12058625,12713985,12976129,13172737,13238273,13631489,13697025,13828097,14024705,14417921,14745601,15269889,18481153,19529729,21037057,21626881,22151169,22282241,23003137,23330817,23527425,24444929,39583745,42860545,52297729],"programmatic":[3145736,4259848,6029320,6291464,6357000,6422536,6684680,6815745,8192001,8781832,9306120,11534338,11730946,12255234,12320770,12386306,12779522,13041666,14155778,16580610,18284546,19005442,19267586,19791874,20512770,22675458,23068674,29491202,30867458,31195140,31260676,31522818,32112644,32178180,32505857,52035585,53805058,54329353,56098817,56164360,56950785,57409537,57671681,57737224,57999369,58458120,58523656,58589193,58982409,59179016],"physical":[35913729,47251458,55246849],"private":[36110337],"promises":[50790402],"privateaccess":[50987009],"propert":[47906817,48496641],"propertychanged":[196614,34078721,49545217,51576833,57933825],"propagation":[35782657,36569089,47710210,49348610,51970049,58458113],"performance":[4653057,26017793,47972353,50397185,50790401,55771137,56885249],"parser":[50724868],"protocol":[22544385,23199745],"packages":[9240577,9764865,9961473,10092545,10551297,10878977,11075585,11141121,11599873,11927553,11993089,12517377],"promise":[2490377,15728644,15794181,16056325,16646149,16777220,16973831,17432580,17760261,18677764,32374793,50593801,50790401,53542914,55902209],"populates":[2555905,4718593,18219009,20250625,58720257,58785793],"possibilities":[41484289,42926081],"propertychangedeventhandler":[196616],"pass":[7536641,8257537,10223617,50659329],"provides":[2424845,4128781,4784129,9109505,14090241,16384001,19660801,24051713,34537473,34734081,37879809,43057153,46530561,48955394,49020929,49217537,49741826,50397197,50462721,51118081,51838977,52559873,53346305,53936129,55771147,57212929,57475074,57737217,57933825,58327041,58392577,58523649,59047950,59179009],"processed":[47710209,49348609],"page":[655361,33095684],"processes":[22872065,23658497,25362433,26083329,26607617,27459585,28180481,28835841,29163521,30539777,32309249,32702465],"possible":[16384001,24051713,50987009],"parent":[6619137,7012353,7471105,47710209,49348609,49545217],"propertybag":[196609,2162702,3080201,8585221,11862021,15925256,15990786,16515074,16711687,17235971,17367046,17956866,18546690,19136514,20185090,20578310,33226761,33882120,34078721,34209798,40501250,41353218,41549826,42532866,49545244,51576834,55771137,57933849],"permitted":[34275329,35127297,35782657,36569090,36765697,36896769,37617665,38273026,38338561,39321601,39649281,41025537,44695553,44826626,45547521,50069505,51970049,54329345,56164353,57737217,57999361,58458114,58523649,58589185,58982401,59179009],"platforms":[41746433],"preventing":[55902210],"passing":[8978433,9240577,9764865,9961473,10092545,10551297,10878977,11075585,11141121,11599873,11927553,11993089,12517377,13893633,15400961,16908289,17825793,53084161],"present":[15073281,15204353,16121857,16384001,16842753,17170433,22740993,22806529,23724033,24051713,24576001,50921473,51052545,52690945],"paramarray":[6619137,7471105,7864321,7995393,8126465,8323073,8388609,8847361,9043969,9109505,9830401,10027009,10158081,10289153,10485761,10813441,10944513,11337729,12058625,12713985,12976129,13172737,13238273,13631489,13697025,13828097,14024705,14417921,14745601,15269889,18481153,19529729,21037057,21626881,22151169,22282241,23003137,23330817,23527425,24444929,39583745,42860545,52297729],"profiler":[720897,46596097,54460417,56885249],"past":[45154305,45744129,46465025],"part":[37486593,43843585],"platform":[15794177,16056321,17432577,18677761,41746433],"property":[196611,2031622,2162694,2228230,2293766,2359302,2424834,2752518,2818054,3014662,3080199,3211270,3604486,4128776,4784134,6619139,7471107,7602181,7667713,8060929,8519685,8585217,8912902,8978433,9175045,9568261,10616838,11272193,12124161,13238277,13303812,13762564,14024709,14090244,14352388,15138820,15925250,15990788,16515073,16711682,17235972,17367042,17956868,18546693,19136517,19726340,19660804,20185094,20578306,20643844,21626885,24117252,30081027,30146563,30605315,31391747,31588355,31719427,32047107,33226755,33751044,33882116,34013188,34078721,34209797,34275330,34340868,34471940,35061764,35127298,35389444,35848196,35979268,36110341,36175877,36241412,36306948,36372484,36503556,36569090,36634628,36700164,36831237,36765698,36896770,36962309,37027845,37093382,37158916,37224452,37289988,37355524,37421060,37486597,37552133,37617666,37683204,37748740,37814276,37879812,37945348,38010884,38076420,38141956,38207493,38273029,38338562,38404101,38469636,38535174,38600708,38666245,38731780,38797316,38862855,38928388,38993927,39059460,39124997,39190533,39256068,39321602,39387140,39452676,39518213,39583751,39649285,39714820,39780356,39845893,39911431,39976966,40042500,40108037,40173573,40239108,40304646,40370180,40435716,40501254,40566788,40632324,40697860,40763396,40828932,40894470,40960007,41025538,41091078,41156612,41222148,41287685,41353222,41418756,41484294,41549830,41615364,41680901,41746437,41811973,41877508,41943044,42008580,42074116,42139652,42205191,42270726,42336260,42401796,42467332,42532871,42598404,42663940,42729477,42795012,42860551,42926086,42991620,43057157,43122692,43188229,43253764,43319301,43384838,43450373,43515908,43581446,43646983,43712517,43778053,43843589,43909124,43974660,44040196,44105732,44171269,44236805,44302340,44367878,44433413,44498948,44564485,44630020,44695557,44761092,44826629,44892166,44957700,45023237,45088772,45154308,45219844,45285380,45350916,45416453,45481988,45547525,45613061,45678596,45744132,45809668,45875205,45940742,46006276,46071813,46137349,46202884,46268420,46333956,46399494,46465028,46596100,46661636,46727173,46792709,46858244,46923780,46989316,47054853,47185925,47251460,47316997,47382532,47448069,47513604,47579140,47710213,47775750,47841284,47906823,48037892,48234501,48300037,48365573,48496646,48627716,48693252,48758789,48889860,49086469,49152010,49283076,49348613,49414150,49545230,49610756,49676298,49807365,50003972,50069509,50200586,50397186,50462726,50528257,50659330,50790402,51183626,51576834,51642372,52297733,52559878,52756490,52887555,53280771,53739523,54132739,54329346,56164354,57344004,57606154,57737218,57933838,57999362,58130442,58327050,58458114,58523650,58589186,58851332,58916866,58982402,59047948,59113476,59179010],"pairs":[34930689,58720257],"provider":[7602177,8912897,9109505,9175041],"provide":[2424833,4128769,6619137,7471105,26017793,34275329,34930689,35127297,36569089,36765697,36896769,37617665,38338561,38928385,39321601,41025537,41746433,42008577,47972356,49545217,50397185,54329345,56164353,56295425,56885249,57212929,57475073,57737217,57999361,58458113,58523649,58589185,58720257,58982401,59047937,59179009],"provided":[2686977,7602177,8126465,8519681,8585217,8847361,8912897,9109505,9175041,9568257,9830401,10027009,10616833,10944513,52363265],"predicate":[2162690,10420230,10485766,11337734,11796486,30670850,30932994,49545220],"profil":[34799621,34865153,42991617,44171265,44957697,45154305,45481985,46465025,51707909,53477377,55312385,56885249],"pause":[50790401,50921473],"predate":[45350913,46268417,46858241,47579137],"parameter":[7208961,7274497,7733249,7929857,8454145,8978433,9240577,9371649,9764865,9961473,10092545,10551297,10878977,11075585,11141121,11599873,11927553,11993089,12517377,14942209,15728641,15794177,16056321,16646145,16777217,16973825,17301505,17432577,17760257,18350081,18677761,25296897,55836673],"prepared":[36110337]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_113.json b/docs/Reference/fti/FTI_113.json index d5bb7138b..a0bb795a0 100644 --- a/docs/Reference/fti/FTI_113.json +++ b/docs/Reference/fti/FTI_113.json @@ -1 +1 @@ -{"qux":[9764865],"qualified":[1572865,3407873,7077889,8585217,10354689,10944513,11599873,12320769,13565953,14155777,14614529,15269889,16777217,17825793,19791873,21037057,55246849,56033281]} \ No newline at end of file +{"qux":[8978433],"qualified":[1376257,4063233,7864321,9043969,10158081,10813441,11272193,12124161,12976129,13631489,13697025,14745601,18481153,19529729,23330817,24444929,51773441,54460417]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_114.json b/docs/Reference/fti/FTI_114.json index 535e66d6a..248e4e639 100644 --- a/docs/Reference/fti/FTI_114.json +++ b/docs/Reference/fti/FTI_114.json @@ -1 +1 @@ -{"rank":[10289159],"response":[31326209,38207489,44826625,46071809,53215233,54263809,57016321,57671681],"requesting":[5636097,6160385,6946817],"recompilation":[4194310,6094854,22806530,23592962,24772610,24903683,25100289,25493505,25952258,26542081,26607618,26673154,27394051,27787266,28246018,28966913,30081027,30801922,30867457,31326209,31850497,33685507,34144259,34406403,37683203,52232193,54263814,54722562,57016326],"range":[6881281,7077889,9830401,12058625,14548993,15400961,15597569,16318465],"restore":[46858241,50003969],"recommended":[38141953,38207489,40042497,40501249,41156609,42532865,44236801,46333953,46792705,47185921,47841281,48824321,49020929,49348609,49676289,50331649,50462721,50724865,51642369,52953089,53346305,54263809,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"readonly":[655362,851970,983042,1048578,36372481,36765697,37224449,37552129,38273025,38404097,38993921,39190529,39583745,39780353,39845889,39976961,40239105,40435713,40566785,40697857,41091073,41156609,41222145,41353217,41484289,41549825,42008577,42139649,42205185,42270721,42598401,42663937,42795009,42991617,43057153,43122689,43188225,43450369,43515905,43646977,43909121,44171265,44302337,44498945,44892161,45023233,45088769,45154305,45678593,45744129,46006273,46137345,46268417,46596097,46792705,46923777,47251457,47513601,47579137,47906817,48037889,48234497,48365569,48431105,48562177,48627713,48758785,48955393,49020929,49152001,49283073,49479681,49676289,49741825,49807361,50069505,50135041,50200577,50266113,50397185,50462721,50528257,50593793,50921473,50987009,51052545,51183617,51445761,51511297,51707905,51904513,51970049,52035585,52428801,52690945,52953089,53149697,53346305,53608449,53673985,53739521,55836673,56885249],"removepropertynocheck":[2686977,3932161,17498116,20185089,55574529,56754177],"resourc":[54657027],"releasing":[2162689,2228225,2293761,2555905,2752513,2949121,3211265,3604481,3801089,3866625,4194305,4259841,5046273,5242881,5505025,5570561,5832705,6094849,6553601,17760257,21364737,25690113,34471937,34734081,39649281,51249153,52822017,53280769,54132737,54263809,56492033,56950785,57016321,57147393,57344001,57409537,57475073,57606145,57802753,57868289,58130433,58261505,58392577,58458113],"regardless":[10682369,53936130,54394881],"relative":[50397186,50987010,51183618,53477377],"registered":[3211280,3801104,5046288,5242896,5505040,5570576,5832720,6094864,6553616,7733249,10616834,11206657,11468802,11534338,11730946,11796482,11993090,12189698,12255234,12386306,12582914,12910594,12976130,13107202,13369346,13697026,14286850,16056322,16187394,16973826,17039362,17956866,17891330,19070978,19136514,19857410,19922946,20709378,20774914,21626882,21692418,22216706,22282242,32440328,37093384,38535176,39321608,54263824,56492048,56950800,57344016,57475088,57868304,58261520,58392592,58458128],"reclaimed":[1179649,1245185,1310721,1376257,1441793,1572865,1507329,1638401,1703937,1769473,1835009,1900545,2097153,2359297,2424833,2686977,2818049,2883585,3014657,3080193,3276801,3342337,3407873,3473409,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4325377,4456449,4521985,4980737,5046273,5242881,5505025,5570561,5832705,6094849,6553601,6750209,27918337,49414145,49545217,50790401,52101121,52166657,52232193,53018625,53280769,53805057,54001665,54067201,54263809,54329345,54460417,55050241,55246849,55508993,55574529,55705601,55771137,55836673,55902209,55967745,56033281,56164353,56295425,56360961,56426497,56492033,56623105,56688641,56754177,56819713,57016321,57212929,57344001,57475073,57540609,57737217,57868289,58064897,58261505,58327041,58392577,58458113],"runtim":[6094849,28442625,38207490,43778049,44826627,46071809,47054850,51838978,53084161,53215233,54263811,57016323],"removing":[42074113,47644673,53542913],"returned":[14024707,22413315,52625409],"readbytes":[2228225,2293761,2555905,2752513,2949121,16121860,17301508,52822017,54132737,57409537,57606145,57802753],"runaway":[51642369],"relevant":[9175041],"representing":[8454145,9109505],"runtimeheapsizesampleinterval":[38207489,52887556,54263809],"remainder":[29163521,34275329],"resource":[1179649,6291465,23199746,24182786,25034754,25821186,26804226,27197442,27656194,27852802,27983874,29622274,30474242,31326209,31391746,36110342,36896774,47054849,49414145,51838977,54263814,54919169,57016326,57212929],"rejected":[44105729,44433409,46989313,55967745,56426497,56885249],"represents":[720897,1179649,1245185,1310721,1376257,1441793,1507329,1638401,1703937,1769473,1835009,1900545,2097153,2359297,2424833,2621441,2686977,2818049,2883585,3014657,3080193,3276801,3342337,3473409,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4325377,4456449,4521985,4980737,5046273,5242881,5505025,5570561,5636098,5832705,6094849,6160385,6422529,6553601,6684673,6750209,6881281,6946818,10223617,12058625,14024705,15663105,15990785,16515073,16711681,17367041,17563649,17694722,18219009,18546689,19660801,20578306,22413313,25886722,29229058,31326215,32243716,32833539,33292290,33947649,34537487,35586052,38993921,39387137,40173569,40960001,41484289,41549825,44892161,49414146,49545218,50790401,51249153,52101121,52166657,52232194,53018625,53280769,53805057,54001666,54067201,54132737,54198273,54263810,54329345,54460418,54525953,54919169,55050242,55443457,55508994,55574531,55640065,55705602,55771138,55836673,55902210,55967745,56033281,56098817,56164353,56295426,56360961,56426497,56492034,56623106,56688641,56754177,56819713,56950785,57016322,57081857,57147393,57212929,57344002,57409537,57475073,57540609,57737218,57802753,57933826,57868289,58064897,58130433,58261506,58327042,58392578,58458113],"retrieval":[11927553,13762561,22544385],"resumed":[47775745,52363265],"resumes":[6094849,30343169,54263809],"running":[2031622,2490376,7012353,7274497,7340033,7602177,7864321,8519681,15663105,15990785,16515073,16711681,17367041,17563649,18219009,18546689,30998530,31653892,34603016,41943041,42729473,43843585,44761089,47841281,48889857,50724865,51773441,52756486,54591496],"referenced":[4980737,9175041,52101121],"required":[5636097,6160385,6946817,9830401,14090241,16646145,56492033,57344001,57868289],"removal":[7471105],"requests":[5636097,6160385,6946817],"reduces":[48889857,51773441],"representation":[3211265,3342338,3801089,5046273,5242881,5505025,5570561,5832705,6094849,6553601,14024705,15466497,18677761,22413313,26411010,27066369,27131905,30212097,34537473,39387137,46333953,49348609,53018625,54263809,55050242,56492033,56950785,57344001,57475073,57737217,57868289,58261505,58392577,58458113],"runtime":[2424833,3866625,4194305,4456449,6094850,7143425,8126465,8781825,8847361,11599873,12320769,14090241,16646145,20840449,21495809,22085633,22675457,22937603,23199745,23461889,23527425,23724033,23855105,24182785,24313859,24444929,25034753,25231363,25821185,26083329,26148865,26476547,26804226,26935297,27000833,27197441,27656194,27721731,27852802,27983873,28311553,28442625,29032449,29097985,29622274,29818881,30408705,30474242,31326213,31391746,35127297,36110348,38207490,43778049,44826626,47054850,47775746,47841281,48234497,49086465,49872899,50724865,51838979,52363268,52494337,52559873,52887553,53215233,53280769,53411842,53542913,54263812,56164353,57016336,57212930,57278465,57540609,57671683,57737217],"reserved":[65537,131073,196609,262145,327681,393217,458753,524289,655361,720897,786433,851969,917505,983041,1048577,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6619137,6553601,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17956865,17891329,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22872065,22806529,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34996225,34930689,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38273025,38207489,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40632321,40566785,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42598401,42532865,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49479681,49414145,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52887553,52822017,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57933825,57868289,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113],"replaced":[65537,262145,786433,55574529,56754177],"refers":[7077889,7667713,8585217],"representative":[9175041],"relaxes":[53477377],"recently":[26214401,28901377],"reclaims":[43778049],"release":[18481154,28114946,28508161,29360130,54919169,57278465],"related":[38010881,56557569],"rights":[65537,131073,196609,262145,327681,393217,458753,524289,655361,720897,786433,851969,917505,983041,1048577,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6619137,6553601,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17956865,17891329,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22872065,22806529,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34996225,34930689,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38273025,38207489,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40632321,40566785,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42598401,42532865,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49479681,49414145,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52887553,52822017,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57933825,57868289,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113],"require":[14090242,16646146],"result":[131073,983041,3014657,5636097,6750209,6946817,7405569,7995393,8060932,8192001,8323073,8388609,8650753,8912897,8978433,9240577,9306113,9502721,9568257,9764866,9961473,10027009,10092545,10747905,10813441,11010049,11665409,11862017,12779521,12845058,13828097,14024707,14483457,15073282,15138817,15728642,15990785,16449538,16711681,17235970,17563649,17629186,18087938,18415618,18546689,18743297,19333122,20447234,21168130,22413315,23134209,23265282,23920641,24576001,26017793,28704769,29163522,29229057,29556738,30277634,32178177,33357825,34275330,34537473,38141953,38207489,38797313,40042497,40501249,41811969,42532865,44236801,46333953,47185921,48824321,49348609,49610755,50331649,52297731,54263809,54329345,54919169,55508994,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"ref":[8192001,9175041,9764866,49414145,49545217,50790401,52101121,52166657,52232193,52756481,53018625,53280769,53805057,54001665,54067201,54263809,54329345,54460417,54591489,54984705,55050241,55181313,55377921,55443457,55508993,55574529,55705601,55771137,55836673,55902209,55967745,56164353,56295425,56360961,56426497,56492033,56623105,56688641,56754177,56819713,57016321,57212929,57344001,57475073,57540609,57737217,57868289,57933825,58064897,58261505,58327041,58392577,58458113],"root":[4456449,42860545,43057153,45088769,48562177,48627714,50266113,50528257,51052545,51511297,53477377,53673985,54657025,55050241,57737217],"redirected":[1],"released":[43778049],"results":[11927553,42729473,44761089,47054849,51838977,54722561,58261505,58392577,58458113],"request":[6094849,31064065,54263809],"rethrown":[10682369],"releases":[3801091,4063233,5046275,5242883,5505027,5570563,5832707,6094851,6553603,18481154,27918337,28114946,28508161,29360130,34471938,34734082,39256065,39649282,52232193,54263811,56492035,57344003,57475075,57868291,58261507,58392579,58458115],"relies":[39256065,57671681],"remarks":[720897,4653057,5439489,5636097,5701633,6029313,6160385,6291457,6815745,6881281,6946817,7077889,7143425,7208961,7405569,7471105,7536641,7667713,7733249,7798785,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9240577,9306113,9371649,9502721,9568257,9633793,9764865,9830401,9961473,10027009,10092545,10158081,10616833,10682369,10747905,10813441,11010049,11206657,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13303809,13369345,13434881,13500417,13565953,13697025,13893633,13959169,14024706,14090242,14155777,14286849,14352385,14548993,14614529,14680065,14876673,15007745,15073281,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15728641,15859713,16056321,16187393,16318465,16449537,16580609,16646146,16777217,16973825,17039361,17235969,17367041,17432577,17498113,17563649,17629185,17825793,17891329,17956865,18087937,18153473,18219009,18284545,18415617,18481153,18546689,18612225,18677761,18743297,19005441,19070977,19136513,19267585,19333121,19595265,19791873,19857409,19922945,20185089,20447233,20709377,20774913,20840449,21037057,21102593,21168129,21495809,21626881,21692417,21757953,22020097,22151169,22216705,22282241,22413314,22740993,22806529,22937601,23003137,23265281,23527425,23592961,23789569,23986177,24051713,24313857,24772609,24838145,24903681,24969217,25231361,25362433,25559041,25755649,25886721,25952257,26017793,26083329,26214401,26345473,26411009,26542081,26607617,26673153,26738689,26804226,27000833,27066369,27131905,27262977,27328513,27394049,27459585,27590657,27656194,27721729,27787265,27852802,27918337,28114945,28180481,28246017,28311553,28442625,28508161,28639233,28704769,28901377,28966913,29032449,29097985,29163521,29229057,29360129,29491201,29556737,29622274,29753345,29818881,30081025,30212097,30277633,30343169,30408705,30474242,30801921,31064065,31129601,31391746,31784961,31850497,31981569,32505857,32571393,32768001,32899073,33292289,33357825,33423361,34275329,35979265,36372481,37027841,37814273,38010881,38797313,39256065,39714817,40763393,40894465,41811969,41943041,42074113,42663937,42729473,42795009,43057153,43384833,43450369,43778049,43843585,43909121,44105729,44367873,44433409,44695553,44761089,44892161,44957697,45088769,45219841,45350913,45416449,45547521,45744129,45875201,46137345,46202881,46268417,46333953,46661633,46727169,46858241,46989313,47054849,47120385,47448065,47644673,47710209,47775745,47841281,48103425,48168961,48562177,48889857,49020929,49086465,49283073,49348609,49479681,49610753,49676289,49872897,49938433,50003969,50069505,50266113,50397185,50462721,50528257,50724865,50987009,51052545,51118081,51183617,51511297,51576833,51642369,51773441,51838977,52166657,52297729,52363265,52494337,52559873,52887553,52953089,53346305,53411841,53542913,53673985,53805057,53936129,54132737,54263809,54329345,54394881,54460417,55443457,55508993,55574529,55836673,55902209,55967745,56098817,56426497,56492033,56688641,57344001,57868289,58064897,58261505,58327041,58392577,58458113],"restricted":[7012353,7340033,7602177,8519681,13500417,14352385,16580609,23003137,31653889,32112641,34013185,47841281,50724865,58195969],"represent":[6881282,10616833,11468801,11534337,11730945,11796481,11993089,12058626,12189697,12255233,12386305,12451841,12582913,12648449,12713985,12910593,12976129,13107201,13303809,13369345,13500417,13565953,13697025,14090241,14155777,14286849,14352385,14614529,15007745,15269889,15335425,16056321,16187393,16580609,16646145,16777217,16973825,17039361,17432577,17825793,17891329,17956865,18284545,18612225,19005441,19070977,19136513,19791873,19857409,19922945,20709377,20774913,21037057,21626881,21692417,21757953,22151169,22216705,22282241,23003137,48103425,51118081,54460417,55574530],"return":[4653057,4784129,5111809,5636098,5701633,5898241,6160386,6291457,6422529,6684673,6881281,6946818,7012353,7077890,7143425,7208961,7274497,7340033,7405569,7471105,7602177,7667713,7733249,7798785,7864321,7929858,7995393,8060931,8126465,8192001,8257537,8323073,8388610,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043971,9109505,9175041,9240577,9306113,9371649,9502721,9568257,9633793,9764865,9830401,9961473,10027009,10092545,10158081,10223617,10289153,10682370,10747905,10813441,11010049,11206657,11599873,11665409,11862017,12058625,12320769,12517377,12779521,12845058,13238273,13631490,13762561,13828097,14024706,14221313,14483457,14745601,14811137,15073282,15138817,15400963,15466497,15663105,15728642,15794177,15990785,16121857,16252929,16318467,16449538,16515073,16711681,16842753,16908289,17235970,17301505,17367041,17498113,17563649,17629186,17694721,18022401,18087938,18219009,18415618,18546689,18677761,18743297,18808833,18939905,19333122,19398657,19660801,20250626,20316161,20447234,20578305,20643841,20840449,21168130,21495809,21889025,21954561,22020097,22413314,22544385,22740993,22806529,22937601,23134209,23265282,23330817,23527425,23592961,23789569,23920641,24117249,24248321,24313857,24379393,24576001,24641537,24772609,24903681,24969217,25100289,25231361,25362433,25427969,25493505,25624577,25755649,25886721,25952257,26017794,26214401,26279937,26411009,26476545,26542081,26607617,26673153,26738689,26869761,27000833,27131905,27328513,27394049,27721729,27787265,28246017,28377089,28639233,28704770,28901377,28966913,29163522,29229057,29491201,29556738,29753345,29949953,30081025,30212097,30801921,30867457,31195139,31850497,32505857,33292289,33357826,33882113,33947649,34275330,37027843,38141954,38207490,38797314,40042498,40501250,41811970,42532866,44236802,45809665,46399489,46530561,47185922,47841281,48824322,49020929,49610753,49676289,50069505,50331650,50462721,50659329,50724865,51380225,52297729,52625409,52953089,53346305,54198273,54263810,54525953,55508994,56492034,56950786,57344002,57475074,57868290,58195970,58261506,58392578,58458114],"resolve":[5636097,6160385,6946817],"recursion":[47775745,52363265],"requested":[5636098,6160386,6946818,13959169,14876674,17235969,18087938,19333121,20447234,22020098,22806530,23789569,23986177,24641537,24772609,24838146,24969217,25427970,25952257,26279937,28377090,29491202,30801922,41287681,53477377],"runtimes":[22806529,23592961,24772609,25952257,26607617,26673153,27787265,28246017,30801921],"reside":[54853633],"removeproperty":[3014658,4980738,8716293,9371653,34668546,52101122,54329346],"random":[8847365],"reclaim":[28508161],"requirement":[47841281,50724865,53477377],"reassignment":[47448065,48168961],"rootnode":[42860545,48627716,55050241],"restriction":[2031620,3211266,3801090,5046274,5242882,5505026,5570562,5832706,6094850,6553602,7012354,7340034,7602178,8519682,13500417,14352385,16580609,23003137,31653892,32112642,34013186,38141954,38207490,40042498,40501250,42532866,44236802,46858243,47185922,47841282,48824322,50003971,50331650,50724866,52756484,54263812,56492036,56950788,57344004,57475076,57868292,58261508,58392580,58458116],"reason":[42139650,43581441,55771137],"removeelement":[3014657,4980737,8257540,52101121,54329345],"rely":[48889857,51773441],"resetting":[2162689,2228225,2293761,2555905,2752513,2949121,3211265,3604481,3801089,3866625,4194305,4259841,5046273,5242881,5505025,5570561,5832705,6094849,6553601,17760257,21364737,25690113,34471937,34734081,39649281,51249153,52822017,53280769,54132737,54263809,56492033,56950785,57016321,57147393,57344001,57409537,57475073,57606145,57802753,57868289,58130433,58261505,58392577,58458113],"rejection":[57671681],"replace":[4653064,5701640],"read":[2555905,2686979,3932163,9764867,14090241,15532033,15925249,16121857,16646145,17301505,17498113,18153473,18808837,20185090,38731777,42467329,42926081,49479681,49741825,53018625,54067201,54132737,55574531,56098817,56754179,56885249],"returns":[1179649,1245188,1310721,1376257,1441793,1572866,1507329,1638401,1703937,1769473,1835009,1900545,2097156,2228226,2293762,2359300,2424834,2555906,2621441,2686977,2752514,2818049,2883588,2949122,3014660,3080196,3145729,3276801,3342338,3407874,3473409,3538946,3670017,3735553,3801089,3866626,3932161,3997699,4063233,4128769,4194307,4325380,4456450,4521985,4980739,5046273,5242881,5505025,5570561,5832705,6094851,6553601,6750209,7143425,8060931,9043971,10682369,12517379,14024705,14548993,15400961,15466497,15597569,16318465,17694721,18677761,20578305,22413313,25886722,26214401,26411009,26476545,26869761,27131905,28901377,29229058,30212098,30539777,31195137,32178178,32505857,33095682,33292290,33619970,34537473,35979265,36372481,37027841,37486594,38600706,40763393,42663938,42795009,43384833,43909121,45547521,45744129,46137345,46661633,47775745,49283073,49479681,49414145,49545217,49610754,50790401,52101123,52166660,52232193,52297730,52363265,52822018,53018625,53280770,53805060,54001665,54067201,54132738,54263811,54329348,54460417,55050242,55246850,55508995,55574529,55640066,55705601,55771137,55836676,55902209,55967748,56033282,56098817,56164354,56295425,56360961,56426500,56492033,56623105,56688643,56754177,56819713,57016323,57212929,57344001,57409538,57475073,57540609,57606146,57737218,57802754,57933825,57868289,58064900,58261505,58327041,58392577,58458113],"retrievable":[53936129,54394881],"replaces":[37814273,40894465],"restrict":[13500417,14352385,16580609,23003137],"replacement":[39256065],"reflection":[6291457,38141954,38207490,40042498,40501250,42532866,42729475,44236802,44761091,44957697,47185922,47710209,48824322,48889860,50331650,51773444,54263810,56492034,56950786,57344002,57475074,57868290,58261506,58392578,58458114],"retain":[8650753,9240577,9306113,9502721,9568257,10027009,10092545,10747905,10813441,11010049,11665409,11862017],"returning":[3014657,4980737,8192001,52101121,54329345],"runtimeheapsizeviolationpolicy":[38207489,51838977,53215236,54263809],"references":[28508161],"reference":[65537,131073,196609,262145,327681,393217,458753,524289,655361,720897,786433,851969,917505,983041,1048577,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636098,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160386,6225921,6291457,6356993,6422529,6488065,6619137,6553601,6684673,6750209,6815745,6881281,6946818,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764868,9830402,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024706,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413314,22478849,22544385,22609921,22675457,22740993,22872065,22806529,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34603009,34668545,34734081,34799617,34865153,34996225,34930689,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814275,37879809,37945345,38010881,38076417,38141954,38207490,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042498,40108033,40173569,40239105,40304641,40370177,40435713,40501250,40632321,40566785,40697857,40763393,40828929,40894467,40960001,41025537,41091073,41156609,41222145,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42598401,42532866,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236802,44302337,44367874,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185922,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824322,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49479681,49414145,49545217,49610753,49676289,49741825,49807361,49872897,49938434,50003969,50069505,50135041,50200577,50266113,50331650,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52887553,52822017,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263810,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836674,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492034,56557569,56623105,56688641,56754177,56819713,56885249,56950786,57016321,57081857,57147393,57212929,57278465,57344002,57409537,57475074,57540609,57606145,57671681,57737217,57802753,57868290,57933825,57999361,58064897,58130433,58195969,58261506,58327043,58392578,58458114],"retrieves":[11599873,12320769,34537473,54525953],"retrieved":[38141953,38207489,40042497,40501249,42532865,44236801,46858241,47185921,48824321,50003969,50331649,54263809,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"responsible":[46137345],"remove":[786433,2686977,3145730,3932161,8257539,8716291,9371651,14221313,14811137,16842760,17498114,20643841,24248321,34668545,55574529,56098818,56754177],"remote":[54919169,57278465],"receive":[44105729,44433409,46989313,55967745,56426497,56885249],"restrictions":[38141953,38207489,39714818,40042497,40501249,42532865,44236801,45875202,47185921,48824321,50331649,54263809,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"reaches":[54919169],"remain":[49872897,53411841,53936129,54394881],"removed":[8257537,8716289,9371649,14221313,14811137,16842753,17498113,20643841,24248321,54919169,57278465],"retrieve":[40763393,46661633],"removes":[2162690,2228226,2293762,2555906,2686979,2752514,2949122,3014659,3145731,3604482,3866626,3932163,4259842,4980739,8257537,8716289,9371649,13893633,14024705,14221313,14811137,15532033,16842753,17498113,20643841,22413313,24248321,26345473,34668546,34799618,39059458,51249154,52101123,52822018,53280770,54132738,54329347,55574531,56098819,56754179,57147394,57409538,57606146,57802754,58130434],"randomt":[8847362],"resources":[1179649,1245185,1310721,1376257,1441793,1572865,1507329,1638401,1703937,1769473,1835009,1900545,2097153,2162689,2228225,2293761,2359297,2424833,2555905,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3211265,3276801,3342337,3407873,3473409,3604481,3670017,3735553,3801092,3866626,3932161,3997697,4063234,4128769,4194306,4259841,4325377,4456449,4521985,4980737,5046276,5242884,5505028,5570564,5832708,6094852,6553604,6750209,17760257,18481156,21364737,25690113,27918337,28114948,28508161,29360132,34471939,34537473,34734083,38010881,38141955,38207491,39649283,40042499,40501251,40763393,41943044,42532867,43057154,43843588,44236803,45088769,46661633,47185923,47448065,47841281,48562178,48824323,49414145,49545217,50266114,50331651,50528257,50724865,50790401,51052546,51249153,51511297,52101121,52166657,52232194,52822017,53018625,53280770,53673985,53805057,54001665,54067201,54132737,54263815,54329345,54460417,54657025,55050241,55246849,55508993,55574529,55705601,55771137,55836673,55902209,55967745,56033281,56164353,56295425,56360961,56426497,56492039,56623105,56688641,56754177,56819713,56950788,57016322,57147393,57212929,57344007,57409537,57475079,57540609,57606145,57737217,57802753,57868295,58064897,58130433,58261511,58327041,58392583,58458119]} \ No newline at end of file +{"relies":[41746433,55902209],"referenced":[3604481,7012353,52559873],"resource":[1179649,4653065,24838146,24969218,25821186,26542082,26738690,27000834,27066370,27852802,27983874,47775745,48168961,49414145,50790401,51970054,52101122,53411841,53870594,54853634,55377926,56885249,57278470,58458118],"receive":[39911425,40960001,43319297,56033281,57344001,58195969],"removeelement":[3014657,3604481,10944516,50462721,52559873],"recently":[25493505,28573697],"replacement":[41746433],"randomt":[8126466],"removed":[8519681,9175041,10944513,13762561,14352385,17956865,18546689,19726337,24117249,50790401,54067201],"resetting":[2031617,2228225,2293761,2359297,2752513,2818049,3145729,3211265,4128769,4259841,4784129,4849665,6029313,6291457,6356993,6422529,6684673,8781825,9306113,19988481,24379393,27656193,31981569,49152001,49676289,50200577,51183617,51970049,52756481,54329345,56164353,57147393,57606145,57737217,57999361,58130433,58261505,58327041,58458113,58523649,58589185,58982401,59047937,59179009],"reclaim":[26804225],"removes":[2031618,2162691,2228226,2293762,2359298,2686979,2752514,2818050,3014659,3080195,3211266,3604483,4128770,4784130,8519681,9175041,10944513,13762561,14352385,16121857,16384001,16515073,17956865,18546689,19726337,23724033,24051713,24117249,30146562,31391746,49152002,49545219,49676290,50200578,50462723,51183618,52363267,52559875,52756482,52887554,57606146,57933827,58130434,58327042,59047938],"requests":[5373953,5636097,6488065],"recommended":[34275329,35127297,36569089,36765697,36896769,37617665,38338561,38535169,38993921,39321601,39714817,41025537,42205185,42663937,43384833,45023233,46071809,46727169,46792705,47448065,48300033,54329345,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"running":[1900550,2490376,7208961,7274497,7733249,7929857,8454145,9371649,15728641,15794177,16056321,16646145,16777217,17432577,17760257,18677761,32374792,37486593,38273025,38993921,40894465,42205185,42270721,43843585,44826625,48431110,50593800,55443458,55967748],"relative":[45154306,45744130,46465026,49479681],"registered":[3145744,4259856,6029328,6291472,6357008,6422544,6684688,6815745,8192001,8781840,9306128,10682370,11468802,11534338,11665410,11730946,12189698,12255234,12320770,12386306,12451842,12779522,13041666,13107202,13369346,13959170,14155778,16580610,17039362,17498114,18153474,18284546,18415618,19005442,19267586,19791874,20512770,20840450,21364738,21757954,22347778,22675458,23068674,31195144,31260680,32112648,32178184,54329360,56164368,57737232,57999376,58458128,58523664,58589200,58982416,59179024],"request":[6684673,27590657,58458113],"reserved":[65537,131073,196609,262145,327681,393217,458753,524289,589825,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3276801,3211265,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10747905,10682369,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12648449,12582913,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14155777,14090241,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19726337,19660801,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24510465,24444929,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28114945,28049409,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36831233,36765697,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39256065,39190529,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48168961,48103425,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52101121,52035585,52166657,52232193,52297729,52363265,52428801,52494337,52625409,52690945,52559873,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53870593,53805057,54001665,53936129,54067201,54132737,54263809,54198273,54394881,54329345,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56360961,56295425,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56950785,56885249,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58261505,58195969,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009],"retrieves":[11272193,12124161,50528257,55771137],"rely":[40894465,42270721],"recursion":[45547521,50069505],"retrieved":[34275329,35127297,36569089,36765697,36896769,37617665,38207489,38338561,39321601,41025537,41287681,54329345,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"removeproperty":[3014658,3604482,8519685,9175045,30146562,50462722,52559874],"rethrown":[10354689],"return":[4521985,4587521,4653057,5373954,5570561,5636098,5898241,6488066,6553601,6619137,6750209,6815745,6881281,6946817,7012353,7208961,7274497,7340033,7471105,7536643,7602177,7667713,7733249,7798786,7864322,7929857,7995393,8060930,8126465,8192001,8257539,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9371649,9437185,9502721,9568257,9633793,9764865,9830401,9961473,10027009,10092545,10223617,10354690,10551297,10616833,10878977,10944513,11075585,11141121,11272193,11599873,11862017,11927553,11993089,12124161,12517377,12582914,13172738,13238273,13434882,13762561,13828097,13893635,14286850,14352385,14417921,14614529,14811137,14876673,14942209,15007746,15073282,15138817,15269889,15466497,15663105,15728641,15794177,15859713,16056321,16252929,16318465,16384002,16646145,16777217,16973825,17170434,17235969,17301505,17432577,17563649,17760257,17825795,17956865,18546689,18612225,18677761,19070978,19333121,19464193,19595265,19726337,19857410,20185089,20643841,20905985,20971522,21037058,21626881,21692417,21823489,21889026,21954561,22282241,22413313,22544385,22740994,22872065,23003137,23134209,23527425,23658497,23789569,23920641,24051714,24117249,24182785,24248321,24313857,24707073,24772609,24903681,25100289,25165825,25231361,25362433,25493505,25624577,25690113,25886721,25952258,26083329,26148865,26411009,26476545,26607617,26673153,26869762,27131905,27197441,27262977,27328513,27459585,27525121,27721729,27787265,27918337,28049409,28180481,28246017,28311554,28573697,28704769,28835841,29032449,29097987,29163521,29425665,29556737,29622273,29884417,30539777,31129601,31653889,31784961,32309249,32702465,32768002,34275330,35127298,36569090,36765698,36896770,37617666,38338562,38862850,38993921,39321602,39583745,39976961,41025538,41680897,42205185,42532865,42860545,43188225,43646978,43778049,44892161,46071809,46530561,46727169,46792705,47120385,47448065,48300033,50528257,50659329,50855937,52690946,53346305,53673985,53936130,54198274,54329346,54591489,54984707,56164354,56229890,56492033,57737218,57999362,58458114,58523650,58589186,58916866,58982402,59179010],"readonly":[458754,917506,983042,1048578,36306945,36503553,36634625,37093377,37224449,37355521,37289985,37879809,37945345,38010881,38076417,38404097,38600705,38666241,39190529,39256065,39387137,39452673,39714817,39780353,39845889,40042497,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40828929,41091073,41156609,41222145,41353217,41418753,41549825,41615361,41943041,42074113,42139649,42336257,42467329,42663937,42795009,42991617,43057153,43122689,43515905,43581441,43712513,43778049,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44630017,44761089,44957697,45088769,45154305,45219841,45285377,45481985,45744129,45809665,46006273,46071809,46202881,46399489,46465025,46596097,46661633,46727169,46792705,46989313,47185921,47251457,47316993,47382529,47448065,47513601,47841281,48037889,48234497,48300033,48758785,48889857,49086465,49283073,49610753,50003969,50266113,58195969],"reference":[65537,131073,196609,262145,327681,393217,458753,524289,589825,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3276801,3211265,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373954,5439489,5505025,5570561,5636098,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488066,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667714,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978436,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10747905,10682369,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12648449,12582913,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14155777,14090241,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384002,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19726337,19660801,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051714,24117249,24182785,24248321,24313857,24379393,24510465,24444929,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28114945,28049409,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275330,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127298,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569090,36634625,36700161,36765698,36831233,36896770,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617666,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338562,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39256065,39190529,39321602,39387137,39452673,39518211,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025538,41091073,41156609,41222145,41287681,41353217,41418753,41484290,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729475,42795009,42860545,42926082,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48168961,48103425,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266114,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52101121,52035585,52166657,52232193,52297729,52363265,52428801,52494337,52625409,52690945,52559873,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53870593,53805057,54001665,53936129,54067201,54132737,54263809,54198273,54329346,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55836673,55902209,55967745,56033281,56098817,56164354,56229889,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57540609,57606145,57671681,57737218,57802753,57868289,57933825,57999362,58064897,58130433,58261505,58195969,58327041,58392577,58458114,58523650,58589186,58654723,58720257,58785793,58851329,58916865,58982402,59047937,59113473,59179010],"results":[11403265,38273025,44826625,47775745,49414145,50724865,58589185,58982401,59179009],"regardless":[10354689,47906818,48496641],"removepropertynocheck":[2162689,3080193,15925249,18546692,49545217,57933825],"runtime":[2424833,4128769,4718593,4849665,6684674,8126465,8716289,9437185,9830401,11272193,12124161,14090241,19660801,23789571,24248321,24510465,24641537,24707075,24838145,24903681,24969217,25034753,25231361,25559041,25755649,25821185,26148867,26214401,26279937,26345473,26542081,26738690,27000833,27066370,27197443,27525123,27852801,27983874,28114945,28508161,28639233,29294593,29556737,29687809,35323905,35782658,36110337,36569090,38993921,42205185,45416449,45613057,45547522,45940737,46202881,46333953,47054849,47710211,47775746,48365569,49348610,49414147,50069508,50397185,51511297,51970064,52101122,53149697,53411842,53870594,54067201,54853634,55246849,55902211,56885253,57278476,58458116,58720257,59047937],"responsible":[46399489],"relevant":[7012353],"runtimeheapsizesampleinterval":[36569089,45613060,58458113],"response":[35782657,36569089,46333953,46923777,51970049,55902209,56885249,58458113],"recompilation":[4849670,6684678,22872066,23658498,25362434,25624577,26083330,26607619,27262977,27459586,28049409,28180482,28835842,29163523,29622273,29884417,30539778,31129601,32309251,32702466,50724866,51970054,55574531,56426499,56754177,56885249,57802755,58064899,58458118],"remarks":[720897,4521985,4653057,5373953,5439489,5505025,5570561,5636097,5701633,6225921,6488065,6619137,6815745,6946817,7471105,7536641,7602177,7667713,7798785,7864321,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8519681,8585217,8650753,8716289,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9437185,9502721,9568257,9633793,9764865,9830401,9961473,10027009,10092545,10223617,10354689,10551297,10616833,10682369,10878977,10944513,11075585,11141121,11272193,11403265,11468801,11534337,11599873,11665409,11730945,11927553,11993089,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13369345,13434881,13500417,13565953,13631489,13697025,13893633,13959169,14024705,14090242,14155777,14286849,14483457,14548993,14680065,14745601,14942210,15007745,15073281,15204353,15335425,15400961,15532033,15597569,15794177,15925249,16056321,16121857,16384002,16515073,16580609,16842753,16908289,16973826,17039361,17170433,17301506,17432577,17498113,17563649,17825793,17891329,18022401,18153473,18284545,18350081,18415617,18481153,18546689,18743297,18677761,18874369,19005441,19070977,19136513,19267585,19333121,19529729,19595265,19660802,19791873,19857409,19922945,20316161,20381697,20447233,20512769,20840449,20971521,21102593,21168129,21233665,21364737,21757953,21823489,21889025,22020097,22151169,22347777,22478849,22544385,22675457,22740993,22806529,22872065,23068673,23199745,23265281,23330817,23658497,23724033,23789569,23920641,23986177,24051714,24248321,24313857,24444929,24576001,24707073,24903681,25165825,25231361,25296897,25362433,25427969,25493505,25624577,25690113,25952257,26017793,26083329,26148865,26214401,26279937,26411009,26476545,26607617,26738690,26804225,26869761,26935297,27066370,27131905,27197441,27328513,27459585,27590657,27918337,27983874,28049409,28180481,28246017,28311553,28573697,28639233,28704769,28835841,28901377,29163521,29294593,29425665,29491201,29556737,29687809,30539777,30867457,31129601,31522817,31653889,31784961,32309249,32505857,32702465,32768001,36110337,36175873,36831233,36962305,37027841,37093377,37486593,37552129,38207489,38273025,38404097,38535169,38666241,38862849,38993921,39059457,39124993,39190529,39518209,39649281,39845889,39911425,40108033,40173569,40894465,40960001,41287681,41484289,41680897,41746433,41811969,42205185,42270721,42729473,42926081,43057153,43188225,43253761,43319297,43384833,43450369,43646977,43712513,43778049,43843585,44171265,44236801,44433409,44564481,44695553,44826625,45023233,45154305,45219841,45350913,45416449,45547521,45613057,45678593,45744129,45875201,45940737,46071809,46137345,46268417,46399489,46465025,46530561,46596097,46727169,46792705,46858241,47054849,47185921,47316993,47448065,47579137,47710209,47775745,47906817,48037889,48103425,48234497,48300033,48365569,48496641,48758785,48824321,49086465,49348609,49414145,49545217,49676289,49807361,50069505,50266113,50331649,50462721,50855937,51511297,52101122,52035585,52297729,52363265,52494337,52690945,53084161,53149697,53673985,53870594,53805057,53936129,54198273,54394881,54329345,54853634,54984705,55508993,55836673,56033281,56229889,56492033,56819713,57344001,57737217,57999361,58392577,58458113,58589185,58654721,58851329,58982401,59113473,59179009],"requesting":[5373953,5636097,6488065],"reassignment":[45875201,49807361],"reclaims":[45940737],"runtimeheapsizeviolationpolicy":[36569089,46333956,49414145,58458113],"read":[2162691,3080195,3211265,8978435,14090241,14811137,14876677,15925250,16515073,16711681,18546689,18612225,19136513,19660801,34406401,34537473,34734081,37879809,43057153,46530561,48955393,49545219,49676289,49741825,52363265,57933827,58195969],"restricted":[7274497,7929857,8454145,9371649,12845057,13565953,22478849,23265281,31916033,33030145,38993921,42205185,55967745,58916865],"resumed":[45547521,50069505],"returning":[3014657,3604481,8650753,50462721,52559873],"resumes":[6684673,26935297,58458113],"removing":[39124993,43450369,45416449],"rank":[5898247],"requirement":[38993921,42205185,49479681],"root":[4718593,34799617,39190529,39845889,43712513,44236801,45481986,47185921,48234497,48758785,49086465,49479681,50987009,51707905,58720257],"returned":[16384003,24051715,50659329],"remove":[196609,2162689,2686978,3080193,8519683,9175043,10944515,13762561,14352385,17956872,18546690,19726337,24117249,30146561,49545217,52363266,57933825],"remote":[50790401,54067201],"returns":[1114113,1179649,1245185,1310724,1376258,1441793,1507329,1572865,1638401,1703937,1769473,1966084,2097153,2162689,2228226,2293762,2359298,2424834,2555905,2621444,2686977,2818050,2883588,2949124,3014660,3080193,3276804,3211266,3342337,3407873,3473409,3538945,3604483,3670017,3735553,3801090,3866625,3932162,3997697,4063234,4128770,4259841,4325379,4390913,4718594,4849667,6029313,6291457,6356993,6422529,6684675,7077889,7536643,8257539,8781825,9306113,9437185,10223619,10354689,13893633,14942209,15400961,15859713,16384001,16908289,16973825,17301505,17563649,17825793,19333121,20905985,21823490,22544385,24051713,25493505,27328514,27525121,28246017,28377089,28573697,29032449,29097985,31784962,32899074,36831233,36962305,37093378,38404097,38666241,39059457,41680898,43057153,43188226,44171265,44433409,45547521,45678593,46399489,47316993,47644673,48103428,48168961,48562177,48824321,48955393,49020929,49152002,49217537,49545217,49676290,49741825,49872897,50069505,50135041,50200578,50266116,50331649,50397186,50462724,51118081,51249154,51707906,51773442,51970051,52363265,52559875,52756482,53084161,53411841,53477377,53673985,53936131,54394881,54329345,54460418,54788098,54984705,55246849,55312385,55705602,55771137,56033284,56360962,56492034,56557570,56754177,57344004,57737217,57933825,57999361,58130434,58392579,58458115,58523649,58589185,58654721,58720258,58785793,58851332,58982401,59047938,59113476,59179009],"release":[18350082,25296898,26804225,50790401,54067201,55836674],"relaxes":[49479681],"required":[5373953,5636097,6488065,7667713,14090241,19660801,54329345,57737217,57999361],"releases":[3670017,4259843,6029315,6291459,6356995,6422531,6684675,8781827,9306115,18350082,18743297,25296898,26804225,31981570,41746433,54329347,55836674,56754177,57147394,57737219,57999363,58261506,58458115,58523651,58589187,58982403,59179011],"random":[8126469],"restore":[38207489,41287681],"reason":[35258369,43515906,53477377],"references":[26804225],"reduces":[40894465,42270721],"restrictions":[34275329,35127297,36569089,36765697,36896769,37617665,38338561,39321601,39649282,41025537,44695554,54329345,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"retain":[9240577,9764865,9961473,10092545,10551297,10878977,11075585,11141121,11599873,11927553,11993089,12517377],"represent":[6619138,7471106,10682369,11468801,11534337,11665409,11730945,12189697,12255233,12320769,12386305,12451841,12713985,12779521,12845057,12976129,13041665,13107201,13369345,13565953,13631489,13697025,13959169,14090241,14155777,14483457,14680065,14745601,15335425,15532033,15597569,16580609,17039361,17498113,18153473,18284545,18415617,18481153,19005441,19267585,19529729,19660801,19791873,20381697,20447233,20512769,20840449,21168129,21233665,21364737,21757953,22151169,22347777,22478849,22675457,23068673,23265281,23330817,24444929,25427969,40108033,44564481,49545218,50331649],"releasing":[2031617,2228225,2293761,2359297,2752513,2818049,3145729,3211265,4128769,4259841,4784129,4849665,6029313,6291457,6356993,6422529,6684673,8781825,9306113,19988481,24379393,27656193,31981569,49152001,49676289,50200577,51183617,51970049,52756481,54329345,56164353,57147393,57606145,57737217,57999361,58130433,58261505,58327041,58458113,58523649,58589185,58982401,59047937,59179009],"result":[262145,917505,3014657,4390913,5373953,6488065,7536644,8060929,8388609,8650753,8912897,8978434,9109505,9240577,9502721,9764865,9961473,10027009,10092545,10551297,10616833,10878977,11075585,11141121,11599873,11927553,11993089,12517377,12582914,13434882,13828097,14286850,14417921,15007746,15073282,15269889,16056321,16384003,16777217,17170434,17760257,18677761,19070978,19595265,19857410,20971522,21889026,22282241,22740994,23003137,23527425,24051715,25952258,26017794,26869761,27328513,28311553,32768002,34275329,35127297,36569089,36765697,36896769,37617665,38338561,38535169,38862849,39321601,41025537,41680899,43188227,43384833,43646977,50462721,50790401,50855937,52690946,53936130,54198273,54329345,55771137,56164353,56229890,56360961,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"runtimes":[22872065,23658497,25362433,26083329,27459585,28180481,28835841,30539777,32702465],"rejection":[55902209],"readbytes":[2228225,2293761,2359297,2818049,3211265,14811140,18612228,49152001,49676289,50200577,52756481,58130433],"rejected":[39911425,40960001,43319297,56033281,57344001,58195969],"related":[40173569,49938433],"reflection":[4653057,34275330,35127298,36569090,36765698,36896770,37552129,37617666,38273027,38338562,39321602,40894468,41025538,41811969,42270724,44826627,54329346,56164354,57737218,57999362,58458114,58523650,58589186,58982402,59179010],"retrieve":[36831233,36962305],"reclaimed":[1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1966081,2097153,2162689,2424833,2621441,2883585,2949121,3014657,3080193,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3866625,3932161,3997697,4063233,4128769,4259841,4325377,4390913,4718593,4849665,6029313,6291457,6356993,6422529,6684673,7077889,8781825,9306113,18743297,47644673,48168961,48103425,48562177,48824321,48955393,49020929,49217537,49545217,49741825,49872897,50135041,50266113,50331649,50397185,50462721,51118081,51707905,51773441,51970049,52559873,53084161,53411841,53477377,53936129,54329345,54460417,55246849,55312385,56033281,56754177,57344001,57737217,57933825,57999361,58392577,58458113,58523649,58589185,58654721,58720257,58851329,58982401,59047937,59113473,59179009],"redirected":[1],"rights":[65537,131073,196609,262145,327681,393217,458753,524289,589825,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3276801,3211265,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10747905,10682369,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12648449,12582913,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14155777,14090241,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19726337,19660801,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24510465,24444929,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28114945,28049409,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36831233,36765697,36896769,36962305,37027841,37093377,37158913,37224449,37355521,37289985,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39256065,39190529,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48168961,48103425,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52101121,52035585,52166657,52232193,52297729,52363265,52428801,52494337,52625409,52690945,52559873,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53870593,53805057,54001665,53936129,54067201,54132737,54263809,54198273,54394881,54329345,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56360961,56295425,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56950785,56885249,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58261505,58195969,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009],"released":[45940737],"ref":[393217,851969,3735553,7012353,7143425,8650753,8978434,27787265,47644673,48103425,48168961,48431105,48562177,48824321,48955393,49020929,49217537,49545217,49741825,49872897,50135041,50266113,50331649,50397185,50462721,50593793,51118081,51445761,51707905,51838978,51904513,51970049,52494337,52559873,53084162,53411841,53477377,53936129,54263809,54329345,55246849,55312385,56033281,56754177,57344001,57737217,57933825,57999361,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58982401,59047937,59113473,59179009],"resourc":[50987011],"reaches":[50790401],"removal":[8585217],"replace":[4521992,5570568],"runtim":[6684673,29687809,35782659,36569090,45940737,46333953,46923777,47775746,48693249,49414146,51970051,58458115],"representation":[3145729,3932162,4259841,6029313,6291457,6356993,6422529,6684673,8781825,9306113,16384001,17563649,19333121,22544386,23199745,24051713,28246017,34930689,38535169,43384833,48955393,51707906,54329345,55771137,56164353,56492033,57737217,57999361,58458113,58523649,58589185,58720257,58982401,59179009],"remainder":[32768001,56229889],"requested":[5373954,5636098,6488066,13434881,13500417,14286850,14548994,20971521,21102593,21889026,22020098,22413313,23134210,24313858,25100289,25362434,25886722,26476545,27131906,27459585,28180482,29425665,30539777,33095681,49479681],"range":[6619137,7471105,7667713,7864321,13893633,15400961,16908289,17825793],"represents":[720897,1114113,1179649,1245185,1310721,1441793,1507329,1572865,1638401,1703937,1769473,1966081,2097153,2162689,2424833,2555905,2621441,2883585,2949121,3014657,3080193,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3866625,3932161,3997697,4128769,4259841,4325377,4390913,4718593,4849665,5373954,5636097,6029313,6291457,6356993,6422529,6488066,6619137,6684673,6750209,7077889,7340033,7471105,8781825,9306113,11862017,15728641,15794177,15859714,16056321,16384001,16646145,16777217,16973825,17432577,17760257,18677761,20905986,21823490,24051713,27328514,31784962,34930689,35454977,35717121,37289985,41418753,43122689,46530562,46596097,47120385,47644674,48168962,48103425,48562178,48824322,48955393,49020929,49217537,49545219,49676289,49741825,49872898,50135042,50200577,50266113,50331650,50397185,50462721,50528257,50790401,51118081,51183617,51707906,51970050,52363265,52494337,52559873,53084161,53346305,53411841,53477378,53936130,54329346,54460417,54788097,55246849,55312386,55771152,56033281,56164353,56295428,56754178,56885255,57016321,57212932,57344001,57475075,57606145,57737217,57933825,57999362,58130433,58327041,58392577,58458114,58523649,58589186,58654722,58720258,58785794,58851329,58982402,59047937,59113473,59179009],"replaces":[39518209,42729473],"require":[14090242,19660802],"representing":[7995393,8323073],"rootnode":[34799617,45481988,51707905],"retrieval":[11403265,13238273,21626881],"refers":[6946817,7864321,9043969],"restrict":[12845057,13565953,22478849,23265281],"resources":[1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2621441,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670018,3735553,3866625,3932161,3997697,4063233,4128770,4259844,4325377,4390913,4718593,4784129,4849666,6029316,6291460,6356996,6422532,6684676,7077889,8781828,9306116,18350084,18743297,19988481,24379393,25296900,26804225,27656193,31981571,34275331,35127299,36569091,36765699,36831233,36896771,36962305,37486596,37617667,38338563,38993921,39190529,39321603,39845890,40173569,41025539,42205185,43712513,43843588,44236802,47185921,47644673,48168961,48103425,48234498,48562177,48758786,48824321,48955393,49020929,49086465,49152001,49217537,49545217,49676289,49741825,49807361,49872897,50135041,50200577,50266113,50331649,50397185,50462721,50987009,51118081,51183617,51707905,51773441,51970050,52559873,52756481,53084161,53411841,53477377,53936129,54329351,54460417,55246849,55312385,55771137,55836676,56033281,56164356,56754178,57147395,57344001,57606145,57737223,57933825,57999367,58130433,58261507,58327041,58392577,58458119,58523655,58589191,58654721,58720257,58851329,58982407,59047938,59113473,59179015],"runaway":[45023233],"representative":[7012353],"retrievable":[47906817,48496641],"remain":[47710209,47906817,48496641,49348609],"replaced":[196609,34078721,49545217,51576833,57933825],"restriction":[1900548,3145730,4259842,6029314,6291458,6356994,6422530,6684674,7274498,7929858,8454146,8781826,9306114,9371650,12845057,13565953,22478849,23265281,31916034,33030146,34275330,35127298,36569090,36765698,36896770,37617666,38207491,38338562,38993922,39321602,41025538,41287683,42205186,48431108,54329348,55967748,56164356,57737220,57999364,58458116,58523652,58589188,58982404,59179012],"reside":[51052545],"resolve":[5373953,5636097,6488065]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_115.json b/docs/Reference/fti/FTI_115.json index cc54ac1a9..2d65f9a21 100644 --- a/docs/Reference/fti/FTI_115.json +++ b/docs/Reference/fti/FTI_115.json @@ -1 +1 @@ -{"supports":[2424833,3866625,7471105,14090241,16646145,22937601,24313857,25231361,27721729,29163521,34275329,34537473,40501249,42532865,44236801,45088769,47185921,47448068,48824321,50331649,50528257,50855937,51511297,53280769,53673985,56164353,56492033,57344001,57868289,58064897,58261505,58392577,58458113],"server":[3211272,3801096,5046280,5242888,5505032,5570568,5832712,6094856,6553608,7733249,11206657,11468802,12189698,12386306,12582914,12910594,13107202,13697026,14286850,16973826,17039362,19070978,19136514,20709378,20774914,22216706,22282242,32440324,37093380,38535172,39321604,54263816,56492041,56950792,57344009,57475080,57868297,58261512,58392584,58458120],"speed":[14942209,17170433,22609921,24510465,28573697],"step":[10682369],"scriptfunc":[6422533,6684677,8060934,9043973,9830405,12517381],"scriptinterruptedexception":[2621442,19988481,20578305,21233670,21823494,22347782,22872070,34537473,37879817,40173570,41484289,42270721,43122689,49872897,52690945,53149697,53411841,53608449,57933838],"space":[45350913,46202881,47120385,51642369],"sync":[327681,1048577,3997697,28180481,32505857,35979265,37027841,38600705,51970049,56688641],"selectively":[40763393,46661633],"stringdocument":[2818050,25296901,34537473,42467330,49479682,50069506,50593793,53018625,54067208],"snapshot":[4194305,6094849,27459588,28442628,54263809,57016321],"serialize":[2621441,4456449,17104897,19988481,54263809,57737217,57933825],"selecting":[9699329,10485761,11403265,12124161],"scriptaccess":[4915205,19726341,20381701,22478853,23068677,24707077,32374785,34537473,36241409,38666244,44105735,46989320,48758790,52035590,52166657,53805057,56885252,58064900],"search":[1114113,4784129,5111809,5898242,36175873,36700161,38010882,41287681,49217538,54984705,55902209],"syntactic":[12845057,13172737,13434881,13893633,13959169,14024705,14680065,14876673,15073281,15728641,15859713,16449537,17235969,17629185,18087937,18415617,19333121,19595265,20447233,21168129,22413313,23265281,23986177,24051713,24838145,25559041,26345473,27262977],"sensitive":[29163521,34275329],"scriptable":[6881281,12058625,34537474,55574530,56098817],"servername":[7733255,11206663,11468805,12189701,12386309,12582917,12910597,13107205,13697029,14286853,16973830,17039366,19070982,19136518,20709382,20774918,22216710,22282246],"schedule":[54788097,54919169],"scripts":[34340865,36765697,47054849,47775745,48889857,51642369,51773441,51838977,52363265,54001665],"stripped":[10158081],"safe":[54263809],"separate":[26083329,26804225,27656193,27852801,28311553,29032449,29097985,29622273,29818881,30408705,30474241,31391745],"stores":[1507329,1703937,4653057,5701633,50790401,55705601],"scenarios":[46333953,47054849,49348609,51838977],"sub":[4390913,4587521,4718593,4849665,4915201,5177345,5373953,5439489,5767169,5963777,6029313,6225921,6356993,6488065,6619137,6815745,7536641,9437185,9699329,9895937,10354689,10420225,10485761,10551297,10616833,10878977,10944513,11075585,11141121,11272193,11337729,11403265,11468801,11534337,11730945,11796481,11927553,11993089,12124161,12189697,12255233,12386305,12451841,12582913,12648449,12713985,12910593,12976129,13041665,13107201,13172737,13303809,13369345,13434881,13500417,13565953,13697025,13893633,13959169,14090241,14155777,14286849,14352385,14417921,14548993,14614529,14680065,14876673,14942209,15007745,15204353,15269889,15335425,15532033,15597569,15859713,15925249,16056321,16187393,16384001,16580609,16646145,16777217,16973825,17039361,17104897,17170433,17432577,17760257,17825793,17956865,17891329,18153473,18284545,18350081,18481153,18612225,18874369,19005441,19070977,19136513,19202049,19267585,19464193,19529729,19595265,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20381697,20512769,20709377,20774913,20905985,20971521,21037057,21102593,21233665,21299201,21364737,21430273,21561345,21626881,21692417,21757953,21823489,22085633,22151169,22216705,22282241,22347777,22478849,22609921,22675457,22872065,23003137,23068673,23199745,23396353,23461889,23658497,23724033,23855105,23986177,24051713,24182785,24444929,24510465,24707073,24838145,25034753,25165825,25296897,25559041,25690113,25821185,26083329,26148865,26345473,26804225,26935297,27066369,27197441,27262977,27459585,27525121,27590657,27656193,27852801,27918337,27983873,28049409,28114945,28180481,28311553,28442625,28508161,28573697,28770305,28835841,29032449,29097985,29294593,29360129,29425665,29622273,29687809,29818881,29884417,30015489,30146561,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30932993,31064065,31129601,31260673,31391745,31522817,31719425,31784961,31916033,31981569,32309249,32571393,32768001,32899073,33423361,33488897,35979265,55443457],"sum":[9830403],"summarizes":[14024705,22413313],"scriptengineexception":[458754,4456450,17104897,17694721,18350086,18874374,19529734,20119558,34537473,36044809,39387138,39780353,40566785,41549825,42205185,42991617,48365569,57737230],"scriptengine":[2031619,2490372,3801090,5046319,5242931,5505071,5570607,5832751,6094899,6553647,7012357,7340037,7864325,11927557,16056321,16187393,16515077,16580609,16646145,16711685,16777217,16973825,17039361,17170433,17432577,17629185,17760257,17825793,17891329,17956865,18219013,18284545,18415617,18481153,18546693,18612225,18677761,18743297,19005441,19070977,19136513,19202053,19267585,19333121,19595265,19791873,19857409,19922945,20250625,20447233,20709377,20774913,20905993,21037057,21168129,21626881,21692417,21757953,22151169,22216705,22282241,22413313,23003137,23265281,23986177,24051713,24838145,25559041,26345473,27262977,27918337,30998529,31653890,32440321,33030145,33554433,34013185,34471937,34537473,34603012,34996225,35651585,36306945,36831233,37093377,37289987,38141954,38207511,40501269,40894465,41811969,42532885,43843585,44236823,44761089,45154310,45547521,45875201,46137351,46465025,46792705,46989313,47185941,47644673,47710209,48496641,48562177,48824341,49152001,49348609,49938433,50003969,50135046,50331669,50528257,50724865,51118081,51314689,51773441,52297729,52756483,54263887,54591492,56492101,57344069,57475080,57868367,58261573,58392645,58458181],"subclasses":[44105729,46989313],"selectort":[7077890],"searches":[1507329,1703937,4784129,5111809,50790401,55705601],"schema":[26411009,27066369],"start":[43450369,43581442,46268417,50987009,55771138],"settings":[1441793,5373953,5439489,5636102,6029313,6160391,6815745,6946823,7536641,34537473,36175873,36700161,37945345,38010881,38141953,38207489,38469633,39256065,40042497,40501249,42532865,44236801,44826625,45940737,46661633,47185921,47316993,47972353,48300034,48693249,48824321,49217537,50331649,51314690,53084162,54263809,54984705,55902209,56492033,56885249,56950785,57016321,57344001,57475073,57868289,58261505,58392577,58458113],"selected":[3932162,7143425,8126465,8781825,8847361,9699329,10485761,11403265,11599873,12124161,12320769,12845057,13172737,14090241,16646145,21168129,25559041,36438018,37617666,52625409,53477377,54657025,54919169,55312385,55574532,56557569,57278465,58195969],"suppressfinalize":[27918337],"synchronous":[30670849,31784961,32309249,32899073,33423361,38076418,39124994,56492034,57344002,57868289],"store":[4653057,5701633,16121857,16908289,17301505,18022401,18808833,20316161],"subroutine":[49610753,52297729,55508993],"structures":[31326209,34537473,54919169],"suppressextensionmethodenumeration":[38207489,53936132,54263809],"standards":[52625409],"structure":[524289,720897,917505,1572865,3407873,4849666,5177346,5636097,6160385,6946817,15728641,15859713,17629185,23330817,24051713,25100289,25296897,27328513,28246017,28966913,30081025,31326209,34537473,34930689,37224449,37355523,39452673,40763393,41680897,42467329,42663937,42926081,43319297,43909121,50593793,53018625,54067201,54525953,55246852,55443457,56033282],"short":[54132737],"struct":[8192001,9175041,34537473,52166660,53805060,55246850,55836679,55967748,56033282,56426500],"shared":[655361,851969,983041,1048577,7012353,7274497,7340033,7602177,7864321,8519681,15663105,15990785,16515073,16711681,17367041,17563649,18219009,18546689,19660801,36765697,38010881,38469633,39256065,44302337,44498945,45023233,46137345,47448065,48168961,54853634],"site":[589825],"size":[5636097,6160385,6946817,34340865,34865154,35127300,35520513,35913735,38207491,41222150,41746433,42008582,42336258,43253762,43974658,44695554,44826627,45219842,45350914,45416451,45481986,46071810,46202882,47054854,47120386,47513602,48431106,48955394,50200578,50790401,50921474,51445762,51576834,51642370,51838982,51904514,52494338,52887555,52822018,53215234,54001665,54132738,54263811,55705601,57016323,57212932,57409538,57540615,57606146,57802754],"synchronization":[35979265,37027841],"suppressinstancemethodenumeration":[38207489,53936129,54263809,54394884],"support":[7208961,7471105,7798785,7995393,8126466,8257537,8323073,8650753,8716289,8847361,8978433,9240577,9306113,9371649,9502721,9568257,9633793,9764865,9961473,10027009,10092545,10747905,10813441,11010049,11665409,11862017,14024705,22413313,34537473,37814273,38141953,38207489,40042497,40501249,40894465,42532865,44236801,44957697,45613057,47185921,47710209,48103425,48496641,48824321,50331649,51118081,52625409,53870593,54263809,54460417,54919170,56098817,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"serializeobjectstate":[458753,57737217],"smart":[52625409],"scriptexception":[39387137,40173569,40239108,40960001,42205190,42270726,57081857,57737217,57933825],"scriptusageattribute":[4325378,21561350,24707078,32374789,34537473,36569089,40828929,41877506,44105729,46989313,48758785,52166657,53805066,55967745,56426502,58064902],"strings":[7077889,9043970,9109505,12517377],"stringt":[7077891,8585222,9043971,9109506,9764868,12320770,12517378],"stringify":[54919169],"simpler":[39256065],"slower":[47054849,51838977],"stacktrace":[39387137,57737217],"sealed":[16056321,16187393,16252929,16580609,16646145,16777217,16842753,16973825,17039361,17432577,17629185,17760257,17825793,17891329,17956865,18284545,18415617,18612225,18939905,19005441,19070977,19136513,19333121,19595265,19791873,19857409,19922945,20250625,20447233,20709377,20774913,21037057,21168129,21299201,21626881,21692417,21757953,22151169,22216705,22282241,22413313,23003137,23265281,23920641,23986177,24051713,24838145,25559041,25690113,26345473,27262977,28180481,32505857,35979265,37027841,39780353,40566785,40894466,41484289,41549825,41811970,42205185,42270721,42991617,43122689,43843586,44761090,45547522,45809666,45875202,46399490,46465026,46530562,46923777,46989314,47579137,47644674,47710210,48365569,48496642,49152001,49348610,49545218,49938434,50003970,50724866,51118082,51314690,51773442,52297730,52690945,52756481,53149697,53608449,54263810,54591489,54984705,55181313,55377921,55771138,55836674,55967746,56295426,56426498,56623106,57016322,57212930,58064898],"suppress":[53936129,54394881],"securely":[40763393,46661633],"successful":[8192001,46333953,49348609],"scope":[47448065],"stripping":[42074113,47644673,53542913],"scriptexceptionasobject":[39387137,40173569,40960001,41091076,42991622,43122694,57081857,57737217,57933825],"stored":[9764865,22806529,23592961,24772609,24903681,25952257,26607617,26673153,27394049,27787265,28246017,30081025,30801921,56098817],"setproperty":[2162690,2228226,2293762,2555906,2752514,2949122,3014658,3604482,3866626,4259842,4980738,8323077,8978437,14417925,15204357,21102598,25165830,32047106,35192834,40632322,51249154,52101122,52822018,53280770,54132738,54329346,57147394,57409538,57606146,57802754,58130434],"samples":[38207490,42860545,44826626,45416449,49086465,49283078,52559873,52887553,54263810,55050241,57016322],"strictly":[39714817,45875201,58327041],"scriptmemberflags":[20381701,20971525,23068677,23658501,34537473,38666244,43712519,58064900,58195972],"serializationinfo":[2621441,4456450,17104905,18874373,19988488,21823493,36044801,37879809,57737219,57933826],"sealedattribute":[49545217,52756481,54263809,54591489,54984705,55181313,55246849,55377921,55771137,55836673,55967745,56033281,56295425,56426497,56623105,57016321,57212929,58064897],"system":[1441796,5439491,6029315,6815748,6881283,7077893,7405574,7536643,7733249,7929857,8192001,8585220,8650754,8847361,8912897,9043971,9109505,9240578,9306114,9502722,9568258,9764866,9830405,10027010,10092546,10682371,10747906,10813442,11010050,11599873,11665410,11862018,12058627,12320769,12517379,14024708,22413316,37945349,49414145,49545217,50790401,52101121,52166658,52232193,52756481,53018625,53280770,53477377,53805058,54001665,54067201,54263809,54329345,54460417,54591489,54984705,55050241,55181313,55246850,55377921,55508993,55574529,55705601,55771137,55836674,55902213,55967746,56033282,56164354,56295425,56360961,56426498,56492033,56623105,56688641,56754177,56819713,57016321,57212929,57344001,57475073,57540609,57737220,57868289,57933825,58064898,58261505,58327041,58392577,58458113],"script":[458753,524289,720898,1245185,1638401,1769473,1835009,1900545,1966081,2031625,2162698,2228233,2293769,2359297,2490381,2555913,2621441,2752521,2883585,2949129,3014661,3080193,3211307,3538948,3604489,3801134,3866634,3997700,4063233,4194322,4259850,4325377,4456449,4718593,4915204,4980740,5046319,5242928,5505072,5570607,5832751,5963777,6029313,6094910,6291457,6422530,6553647,6684674,7012358,7077889,7208961,7274498,7340038,7471105,7602179,7667713,7798785,7864325,7995393,8060933,8126466,8257537,8323073,8454145,8519683,8585217,8650754,8716289,8847362,8978433,9043973,9109505,9240578,9306114,9371649,9502722,9568258,9633793,9830406,9961473,10027010,10092546,10616835,10682373,10747906,10813442,11010050,11468803,11534339,11599873,11665410,11730947,11796483,11862018,11927557,11993091,12189699,12255235,12320769,12386307,12451844,12517381,12582915,12648452,12713988,12779523,12845062,12910595,12976131,13041666,13107203,13172741,13238273,13303812,13369347,13434883,13500421,13565956,13697027,13762561,13828097,13893641,13959170,14024721,14090249,14155780,14221313,14286851,14352389,14417921,14483457,14614532,14680070,14811137,14876674,15007747,15073287,15138817,15204353,15269892,15335428,15466501,15532033,15663106,15728646,15859717,15990786,16056324,16187396,16449540,16515077,16580614,16646154,16711685,16777221,16973828,17039364,17104897,17170433,17235971,17367042,17432580,17498113,17563650,17629191,17694721,17760257,17825797,17956868,17891332,18087939,18153473,18219013,18284549,18350081,18415621,18481154,18546693,18612229,18677766,18743300,18874369,19005445,19070980,19136516,19202050,19267587,19333124,19529729,19595268,19660801,19726340,19791877,19857412,19922948,19988481,20054017,20119553,20250625,20381703,20447236,20512769,20578305,20643842,20709380,20774916,20905986,20971524,21037061,21102594,21168135,21233665,21364737,21430274,21561345,21626884,21692420,21757957,21823489,21889028,21954562,22020099,22151173,22216708,22282244,22347777,22413330,22478853,22544386,22740997,22872065,22806530,22937608,23003142,23068680,23134210,23265288,23330821,23396353,23527428,23592964,23658501,23789571,23920642,23986179,24051718,24117251,24248322,24313864,24379397,24576002,24641538,24707076,24772610,24838147,24903684,24969219,25100292,25165826,25231368,25362438,25427970,25493508,25559046,25624579,25755652,25952258,26017795,26083330,26279938,26345482,26542085,26607621,26673155,26738692,26804226,27000836,27131909,27262983,27328518,27394053,27590658,27656194,27721736,27787267,27852802,27918338,28114945,28180481,28246021,28311554,28377090,28508165,28573697,28639233,28704771,28770305,28966917,29032450,29097986,29163523,29360130,29425665,29491203,29556744,29622274,29753345,29818882,29949954,30015489,30081029,30212103,30277639,30343170,30408706,30474242,30539778,30605313,30670849,30801922,30867459,30932993,30998531,31064065,31129603,31195138,31326212,31391746,31457282,31522817,31588360,31653894,31719426,31784961,31850500,31916033,31981569,32047106,32112642,32178178,32243718,32309249,32374786,32440329,32505858,32571393,32702468,32768003,32833540,32899075,33030147,33226753,33357827,33423361,33554441,33685513,33816580,33882115,33947649,34013187,34144259,34209793,34275331,34340865,34406403,34471938,34537499,34603021,34734081,34799618,34865157,34996229,35061767,35258370,35323909,35586050,35651586,35782661,35848194,35979266,36044801,36241410,36306949,36503554,36569090,36765701,36831234,36896780,37027842,37093385,37289987,37486594,37683209,37814277,37879809,38141968,38207504,38404097,38535176,38666249,38600706,39059459,39190529,39321608,39387141,39518211,39649282,39780353,39911426,39976961,40042510,40108035,40173573,40239106,40370177,40501264,40566786,40632323,40763393,40828932,40894470,40960004,41091074,41156610,41353217,41418758,41484289,41549825,41615365,41811969,41877506,41943044,42074115,42139649,42205187,42270723,42336261,42401794,42598401,42532880,42729476,42991619,43057156,43122691,43188225,43253765,43384837,43450369,43515905,43581446,43712514,43843589,43974661,44105730,44171265,44236818,44367875,44433411,44564486,44630017,44761093,44826626,44892161,44957697,45088776,45154306,45285382,45481989,45547526,45809666,45875201,46006273,46137348,46268417,46333953,46465026,46530562,46596097,46661633,46792707,46858241,46989315,47054849,47185937,47251458,47382530,47644676,47710210,47775745,47841282,47906818,48037890,48103426,48300033,48365570,48496641,48562181,48758786,48824337,48889857,49020930,49152002,49348610,49545217,49610755,49676290,49872899,49938436,50003970,50135041,50266117,50331666,50462722,50528266,50659329,50724867,50855938,51052548,51118083,51249167,51314690,51380225,51511307,51642370,51773442,51838977,51970050,52035586,52101126,52166660,52232196,52297732,52363265,52428801,52494338,52625415,52690946,52756490,52822030,52953090,53149697,53280784,53346306,53411843,53542914,53608450,53673995,53739522,53805060,53870595,53936129,54001665,54132750,54198275,54263901,54329352,54394881,54460417,54591501,54657029,54722563,54788100,54853633,54919178,55115777,55508994,55574529,55640069,55771142,55836673,55967748,56033282,56098820,56229890,56360962,56426500,56492095,56623106,56688645,56819713,56885254,56950842,57016340,57081861,57147407,57278466,57344063,57409550,57475136,57606158,57671683,57737223,57802766,57868355,57933830,57999362,58064909,58130448,58195970,58261571,58327041,58392643,58458182],"select":[7077889,9043969],"set":[2424834,3014657,3866626,4980737,7405574,8323075,8978435,9830401,9961475,11599873,12320769,14417922,15204354,18153474,18481154,21102594,25165826,28114946,29360130,32047105,35192833,36175873,37814277,38010884,38469636,38797317,39256068,39452676,39714821,40370180,40632321,40763396,40894470,41680900,41811974,41943044,42074117,42729477,43319300,43384836,43712516,43778052,43843589,44105732,44367876,44433412,44695556,44761094,44957701,45219845,45350916,45416452,45547525,45613060,45809670,45875206,45940740,46071812,46202884,46333957,46399494,46465029,46530566,46661636,46727172,46858245,46989317,47054854,47120388,47316996,47382532,47448069,47644678,47710214,47775749,47841285,47972357,48103428,48168965,48300036,48496645,48693252,48889862,49086468,49217540,49348614,49610756,49872900,49938437,50003974,50659333,50724870,50855940,51118085,51314693,51380229,51576837,51642373,51773447,51838982,52101121,52297733,52363269,52494340,52559876,52887556,53084164,53215236,53280770,53411844,53542917,53936133,54329345,54394884,54919169,55902209,56164354],"syncinvoker":[28049413,28770309,29687813,29884421,30605317,30670853,31260677,31784965,32309253,32899077,33423365,40501249,42532865,44236801,47185921,48824321,50331649,51970052,56492033,57344001,57868289,58261505,58392577,58458113],"sort":[1114113],"statement":[10682369,12779521,13172737,13434881,13893633,13959169,14680065,14876673,15859713,18743297,19595265,23986177,24051713,24838145,25559041,26017793,26345473,27262977,28704769,29163522,33357825,34275330],"soft":[38207489,44826625,47054849,51838977,54263809,57016321],"streaming":[18874369,21823489],"scriptname":[43581441,47906820,55771137],"sets":[2162690,2228226,2293762,2555906,2686977,2752514,2949122,3014659,3604482,3866626,3932161,4259842,4980739,8323073,8978433,9961473,14417921,15204353,18153473,21102593,25165825,31457282,32047106,34340865,34865154,34930692,35127302,35192834,35520513,36175877,36700162,37158913,37421057,38010881,38141958,38207499,38469633,38731777,38862849,39387139,39452673,40042502,40108034,40501255,40632322,40763393,40828930,41418754,41615362,41680897,41746433,42336258,42532871,43253762,43319297,43384833,43712513,43778049,43974658,44105729,44236807,44367873,44433409,44564482,44695553,44826630,45219841,45285378,45350913,45416449,45481986,45547521,45809665,45940737,46071809,46202881,46399489,46530561,46661633,46989313,47054849,47120385,47185927,47316993,47775745,48103425,48168961,48300033,48693249,48824327,49086465,49217537,49610753,49938433,50331655,50659329,50790401,50855937,51118081,51249156,51314689,51380225,51576833,51642369,51838977,52101123,52297729,52363265,52494337,52559873,52887553,52822020,53084161,53215233,53280772,54001665,54132740,54263819,54329347,54984706,55181313,55246852,55574530,55705601,55902213,56098817,56492039,56754178,56950790,57016326,57147396,57212934,57344007,57409540,57475078,57606148,57671682,57737219,57802756,57868295,58064898,58130436,58261511,58392583,58458119],"shares":[22937601,23527425,24313857,25231361,27000833,27721729],"sbyte":[3014657,4980737,11665415,52101121,54132737,54329345],"serialized":[458754,18874370,21823490,36044801,37879809,57737219,57933825],"specifying":[5636097,6160385,6946817,13434881,13959169,14876673,16449537,17235969,18087937,18415617,19333121,19595265,20447233,22020097,22806529,23789569,23986177,24117249,24641537,24772609,24838145,24969217,25427969,25624577,25755649,25952257,26279937,26673153,26738689,27787265,28377089,29491201,30801921,55443457],"shallow":[1179649,1245185,1310721,1376257,1441793,1572865,1507329,1638401,1703937,1769473,1835009,1900545,2097153,2359297,2424833,2686977,2818049,2883585,3014657,3080193,3276801,3342337,3407873,3473409,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4325377,4456449,4521985,4980737,5046273,5242881,5505025,5570561,5832705,6094849,6553601,6750209,49414145,49545217,50790401,52101121,52166657,52232193,53018625,53280769,53805057,54001665,54067201,54263809,54329345,54460417,55050241,55246849,55508993,55574529,55705601,55771137,55836673,55902209,55967745,56033281,56164353,56295425,56360961,56426497,56492033,56623105,56688641,56754177,56819713,57016321,57212929,57344001,57475073,57540609,57737217,57868289,58064897,58261505,58327041,58392577,58458113],"successfully":[5636097,6160385,6946817,10682369,14221313,14811137,16842753,20643841,20840449,21495809,24248321,26214401,28639233,28901377,29753345],"specific":[3145730,7077889,7667713,8585218,12451841,12648449,12713985,13303809,13565953,14024706,14155777,14614529,15269889,15335425,16777217,17825793,18284545,18612225,19005441,19791873,21037057,21757953,22151169,22413314,35586049,39387137,46333953,48889857,49348609,51773441,52625409,53870593,54132737,56098818,57737217],"scripting":[7733250,11206658,34537473,39714817,45875201,53870593,56164353],"statements":[12845057,13172737,13434881,13893633,13959169,14024705,14680065,14876673,15073281,15728641,15859713,16449537,17235969,17629185,18087937,18415617,19333121,19595265,20447233,21168129,22413313,23265281,23986177,24051713,24838145,25559041,26345473,27262977,29163521,34275329],"strongly":[3014669,4980749,7405571,8060929,8650754,9043969,9240578,9306114,9502722,9568258,9764865,10027010,10092546,10747906,10813442,11010050,11665410,11862018,12517377,52101133,54329357],"stringdictt":[8585218,9764866],"scheme":[7405569],"serialization":[17104897,18874369,19988481,21823489],"starting":[3145729,42860545,50987009,55050241,56098817],"supported":[19202050,31784962,31981570,32571394,32768002,32899074,33423362,36175873,37289985,38076417,39124993,40304641,41025537,47316993,52494337,54657026,55902209,56492033,57344001,57475073,57868289,58261505,58392577,58458113],"serializableattribute":[57737220,57933828],"started":[39387137,40173569,40566786,40960001,41353218,53608450,57081857,57737217,57933825],"sampl":[44040194,49807361,50397185,56295426],"subsequent":[4456449,5636097,6160385,6946817,11927553,47448065,48168961,57737217],"scriptmemberattribute":[3080194,19726342,20381702,20971526,21430278,22478854,23068678,23396358,23658502,34537473,38666257,40828930,43712513,44433409,52166657,53805057,55967745,58064918],"setpropertynocheck":[2686977,3932161,18153476,20185089,55574529,56754177],"segment":[53477377],"smaller":[54722561],"signature":[9830401],"sourceinfo":[5636101,6160390,6946822],"significant":[12845057,13172737,13434881,13893633,13959169,14024705,14680065,14876673,15073281,15728641,15859713,16449537,17235969,17629185,18087937,18415617,19333121,19595265,20447233,21168129,22413313,23265281,23986177,24051713,24838145,25559041,26345473,27262977,54919169],"sole":[131073,196609,327681,393217,655361,851969,983041,1048577,54460417,55508993,56688641,58327041],"single":[3014657,4980737,9502727,12779521,14090241,16646145,18743297,26017793,28704769,29163521,33357825,34275329,52101121,54329345],"special":[48103425,51118081,54460417,58327041],"specifies":[7667713,7733249,11206657,31326209,34537479,45219841,50397185,50987009,51183617,51576833,52166657,52494337,52625418,53477381,53805057,54198273,54657029,54722561,54788097,54919182,55312386,55836673,55967745,56426497,56557572,56885251,57212929,57278468,57671682,58064897,58195971],"specifier":[5636101,6160390,6946822,13434885,13959173,14876677,16449541,17235973,18087941,18415622,19333126,19595270,20447238,22020101,22806533,23789573,23986182,24117253,24641541,24772613,24838150,24969221,25427973,25624581,25755653,25952261,26279941,26673157,26738693,27787269,28377093,29491205,30801925],"specified":[1179650,1245186,1310721,1376257,1441796,1572865,1507329,1638401,1703937,1769473,1835010,1900546,2031623,2097154,2228226,2293762,2359298,2424835,2490372,2555908,2686978,2752514,2818049,2883586,2949122,3014686,3080194,3145731,3211313,3276801,3342337,3407873,3473409,3670017,3735553,3801138,3866626,3932166,3997697,4063233,4128769,4194320,4325378,4456449,4521985,4849665,4915201,4980770,5046322,5177345,5242930,5439490,5505074,5570610,5832754,5898241,6029313,6094907,6291457,6422529,6553650,6684673,6750209,6815747,7012355,7077889,7143425,7208961,7340035,7405569,7536642,7602178,7667713,7733250,7798785,7864321,7929859,8060929,8126467,8192002,8323074,8388609,8519682,8650753,8781825,8847363,8912898,8978434,9043972,9109506,9240577,9306113,9502721,9568257,9633793,9699329,9764867,9830401,9961473,10027009,10092545,10158081,10289153,10354689,10616834,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11468803,11534337,11599875,11665409,11730945,11796482,11862017,11993089,12058625,12124161,12189698,12255234,12320771,12386306,12451841,12517377,12582915,12648449,12779521,12845058,12910594,12976129,13107203,13172738,13238273,13303809,13369346,13434881,13500417,13565953,13697026,13762561,13893635,13959170,14024707,14090241,14155778,14286851,14352385,14548993,14614529,14680067,14876674,15073283,15269890,15400961,15597569,15728642,15859714,16056322,16121857,16187394,16252930,16318465,16449537,16515073,16580609,16646145,16711681,16777218,16908289,16973827,17039363,17235970,17301505,17629186,17825794,17956866,17891330,18022401,18087938,18219009,18284545,18415617,18546689,18612225,18743297,18808833,19005441,19070979,19136515,19202049,19333122,19529729,19595265,19726337,19791873,19857409,19922945,20119553,20316161,20381697,20447234,20709378,20774914,20971521,21037057,21168130,21430273,21495809,21626881,21692417,21954561,22020097,22216706,22282242,22347777,22413315,22478849,22544385,22806529,22872065,22937601,23003137,23068673,23199745,23265283,23330817,23461889,23527425,23658497,23724033,23789569,23986178,24051714,24182785,24313857,24444929,24641537,24707073,24772609,24838146,24969217,25034753,25100289,25231361,25427969,25559042,25821185,25952257,26017793,26083329,26148865,26279937,26345475,26804225,26935297,27197441,27262979,27328513,27656193,27721729,27852801,27983873,28246017,28311553,28377089,28704769,28770305,29097985,29163522,29425665,29491201,29622273,29687809,29753345,29818881,30015489,30081025,30146561,30408705,30474241,30605313,30670849,30736385,30801921,30932993,30998529,31260673,31391745,31522817,31588360,31653894,31784961,31981569,32112642,32178177,32309249,32374785,32440336,32571393,32702465,32768001,32899073,32964609,33030145,33161218,33226754,33357825,33423361,33554440,33685507,33751041,33816577,34013186,34078724,34144262,34209794,34275330,34406406,34603012,34996225,35061765,35323905,35651586,35717124,35782657,36044802,36110347,36241409,36306945,36438018,36634625,36831234,36896779,36962306,37093392,37289985,37355522,37617666,37683202,37879810,37945347,38076420,38273025,38535184,38666247,38731777,38928386,39124996,39321616,39387138,39911425,40173570,40239105,40304644,40763393,40960003,41025540,41091073,42205185,42270721,42663937,42991617,43122689,43778049,43909121,45809665,46530561,46661633,47054849,47775745,49414146,49545218,50659329,50790401,51380225,51642369,51838977,52101154,52166659,52232193,52363265,52625411,52756487,52822018,53018625,53280770,53805059,54001665,54067201,54132740,54263878,54329374,54460417,54591492,54919172,55050241,55246851,55508993,55574536,55705601,55771137,55836674,55902212,55967746,56033281,56098820,56164355,56295425,56360961,56426498,56492086,56623105,56688641,56754178,56819714,56950833,57016347,57081859,57212929,57278465,57344054,57409538,57475123,57540609,57606146,57737221,57802754,57868339,57933828,58064905,58261558,58327041,58392630,58458163],"send":[65537,131073,196609,262145,327681,393217,458753,524289,655361,720897,786433,851969,917505,983041,1048577,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6619137,6553601,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17956865,17891329,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22872065,22806529,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34996225,34930689,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38273025,38207489,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40632321,40566785,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42598401,42532865,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49479681,49414145,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52887553,52822017,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57933825,57868289,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113],"scriptobject":[3866626,14024705,20643841,21102593,21364737,21954561,22413313,22544385,23134209,23920641,24248321,24576001,25165825,34537473,39059457,39518209,40108033,40632321,41418754,43057159,45154305,45809665,46530561,47251457,48037889,48562183,50266120,51052552,53280774],"string":[1179649,1245185,1310721,1376257,1441800,1507330,1638401,1703937,1769473,1835009,1900545,2097153,2162691,2228227,2293763,2359297,2424833,2555907,2621441,2686977,2752515,2818050,2883585,2949123,3014663,3080193,3145738,3211331,3276801,3342337,3473409,3604483,3670017,3735553,3801156,3866628,3932166,3997697,4063233,4128769,4194331,4259843,4325377,4456449,4521985,4849670,4980748,5046341,5242948,5439501,5505092,5570629,5636102,5832773,5898246,6029325,6094940,6160391,6553669,6750209,6815750,6881286,6946823,7077902,7208966,7405570,7536653,7733258,7798790,7929857,8060930,8192001,8323078,8585226,8650753,8716294,8847361,8912897,8978438,9043972,9109506,9240577,9306113,9371654,9502721,9568257,9699334,9764866,9830403,10027009,10092545,10223621,10354700,10616839,10682371,10747905,10813441,10878982,10944518,11010049,11075590,11206666,11468813,11534343,11599873,11665409,11730951,11796487,11862017,11993101,12058630,12124166,12189709,12255245,12320770,12386317,12451841,12517378,12582925,12648455,12713985,12779532,12845064,12910611,12976141,13107219,13172742,13303809,13369357,13434887,13500423,13565971,13631493,13697043,13762566,13828101,13893644,13959175,14024718,14090246,14155795,14286867,14352391,14614541,14680076,14811142,14876679,15007751,15073294,15204358,15269901,15335431,15466504,15728648,15859718,15925255,16056329,16187401,16252934,16384007,16449545,16580617,16646152,16777241,16842758,16973841,17039377,17235977,17432585,17498117,17629194,17694729,17825809,17891345,17956881,18087945,18153477,18284545,18415627,18612233,18677768,18743311,18939910,19005441,19071001,19136537,19202060,19333131,19529734,19595273,19791897,19857417,19922953,20119558,20250631,20447243,20578313,20643847,20709393,20774929,20840454,20905998,21037073,21102599,21168138,21299206,21430278,21495814,21626897,21692433,21757961,21889030,22020103,22151169,22216729,22282265,22347782,22413330,22478854,22544391,22740999,22806535,22872070,23003145,23068678,23265298,23330822,23461894,23527430,23592967,23658502,23724038,23789575,23986185,24051720,24117255,24182790,24313862,24379404,24444934,24576006,24641543,24772615,24838153,24903687,24969223,25100294,25231366,25296903,25362446,25427975,25493516,25559048,25624583,25755655,25886729,25952263,26017808,26083334,26214405,26279943,26345488,26411013,26542094,26607630,26673159,26738695,27131913,27197446,27262992,27328519,27394062,27787271,27852806,27983878,28246023,28377095,28639238,28704784,28901381,28966919,29163535,29229065,29491207,29556738,29687814,29753350,29818886,30081031,30146566,30212106,30408710,30474246,30670854,30736390,30801927,30867462,30932998,31260678,31391750,31457281,31522822,31588364,31784978,31850503,31981586,32047105,32112642,32309254,32440336,32571410,32636930,32702470,32768015,32899087,32964610,33030146,33226755,33292297,33357840,33423378,33554444,33685516,33816582,34013186,34144265,34209795,34275343,34406409,34668546,34799617,34865153,34996230,35061763,35192834,35258369,35323910,35389442,35651587,35782662,36044802,36110342,36306950,36438018,36634626,36831235,36896774,36962307,37093392,37289987,37355521,37617666,37683212,37879810,37945351,38010887,38076421,38338562,38535184,38666244,38731781,38928387,39059457,39124997,39190534,39321616,39387137,39518209,39583750,39780359,39911426,39976966,40108033,40304645,40632321,40697862,41025541,41156614,41418753,41615361,42139655,42336257,42467329,42663943,43253761,43515910,43581441,43974657,44171270,44433415,44564481,45285377,45481985,45678598,46399494,46530568,46596102,46792710,46923783,47316999,47906822,48037894,48234502,48365575,49020935,49152007,49217543,49479681,49414145,49545217,49676295,50069505,50462727,50593793,50790402,51249156,51380231,51707910,52101132,52166657,52232193,52625409,52690951,52822020,52953095,53018625,53149703,53280773,53346311,53805057,54001665,54067202,54132740,54263906,54329351,54460417,54525957,55050241,55246849,55508993,55574536,55705601,55771138,55836673,55902216,55967745,56098843,56164353,56295425,56360961,56426497,56492106,56623105,56688641,56754191,56819713,56950851,57016353,57147396,57212929,57344074,57409540,57475143,57540609,57606148,57737220,57802756,57868356,57933827,58064901,58130436,58261578,58327041,58392650,58458180],"sourcemapuri":[34930689,43319300,55246849],"sorry":[589825,41287681],"source":[1638401,1769473,1835010,1900546,5963777,6422530,6684674,16908294,18022406,18874369,20316166,21823489,31326209,34537476,34930689,39387137,43319298,49545219,52625409,53870593,55246849,56360962,56623106,56819715,57737217],"simply":[44367873,49938433],"static":[655363,851971,983043,1048579,3014657,4980737,7012355,7077889,7274499,7340035,7602179,7667713,7864323,8519683,8585217,8781825,10158085,11599873,12451841,12648449,12713985,13303809,13565953,14155777,14614529,15269889,15335425,15663107,15990787,16515075,16711683,16777217,17367043,17563651,17825793,18219011,18284545,18546691,18612225,19005441,19660803,19791873,21037057,21757953,22151169,36765699,38010883,38141953,38207489,38469635,39256067,40042497,40370178,40501249,42532865,44236801,44302339,44498947,45023235,46137347,46465026,47185921,47448067,48168963,48824321,50331649,52101121,52756481,54263809,54329345,54591489,54984705,55181313,55377921,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"state":[458753,28508161,49872897,53411841,57737217],"streamingcontext":[4456449,17104904,18874373,19988487,21823493,36044801,37879809,57737218,57933825],"starttimestamp":[42860545,50987012,55050241],"synchronously":[58261505,58392577,58458113],"systemexception":[57737217],"simultaneously":[20840449,21495809,28639233,29753345],"suppresses":[54657025,54919169],"satisfy":[55836673],"semicolon":[19202049,31784961,31981569,32571393,32768001,32899073,33423361,36175874,36700161,38010881,47316993,49217537,54984705,55902210],"specify":[2424841,3866633,44695553,45350913,46202881,47120385,53280777,56164361],"significantly":[47054849,51838977],"structs":[14024705,22413313,52166657,55836673,55967745],"setelement":[3014657,4980737,9961476,52101121,54329345],"setvalue":[9043971,12517379,14090241,16646145],"similar":[7929857,8192001,11599873,12320769,12779521,18743297,26017793,28704769,29163521,30277633,33357825,34275329,38797313,41811969,58195969],"syntax":[655361,720897,786433,851969,917505,983041,1048577,4390913,4587521,4653057,4718593,4784129,4849665,4915201,5111809,5177345,5373953,5439489,5636097,5701633,5767169,5898241,5963777,6029313,6160385,6225921,6291457,6356993,6422529,6488065,6619137,6684673,6815745,6881281,6946817,7012354,7077889,7143425,7208961,7274498,7340034,7405569,7471105,7536641,7602178,7667713,7733249,7798785,7864322,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519682,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090242,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663106,15728641,15794177,15859713,15925249,15990786,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515074,16580609,16646146,16711682,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367042,17432577,17498113,17563650,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219010,18284545,18350081,18415617,18481153,18546690,18612225,18677761,18743297,18808833,18939905,18874369,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660802,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,31064065,31129601,31195137,31260673,31391745,31522817,31719425,31784961,31850497,31916033,31981569,32309249,32505857,32571393,32768001,32899073,33292289,33357825,33423361,33488897,33882113,33947649,34275329,35979265,36372481,36765697,37027841,37224449,37552129,37814273,38010881,38273025,38404097,38469633,38797313,38993921,39190529,39256065,39452673,39583745,39714817,39780353,39845889,39976961,40239105,40370177,40435713,40566785,40697857,40763393,40894465,41091073,41156609,41222145,41353217,41484289,41549825,41680897,41811969,41943041,42008577,42074113,42139649,42205185,42270721,42598401,42663937,42729473,42795009,42991617,43057153,43122689,43188225,43319297,43384833,43450369,43515905,43646977,43712513,43778049,43843585,43909121,44105729,44171265,44302337,44367873,44433409,44498945,44695553,44761089,44892161,44957697,45023233,45088769,45154305,45219841,45350913,45416449,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098818,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113],"searchpath":[36175873,49217540,55902209],"stream":[4194305,6094849,27459596,28442636,42467329,42926081,49479688,49741831,53018625,54067201,54263809,57016321],"selects":[10616833,11468801,11796481,12255233,12451841,12582913,12648449,13107201,13369345,13500417,14090241,14155777,14286849,15269889,16056321,16187393,16646145,16777217,16973825,17039361,17825793,17956865,17891329,18284545,18612225,19070977,19136513,22937601,23003137,23724033,24313857,24444929,25034753,25231361,25821185,26083329,26148865,26214401,26804225,26935297,27197441,27656193,27721729,27852801,27983873,28311553,28770305,28901377,29097985,29425665,30015489,30408705,30605313,30670849,30932993,31391745,31522817,31784961,31981569,32309249,32571393,32768001,32899073,33423361,54722562],"second":[9043969,12517377],"serves":[1179649,1310721,1376257,1441793,1507329,1638401,1703937,1769473,1835009,1900545,2424833,2686977,2818049,3014657,3276801,3342337,3473409,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4456449,4521985,4980737,5046273,5242881,5505025,5570561,5832705,6094849,6553601,6750209,49414145,49545217,50790401,52101121,52232193,53018625,53280769,54001665,54067201,54263809,54329345,54460417,55050241,55508993,55574529,55705601,55771137,55902209,56164353,56295425,56360961,56492033,56623105,56688641,56754177,56819713,57016321,57212929,57344001,57475073,57540609,57737217,57868289,58261505,58327041,58392577,58458113],"standard":[7733249,11206657,11993089,12255233,12910593,12976129,13107201,13369345,13697025,14286849,17891329,17956865,19070977,19136513,21626881,21692417,22216705,22282241,31784961,31981569,32571393,32768001,32899073,33423361,35454978,40763393,45023238,46661633,55377922],"scriptid":[43581441,47382532,55771137],"simulate":[37814273,40894465],"sourceindex":[16908293,18022405,20316165],"selector":[7077890,9043970],"sample":[3735555,4194305,6094849,7405569,22085634,23855106,31326210,42860545,44040195,45416449,49086465,49283079,49807362,50397186,52559873,52887553,54263809,55050241,55312385,56295432,57016321],"setting":[2424833,3866625,4915202,19726338,20381698,22478850,23068674,24707074,32374785,35848193,36241409,36569089,38141953,38207489,38666244,40042497,40501249,40828929,41877505,41943041,42401793,42532865,43843585,44105729,44236801,46333953,46989313,47185921,47841281,48758785,48824321,49348609,49872897,50331649,50724865,52035585,52166658,53280769,53411841,53805058,53936129,54263809,54394881,55967745,56164353,56426497,56492033,56885252,56950785,57344001,57475073,57868289,58064901,58261505,58392577,58458113],"stack":[720897,3211265,3801089,5046273,5242881,5505025,5570561,5832705,6094849,6553601,15466500,18677764,27131908,30212100,38207489,39387137,44826625,44892161,47775749,52363269,54263810,56492033,56950785,57016321,57344001,57475073,57737217,57868289,58261505,58392577,58458113],"safety":[48889857,51773441],"safely":[13041665,19267585,27590657,30343169,31064065,31129601],"searched":[9175041]} \ No newline at end of file +{"smart":[50659329],"standards":[50659329],"scenarios":[38535169,43384833,47775745,49414145],"system":[1572868,5439491,5505027,5701636,6225923,6619139,7471107,7667717,7798785,7864325,7995393,8126465,8192001,8257539,8388614,8650753,8978434,9043972,9240578,9502721,9764866,9961474,10092546,10223619,10354691,10551298,10878978,11075586,11141122,11272193,11599874,11927554,11993090,12124161,12517378,16384004,24051716,47644673,48103426,48168961,48431105,48562177,48824325,48955393,49020929,49217537,49479681,49545217,49741825,49872897,50135041,50266114,50331649,50397186,50462721,50593793,51118081,51445761,51707905,51773442,51838977,51904513,51970049,52559873,53084161,53411841,53477377,53936129,54001669,54263809,54329345,54460418,55246849,55312385,56033282,56754177,57344002,57737217,57933825,57999361,58392577,58458113,58523649,58589185,58654721,58720260,58785793,58851330,58982401,59047938,59113474,59179009],"speed":[14221313,21430273,23855105,28770305,55115777],"scriptexception":[34930689,35454977,35717121,38600708,42139654,44105734,57016321,58720257,58785793],"sbyte":[3014657,3604481,9764871,49676289,50462721,52559873],"state":[65537,26804225,47710209,49348609,58720257],"scriptengine":[1900547,2490372,4259842,6029359,6291503,6357039,6422575,6684723,7733253,7929861,8781875,9306159,9371653,11403269,15794181,16056325,16580609,16646149,17039361,17498113,17760261,18153473,18284545,18350081,18415617,18481153,18743297,18808841,18874369,19005441,19070977,19267585,19333121,19398661,19529729,19595265,19660801,19791873,19857409,19922945,20316161,20381697,20447233,20512769,20840449,20971521,21037057,21102593,21168129,21233665,21364737,21757953,21889025,22020097,22151169,22347777,22478849,22675457,22740993,22806529,23068673,23265281,23330817,23724033,23855105,24051713,24379393,24444929,24576001,25427969,31981569,32112641,32178177,32243713,32374788,32440321,32636929,32833537,32964609,33030145,33161217,33685507,35127298,36569111,36765717,36896789,37617685,38338583,39256070,39321621,40960001,41025557,41287681,41811969,41877505,42008577,42074113,42205185,42270721,42598401,42663937,42729473,42926081,43188225,43384833,43450369,43646977,43712513,43843585,44040198,44236801,44564481,44695553,44826625,45678593,46399495,48431107,50593796,52690945,54329413,55443457,55771137,55967746,57737295,57999429,58458191,58523656,58589253,58982469,59179077],"shared":[458753,917505,983041,1048577,7208961,7274497,7733249,7929857,8454145,9371649,14942209,15728641,15794177,16056321,16646145,16777217,16973825,17301505,17432577,17760257,18677761,27787265,36306945,36503553,40173569,40239105,40763393,40828929,41746433,45875201,46399489,49807361,51052546],"scheme":[8388609],"serializeobjectstate":[65537,58720257],"similar":[7798785,8650753,11272193,12124161,19595265,26017793,26869761,28311553,32768001,38862849,43646977,50855937,54198273,56229889,58916865],"starttimestamp":[34799617,46465028,51707905],"summarizes":[16384001,24051713],"statement":[10354689,12910593,13500417,14548993,15204353,16121857,16842753,17891329,18874369,19595265,20316161,21102593,22020097,22806529,23724033,24576001,26869761,28311553,32768002,50855937,54198273,56229890],"setproperty":[2031618,2228226,2293762,2359298,2752514,2818050,3014658,3211266,3604482,4128770,4784130,8912901,10616837,13303813,14024709,30605314,32047106,49152002,49676290,50200578,50462722,51183618,51642374,52297734,52559874,52756482,54132738,57606146,58130434,58327042,59047938],"simpler":[41746433],"segment":[49479681],"synchronous":[29491201,29949953,52035585,52953089,53805057,54329346,56098818,56950786,57737217,57999362],"searched":[7012353],"successfully":[5373953,5636097,6488065,10354689,13762561,14352385,17956865,19726337,24117249,24248321,24903681,25493505,25690113,26411009,28573697],"syncinvoker":[28442629,28966917,29229061,29360133,29491205,29949957,36765697,36896769,37617665,38338561,39321601,41025537,49610756,52035589,52953093,53805061,54329345,56623109,57081861,57737217,57999361,58589185,58982401,59179009],"statements":[12582913,12910593,13434881,13500417,14286849,14548993,15007745,15073281,15204353,16121857,16384001,16842753,17170433,17891329,18874369,19070977,19857409,20316161,20971521,21102593,21889025,22020097,22740993,22806529,23724033,24051713,24576001,32768001,52690945,56229889],"shallow":[1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1966081,2097153,2162689,2424833,2621441,2883585,2949121,3014657,3080193,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3866625,3932161,3997697,4063233,4128769,4259841,4325377,4390913,4718593,4849665,6029313,6291457,6356993,6422529,6684673,7077889,8781825,9306113,47644673,48168961,48103425,48562177,48824321,48955393,49020929,49217537,49545217,49741825,49872897,50135041,50266113,50331649,50397185,50462721,51118081,51707905,51773441,51970049,52559873,53084161,53411841,53477377,53936129,54329345,54460417,55246849,55312385,56033281,56754177,57344001,57737217,57933825,57999361,58392577,58458113,58523649,58589185,58654721,58720257,58851329,58982401,59047937,59113473,59179009],"strictly":[39649281,44695553,58654721],"schedule":[50790401,50921473],"server":[3145736,4259848,6029320,6291464,6357000,6422536,6684680,6815745,8192001,8781832,9306120,10682370,11468802,11665410,11730946,12320770,12779522,13041666,13369346,16580610,18153474,18284546,18415618,19791874,20512770,21757954,22347778,31195140,31260676,32112644,32178180,54329353,56164360,57737225,57999369,58458120,58523656,58589192,58982408,59179016],"sourceinfo":[5373958,5636102,6488069],"search":[4587521,6553601,6881282,33095681,33488897,36438017,37158914,40173570,48824321,51380225,51904513],"source":[1638401,1703937,1769474,2097154,6094849,6750210,7340034,15663110,16318470,17104897,19464198,22085633,34930689,35586049,37814274,47972353,48562178,49217539,49872899,50659329,51118082,51773441,55771140,56885249,58720257],"specifies":[6815745,6946817,8192001,36110337,36175873,37027841,45154305,45744129,46465025,47120385,48103425,49479685,49938436,50266113,50659338,50724865,50790414,50921473,50987013,52166658,53411841,54067204,55771143,55902210,56033281,56885249,57344001,58195971,58851329,58916867,59113473],"specifier":[5373958,5636102,6488069,12582917,12910597,13434885,13500421,14286853,14548997,19857414,20316166,20971526,21102598,21692421,21889030,22020102,22413317,22872069,23134213,24313861,24772613,25100293,25362437,25886725,26476549,27131909,27459589,28180485,28704773,29425669,30539781,31653893,32702469],"setpropertynocheck":[2162689,3080193,15925249,19136516,49545217,57933825],"specified":[1114113,1179650,1245185,1310722,1376257,1441793,1507329,1572868,1638401,1703937,1769474,1900551,1966082,2097154,2162694,2228226,2293762,2359298,2424835,2490372,2621442,2686979,2818050,2883586,2949122,3014686,3080194,3145777,3276802,3342337,3211268,3407873,3473409,3538945,3604514,3670017,3735553,3866625,3932161,3997697,4063233,4128770,4259890,4325377,4390913,4653057,4718593,4849680,5111809,5177345,5308417,5439489,5505026,5701635,5898241,6029362,6225922,6291506,6357042,6422578,6619137,6684731,6750209,6881281,6946817,7077889,7274498,7340033,7536641,7602177,7667713,7733249,7798787,7864321,7929859,7995394,8060929,8126467,8192002,8257540,8388609,8454146,8650754,8716289,8781874,8847361,8912898,8978435,9240577,9306162,9371651,9437185,9502722,9568257,9633793,9764865,9830403,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10551297,10616834,10682371,10813441,10878977,11010049,11075585,11141121,11272195,11337729,11468802,11534338,11599873,11665411,11730947,11796481,11927553,11993089,12124163,12189698,12255233,12320771,12386306,12451841,12517377,12582913,12713985,12779522,12845057,12910593,12976129,13041666,13107201,13238273,13369346,13434882,13500418,13565953,13631489,13697026,13893633,13959170,14090241,14155777,14286850,14548994,14745602,14811137,14876673,15007746,15073282,15138817,15204354,15400961,15532033,15597569,15663105,15794177,16056321,16121859,16187393,16318465,16384003,16580610,16646145,16842755,16908289,17039362,17170435,17235970,17498114,17694721,17760257,17825793,17891330,18153475,18284546,18415619,18481153,18612225,18874370,19005442,19070978,19202049,19267586,19398657,19464193,19529729,19595265,19660801,19791875,19857409,20054017,20316161,20512771,20643841,20709377,20774913,20840449,20971522,21102594,21233665,21364737,21561345,21626881,21757954,21889026,21954561,22020098,22151169,22216705,22347778,22413313,22478849,22609921,22675457,22740994,22806530,22937601,23068673,23134209,23265281,23330818,23396353,23461889,23658497,23724035,23789569,23920641,24051715,24313857,24444930,24576003,24641537,24707073,24838145,24903681,24969217,25034753,25100289,25231361,25362433,25427969,25755649,25821185,25886721,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26738689,26869761,27000833,27066369,27131905,27197441,27459585,27852801,27983873,28180481,28311553,28508161,28639233,28966913,29229057,29294593,29360129,29425665,29491201,29622273,29818881,29949953,30015489,30212097,30277634,30343169,30408708,30474241,30539777,30670850,30736386,30801921,30867457,30932994,30998532,31064065,31195152,31260688,31326210,31457288,31522817,31850498,31916034,32112656,32178192,32243720,32374788,32440322,32505857,32571393,32636929,32768002,32833537,32964610,33030146,33161217,33292290,33357826,33423361,33685505,33816577,34406401,34930690,35454979,35717122,36831233,36962305,37093377,38076417,38404097,38600705,39452673,39583745,39976961,42139649,42795009,42860545,44105729,44761089,44892161,45023233,45547521,45940737,47644673,47775745,48103427,48168962,48431111,48562177,48824324,48955393,49020929,49152002,49217538,49414145,49545224,49676292,49741825,49872898,50069505,50135041,50200578,50266114,50331649,50397187,50462750,50593796,50659331,50790404,50855937,51118081,51707905,51773443,51970075,52035585,52101121,52363268,52428807,52559906,52690947,52756482,52953089,53084161,53149697,53215233,53411841,53477377,53608450,53805057,53870593,53936129,54001667,54067201,54198273,54329398,54460417,54657025,54853633,54919169,55050242,55181313,55246849,55312385,55377931,55443457,55574531,55640065,55967750,56033282,56098820,56164401,56229890,56360961,56426502,56688645,56754177,56950788,57016323,57081857,57278475,57344002,57409540,57540609,57671684,57737267,57802754,57933826,57999414,58064902,58130434,58392577,58458182,58523699,58589238,58654721,58720261,58785796,58851337,58982454,59047938,59113475,59179059],"samples":[34799617,35782658,36569090,44171270,45613057,46137345,47054849,48365569,51707905,51970050,58458114],"securely":[36831233,36962305],"stringdictt":[8978434,9043970],"scriptengineexception":[65538,4718594,15859713,16187398,16449542,17104902,17694726,18219009,31850505,34930690,40435713,40697857,41156609,41418753,42139649,42795009,55771137,58720270],"simply":[41484289,42926081],"simultaneously":[24248321,24903681,25690113,26411009],"selector":[7864322,8257538],"scriptmemberflags":[20054021,20774917,22937605,23461893,42401799,52428804,55771137,58851332,58916868],"scriptinterruptedexception":[2555906,20250625,20905985,21495814,22085638,22609926,23396358,33292297,35717122,42467329,43122689,43974657,44105729,44630017,44761089,47710209,49348609,55771137,58785806],"standard":[6815745,8192001,11534337,11730945,12255233,12320769,12386305,12779521,13041665,14155777,16580609,18284545,19005441,19267585,19791873,20512769,22675457,23068673,29491201,30867457,31522817,32505857,36831233,36962305,40828934,52035585,52232194,53805057,54263810],"synchronously":[58589185,58982401,59179009],"script":[65537,589825,720898,1310721,1638401,1703937,1769473,1835009,1900553,2031625,2097153,2228233,2293769,2359305,2490383,2555905,2621441,2752522,2818057,2883585,2949121,3014661,3145771,3276801,3211273,3604484,3670017,3801092,4128778,4259886,4325380,4653057,4718593,4784138,4849682,4915201,5177348,5439489,6029359,6094849,6291503,6357039,6422575,6684734,6750210,6946817,7208962,7274499,7340034,7536645,7602177,7667718,7733253,7864321,7929862,7995393,8126466,8257541,8323073,8454147,8519681,8585217,8781872,8847361,8912897,9043969,9109505,9175041,9240578,9306160,9371654,9568257,9764866,9830402,9961474,10027009,10092546,10223621,10354693,10551298,10616833,10682371,10878978,10944513,11075586,11141122,11272193,11403269,11468803,11534339,11599874,11665411,11730947,11927554,11993090,12124161,12189699,12255235,12320771,12386307,12451843,12517378,12582916,12713988,12779523,12845061,12910595,12976132,13041667,13107203,13238273,13303809,13369347,13434883,13500418,13565957,13631492,13697028,13762561,13828097,13959171,14024705,14090249,14155779,14286851,14352385,14417921,14483460,14548994,14680067,14745604,14942211,15007750,15073286,15138817,15204357,15269889,15335428,15532036,15597572,15728642,15794181,15859713,16056325,16121865,16187393,16384017,16449537,16515073,16580612,16646149,16777218,16842758,16973825,17039364,17104897,17170439,17301507,17432578,17498116,17563653,17629185,17694721,17760261,17891333,18022402,18087937,18153476,18219009,18284548,18350082,18415620,18481157,18546689,18677762,18743298,18808834,18874374,18939905,19005444,19070983,19136513,19202052,19267588,19333126,19398658,19529733,19595268,19660810,19726338,19791876,19857413,19922947,19988481,20054023,20119553,20250625,20316164,20381701,20447236,20512772,20643842,20709380,20774916,20840452,20905985,20971524,21037057,21102595,21168133,21233669,21364740,21495809,21561346,21626882,21692419,21757956,21889028,21954565,22020099,22085633,22151173,22216709,22282242,22347780,22413314,22478854,22609921,22675460,22740999,22806534,22872067,22937608,23003138,23068676,23134210,23265286,23330821,23396353,23461893,23527426,23658501,23724042,23789576,23855105,23920646,24051730,24117250,24182788,24313859,24379393,24444933,24576007,24707080,24772611,25100290,25165829,25231364,25296897,25362434,25427973,25624581,25690113,25886722,25952264,26017799,26083332,26148872,26214402,26279938,26411009,26476547,26607621,26673157,26738690,26804229,26869763,26935298,27066370,27131907,27197448,27262979,27394049,27459586,27590657,27721730,27918342,27983874,28049412,28180482,28246021,28311555,28377090,28639234,28704772,28835845,28901378,29097986,29163524,29229057,29294594,29425667,29491201,29556740,29622276,29818881,29884420,29949953,30343169,30474241,30539778,30801922,30867457,31064068,31129605,31195144,31260680,31326209,31391746,31457288,31522817,31588354,31653892,31719426,31850497,31916034,31981570,32047106,32112649,32178185,32243721,32309253,32374797,32440322,32505859,32571396,32636933,32702467,32768003,32833539,32964610,33030147,33161221,33292289,33357825,33423365,33685507,33751045,33816581,33947650,34013189,34144258,34275342,34340869,34471941,34603012,34668546,34930693,34996225,35061765,35127312,35192834,35258374,35389446,35454980,35651585,35717125,35782658,35848198,35979270,36110338,36503557,36569104,36634626,36700165,36765712,36831233,36896784,36962305,37486596,37552129,37617681,38010881,38207489,38273028,38338578,38535169,38600706,38731777,38928385,38993922,39059461,39124995,39190536,39256065,39321617,39452674,39518213,39583745,39714818,39845892,39911426,39976961,40108034,40304641,40435714,40566785,40632321,40697858,40894465,40960003,41025554,41091073,41156609,41222145,41287682,41418753,41484291,41680899,41811970,41877506,42008578,42074114,42139651,42205187,42270722,42336257,42401794,42467330,42598401,42663939,42729478,42795011,42860546,42926084,43122689,43188228,43319299,43384834,43450372,43515905,43581442,43646977,43712522,43843589,43909122,43974658,44040194,44105731,44236805,44367874,44498946,44564483,44630017,44695553,44761091,44826629,44892162,45023234,45088770,45219841,45416450,45547521,45678598,45809665,46071810,46399492,46596097,46727170,46792706,47120387,47185931,47382530,47448066,47710211,47775745,47906817,47972355,48037889,48103428,48234501,48300034,48431114,48496641,48562178,48627714,48758788,48889857,49086475,49152014,49217537,49283073,49348611,49414145,49545217,49610754,49676302,49872897,50003969,50069505,50135041,50200590,50266113,50331649,50462728,50593807,50659335,50724867,50790410,50855939,50921476,50987013,51052545,51118082,51183631,51314690,51511298,51642370,51970068,52035587,52101122,52297730,52363268,52428809,52559878,52690952,52756494,52822018,52887555,52953089,53018626,53149698,53215234,53280771,53346305,53477382,53542913,53673986,53739523,53805057,53870594,53936130,54067202,54132739,54198275,54329407,54394882,54460418,54591491,54657026,54788101,54853634,54984706,55115777,55181313,55377932,55443459,55508993,55574537,55705602,55771163,55836674,55902211,55967750,56033284,56164410,56229891,56295426,56360962,56426499,56492039,56557570,56688647,56754180,56819715,56885252,57016325,57081857,57147394,57212934,57344004,57475076,57606159,57737283,57802761,57868290,57999423,58064899,58130446,58195974,58261505,58327056,58392581,58458205,58523712,58589251,58654721,58720263,58785798,58851341,58916866,58982467,59047952,59113476,59179078],"scriptobject":[4128770,16384001,19726337,19988481,20643841,21626881,22282241,23003137,23527425,24051713,24117249,35389442,39845895,42860545,43581441,44040193,44236807,44367873,44892161,48234504,48758792,51642369,52297729,52887553,53280769,53739521,54132737,55771137,59047942],"sole":[131073,262145,327681,458753,524289,917505,983041,1048577,50331649,53936129,58392577,58654721],"scriptfunc":[6750213,7340037,7536646,7667717,8257541,10223621],"strongly":[3014669,3604493,7536641,8257537,8388611,8978433,9240578,9764866,9961474,10092546,10223617,10551298,10878978,11075586,11141122,11599874,11927554,11993090,12517378,50462733,52559885],"setelement":[3014657,3604481,10027012,50462721,52559873],"safety":[40894465,42270721],"specific":[2686978,6946817,7864321,9043970,12713985,12976129,13631489,13697025,14483457,14745601,15335425,15532033,15597569,16384002,18481153,19529729,20381697,21168129,21233665,22151169,23330817,24051714,24444929,25427969,34930689,38535169,40894465,42270721,43384833,47972353,49676289,50659329,52363266,56295425,58720257],"safely":[18022401,19922945,26935297,27590657,28901377,56819713],"sync":[327681,1048577,4325377,49610753,53673985,54394881,54984705,55508993,56557569,58392577],"setting":[2424833,4128769,5177346,19202050,20054018,20709378,22216706,22937602,33947649,34144257,34275329,34603009,34668545,35127297,36569089,36634625,36765697,36896769,37486593,37617665,38338561,38535169,38993921,39321601,39911425,40960001,41025537,42205185,43384833,43843585,45088769,47710209,47906817,48103426,48496641,49348609,50397185,52428804,52822017,53215233,54329345,54657025,56033281,56164353,57344001,57737217,57999361,58195972,58458113,58523649,58589185,58851333,58982401,59047937,59113474,59179009],"selecting":[10420225,10485761,11337729,11796481],"selects":[10682369,11534337,11665409,11730945,12189697,12320769,12386305,12845057,13697025,13959169,14090241,14745601,15532033,15597569,17039361,17498113,18153473,18415617,19005441,19267585,19660801,19791873,20512769,21233665,22478849,23330817,23789569,24444929,24641537,24707073,24838145,25427969,25493505,25755649,26148865,26214401,26279937,26345473,26542081,26738689,27000833,27066369,27197441,27852801,27983873,28508161,28573697,28639233,29229057,29294593,29491201,29818881,29949953,30343169,30474241,30867457,31522817,32505857,50724866,52035585,52953089,53805057,54853633,55181313,57081857],"start":[35258370,45219841,46465025,48037889,53477378],"sub":[4456449,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5439489,5505025,5701633,5767169,5832705,5963777,6094849,6160385,6225921,7405569,9699329,9895937,10158081,10289153,10420225,10485761,10682369,10747905,10813441,11010049,11206657,11337729,11403265,11468801,11534337,11665409,11730945,11796481,12058625,12189697,12255233,12320769,12386305,12451841,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13303809,13369345,13500417,13565953,13631489,13697025,13959169,14024705,14090241,14155777,14221313,14483457,14548993,14680065,14745601,15204353,15335425,15400961,15532033,15597569,15925249,15990785,16121857,16187393,16449537,16515073,16580609,16711681,16842753,16908289,17039361,17104897,17367041,17498113,17629185,17694721,17891329,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18743297,18808833,18874369,18939905,19005441,19136513,19202049,19267585,19398657,19529729,19660801,19791873,19922945,19988481,20054017,20119553,20250625,20316161,20381697,20447233,20512769,20578305,20709377,20774913,20840449,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21757953,22020097,22085633,22151169,22216705,22347777,22478849,22609921,22675457,22806529,22937601,23068673,23199745,23265281,23330817,23396353,23461889,23592961,23724033,23855105,23986177,24379393,24510465,24444929,24576001,24641537,24838145,24969217,25034753,25296897,25427969,25559041,25755649,25821185,26017793,26214401,26279937,26345473,26542081,26738689,26804225,26935297,27000833,27066369,27394049,27590657,27656193,27852801,27983873,28114945,28377089,28442625,28508161,28639233,28770305,28901377,28966913,29229057,29294593,29360129,29491201,29687809,29753345,29818881,29949953,30015489,30343169,30474241,30867457,31522817,32505857,51314689,51511297,51642369,52035585,52101121,52297729,52494337,52625409,52953089,53149697,53870593,53805057,54394881,54722561,54853633,55115777,55181313,55508993,55640065,55836673,56623105,56819713,57081857],"sum":[7667715],"second":[8257537,10223617],"stripped":[9633793],"stripping":[39124993,43450369,45416449],"scripts":[34996225,36503553,40894465,42270721,45023233,45547521,47775745,49414145,50069505,50135041],"scriptid":[35258369,43909124,53477377],"sampl":[34865154,44957697,45744129,55312386],"sealedattribute":[48431105,48562177,49872897,50266113,50593793,51445761,51773441,51838977,51904513,51970049,53411841,53477377,54263809,54460417,55312385,56033281,57344001,58458113,58851329],"special":[40108033,44564481,50331649,58654721],"send":[65537,131073,196609,262145,327681,393217,458753,524289,589825,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3276801,3211265,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10747905,10682369,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12648449,12582913,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14155777,14090241,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19726337,19660801,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24510465,24444929,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28114945,28049409,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36831233,36765697,36896769,36962305,37027841,37093377,37158913,37224449,37355521,37289985,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39256065,39190529,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48168961,48103425,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52101121,52035585,52166657,52232193,52297729,52363265,52428801,52494337,52625409,52690945,52559873,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53870593,53805057,54001665,53936129,54067201,54132737,54263809,54198273,54394881,54329345,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56360961,56295425,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56950785,56885249,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58261505,58195969,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009],"suppressextensionmethodenumeration":[36569089,47906820,58458113],"schema":[22544385,23199745],"semicolon":[19398657,29491201,30867457,31522817,32505857,33488897,36438018,37158913,37421057,40173569,48824322,51904513,52035585,53805057],"sensitive":[32768001,56229889],"store":[4521985,5570561,14811137,14876673,15663105,16318465,18612225,19464193],"sourcemapuri":[35586049,37814276,51773441],"space":[45023233,45350913,46268417,47579137],"sort":[51380225],"stringify":[50790401],"soft":[35782657,36569089,47775745,49414145,51970049,58458113],"selectively":[36831233,36962305],"suppressinstancemethodenumeration":[36569089,47906817,48496644,58458113],"scripting":[6815746,8192002,39649281,44695553,47972353,50397185,55771137],"scriptmemberattribute":[2949122,18939910,19202054,20054022,20774918,21561350,22216710,22937606,23461894,34603010,42401793,43319297,48103425,52428817,55771137,56033281,58851350,59113473],"structures":[50790401,55771137,56885249],"serialization":[17104897,18219009,20250625,22085633],"snapshot":[4849665,6684673,23986180,29687812,51970049,58458113],"short":[49676289],"stores":[1441793,1507329,4521985,5570561,47644673,49020929],"streaming":[17104897,22085633],"serialized":[65538,17104898,22085634,31850497,33292289,58720259,58785793],"stack":[720897,3145729,4259841,6029313,6291457,6356993,6422529,6684673,8781825,9306113,17563652,19333124,28246020,34930689,35782657,36569089,45547525,46596097,50069509,51970049,54329345,56164353,56492036,57737217,57999361,58458114,58523649,58589185,58720257,58982401,59179009],"suppresses":[50790401,50987009],"structs":[16384001,24051713,48103425,50266113,56033281],"suppressfinalize":[18743297],"starting":[2686977,34799617,46465025,51707905,52363265],"sorry":[655361,33095681],"stacktrace":[34930689,58720257],"sets":[2031618,2162689,2228226,2293762,2359298,2752514,2818050,3014659,3080193,3211266,3604483,4128770,4784130,8912897,10027009,10616833,13303809,14024705,19136513,30605314,31719426,32047106,33488898,33619969,33751042,33882113,34013186,34209793,34275334,34340866,34406401,34471938,34603010,34930691,34996225,35061762,35127302,35323910,35389442,35520513,35586052,35782662,35848194,35979266,36044801,36110337,36175873,36241409,36372481,36438021,36569099,36700162,36831233,36765703,36896775,36962305,37027841,37158913,37421057,37617671,37748737,37814273,38338567,38731777,38797313,39059457,39321607,39583745,39911425,39976961,40108033,40173569,40763393,40960001,41025543,41484289,41680897,41877505,42401793,42532865,42860545,42926081,43188225,43319297,44564481,44892161,45023233,45350913,45547521,45613057,45678593,45875201,45940737,46137345,46268417,46333953,46858241,46923777,47054849,47579137,47644673,47775745,48365569,48627713,48693249,48824325,49020929,49152004,49414145,49545218,49676292,50069505,50135041,50200580,50462723,51183620,51445761,51642369,51773444,51904514,51970054,52297729,52363265,52559875,52756484,53411846,53739522,54132738,54329351,55902210,56164358,57606148,57737223,57933826,57999367,58130436,58327044,58458123,58523654,58589191,58720259,58851330,58982407,59047940,59179015],"single":[3014657,3604481,10878983,14090241,19595265,19660801,26869761,28311553,32768001,50462721,50855937,52559873,54198273,56229889],"specify":[2424841,4128777,45350913,46268417,46858241,47579137,50397193,59047945],"subclasses":[39911425,40960001],"stringdocument":[3866626,21299205,34734082,43057154,43778050,44302337,48955393,49741832,55771137],"servername":[6815751,8192007,10682373,11468805,11665413,11730949,12320773,12779525,13041669,13369349,16580614,18153478,18284550,18415622,19791878,20512774,21757958,22347782],"sealed":[15990785,16580609,17039361,17235969,17498113,17956865,18153473,18284545,18415617,18481153,18874369,19005441,19070977,19267585,19529729,19660801,19791873,19857409,20185089,20316161,20381697,20447233,20512769,20840449,20971521,21037057,21102593,21168129,21233665,21364737,21757953,21889025,22020097,22151169,22347777,22478849,22675457,22740993,22806529,23003137,23068673,23265281,23330817,23724033,24051713,24379393,24444929,24576001,25427969,27656193,40435713,40501249,40697857,40960002,41156609,41287682,41353217,41418753,41811970,41877506,42008578,42074113,42139649,42205186,42270722,42467329,42532866,42598402,42729474,42795009,42926082,43122689,43188226,43384834,43450370,43646978,43843586,43974657,44105729,44564482,44630017,44695554,44761089,44826626,45678594,48431105,48562178,49872898,50266114,50593793,51445761,51838977,51904513,51970050,52690945,53411842,53477378,53673985,54263809,54394881,54984705,55312386,55508993,56033282,57344002,58458114,58851330],"selected":[2162690,8126465,8716289,9437185,9830401,10420225,10485761,11272193,11337729,11796481,12124161,14090241,15073281,15204353,19660801,22740993,22806529,30670850,30932994,49479681,49545220,49938433,50659329,50790401,50987009,52166657,54067201,58916865],"serializableattribute":[58720260,58785796],"select":[7864321,8257537],"significant":[12582913,12910593,13434881,13500417,14286849,14548993,15007745,15073281,15204353,16121857,16384001,16842753,17170433,17891329,18874369,19070977,19857409,20316161,20971521,21102593,21889025,22020097,22740993,22806529,23724033,24051713,24576001,50790401,52690945],"settings":[1572865,5373959,5439489,5505025,5636103,5701633,5832705,6225921,6488070,33488897,34275329,35127297,35782657,36438017,36569089,36831233,36765697,36896769,37158913,37421057,37617665,37748737,38141953,38338561,38469633,38731778,38797313,39321601,40173569,40763393,41025537,41746433,41877506,48693250,48824321,51904513,51970049,54001665,54329345,55771137,56164353,57737217,57999361,58195969,58458113,58523649,58589185,58982401,59179009],"searches":[1441793,1507329,4587521,6553601,47644673,49020929],"step":[10354689],"signature":[7667713],"sample":[3407875,4849665,6684673,8388609,25559042,28114946,34799617,34865155,44171271,44957698,45613057,45744130,46137345,47054849,48365569,51707905,51970049,52166657,55312392,56885250,58458113],"sourceindex":[15663109,16318469,19464197],"slower":[47775745,49414145],"systemexception":[58720257],"serves":[1114113,1179649,1245185,1441793,1507329,1572865,1638401,1703937,1769473,2097153,2162689,2424833,3014657,3080193,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3866625,3932161,3997697,4128769,4259841,4325377,4390913,4718593,4849665,6029313,6291457,6356993,6422529,6684673,7077889,8781825,9306113,47644673,48168961,48562177,48824321,48955393,49020929,49217537,49545217,49741825,49872897,50135041,50331649,50397185,50462721,51118081,51707905,51970049,52559873,53084161,53411841,53477377,53936129,54329345,55246849,55312385,56754177,57737217,57933825,57999361,58392577,58458113,58523649,58589185,58654721,58720257,58982401,59047937,59179009],"scriptusageattribute":[3276802,20119558,20709382,34144257,34603009,34668546,39911425,40960001,45088769,48103425,54657029,55771137,56033281,57344006,58851334,59113482],"syntactic":[12582913,12910593,13434881,13500417,14286849,14548993,15007745,15073281,15204353,16121857,16384001,16842753,17170433,17891329,18874369,19070977,19857409,20316161,20971521,21102593,21889025,22020097,22740993,22806529,23724033,24051713,24576001,52690945],"streamingcontext":[4718593,17104901,18219016,20250631,22085637,31850497,33292289,58720258,58785793],"site":[655361],"size":[5373953,5636097,6488065,33619969,34013186,34340866,34471938,34996225,35061762,35323908,35782659,35913735,36044801,36110338,36175874,36569091,36700162,37027842,40042502,40370182,45023234,45285378,45350914,45613059,46006274,46137347,46268418,46333954,46661634,46858242,46923778,46989314,47251458,47513602,47579138,47644673,47775750,47841282,49020929,49152002,49414150,49676290,50135041,50200578,51970051,52756482,53411844,55246855,58130434,58458115],"scriptable":[6619137,7471105,49545218,52363265,55771138],"struct":[7012353,8650753,27787266,48103428,50266119,51773442,53084162,54460418,55771137,56033284,57344004,59113476],"separate":[26214401,26279937,26738689,27066369,27983873,28639233,29294593,51511297,52101121,53149697,53870593,54853633],"strings":[7864321,7995393,8257538,10223617],"searchpath":[36438017,37158916,48824321],"scope":[49807361],"stringt":[7864323,7995394,8257539,8978436,9043974,10223618,12124162],"syntax":[196609,458753,720897,786433,851969,917505,983041,1048577,4456449,4521985,4587521,4653057,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6094849,6160385,6225921,6488065,6553601,6619137,6750209,6815745,6881281,6946817,7012353,7208962,7274498,7340033,7405569,7471105,7536641,7602177,7667713,7733250,7798785,7864321,7929858,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454146,8519681,8585217,8650753,8716289,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9371650,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090242,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942210,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728642,15794178,15859713,15925249,15990785,16056322,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646146,16711681,16777218,16842753,16908289,16973826,17039361,17104897,17170433,17235969,17301506,17367041,17432578,17498113,17563649,17629185,17694721,17760258,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677762,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660802,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28114945,28049409,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30343169,30474241,30539777,30867457,31129601,31522817,31653889,31784961,32309249,32505857,32702465,32768001,36110337,36175873,36241409,36306945,36372481,36503553,36634625,36831233,36962305,37027841,37093377,37158913,37224449,37355521,37289985,37421057,37486593,37552129,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51314689,51445761,51511297,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52297729,52363266,52494337,52559873,52625409,52690945,52756481,52953089,53018625,53084161,53149697,53346305,53411841,53477377,53542913,53673985,53805057,53870593,53936129,54067201,54198273,54263809,54329345,54394881,54460417,54591489,54722561,54788097,54853633,54984705,55115777,55181313,55246849,55312385,55508993,55640065,55836673,55902209,56033281,56164353,56229889,56492033,56623105,56754177,56819713,57016321,57081857,57344001,57606145,57737217,57868289,57933825,57999361,58130433,58195969,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009],"set":[2424834,3014657,3604481,4128770,7667713,8388614,8912899,10027011,10616835,11272193,12124161,13303810,14024706,18350082,19136514,25296898,30605313,32047105,36110340,36175877,36241412,36372484,36438018,36831236,36962308,37027845,37158916,37421060,37486596,37552133,37683204,37748740,37814276,38141957,38207493,38273029,38469637,38535173,38731780,38797316,38862853,38928388,38993925,39059460,39124997,39518213,39583749,39649285,39911428,39976965,40108036,40173572,40763396,40894470,40960005,41287686,41484292,41680900,41746436,41811974,41877509,42008581,42205190,42270727,42401796,42532870,42598405,42729478,42860549,42926085,43188229,43253764,43319300,43384838,43450374,43646982,43843589,43909124,44564485,44695558,44826630,44892165,45023237,45350916,45416453,45547525,45613060,45678597,45875205,45940740,46137348,46268420,46333956,46858244,46923780,47054852,47579140,47710212,47775750,47906821,48365572,48496644,48627716,48693252,48824322,49348612,49414150,49807365,50069509,50397186,50462721,50790401,51642370,52297730,52559873,54132737,55836674,59047938],"stored":[8978433,22872065,23658497,25362433,26083329,26607617,27459585,28180481,28835841,29163521,30539777,32309249,32702465,52363265],"scriptaccess":[5177349,19202053,20054021,20709381,22216709,22937605,36634630,39911431,40960008,45088774,48103425,52428804,53215233,54657025,55771137,58195972,58851332,59113473],"smaller":[50724865],"specifying":[5373953,5636097,6488065,12582913,12910593,13434881,13500417,14286849,14548993,19857409,20316161,20971521,21102593,21692417,21889025,22020097,22413313,22872065,23134209,24313857,24772609,25100289,25362433,25886721,26476545,27131905,27459585,28180481,28704769,29425665,30539777,31653889,32702465,46530561,52494337],"subsequent":[4718593,5373953,5636097,6488065,11403265,45875201,49807361,58720257],"satisfy":[50266113],"structure":[589825,720897,786433,1376257,4063233,5111810,5308418,5373953,5636097,6488065,15007745,17891329,18874369,19070977,21299201,21954561,23658497,23920641,25624577,26607617,27787265,29622273,34537473,34734081,35586049,36241409,36372481,36962305,37093377,37814273,38404097,39387137,44302337,46530561,48955393,49741825,50528257,51773444,52494337,53084161,53608451,54460418,55771137,56885249],"serializationinfo":[2555905,4718594,17104901,18219017,20250632,22085637,31850497,33292289,58720259,58785794],"selectort":[7864322],"significantly":[47775745,49414145],"scriptexceptionasobject":[34930689,35454977,35717121,39452676,42795014,44761094,57016321,58720257,58785793],"setvalue":[8257539,10223619,14090241,19660801],"suppress":[47906817,48496641],"safe":[58458113],"simulate":[39518209,42729473],"supports":[2424833,2490370,4128769,8585217,14090241,14942210,17301506,19660801,23789569,24707073,26148865,27197441,32768001,36765697,36896769,37617665,38338561,39190529,39321601,41025537,43712513,47185921,48627713,49086465,49807364,50397185,50593794,54329345,55771137,56229889,57737217,57999361,58589185,58851329,58982401,59047937,59179009],"subroutine":[41680897,43188225,53936129],"string":[1114113,1179649,1245185,1310721,1441794,1507329,1572872,1638401,1703937,1769473,1966081,2031619,2097153,2162694,2228227,2293763,2359299,2424833,2555905,2621441,2686986,2752515,2818051,2883585,2949121,3014663,3080193,3145795,3211267,3276801,3342337,3407873,3473409,3538945,3604492,3670017,3735553,3866626,3932161,3997697,4128772,4259908,4325377,4390913,4718593,4784131,4849691,5308422,5373959,5439501,5505037,5636103,5701638,6029381,6225933,6291525,6357061,6422597,6488070,6619142,6684764,6815754,6881286,7077889,7471110,7536642,7602182,7667715,7798785,7864334,7995394,8126465,8192010,8257540,8388610,8519686,8650753,8781892,8912902,8978434,9043978,9175046,9240577,9306180,9502721,9568262,9764865,9961473,10092545,10158092,10223618,10289158,10354691,10551297,10616838,10682381,10813446,10878977,11010054,11075585,11141121,11272193,11337734,11468813,11534349,11599873,11665421,11730963,11796486,11862021,11927553,11993089,12124162,12189703,12255245,12320787,12386317,12451847,12517377,12582921,12713985,12779539,12845063,12910599,12976147,13041683,13107207,13172741,13238278,13369357,13434889,13500423,13565959,13631501,13697043,13959175,14024710,14090246,14155789,14286857,14352390,14483463,14548999,14680071,14745613,15007752,15073288,15204358,15269893,15335425,15532033,15597575,15859721,15990790,16121868,16187398,16384014,16580633,16711687,16842764,17039369,17170446,17235974,17367047,17498121,17563656,17694726,17891334,17956870,18153489,18284569,18415633,18481177,18546693,18808846,18874376,19005457,19070986,19136517,19267601,19333128,19398668,19529745,19595279,19660808,19726343,19791897,19857419,20185094,20316169,20381705,20447241,20512793,20840457,20905993,20971531,21037063,21102601,21168129,21233665,21299207,21364745,21561350,21626887,21692423,21757969,21823497,21889035,21954566,22020105,22151169,22216710,22347793,22413319,22478857,22544389,22609926,22675473,22741002,22806536,22872071,22937606,23068689,23134215,23265289,23330841,23396358,23461894,23527430,23658503,23724048,23920647,24051730,24182790,24248326,24313863,24444945,24576016,24772615,24838150,24903686,25034758,25100295,25165831,25231366,25362439,25427977,25493509,25624583,25690118,25755654,25821190,25886727,25952258,26083335,26148870,26214406,26279942,26345478,26411014,26476551,26542086,26607623,26673164,26738694,26869776,27131911,27197446,27262982,27328521,27459591,27918350,28049415,28180487,28246025,28311568,28573701,28704775,28835854,28966918,29163527,29360134,29425671,29491218,29622278,29818886,29884428,29949958,30015494,30081026,30146562,30343174,30539783,30605314,30670850,30736387,30801922,30867474,30932994,31064070,31129614,31195152,31260688,31326211,31391745,31457292,31522834,31588353,31653895,31719425,31784969,31850498,31916034,32047105,32112656,32178192,32243724,32309262,32440323,32505871,32571398,32636934,32702471,32768015,32833538,32964611,33030146,33161222,33226754,33292290,33357827,33423366,33685507,33751041,33816582,34013185,34340865,34406405,34471937,34734081,34930689,35061761,35258369,35389441,35848193,35979265,36700161,37093383,37158919,37224454,37421063,37945350,39583751,39714822,40173575,40435719,40501255,40566790,41091078,41156615,41549830,42074119,42336262,42532870,42663942,42860552,42991622,43057153,43319303,43515911,43778049,43974663,44302337,44367878,44498950,44630023,45809670,46071815,46202886,46727175,46792711,47448071,47644673,48103425,48168961,48300039,48562177,48824328,48955393,49020930,49152004,49217537,49283078,49545224,49676292,49741826,49872897,50135041,50200580,50266113,50331649,50397185,50462727,50528261,50659329,50855948,51118081,51183620,51707905,51773441,51970081,52035599,52297735,52363291,52428804,52690962,52559884,52756484,52887553,52953094,53084161,53149702,53280769,53411841,53477378,53608449,53739521,53805074,53870598,54001671,53936129,54132737,54198288,54329418,54525954,54853638,54919170,55050243,55246849,55312385,55377926,55574540,55640070,56033281,56098821,56164419,56229903,56426505,56492042,56688643,56754177,56950789,57278470,57344001,57409541,57540610,57606148,57671685,57737284,57802764,57933839,57999434,58064905,58130436,58327044,58392577,58458210,58523719,58589258,58654721,58720260,58785795,58851333,58982474,59047941,59113473,59179076],"successful":[8650753,38535169,43384833],"started":[34930689,35454977,35717121,38010882,40697858,42467330,57016321,58720257,58785793],"support":[7602177,8126465,8519681,8585217,8847361,8912897,8978433,9109505,9175041,9240577,9568257,9764865,9830402,9961473,10027009,10092545,10551297,10616833,10878977,10944513,11075585,11141121,11599873,11927553,11993089,12517377,16384001,24051713,34275329,35127297,36569089,36765697,36896769,37552129,37617665,37683201,38338561,39321601,39518209,40108033,41025537,41811969,42598401,42729473,44564481,47972353,50331649,50659329,50790402,52363265,54329345,55771137,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"serialize":[2555905,4718593,18219009,20250625,58458113,58720257,58785793],"scriptname":[35258369,44498948,53477377],"stream":[4849665,6684673,23986188,29687820,34537473,34734081,37879815,43057160,46530566,48955393,49741825,51970049,58458113],"shares":[23789569,24707073,25231361,26148865,27197441,29556737],"synchronization":[54394881,54984705],"supported":[19398658,29491202,30867458,31522818,32505858,33685505,36110337,36438017,37421057,48824321,50987010,52035586,53805058,54329345,56098817,56950785,57409537,57671681,57737217,57999361,58523649,58589185,58982401,59179009],"static":[458755,917507,983043,1048579,3014657,3604481,6946817,7208963,7274499,7733251,7864321,7929859,8454147,8716289,9043969,9371651,9633797,11272193,12713985,12976129,13631489,13697025,14483457,14745601,14942211,15335425,15532033,15597569,15728643,15794179,16056323,16646147,16777219,16973827,17301507,17432579,17760259,18481153,18677763,19529729,20381697,21168129,21233665,22151169,23330817,24444929,25427969,27787267,34275329,35127297,36306947,36503555,36569089,36765697,36896769,37617665,38338561,38928386,39321601,40173571,40239107,40763395,40828931,41025537,41746435,42008578,45875203,46399491,48431105,49807363,50462721,50593793,51445761,51838977,51904513,52559873,54263809,54329345,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_116.json b/docs/Reference/fti/FTI_116.json index c57ad9d72..1e1dd47b0 100644 --- a/docs/Reference/fti/FTI_116.json +++ b/docs/Reference/fti/FTI_116.json @@ -1 +1 @@ -{"tasks":[2162689,2228225,2293761,2555905,2752513,2949121,3211265,3604481,3801089,3866625,4194305,4259841,5046273,5242881,5505025,5570561,5832705,6094849,6553601,17760257,21364737,25690113,34471937,34734081,39649281,51249153,52822017,53280769,54132737,54263809,56492033,56557569,56950785,57016321,57147393,57344001,57409537,57475073,57606145,57802753,57868289,58130433,58261505,58392577,58458113],"terminates":[43384833,45547521,47054849,51838977],"trygetvalue":[2686977,3145729,3932161,9764865,18939910,55574529,56098817,56754177],"typeof":[3014658,4980738,11599880,12320776,35717122,42729474,44761090,52101122,54329346],"totask":[2490369,19660804,54591489],"tresult":[2490373,15990785,16711681,17563649,18546689,19660801,34603012,54591493,54919169],"try":[589825,1179649,1245185,1310721,1376257,1441793,1572865,1507329,1638401,1703937,1769473,1835009,1900545,2097153,2359297,2424833,2686977,2818049,2883585,3014657,3080193,3276801,3342337,3407873,3473409,3670017,3735553,3866625,3932161,3997697,4063233,4128769,4194305,4325377,4456449,4521985,4980737,6750209,10682370,18939905,41287681,49414145,49545217,50790401,52101121,52166657,52232193,53018625,53280769,53805057,54001665,54067201,54329345,54460417,55050241,55246849,55508993,55574529,55705601,55771137,55836673,55902209,55967745,56033281,56164353,56295425,56360961,56426497,56623105,56688641,56754177,56819713,57016321,57212929,57540609,57737217,58064897,58327041],"timespan":[45416455,52887559,55836673],"termination":[47054850,47775745,51838978,52363265,57671682],"tobyte":[3014657,4980737,8650757,52101121,54329345],"tryinvokemember":[2424833,3866625,53280769,56164353],"trailing":[42074113,47644673,53542913],"table":[14024705,14090241,16646145,22413313,36700161,39256068,52625411,54132737,54984705],"tunneling":[37814273,38141953,38207489,40042497,40501249,40894465,42532865,44236801,47185921,48824321,50331649,54263809,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"typ":[7077889,7667713,8585217,12451841,12648449,12713985,13303810,13565953,14155777,14614529,15269889,15335425,16777217,17825793,18284545,18612225,19005442,19791873,21037057,21757953,22151169,41943041,43843585],"trygetindex":[2424833,3866625,53280769,56164353],"thrown":[10682369,20119553,22872065,34537474,38273025,39387139,40173571,40239105,40566785,40960004,41091073,41353217,42205185,42270721,42991617,43122689,53608449,54919170,57081860,57737220,57933828],"trygetmember":[2424833,3866625,53280769,56164353],"tkey":[3145733,16252930,16842754,18939906,21299202,38731778,46399490,46923777,47579137,56098823],"typedarray":[55115777],"trace":[15466498,18677762,27131906,30212098],"trycatch":[3014657,4980737,10682373,52101121,54329345],"tracked":[47054849,51838977],"time":[38207490,40763393,42663937,43909121,44826626,45416449,46661633,47448065,48168961,49086465,52559873,52625410,52887553,54263810,54919169,56557570,57016322],"throw":[3211265,3801089,5046273,5242881,5505025,5570561,5832705,6094849,6553601,13041665,19267585,27590657,31129601,54263809,56492033,56950785,57344001,57475073,57671682,57868289,58261505,58392577,58458113],"toarray":[2555905,6881281,7077889,9043969,9830401,12058625,19398660,54132737],"threw":[10682369],"typelibenums":[4980737,9175044,52101121],"tochar":[3014657,4980737,9306117,52101121,54329345],"true":[4653057,5701633,5898242,6291457,7143426,7929857,8257537,8388609,8716289,8781825,9371649,10682370,13893633,14024705,14221313,14483457,14811137,14942209,15925249,16252929,16842753,17170433,17498113,18481154,18939905,20185089,20643841,20840449,21495809,22020097,22413313,22609921,22740993,23134209,23789569,24248321,24510465,24969217,25362433,25755649,26345473,26542081,26738689,27328513,28114946,28573697,28639233,28966913,29360130,29491201,29753345,29949953,31850497,32505858,33488897,33882113,37814273,38797313,39714817,40894465,41811969,42074113,42729473,44761089,44957697,45875201,46333954,46858241,47448065,47644673,47710209,47841282,48889858,49348610,49872897,50003969,50724866,51773442,53411841,53542913,53936130,54198273,54394881],"tree":[31326209,42860545,44040193,48627713,49807361,55050241,55771137,56295425],"trydeletemember":[2424833,3866625,53280769,56164353],"todecimal":[3014657,4980737,10092549,52101121,54329345],"temporary":[54788097],"tryconvert":[2424833,3866625,53280769,56164353],"total":[35913733,48431106,48955394,50200578,50921474,51445762,51642369,57540613],"torestrictedhostobject":[2031620,7012357,7340037,7602181,8519685,31653892,52756484],"test":[7929858,8388610,8781825],"text":[3342337,15466497,18677761,27066370,27131905,30212097,34537473,54067201,55050241],"tryfunc":[10682376],"times":[720897,11927553,24903681,25100289,25493505,26542081,27394049,28966913,30081025,30867457,31326209,31850497,44892161,52232193],"typeid":[35848193,36569089,37748737,40828929,41877505,42401793,52166657,53805057,55836673,55967745,56426497,58064897],"tostatictype":[3014657,4980737,10158084,52101121,54329345],"totalphysicalsize":[35913729,51445764,57540609],"trysetmember":[2424833,3866625,53280769,56164353],"tcp":[22937602,24313857,24444929,25231362,25821185,26083329,26935297,27656193,27721729,27852801,27983873,29097985],"tohosttype":[2031618,7274501,7864325,30998530,52756482],"typeargs":[10354693,10944517,13565957,14155781,14614533,15269893,16777222,17825798,19791878,21037062],"throws":[7405569,8912897,10682369,11599873,12320769,39387137,43384833,45547521,57737217],"topic":[1,65537,131073,196609,262145,327681,393217,458753,524289,655361,720897,786433,851969,917505,983041,1048577,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6619137,6553601,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17956865,17891329,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22872065,22806529,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34996225,34930689,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38273025,38207489,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40632321,40566785,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42598401,42532865,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49479681,49414145,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52887553,52822017,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57933825,57868289,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113],"treated":[41943041,43843585],"tostring":[1179649,1245185,1310721,1376257,1441793,1572865,1507329,1638401,1703937,1769473,1835009,1900545,2097153,2359297,2424833,2621441,2686977,2818049,2883585,3014657,3080193,3276802,3342337,3407873,3473409,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128770,4194305,4325377,4456450,4521985,4980737,5046273,5242881,5505025,5570561,5832705,6094849,6553601,6750210,10682369,17694725,20578309,25886725,26017793,28704769,29229061,33292293,33357825,49414145,49545217,50790401,52101121,52166657,52232193,53018625,53280769,53805057,54001665,54067201,54263809,54329345,54460418,55050241,55246849,55508994,55574529,55705601,55771137,55836673,55902209,55967745,56033281,56164353,56295425,56360961,56426497,56492033,56623105,56688641,56754177,56819713,57016321,57212929,57344001,57475073,57540609,57737218,57933825,57868289,58064897,58261505,58327042,58392577,58458113],"totalavailablesize":[35913729,48431108,57540609],"tryinvoke":[2424833,3866625,53280769,56164353],"totalexternalsize":[35913729,48955396,57540609],"todouble":[3014657,4980737,10813445,52101121,54329345],"trysetindex":[2424833,3866625,53280769,56164353],"trycreateinstance":[2424833,3866625,53280769,56164353],"timestamp":[42860546,44040194,50397191,50987011,51183619,55050242,56295426],"topromise":[2490376,15663109,15990789,16515077,16711685,17367045,17563653,18219013,18546693,34603016,54591496],"tib":[44695553,45350913,46202881,47120385],"targetsite":[39387137,42729473,44761089,57737217],"textwriter":[27066373],"tosingle":[3014657,4980737,9502725,52101121,54329345],"totalheapsizeexecutable":[35913729,50921476,57540609],"trydeleteindex":[2424833,3866625,53280769,56164353],"typename":[6291457,7143425,7340033,7405569,7602177,7929857,8192001,8847361,8912897,9043969,9109505,9175041,9764865,9830401,10289153,10354693,10944517,12320769,13500417,13565957,14155781,14352385,14614533,15269893,15400961,15990785,16318465,16580609,16711681,16777222,17563649,17825798,18546689,19791878,21037062,23003137,31195137,37027841,49545217,54132737,56623105],"typo":[41287681],"tojson":[3342337,26411012,55050241],"type":[65538,131073,196609,262145,327681,393217,458753,524289,1179651,1245186,1310722,1376258,1441794,1507330,1572867,1638402,1703938,1769474,1835010,1900546,1966081,2031631,2097154,2162689,2228225,2293761,2359298,2424836,2490369,2555905,2621441,2686978,2752513,2818050,2883586,2949121,3014682,3080194,3145729,3211297,3276802,3342338,3407875,3473410,3538945,3604481,3670018,3735554,3801122,3866628,3932182,3997698,4063234,4128770,4194306,4259841,4325378,4456450,4521986,4915201,4980775,5046306,5242914,5308417,5505058,5570594,5832738,6094882,6291463,6553634,6750210,6881284,7012368,7077907,7143432,7274515,7340037,7405575,7602181,7667738,7733251,7864340,7929864,8060929,8126476,8192007,8454146,8519696,8585235,8650759,8781830,8847369,8912902,9043978,9109510,9175048,9240583,9306119,9502727,9568263,9699336,9764873,9830409,9895938,10027015,10092551,10158086,10223618,10289160,10354703,10420226,10485768,10551298,10682372,10747911,10813447,10878978,10944525,11010055,11075586,11206660,11337744,11403272,11599890,11665415,11730946,11796482,11862023,11993090,12058632,12124168,12320786,12386307,12451858,12517381,12582915,12648466,12714002,12910595,13303816,13369346,13500419,13565969,14024706,14090247,14155793,14286851,14352387,14614543,15269903,15335442,15400962,15663105,15990787,16187394,16318466,16515073,16580611,16646151,16711683,16777235,16973827,17367041,17563651,17825809,17956866,18219009,18284565,18546691,18612245,19005450,19070979,19660801,19726337,19791891,19857410,20381698,20709379,20971521,21037073,21430273,21626882,21757973,22151189,22216707,22413314,22478850,23003139,23068675,23658498,24707073,30998535,31195138,31588375,31653896,32112642,32178177,32440328,33161221,33554455,33751042,34013186,34078726,34340865,34537479,34865153,34930689,35127297,35454977,35520513,35717127,35848194,35913729,36175873,36438023,36503553,36569090,36700161,36962318,37027842,37158913,37421058,37617672,37748737,38141955,38207491,38338561,38731777,38797313,38862849,38928393,39321608,39387137,39714818,40042499,40173569,40501251,40828932,40960001,41418753,41615361,41746433,41811969,41877506,41943048,42336257,42401794,42467329,42532867,42860545,42926081,43253761,43581441,43712513,43843593,43974657,44040193,44236803,44433410,44564481,44630017,44826625,44957697,45285377,45481985,45875202,46858243,47185923,47710209,47841282,48758785,48824323,48889857,49414148,49545221,50003971,50331651,50724866,50790403,51249154,51773441,52035585,52101160,52166662,52232195,52625415,52756496,52822018,53018627,53280773,53477377,53805061,53936129,54001667,54067203,54132740,54198273,54263845,54329371,54460419,54525953,54591490,54657025,54722561,54788097,54853633,54919170,54984706,55050243,55115777,55181314,55246852,55312385,55377922,55443457,55508995,55574562,55640066,55705603,55771139,55836675,55902211,55967750,56033284,56098818,56164357,56229890,56295427,56360963,56426501,56492069,56557569,56623109,56688643,56754179,56819715,56885253,56950820,57016323,57081858,57147394,57212931,57278465,57344037,57409538,57475109,57540611,57606146,57671681,57737219,57802754,57868325,57933826,57999362,58064903,58130434,58195972,58261541,58327044,58392613,58458149],"title":[1114113],"target":[2621441,4456449,7012357,7208965,7340037,7602181,7798789,7995397,8257541,8323077,8519685,8716293,8978437,9371653,9633797,9961477,13500421,14090245,14352389,15007749,16580614,16646150,17104897,17432582,19726337,19988481,20381698,20971521,21430273,22478850,23003142,23068675,23658498,24707073,34537476,36569089,40828931,41877505,43712513,44433410,48758785,53805058,55836673,56426498,57737217,57933825,58064900],"tvalue":[3145732,16252929,16842753,18939906,21299202,38731778,46399489,46923777,47579137,56098822],"timestamps":[50397185,50987009,51183617],"tryunaryoperation":[2424833,3866625,53280769,56164353],"typed":[2555907,3014669,4980749,7405571,8060929,8650754,9043969,9240578,9306114,9502722,9568258,9764865,10027010,10092546,10747906,10813442,11010050,11665410,11862018,12517377,18808834,19398658,20316162,34865153,35586050,43646977,45481985,52101133,52822018,54132744,54329357,54853633,55115777],"types":[3211265,3801089,3932164,4980738,5046273,5242881,5505025,5570561,5832705,6094849,6553601,6881285,7077890,7143425,7405569,7667714,8060929,8126466,8585218,8650753,8781826,9240577,9306113,9502721,9568257,9699331,9895938,10027009,10092545,10420226,10485763,10682369,10747905,10813441,10878978,11010049,11075586,11403267,11599874,11665409,11862017,12058630,12124163,12451842,12648450,12713986,12845057,13303818,13565954,14024710,14090241,14155778,14614530,15073281,15269890,15335426,15728641,16449537,16646145,16777218,17235969,17629185,17825794,18087937,18284546,18415617,18612226,19005451,19333121,19791874,20447233,21037058,21168129,21757954,22151170,22413318,23265281,29556737,31326209,32243713,32833537,34537475,35586049,36438020,37617668,38141954,38207490,38338562,39714820,40042498,40370177,40501250,42532866,44105729,44236802,45875204,46465025,46989313,47185922,47841282,48824322,50331650,50724866,52101123,52625409,53805057,53870597,54263811,55574539,55836673,56426497,56492035,56950787,57344003,57475075,57868291,58261507,58392579,58458115],"tas":[5636097,6946817,15663105,15990786,16515073,16711682,17367041,17563650,18219009,18546690],"tosbyte":[3014657,4980737,11665413,52101121,54329345],"top":[65537,131073,196609,262145,327681,393217,458753,524289,720897,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4456449,4521985,4980737,5046273,5242881,5308417,5505025,5570561,5832705,6094849,6553601,6750209,30998529,31457281,31588353,31653889,32047105,32112641,32178177,32374785,32440321,32636929,32702465,32964609,33030145,33095681,33161217,33226753,33554433,33619969,33685505,33751041,33816577,34013185,34078721,34144257,34209793,34340865,34406401,34471937,34603009,34668545,34734081,34799617,34865153,34996225,34930689,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35651585,35717121,35782657,35848193,35913729,36044801,36110337,36175873,36241409,36306945,36438017,36503553,36569089,36634625,36700161,36831233,36896769,36962305,37093377,37158913,37289985,37355521,37421057,37486593,37617665,37683201,37748737,37879809,37945345,38076417,38141953,38207489,38338561,38535169,38600705,38666241,38731777,38862850,38928385,39059457,39124993,39321601,39387137,39518209,39649281,39911425,40042497,40108033,40173569,40304641,40501249,40632321,40828929,40960001,41025537,41287681,41418753,41615361,41746433,41877505,42336257,42401793,42467329,42532865,42860545,42926081,43253761,43581441,43974657,44040193,44236801,44564481,44630017,44826625,44892161,45285377,45481985,47185921,47448072,48824321,49414146,49545217,50331649,50790403,51249154,52101122,52166659,52232194,52756481,52822018,53018627,53280770,53477377,53805059,54001666,54067203,54132738,54263811,54329346,54460418,54591489,54984705,55050242,55181314,55246851,55377921,55508994,55574532,55640065,55705603,55771138,55836675,55902211,55967747,56033282,56098818,56164354,56229889,56295426,56360961,56426499,56492035,56557569,56623105,56688642,56754180,56819713,56950786,57016323,57081857,57147394,57212931,57344003,57409538,57475075,57540610,57606146,57737220,57802754,57868291,57933827,57999362,58064899,58130434,58261507,58327042,58392579,58458115],"totalheapsize":[35913729,50200580,57540609],"task":[2490377,5636102,6946823,15663118,15990798,16515086,16711694,17367042,17563650,18219010,18546690,19660809,34603016,54591497,54919170],"thread":[2031619,2490372,3538948,3997700,5046274,5242882,5505026,5570562,5832706,6553602,7274497,7602177,8519681,13041665,15663105,15990785,17367041,17563649,19267585,27590657,28049409,28180481,28770305,29687809,29884417,29949954,30343169,30539778,30605313,30670849,30998529,31064065,31129601,31195138,31260673,31653890,31719425,31784961,31916033,32309249,32505858,32833537,32899073,33423361,33882114,34603012,35979266,37027842,37486594,38141953,38600706,46137347,52756483,54263811,54591492,55640069,56492035,56688646,57344003,57475073,57868291,58261509,58392581,58458117],"trybinaryoperation":[2424833,3866625,53280769,56164353],"third":[9043969,12517377],"touppercase":[9043969]} \ No newline at end of file +{"total":[35913733,45023233,45285378,46006274,46661634,47251458,47513602,55246853],"typed":[3014669,3211267,3604493,7536641,8257537,8388611,8978433,9240578,9764866,9961474,10092546,10223617,10551298,10878978,11075586,11141122,11599874,11927554,11993090,12517378,14876674,15466498,16318466,34340865,36700161,41943041,49676296,50462733,51052545,52559885,52756482,53542913,56295426],"types":[2162692,3145729,3604482,4259841,6029313,6291457,6356993,6422529,6619142,6684673,6946818,7471109,7536641,7864322,8388609,8716290,8781825,9043970,9240577,9306113,9437185,9699330,9764865,9830402,9961473,10092545,10289154,10354689,10420227,10485763,10551297,10878977,11010050,11075585,11141121,11272194,11337731,11599873,11796483,11927553,11993089,12058626,12517377,12582913,12713994,12976130,13434881,13631490,13697026,14090241,14286849,14483458,14745602,15007745,15073281,15335426,15532034,15597570,16384006,17170433,18481154,19070977,19529730,19660801,19857409,20381698,20971521,21168130,21233666,21889025,22151179,22740993,23330818,24051718,24444930,25427970,25952257,30670852,30932996,34275330,35127298,36569090,36765698,36896770,37617666,38338562,38928385,38993922,39321602,39649284,39911425,40960001,41025538,42008577,42205186,44695556,47972357,49545227,50266113,50659329,52559875,52690945,54329347,54525954,55771139,56164355,56295425,56885249,57212929,57344001,57475073,57737219,57999363,58458115,58523651,58589187,58982403,59113473,59179011],"throws":[8388609,9502721,10354689,11272193,12124161,34930689,39059457,45678593,58720257],"try":[655361,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1966081,2097153,2162689,2424833,2621441,2883585,2949121,3014657,3080193,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3866625,3932161,3997697,4063233,4128769,4325377,4390913,4718593,4849665,7077889,10354690,20185089,33095681,47644673,48168961,48103425,48562177,48824321,48955393,49020929,49217537,49545217,49741825,49872897,50135041,50266113,50331649,50397185,50462721,51118081,51707905,51773441,51970049,52559873,53084161,53411841,53477377,53936129,54460417,55246849,55312385,56033281,56754177,57344001,57933825,58392577,58654721,58720257,58851329,59047937,59113473],"totalexternalsize":[35913729,45285380,55246849],"target":[2555905,4718593,7274501,7602181,7929861,8454149,8519685,8847365,8912901,9109509,9175045,9371653,9568261,10027013,10616837,10944517,12845061,13565957,14090245,14680069,18219009,19202049,19660806,20054018,20250625,20447238,20709377,20774913,21561345,22216706,22478854,22937603,23265286,23461890,34144257,34603011,34668545,42401793,43319298,45088769,50266113,55771140,57344002,58720257,58785793,58851332,59113474],"tostatictype":[3014657,3604481,9633796,50462721,52559873],"termination":[45547521,47775746,49414146,50069505,55902210],"throw":[3145729,4259841,6029313,6291457,6356993,6422529,6684673,8781825,9306113,18022401,19922945,28901377,54329345,55902210,56164353,56819713,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"trace":[17563650,19333122,28246018,56492034],"tvalue":[2686980,15990786,17235969,17956865,20185090,34406402,40501249,41353217,42532865,52363270],"tobyte":[3014657,3604481,9961477,50462721,52559873],"typeid":[33554433,33947649,34144257,34603009,34668545,48103425,50266113,52822017,56033281,57344001,58851329,59113473],"table":[14090241,16384001,19660801,24051713,33488897,41746436,49676289,50659331,51904513],"tresult":[2490372,16056321,16777217,17760257,18677761,32374788,50593796,50790401],"trygetvalue":[2162689,2686977,3080193,8978433,20185094,49545217,52363265,57933825],"tosbyte":[3014657,3604481,9764869,50462721,52559873],"targetsite":[34930689,38273025,44826625,58720257],"typo":[33095681],"tas":[5373953,6488065,15728641,15794177,16056322,16646145,16777218,17432577,17760258,18677762],"trysetmember":[2424833,4128769,50397185,59047937],"todecimal":[3014657,3604481,11993093,50462721,52559873],"todouble":[3014657,3604481,9240581,50462721,52559873],"timespan":[45613063,46137351,50266113],"toenumerable":[2490369,14942212,50593793],"task":[2490377,5373959,6488070,15728654,15794178,16056322,16646158,16777230,16973834,17432578,17760270,18677762,32374792,46530566,50593801,50790402],"third":[8257537,10223617],"temporary":[50921473],"tochar":[3014657,3604481,11075589,50462721,52559873],"times":[720897,11403265,25624577,26607617,27262977,28049409,29163521,29622273,29884417,31129601,32309249,46596097,56754177,56885249],"typelibenums":[3604481,7012356,52559873],"timestamp":[34799618,34865154,45154307,45744135,46465027,51707906,55312386],"totask":[2490369,16973828,50593793],"trydeleteindex":[2424833,4128769,50397185,59047937],"touppercase":[8257537],"totalavailablesize":[35913729,47513604,55246849],"threw":[10354689],"tryfunc":[10354696],"true":[4521985,4653057,5570561,6881282,7798785,8060929,8519681,8716289,9175041,9437186,10354690,10944513,13762561,13828097,14221313,14352385,15925249,16121857,16384001,16711681,17235969,17956865,18350082,18546689,19726337,20185089,21430273,22282241,23724033,23855105,23920641,24051713,24117249,24248321,24313857,24903681,25165825,25296898,25624577,25690113,26411009,26476545,27131905,27721729,27918337,28049409,28704769,28770305,29425665,31129601,31653889,37552129,38207489,38273025,38535170,38862849,38993922,39124993,39518209,39649281,40894466,41287681,41811969,42205186,42270722,42729473,43384834,43450369,43646977,44695553,44826625,45416449,47120385,47710209,47906818,48496641,49348609,49807361,52625409,53673986,54591489,55115777,55836674],"tree":[34799617,34865153,44957697,45481985,51707905,53477377,55312385,56885249],"title":[51380225],"tosingle":[3014657,3604481,10878981,50462721,52559873],"toarray":[3211265,6619137,7471105,7667713,7864321,8257537,15466500,49676289],"tryunaryoperation":[2424833,4128769,50397185,59047937],"tryconvert":[2424833,4128769,50397185,59047937],"time":[35782658,36569090,36831233,36962305,37093377,38404097,45613057,45875201,46137345,47054849,48365569,49807361,49938434,50659330,50790401,51970050,58458114],"tib":[45350913,46268417,46858241,47579137],"tojson":[3932161,22544388,51707905],"typedarray":[53542913],"type":[65537,131073,262145,327681,393217,524289,589825,1114114,1179651,1245186,1310722,1376259,1441794,1507330,1572866,1638402,1703938,1769474,1835009,1900559,1966082,2031617,2097154,2162710,2228225,2293761,2359297,2424836,2490369,2555905,2621442,2686977,2752513,2818049,2883586,2949122,3014682,3080194,3145761,3211265,3276802,3342338,3407874,3473410,3538946,3604519,3670018,3735554,3801089,3866626,3932162,3997698,4063235,4128772,4194305,4259874,4325378,4390914,4653063,4718594,4784129,4849666,5177345,5898248,6029346,6291490,6357026,6422562,6619144,6684706,6815748,6946842,7012360,7077890,7143425,7208979,7274501,7471108,7536641,7667721,7733268,7798792,7864339,7929861,7995398,8126473,8192003,8257546,8323074,8388615,8454160,8650759,8716294,8781858,8978441,9043987,9240583,9306146,9371664,9437192,9502726,9633798,9699330,9764871,9830412,9895938,9961479,10092551,10158095,10223621,10289154,10354692,10420232,10485768,10551303,10813453,10878983,11010050,11075591,11141127,11206672,11272210,11337736,11599879,11665411,11730947,11796488,11862018,11927559,11993095,12058626,12124178,12386306,12451842,12517383,12713992,12779523,12845059,12976145,13369347,13565955,13631503,13697041,13893634,13959170,14090247,14155778,14483474,14745615,14942209,15335442,15532050,15597586,15728641,15794177,16056323,16384002,16646145,16777219,16973825,17301505,17432577,17498114,17760259,17825794,18284547,18415619,18481171,18677763,19202049,19267586,19529745,19660807,20054018,20381717,20512771,20709377,20774913,21168149,21233685,21364738,21561345,22151178,22216706,22347779,22478851,22937603,23068674,23265283,23330835,23461890,24051714,24444945,25427989,27787266,29097986,30212098,30277637,30408710,30670855,30736398,30933000,30998535,31260680,31457303,31916034,32112648,32243735,33030146,33488897,33554433,33619969,33751041,33882114,33947650,34013185,34078722,34144258,34209793,34275331,34340865,34406401,34471937,34537473,34603012,34668546,34734081,34799617,34865153,34930689,34996225,35061761,35127299,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36438017,36569091,36634625,36700161,36765699,36896771,37486600,37552129,37617667,38207491,38338563,38862849,38993922,39321603,39649282,40894465,41025539,41287683,41811969,42205186,42270721,42401793,43319298,43646977,43843593,44695554,45088769,46530561,47120385,47644675,47906817,48103430,48168964,48431120,48562181,48824323,48955395,49020931,49152002,49217539,49479681,49545250,49676292,49741827,49872901,49938433,50135043,50200578,50266115,50331651,50397189,50462747,50528257,50593794,50659335,50724865,50790402,50921473,50987009,51052545,51118083,51183618,51445762,51576833,51707907,51773444,51838978,51904514,51970051,52166657,52232193,52363266,52494337,52559912,52756482,52822018,53018626,53084165,53411843,53477379,53542913,53936131,54067201,54263810,54329381,54460420,54525953,54788098,54984706,55050249,55246851,55312387,55443463,55771143,55902209,55967752,56033286,56164388,56360961,56754179,57016322,57344005,57606146,57737253,57868290,57933827,57999397,58130434,58195973,58327042,58392579,58458149,58523685,58589221,58654724,58720259,58785794,58851335,58916868,58982437,59047941,59113477,59179045],"top":[65537,131073,262145,327681,393217,524289,589825,720897,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3276801,3211265,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4718593,4784129,4849665,6029313,6291457,6356993,6422529,6684673,7077889,7143425,8781825,9306113,30081025,30146561,30212097,30277633,30408705,30605313,30670849,30736385,30801921,30932993,30998529,31064065,31195137,31260673,31326209,31391745,31457281,31588353,31719425,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32374785,32440321,32571393,32636929,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35520514,35454977,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36438017,36569089,36700161,36765697,36896769,37617665,38338561,39321601,41025537,46596097,47644675,48168962,48103427,48431105,48562177,48824323,48955395,49020931,49152002,49217537,49479681,49545220,49676290,49741827,49807368,49872897,49938433,50135042,50200578,50266115,50331650,50397186,50462722,50593793,51118081,51183618,51249153,51445762,51576833,51707906,51773443,51838977,51904513,51970051,52232193,52363266,52428801,52559874,52756482,52822017,52887553,53018625,53084162,53215233,53280769,53411843,53477378,53608449,53739521,54001665,53936130,54132737,54263809,54329347,54460418,54525953,54657025,54788097,54919169,55050241,55246850,55312386,55377921,55443457,55574529,55705601,55967745,56033283,56098817,56164354,56360961,56426497,56557569,56688641,56754178,56950785,57016321,57147393,57278465,57344003,57409537,57540609,57606146,57671681,57737219,57802753,57868290,57933828,57999363,58064897,58130434,58261505,58327042,58392578,58458115,58523651,58589187,58654722,58720260,58785795,58851331,58982403,59047938,59113475,59179011],"typeargs":[10158085,10813445,12976133,13631493,13697029,14745605,18481158,19529734,23330822,24444934],"trygetmember":[2424833,4128769,50397185,59047937],"torestrictedhostobject":[1900548,7274501,7929861,8454149,9371653,48431108,55967748],"trybinaryoperation":[2424833,4128769,50397185,59047937],"topic":[1,65537,131073,196609,262145,327681,393217,458753,524289,589825,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3276801,3211265,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10747905,10682369,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12648449,12582913,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14155777,14090241,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19726337,19660801,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24510465,24444929,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28114945,28049409,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36831233,36765697,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39256065,39190529,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48168961,48103425,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52101121,52035585,52166657,52232193,52297729,52363265,52428801,52494337,52625409,52690945,52559873,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53870593,53805057,54001665,53936129,54067201,54132737,54263809,54198273,54394881,54329345,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56360961,56295425,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56950785,56885249,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58261505,58195969,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009],"trycreateinstance":[2424833,4128769,50397185,59047937],"trailing":[39124993,43450369,45416449],"tohosttype":[1900546,7208965,7733253,48431106,55443458],"trygetindex":[2424833,4128769,50397185,59047937],"toasyncenumerable":[2490369,17301508,50593793],"totalphysicalsize":[35913729,47251460,55246849],"tryinvokemember":[2424833,4128769,50397185,59047937],"trydeletemember":[2424833,4128769,50397185,59047937],"topromise":[2490376,15728645,15794181,16056325,16646149,16777221,17432581,17760261,18677765,32374792,50593800],"timestamps":[45154305,45744129,46465025],"tasks":[2031617,2228225,2293761,2359297,2752513,2818049,3145729,3211265,4128769,4259841,4784129,4849665,6029313,6291457,6356993,6422529,6684673,8781825,9306113,19988481,24379393,27656193,31981569,49152001,49676289,49938433,50200577,51183617,51970049,52756481,54329345,56164353,57147393,57606145,57737217,57999361,58130433,58261505,58327041,58458113,58523649,58589185,58982401,59047937,59179009],"totalheapsizeexecutable":[35913729,46661636,55246849],"treated":[37486593,43843585],"thread":[1900547,2490372,3801092,4325380,6029314,6291458,6356994,6422530,7208961,7274497,8454145,8781826,9306114,15728641,16777217,17432577,18022401,18677761,19922945,26935297,27394049,27590657,27721730,28377090,28442625,28901377,28966913,29097986,29229057,29360129,29491201,29949953,32374788,35127297,46399491,48431107,50593796,51314689,52035585,52953089,53673986,53805057,54394882,54329347,54591490,54788101,54984706,55443457,55508993,55705602,55967746,56557570,56623105,56819713,57081857,57475073,57737219,57999363,58392582,58458115,58523649,58589189,58982405,59179013],"tracked":[47775745,49414145],"tkey":[2686981,15990786,17235970,17956866,20185090,34406402,40501249,41353217,42532866,52363271],"typeof":[3014658,3604482,11272200,12124168,30998530,38273026,44826626,50462722,52559874],"typename":[4653057,5898241,7012353,7274497,7667713,7798785,7929857,7995393,8126465,8257537,8388609,8650753,8978433,9437185,9502721,10158085,10813445,12124161,12845057,12976133,13565953,13631493,13697029,13893633,14745605,16056321,16777217,17760257,17825793,18481158,18677761,19529734,22478849,23265281,23330822,24444934,27787265,29097985,48562177,49676289,49872897,53084161,54984705],"trycatch":[3014657,3604481,10354693,50462721,52559873],"tostring":[1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1966081,2097153,2162689,2424833,2555905,2621441,2883585,2949121,3014657,3080193,3276801,3342338,3407873,3473409,3538945,3604481,3670017,3735553,3866625,3932161,3997697,4063233,4128769,4259841,4325377,4390914,4718594,4849665,6029313,6291457,6356993,6422529,6684673,7077890,8781825,9306113,10354689,15859717,20905989,21823493,26869761,27328517,28311553,31784965,47644673,48168961,48103425,48562177,48824321,48955393,49020929,49217537,49545217,49741825,49872897,50135041,50266113,50331650,50397185,50462721,51118081,51707905,51773441,51970049,52559873,53084161,53411841,53477377,53936130,54198273,54329345,54460417,55246849,55312385,56033281,56754177,57344001,57737217,57933825,57999361,58392577,58458113,58523649,58589185,58654722,58720258,58785793,58851329,58982401,59047937,59113473,59179009],"trysetindex":[2424833,4128769,50397185,59047937],"test":[7798786,8060930,8716289],"text":[3932161,17563649,19333121,23199746,28246017,49741825,51707905,55771137,56492033],"textwriter":[23199749],"thrown":[10354689,16187393,23396353,34930691,35454980,35717123,38010881,38076417,38600705,39452673,40697857,42139649,42467329,42795009,44105729,44761089,50790402,55771138,57016324,58720260,58785796],"tunneling":[34275329,35127297,36569089,36765697,36896769,37617665,38338561,39321601,39518209,41025537,42729473,54329345,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"typ":[6946817,7864321,9043969,12713986,12976129,13631489,13697025,14483457,14745601,15335425,15532033,15597569,18481153,19529729,20381697,21168129,21233665,22151170,23330817,24444929,25427969,37486593,43843585],"tcp":[23789569,24641537,24707074,24838145,26148865,26279937,26345473,26738689,27197442,27852801,27983873,29294593],"totalheapsize":[35913729,46006276,55246849],"terminates":[39059457,45678593,47775745,49414145],"tryinvoke":[2424833,4128769,50397185,59047937]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_117.json b/docs/Reference/fti/FTI_117.json index 53131f9cc..af141a6ab 100644 --- a/docs/Reference/fti/FTI_117.json +++ b/docs/Reference/fti/FTI_117.json @@ -1 +1 @@ -{"unless":[27918337],"uinteger":[45219841,49086465,51576833,52494337,52559873],"unique":[35848193,36569089,37748737,40828929,41877505,42401793,46727169,52166657,53805057,55836673,55967745,56426497,58064897],"usable":[22806529,23592961,24772609,24903681,25952257,26607617,26673153,27394049,27787265,28246017,30081025,30801921],"uint":[9568257,11010049,11862017,45219841,49086465,51576833,52494337,52559873,54132737],"unlimited":[5636097,6160385,6946817],"unit":[4390913,4587524,4718593,5373953,5439489,5767169,5963778,6029313,6225921,6356996,6488065,6619137,6815745,7143425,7471105,7536641,9437185,9699329,9895937,10354689,10485761,10551297,10616833,10944513,11075585,11141121,11272193,11337729,11468801,11534337,11730945,11796481,11927553,11993089,12189697,12255233,12320769,12386305,12451841,12582913,12648449,12713985,12910593,12976129,13041666,13107201,13172737,13303809,13369345,13434881,13500417,13565953,13697025,13893633,13959169,14090241,14155777,14286849,14352385,14417921,14548993,14614529,14680065,14745601,14876673,14942209,15007745,15204353,15269889,15335425,15466497,15532034,15597569,15794177,15859713,16056322,16187394,16580610,16646146,16777218,16973826,17039362,17104898,17170433,17432578,17694722,17760260,17825794,17891330,17956866,18153473,18284546,18350081,18481154,18612226,18677761,19005442,19070978,19136514,19267586,19398657,19464193,19595266,19791874,19857410,19922946,19988482,20054017,20512769,20578306,20709378,20774914,21037058,21102593,21233665,21299202,21364738,21561345,21626882,21692418,21757954,22085634,22151170,22216706,22282242,22609921,22675457,23003138,23396353,23855106,23986178,24051714,24510466,24838146,25165825,25559042,25690116,25886722,26345474,26411009,26476545,26869761,27000833,27066369,27131906,27262978,27459585,27525121,27590660,27918340,28114946,28180484,28442625,28508162,28573698,28835841,29032449,29229058,29294593,29360130,29949953,30212098,30277633,30343170,30539777,31064066,31129604,31719426,31916034,32505858,33292290,33488897,33882113,33947649,35979266,54198273,55443457],"uri":[1507330,1703937,4653058,4784142,5111822,5177357,5636098,5701634,6160386,6946818,7405574,34930691,37355522,43319305,43909133,50790402,55246853,55705601],"url":[41287681,43581441,47906817,55771137],"utility":[34537474,52101121,54329345],"unknown":[36372481,48103425,51118081,54460417,55115778],"unlike":[54263809],"unrecoverable":[47054849,47775745,51838977,52363265],"unsigned":[720897,14745601,15794177,16121861,16908293,17301509,18022405,18808836,20316164,22020097,22740993,22806529,23592961,23789569,24772609,24903681,24969217,25362433,25755649,25952257,26542081,26607617,26673153,26738689,27328513,27394049,27787265,28246017,28966913,29491201,30081025,30801921,31850497,40435714,41222146,42008578,43646978,43778051,44892162,45219843,46727171,47513602,48431106,48955394,49086467,50200578,50397186,50921474,50987010,51183618,51445762,51576835,51904514,52494339,52559875],"unchecked":[47775745,52363265],"unary":[2424833,3866625,53280769,56164353],"uriformatt":[7405570],"uricomponentst":[7405572],"unspecified":[14024705,22413313,50397185,50987009,51183617],"uricomponents":[7405569],"usedheapsize":[35913729,51904516,57540609],"usually":[7995393,8323073,8978433,9961473],"unconditionally":[47054849,51838977],"used":[2424833,3014662,3801089,3866625,4063233,4980742,5046273,5242881,5505025,5570561,5832705,6094849,6553601,7012353,7143426,7340033,7864321,8126466,8781826,8847362,10158081,11599874,12320770,13500417,13893633,14024705,14352385,14680065,15073281,16515073,16580609,16711681,18219009,18481153,18546689,19202049,20905985,22413313,23003137,23265281,23461889,23527425,23724033,24182785,24313857,24379393,24444929,25231361,25362433,25493505,26083329,26345473,26542081,26607617,27197441,27262977,27394049,27852801,27983873,28114945,28508161,29360129,29687809,29818881,30146561,30408705,30474241,30670849,30736385,30932993,31260673,31391745,31522817,31784961,31981569,32309249,32571393,32768001,32899073,33161218,33423361,34078722,34471937,34734081,35717122,35913729,38141953,38207489,39649281,40042497,40501249,40763393,42532865,43384833,44236801,45547521,46661634,47185921,48824321,50331649,51904514,52101126,52232193,52494337,53280769,54263810,54329350,54919169,56164353,56492035,56688641,56950785,57344003,57475074,57540609,57868291,58261506,58392578,58458114],"useassemblytable":[36700161,39256068,54984705],"urls":[36175873,49217537,55902209],"useful":[8060929,8650753,9043969,9240577,9306113,9502721,9568257,9764865,10027009,10092545,10747905,10813441,11010049,11665409,11862017,12517377,39714817,44367873,45875201,48889857,49938433,51773441],"uses":[6881281,7077889,7733249,8585217,10682369,11206657,12058625,12451841,12713985,13303809,18284545,19005441,22151169,44957697,47710209,52625409,54263809],"ushort":[54132737],"unusable":[28508161],"urit":[7405570],"usereflectionbindfallback":[38141953,38207489,40042497,40501249,42532865,44236801,44957697,47185921,47710209,48824321,48889860,50331649,51773446,54263809,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"user":[12845057,13172737,13893634,14024706,14680066,15073282,19202049,20905985,21168129,22413314,23265282,23461889,23527425,23724033,24182785,24313857,24379393,24444929,25231361,25362433,25493505,25559041,26083329,26345474,26542081,26607617,27197441,27262978,27394049,27852801,27983873,29687809,29818881,30146561,30408705,30474241,30670849,30736385,30932993,31260673,31391745,31522817,31784961,31981569,32243713,32309249,32571393,32768001,32899073,33423361,39387137,57737217,57999361],"uriformat":[7405569],"universal":[17367041,17563649,18219009,18546689,54919169],"undefinedimportvalue":[38141953,38207489,40042497,40501249,42532865,44236801,47185921,48103428,48824321,50331649,51118086,54263809,54460417,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"uintptr":[47054855,47775751,51838983,52363271],"uwp":[17367041,17563649,18219009,18546689],"unescaped":[7405569],"underlying":[4259841,33947651,34865154,39845889,40435713,43253762,43974658,45481986,52822018,54132738,54263809,57606146,57802754,58130433],"utc":[54919170],"unpredictably":[56688641],"unmanaged":[2162689,2228225,2293761,2555905,2752513,2949121,3211265,3604481,3801091,3866625,4194305,4259842,5046275,5242883,5505027,5570563,5832707,6094851,6553603,17760257,18481155,21364737,25690113,27918337,28114947,29360131,33947650,34471938,34734082,38010881,39649282,51249153,52822017,53280769,54132737,54263811,56492035,56950785,57016321,57147393,57344003,57409537,57475075,57606145,57802753,57868291,58130434,58261507,58392579,58458115],"unidirectional":[54919169],"using":[5439489,6029313,6815745,7405569,7536641,8847361,9764865,28508161,56098817],"undefined":[196612,655368,3276803,13631489,14024707,20250625,22413315,25886724,34537474,38141953,38207489,40042497,40501249,42532865,44236801,44367873,47185921,48103428,48824321,49938433,50331649,51118084,54263809,54460426,56492033,56950785,57344001,57475073,57868289,58261505,58327041,58392577,58458113],"usecaseinsensitivememberbinding":[54919169],"ulong":[720898,16121864,16908296,17301512,18022408,18808840,20316168,40435714,41222146,42008578,43646978,43778050,44892162,46727170,47513602,48431106,48955394,50200578,50397186,50921474,50987010,51183618,51445762,51904514,54132737],"usage":[1245185,4194305,4325377,4718593,4915201,6094849,7012353,7274497,7340033,7602177,7864321,8519681,15663105,15990785,16515073,16711681,17367041,17563649,18219009,18546689,19660801,21561345,24707073,26476546,26869762,31326209,32374785,36241409,36700161,39256065,41877505,42401793,47054849,47775748,48758785,51838977,52035585,52166657,52363268,53805057,54263809,54984705,57016321,57540609]} \ No newline at end of file +{"usedheapsize":[35913729,47841284,55246849],"underlying":[4784129,34013186,34340866,35061762,36700162,39780353,41615361,49152002,49676290,50200578,52756482,53346307,58327041,58458113],"useful":[7536641,8257537,8978433,9240577,9764865,9961473,10092545,10223617,10551297,10878977,11075585,11141121,11599873,11927553,11993089,12517377,39649281,40894465,41484289,42270721,42926081,44695553],"usable":[22872065,23658497,25362433,26083329,26607617,27459585,28180481,28835841,29163521,30539777,32309249,32702465],"uri":[1441794,1507329,4521986,4587534,5111821,5373954,5570562,5636098,6488066,6553614,8388614,35586051,37814281,38404109,47644673,49020930,51773445,53608450],"url":[33095681,35258369,44498945,53477377],"unpredictably":[58392577],"unchecked":[45547521,50069505],"utility":[50462721,52559873,53084161,55771138],"unary":[2424833,4128769,50397185,59047937],"uses":[6619137,6815745,7471105,7864321,8192001,9043969,10354689,12713985,15335425,15532033,21168129,21233665,22151169,37552129,41811969,50659329,58458113],"using":[5439489,5505025,5701633,6225921,8126465,8388609,8978433,26804225,52363265],"urit":[8388610],"unspecified":[16384001,24051713,45154305,45744129,46465025],"usage":[1310721,3276801,4915201,4849665,5177345,6684673,7208961,7274497,7733249,7929857,8454145,9371649,14942209,15728641,15794177,16056321,16646145,16777217,16973825,17301505,17432577,17760257,18677761,20119553,20709377,27525122,29032450,33488897,33947649,34668545,36634625,41746433,45088769,45547524,47775745,48103425,49414145,50069508,51904513,51970049,53215233,54657025,55246849,56885249,58458113,59113473],"unlimited":[5373953,5636097,6488065],"ushort":[49676289],"unlike":[58458113],"usually":[8912897,9109505,10027009,10616833],"universal":[15794177,16056321,17432577,18677761,50790401],"undefined":[131076,458760,3342339,13172737,16384003,21037057,21823492,24051715,34275329,35127297,36569089,36765697,36896769,37617665,38338561,39321601,40108036,41025537,41484289,42926081,44564484,50331658,54329345,55771138,56164353,57737217,57999361,58458113,58523649,58589185,58654721,58982401,59179009],"utc":[50790402],"uriformat":[8388609],"used":[2424833,3014662,3604486,3670017,4128769,4259841,6029313,6291457,6356993,6422529,6684673,7733249,7929857,8126466,8716290,8781825,9306113,9371649,9437186,9633793,9830402,11272194,12124162,12845057,13565953,15794177,16056321,16121857,16384001,16646145,16842753,17170433,17760257,18350081,18808833,19398657,22478849,23265281,23724033,24051713,24576001,24838145,25034753,25231361,25296897,25755649,25821185,26148865,26214401,26279937,26345473,26542081,26673153,26738689,26804225,27197441,27918337,28835841,28966913,29360129,29491201,29818881,29884417,29949953,30015489,30277634,30343169,30408706,30867457,30998530,31129601,31522817,31981569,32309249,32505857,34275329,35127297,35913729,36110337,36569089,36765697,36831234,36896769,36962305,37617665,38338561,39059457,39321601,41025537,45678593,47841282,50397185,50462726,50790401,52035585,52559878,52690945,52953089,53084161,53149697,53870593,53805057,54329347,54853633,55246849,55640065,55836673,56164353,56754177,57147393,57737219,57999363,58261505,58392577,58458114,58523650,58589186,58982402,59047937,59179010],"unless":[18743297],"unique":[33554433,33947649,34144257,34603009,34668545,43253761,48103425,50266113,52822017,56033281,57344001,58851329,59113473],"unidirectional":[50790401],"unit":[4456449,4915201,4980740,5046273,5242881,5439489,5505025,5701633,5767169,5832705,5963780,6094850,6160385,6225921,7405569,8585217,9437185,9699329,9895937,10158081,10420225,10682369,10747905,10813441,11010049,11206657,11403265,11468801,11534337,11665409,11730945,11796481,12124161,12189697,12255233,12320769,12386305,12451841,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13303809,13369345,13500417,13565953,13631489,13697025,13959169,14024705,14090241,14155777,14221313,14483457,14548993,14614529,14680065,14745601,15204353,15335425,15400961,15466497,15532033,15597569,15859714,15990786,16121857,16252929,16449537,16515074,16580610,16842753,16908289,17039362,17498114,17563649,17629185,17891329,18022402,18087937,18153474,18219010,18284546,18350082,18415618,18481154,18743300,18874370,18939905,19005442,19136513,19267586,19333121,19529730,19660802,19791874,19922946,19988482,20119553,20250626,20316162,20381698,20447234,20512770,20578305,20840450,20905986,21102594,21168130,21233666,21364738,21430273,21495809,21757954,21823490,22020098,22151170,22347778,22478850,22544385,22675458,22806530,23068674,23199745,23265282,23330818,23592961,23724034,23855105,23986177,24379396,24510465,24444930,24576002,25296898,25427970,25559042,26017793,26804226,26935298,27328514,27394050,27525121,27590658,27656196,27721729,28114946,28246018,28377089,28770306,28901380,29032449,29556737,29687809,29753345,31784962,47120385,51314690,51511297,51642369,52297729,52494337,52625409,53346305,53673986,54394882,54591489,54722561,55115778,55508996,55836674,56492034,56819716],"unconditionally":[47775745,49414145],"useasyncloadcallback":[49479681],"usecaseinsensitivememberbinding":[50790401],"unrecoverable":[45547521,47775745,49414145,50069505],"ulong":[720898,14811144,14876680,15663112,16318472,18612232,19464200,39780354,40042498,40370178,41943042,43253762,45154306,45285378,45744130,45940738,46006274,46465026,46596098,46661634,46989314,47251458,47513602,47841282,49676289],"uint":[10551297,11599873,12517377,36110337,36175873,37027841,47054849,48365569,49676289],"unmanaged":[2031617,2228225,2293761,2359297,2752513,2818049,3145729,3211265,4128769,4259843,4784130,4849665,6029315,6291459,6356995,6422531,6684675,8781827,9306115,18350083,18743297,19988481,24379393,25296899,27656193,31981570,40173569,49152001,49676289,50200577,51183617,51970049,52756481,53346306,54329347,55836675,56164353,57147394,57606145,57737219,57999363,58130433,58261506,58327042,58458115,58523651,58589187,58982403,59047937,59179011],"usereflectionbindfallback":[34275329,35127297,36569089,36765697,36896769,37552129,37617665,38338561,39321601,40894468,41025537,41811969,42270726,54329345,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"unusable":[26804225],"uinteger":[36110337,36175873,37027841,47054849,48365569],"unescaped":[8388609],"urls":[36438017,37158913,48824321],"user":[15073281,15204353,16121858,16384002,16842754,17170434,18808833,19398657,22740993,22806529,23724034,24051714,24576002,24838145,25034753,25231361,25755649,25821185,26148865,26214401,26279937,26345473,26542081,26673153,26738689,27197441,27918337,28835841,28966913,29360129,29491201,29818881,29884417,29949953,30015489,30343169,30867457,31129601,31522817,32309249,32505857,34930689,52035585,52690946,52953089,53149697,53870593,53805057,54853633,55640065,57212929,57868289,58720257],"uricomponents":[8388609],"unsigned":[720897,14614529,14811141,14876676,15663109,16252929,16318468,18612229,19464197,22872065,23658497,23920641,24313857,25165825,25362433,25624577,26083329,26476545,26607617,27131905,27459585,27918337,28049409,28180481,28704769,28835841,29163521,29425665,30539777,31129601,31653889,32309249,32702465,36110339,36175875,37027843,39780354,40042498,40370178,41943042,43253763,45154306,45285378,45744130,45940739,46006274,46465026,46596098,46661634,46989314,47054851,47251458,47513602,47841282,48365571],"uriformatt":[8388610],"undefinedimportvalue":[34275329,35127297,36569089,36765697,36896769,37617665,38338561,39321601,40108036,41025537,44564486,50331649,54329345,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"unknown":[38666241,40108033,44564481,50331649,53542914],"uricomponentst":[8388612],"uintptr":[45547527,47775751,49414151,50069511],"uwp":[15794177,16056321,17432577,18677761],"useassemblytable":[33488897,41746436,51904513]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_118.json b/docs/Reference/fti/FTI_118.json index eb2be4016..164167296 100644 --- a/docs/Reference/fti/FTI_118.json +++ b/docs/Reference/fti/FTI_118.json @@ -1 +1 @@ -{"valid":[14090241,14548993,15400961,15597569,16318465,16646145],"variable":[3014657,4980737,9764873,37814273,38141953,38207489,40042497,40501249,40894465,42532865,44236801,47185921,48824321,50331649,52101121,54263809,54329345,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"vt_dispatch":[52625409,58327041],"vt_array":[52625409],"voidresult":[131075,983047,6750210,14024705,22413313,29229058,34537473,49610753,52297729,55508999],"variabl":[9830401],"variables":[9764866,9830401,37814274,40894466],"vt_date":[52625409],"voidresultvalue":[38141953,38207489,40042497,40501249,42532865,44236801,47185921,48824321,49610756,50331649,52297734,54263809,55508993,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"violation":[31326209,38207489,44826625,46071810,53215234,54263809,57016321,57671682],"views":[35586049,57606145],"violated":[56688641],"vbscrip":[14024705,22413313,38797313,41811969,58195969],"vbs":[49676289,53346305],"value":[131073,196609,393217,655366,720898,786435,851974,983046,917505,1048577,1245188,2097157,2162692,2228230,2293766,2359300,2424836,2555910,2686978,2752518,2883588,2949126,3014678,3080196,3145731,3538946,3604484,3866632,3932162,3997698,4259844,4325380,4653057,4784129,4980757,5111809,5636097,5701633,5898241,6160385,6291457,6422529,6684673,6881284,6946817,7012353,7077889,7143425,7208963,7274497,7340033,7405569,7471105,7602177,7667713,7733249,7798787,7864321,7929866,7995393,8060932,8126465,8192009,8257537,8323081,8388617,8454145,8519681,8585217,8650761,8716289,8781832,8847362,8912904,8978441,9043975,9109505,9175041,9240585,9306121,9371649,9502729,9568265,9633795,9764869,9830405,9961481,10027017,10092553,10158086,10223617,10289153,10616833,10682369,10747913,10813449,11010057,11206657,11272193,11468801,11599879,11665417,11796481,11862025,12058628,12255233,12320769,12451841,12517382,12582913,12648449,12779521,12845058,13107201,13238275,13369345,13500417,13631491,13762563,13828098,14024708,14090241,14155777,14221313,14286849,14417927,14483458,14548993,14745601,14811137,15073282,15138818,15204355,15269889,15400963,15466497,15597569,15663105,15728642,15794177,15990785,16056321,16121857,16187393,16252929,16318467,16449538,16515073,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17235970,17301505,17367042,17498113,17563650,17629186,17694721,17825793,17956865,17891329,18022401,18087938,18153479,18219010,18284545,18415618,18546690,18612225,18677761,18743297,18808833,18939914,19070977,19136513,19333122,19398657,19660801,20250627,20316161,20447234,20578305,20643841,20840449,21102595,21168130,21299207,21495809,21889025,21954563,22020097,22413316,22544387,22740993,22806529,22937602,23003137,23134210,23265282,23330817,23527425,23592961,23724033,23789569,23920642,24117249,24248321,24313858,24379393,24444929,24576002,24641537,24772609,24903681,24969217,25034753,25100289,25165831,25231362,25362433,25427969,25493505,25624577,25755649,25821185,25886721,25952257,26017794,26083329,26148865,26214401,26279937,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27131905,27197441,27328513,27394049,27656193,27721730,27787265,27852801,27983873,28246017,28311553,28377089,28639233,28704770,28770305,28901377,28966913,29097985,29163523,29229057,29425665,29491201,29556738,29753345,29949953,30015489,30081025,30212097,30277634,30408705,30539777,30605313,30670849,30801921,30867457,30932993,31195140,31391745,31457282,31522817,31784961,31850497,31981569,32047106,32178178,32309249,32505857,32571393,32636930,32768001,32899073,33095682,33292289,33357826,33423361,33619970,33882113,33947649,34275331,34537474,34865154,35192834,35258370,35979265,36372481,36765697,37027844,37158913,37224449,37421057,37486594,37552129,37748737,37814274,38010882,38141955,38273025,38207491,38404097,38469634,38600706,38731777,38797314,38993922,39190529,39256066,39387140,39452674,39518210,39583745,39714818,39780353,39845889,39976961,40042499,40108034,40173570,40239105,40370178,40435713,40501251,40566786,40632322,40697857,40763394,40894466,40960002,41091073,41156609,41222145,41353218,41418754,41484290,41549826,41615362,41680898,41811970,41943042,42008577,42074114,42139649,42205185,42270721,42336258,42598401,42532867,42663937,42729474,42795009,42991617,43057154,43122689,43188225,43253762,43319298,43384834,43450370,43515905,43646977,43712514,43778051,43843586,43909121,43974658,44105730,44171265,44236803,44302337,44367880,44433411,44498945,44564482,44695554,44761090,44892162,44957698,45023233,45088770,45154305,45219843,45285378,45350914,45416450,45481986,45547522,45613058,45678593,45744129,45809668,45875202,45940738,46006273,46071810,46137345,46202882,46268418,46333954,46399492,46465026,46530564,46596097,46661634,46727171,46792705,46858242,46923777,46989314,47054852,47120386,47185923,47251457,47316994,47382530,47448066,47513601,47579137,47644674,47710210,47775747,47841282,47906817,47972354,48037889,48103432,48168962,48234497,48300034,48365569,48431105,48496642,48562178,48627713,48693250,48758785,48824323,48889858,48955393,49020929,49086467,49152001,49217538,49283073,49348610,49479681,49610761,49676289,49741825,49807361,49872898,49938440,50003970,50069505,50135041,50200577,50266114,50331651,50397185,50462721,50528258,50593793,50659332,50724866,50855938,50921473,50987009,51052546,51118088,51183617,51249158,51314690,51380228,51445761,51511298,51576835,51642371,51707905,51773442,51838980,51904513,51970049,52035585,52101141,52166660,52297737,52363267,52428801,52494339,52559875,52625409,52690945,52822024,52887554,52953089,53084162,53149697,53215234,53280778,53346305,53411842,53477377,53542914,53608450,53673986,53739521,53805060,53936131,54132744,54198273,54263811,54329366,54394883,54460418,54525953,54657025,54722561,54788097,54853633,54919169,55115777,55246849,55312385,55508997,55574534,55640066,55836677,55967748,56033281,56098820,56164356,56426500,56492035,56557569,56688642,56754179,56885249,56950787,57081858,57147398,57278465,57344003,57409544,57475075,57606152,57671683,57737220,57802760,57868291,57933826,58064900,58130438,58195972,58261507,58327042,58392579,58458115],"vt_cy":[52625409],"valuetask":[2490376,17367052,17563660,18219020,18546700,34603016,54591496,54919170],"visible":[54657025],"valuetype":[1572867,3407875,55246853,56033285],"verifyaccess":[3538945,3997697,5046273,5242881,5505025,5570561,5832705,6553601,28180486,31719428,31916036,55640065,56492033,56688641,57344001,57868289,58261505,58392577,58458113],"view":[2293763,2555906,2752514,2949123,13893633,14024705,14548993,15400961,15794177,16121859,16908291,22413313,26345473,33095681,39845889,40435713,41222145,43253761,43974657,52822018,54132738,57606147,57802755],"verify":[28180481,31719425,31916033],"versions":[39714817,45875201],"vbarray":[52625409],"values":[2424834,3866626,8060929,8388609,9764865,12845057,14024706,14090241,15073281,15728641,16449537,16646145,17235969,17629185,18087937,18415617,19333121,20447233,21168129,22413314,23265281,29556737,37158914,37421058,38141954,38207490,38731778,38797316,40042498,40501250,41811972,42532866,44236802,44695554,45350914,46202882,46333953,47120386,47185922,47579144,47841281,48103425,48824322,49348609,50331650,50724865,51118081,52625411,53280770,54263810,54460418,54919169,55574530,56098818,56164354,56492034,56754178,56950786,57344002,57475074,57868290,58195969,58261506,58392578,58458114],"vie":[2293763,2555907,2752515,2949123,14548995,15400963,15794178,33095682,34865155,39845889,40435713,41222145,43253763,43974659,45481987,52822022,54132742,57606150,57802758],"visual":[2424835,3866627,7012354,7274498,7340034,7602178,7864322,8519682,15663106,15990786,16515074,16711682,17367042,17563650,18219010,18546690,19660802,53280771,56164355],"vbscriptengine":[5570562,5832706,28835845,29163522,29425669,29884421,30146565,30605317,30932997,31260677,31981573,32243713,32309253,32833537,33423365,34275330,39124998,41025542,42532866,48824322,49676290,53346306,57344011,57868289,58392587,58458113],"void":[131073,786434,983041,4587522,5439490,5963778,6029314,6356994,6750209,6815746,7536642,9699330,9895938,10354690,10485762,10616834,10944514,11075586,11337730,11468802,11534338,11730946,11796482,11927554,11993090,12189698,12255234,12386306,12451842,12582914,12648450,12713986,12910594,12976130,13041666,13107202,13172738,13303810,13369346,13434882,13500418,13565954,13697026,13893634,13959170,14024705,14090242,14155778,14286850,14352386,14417922,14548994,14614530,14680066,14876674,14942210,15007746,15204354,15269890,15335426,15532034,15597570,15859714,16056322,16187394,16580610,16646146,16777218,16973826,17039362,17104898,17170434,17432578,17760258,17825794,17956866,17891330,18153474,18284546,18481154,18612226,19005442,19070978,19136514,19267586,19595266,19791874,19857410,19922946,19988482,20709378,20774914,21037058,21102594,21299202,21364738,21626882,21692418,21757954,22085634,22151170,22216706,22282242,22413313,22609922,23003138,23855106,23986178,24051714,24510466,24838146,25165826,25559042,25690114,26345474,27066370,27262978,27459586,27590658,27918338,28114946,28180482,28442626,28508162,28573698,29229058,29360130,30277634,30343170,30539778,31064066,31129602,31719426,31916034,33488898,35979266,37814273,38010881,38141953,38207489,38469633,38797313,39256065,39452673,39714817,40042497,40370177,40501249,40763393,40894465,41680897,41811969,41943041,42074113,42532865,42729473,43319297,43384833,43712513,43778049,43843585,44105729,44236801,44367873,44433409,44695553,44761089,44957697,45219841,45350913,45416449,45547521,45613057,45809665,45875201,45940737,46071809,46202881,46333953,46399489,46465025,46530561,46661633,46727169,46858241,46989313,47054849,47120385,47185921,47316993,47382529,47448065,47644673,47710209,47775745,47841281,47972353,48103425,48168961,48300033,48496641,48693249,48824321,48889857,49086465,49217537,49348609,49610756,49872897,49938433,50003969,50331649,50659329,50724865,50855937,51118081,51314689,51380225,51576833,51642369,51773441,51838977,52297732,52363265,52494337,52559873,52887553,53084161,53215233,53411841,53542913,53936129,54263809,54394881,55443458,55508994,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"version":[655361,720897,786433,851969,917505,983041,1048577,3014662,4390913,4587521,4653057,4718593,4784129,4849665,4915201,4980742,5111809,5177345,5373953,5439489,5636097,5701633,5767169,5898241,5963777,6029313,6160385,6225921,6291457,6356993,6422529,6488065,6619137,6684673,6815745,6881281,6946817,7012353,7077889,7143426,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126466,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781826,8847362,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599874,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320770,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18939905,18874369,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886722,25952257,26017794,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704770,28770305,28835841,28901377,28966913,29032449,29097985,29163522,29229058,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212098,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,31064065,31129601,31195137,31260673,31391745,31522817,31719425,31784961,31850497,31916033,31981569,32309249,32505857,32571393,32768001,32899073,33161218,33292290,33357826,33423361,33488897,33882113,33947649,34078722,34275330,34537474,35717122,35979265,36372481,36765697,37027841,37224449,37552129,37814273,38010881,38273025,38404097,38469633,38797313,38993921,39190529,39256065,39452673,39583745,39714817,39780353,39845889,39976961,40239105,40370177,40435713,40566785,40697857,40763393,40894465,41091073,41156609,41222145,41353217,41484289,41549825,41680897,41811969,41943041,42008577,42074113,42139649,42205185,42270721,42598401,42663937,42729473,42795009,42991617,43057153,43122689,43188225,43319297,43384833,43450369,43515905,43646977,43712513,43778049,43843585,43909121,44105729,44171265,44302337,44367873,44433409,44498945,44695553,44761089,44892161,44957697,45023233,45088769,45154305,45219841,45350913,45416449,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101128,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53936129,54001665,54067201,54132737,54198273,54263809,54329351,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064898,58130433,58195969,58261505,58327041,58392577,58458113],"vbscript":[5570561,5832705,28835842,29163521,29425666,29884418,30146562,30605314,30932994,31260674,31981571,32243714,32309250,32833538,33423363,34275329,39124998,41025542,42532865,48824321,49676289,52625410,53346305,53870594,57344007,58327041,58392583],"variants":[52625411],"var":[6881282,7077894,7405574,7471105,7733250,7929857,8192002,8585222,8650755,8847363,8912898,9043972,9109506,9240579,9306115,9502723,9568259,9764870,9830406,10027011,10092547,10682371,10747907,10813443,11010051,11206658,11599874,11665411,11862019,12058626,12320770,12517380],"val":[655361,720897,851969,917505,983041,1048577],"variant":[52625409,58327041],"various":[56557569],"virtual":[786433,2424833,3866625,4587521,4653057,4784129,5111810,5636097,5701634,5898242,6160386,6291458,6356994,6946817,16056321,16187393,16252929,16580609,16646145,16777217,16842753,16973825,17039361,17104897,17170433,17432577,17629185,17694721,17760257,17825793,17891329,17956865,18284545,18415617,18481154,18612225,18677761,18743298,18939905,19005441,19070977,19136513,19267585,19333121,19595265,19791873,19857409,19922945,19988482,20250625,20447233,20578306,20643841,20709377,20774913,21037057,21102593,21168129,21299201,21364737,21626881,21692417,21757953,21954561,22151169,22216705,22282241,22413313,22544385,23003137,23134209,23265281,23920641,23986177,24051713,24248321,24510465,24576001,24838145,25165825,25559041,25690113,25886721,26017793,26345473,27131905,27262977,27590657,27918337,28114945,28180481,28508161,28573697,28704769,29163521,29229057,29360129,30212097,31129601,32505857,33292289,33357825,34275329,35979265,36372482,37027841,37224449,39780353,40566785,40894465,41484289,41549825,41811969,42205185,42270721,42991617,43122689,43843585,44761089,45154305,45219842,45547521,45809665,45875201,46399489,46465025,46530561,46792705,46923777,46989313,47251457,47579137,47644673,47710209,48037889,48365569,48496641,48562177,49020929,49152001,49348609,49479681,49676289,49741825,49938433,50003969,50069505,50266113,50462721,50528257,50593793,50724865,51052545,51118081,51314689,51511297,51576833,51773441,52297729,52625411,52690945,52953089,53149697,53280769,53346305,53608449,53673985,56164353]} \ No newline at end of file +{"variabl":[7667713],"variant":[50659329,58654721],"vbscript":[6029313,6422529,29360130,29753346,30015490,30343170,30474242,31522819,32768001,36896769,39321601,46792705,47448065,47972354,50659330,52953090,53805059,54329351,56229889,56623106,56950790,57081858,57212930,57475074,57671686,58654721,58982407],"version":[196609,458753,720897,786433,851969,917505,983041,1048577,3014662,3604486,4456449,4521985,4587521,4653057,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6094849,6160385,6225921,6488065,6553601,6619137,6750209,6815745,6881281,6946817,7012353,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126466,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716290,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9371649,9437186,9502721,9568257,9633793,9699329,9764865,9830402,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272194,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124162,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823490,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869762,26935297,27000833,27066369,27131905,27197441,27262977,27328514,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28114945,28049409,28180481,28246017,28311554,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30277634,30343169,30408706,30474241,30539777,30867457,30998530,31129601,31522817,31653889,31784962,32309249,32505857,32702465,32768002,36110337,36175873,36241409,36306945,36372481,36503553,36634625,36831233,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462727,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51314689,51445761,51511297,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52297729,52363265,52494337,52559880,52625409,52690945,52756481,52953089,53018625,53084161,53149697,53346305,53411841,53477377,53542913,53673985,53805057,53870593,53936129,54067201,54198274,54263809,54329345,54394881,54460417,54591489,54722561,54788097,54853633,54984705,55115777,55181313,55246849,55312385,55508993,55640065,55771138,55836673,55902209,56033281,56164353,56229890,56492034,56623105,56754177,56819713,57016321,57081857,57344001,57606145,57737217,57868289,57933825,57999361,58130433,58195969,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851330,58916865,58982401,59047937,59113473,59179009],"valid":[13893633,14090241,15400961,16908289,17825793,19660801],"verifyaccess":[3801089,4325377,6029313,6291457,6356993,6422529,8781825,9306113,27394052,51314692,54329345,54788097,55508998,57737217,57999361,58392577,58589185,58982401,59179009],"visible":[50987009],"violation":[35782657,36569089,46333954,46923778,51970049,55902210,56885249,58458113],"variable":[3014657,3604481,8978441,34275329,35127297,36569089,36765697,36896769,37617665,38338561,39321601,39518209,41025537,42729473,50462721,52559873,54329345,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"var":[6619138,6815746,7471106,7667718,7798785,7864326,7995394,8126467,8192002,8257540,8388614,8585217,8650754,8978438,9043974,9240579,9502722,9764867,9961475,10092547,10223620,10354691,10551299,10878979,11075587,11141123,11272194,11599875,11927555,11993091,12124162,12517379],"voidresultvalue":[34275329,35127297,36569089,36765697,36896769,37617665,38338561,39321601,41025537,41680900,43188230,53936129,54329345,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"val":[458753,720897,786433,851969,917505,983041,1048577],"vt_date":[50659329],"variables":[7667713,8978434,39518210,42729474],"vt_cy":[50659329],"views":[49152001,56295425],"vbs":[46792705,47448065],"valuetask":[2490376,15794188,16056332,17432588,18677772,32374792,50593800,50790402],"versions":[39649281,44695553],"variants":[50659331],"vbscriptengine":[6029314,6422530,29360133,29753349,30015493,30343173,30474245,31522821,32768002,36896770,39321602,46792706,47448066,52953093,53805061,54329355,56229890,56623109,56950790,57081861,57212929,57475073,57671686,57737217,58982411,59179009],"vbscrip":[16384001,24051713,38862849,43646977,58916865],"visual":[2424835,4128771,7208962,7274498,7733250,7929858,8454146,9371650,14942210,15728642,15794178,16056322,16646146,16777218,16973826,17301506,17432578,17760258,18677762,50397187,59047939],"vie":[2293763,2359299,2818051,3211267,13893635,14614530,15400963,32899074,34013187,34340867,35061763,36700163,39780353,40370177,41615361,49152006,49676294,50200582,52756486],"verify":[27394049,51314689,55508993],"valuetype":[1376259,4063235,51773445,54460421],"values":[2424834,4128770,7536641,8060929,8978433,12582913,13434881,14090241,14286849,15007745,15073281,16384002,17170433,19070977,19660801,19857409,20971521,21889025,22740993,24051714,25952257,33882114,34209794,34275330,34406402,35127298,36569090,36765698,36896770,37617666,38338562,38535169,38862852,38993921,39321602,40108033,41025538,41353224,42205185,43384833,43646980,44564481,45350914,46268418,46858242,47579138,49545218,50331650,50397186,50659331,50790401,52363266,52690945,53084161,54329346,56164354,57737218,57933826,57999362,58458114,58523650,58589186,58916865,58982402,59047938,59179010],"virtual":[196609,2424833,4128769,4521985,4587521,4653058,4980737,5373953,5570562,5636098,5963778,6488065,6553602,6881282,15859713,15990785,16580609,17039361,17235969,17498113,17956865,18153473,18219009,18284545,18350082,18415617,18481153,18743297,18874369,19005441,19070977,19267585,19333121,19529729,19595266,19660801,19726337,19791873,19857409,19922945,19988481,20185089,20250626,20316161,20381697,20447233,20512769,20643841,20840449,20905986,20971521,21037057,21102593,21168129,21233665,21364737,21626881,21757953,21823489,21889025,22020097,22151169,22282241,22347777,22478849,22675457,22740993,22806529,23003137,23068673,23265281,23330817,23527425,23724033,23855105,24051713,24117249,24379393,24444929,24576001,25296897,25427969,26804225,26869761,27328513,27656193,28246017,28311553,28770305,28901377,31784961,32768001,36175873,37027842,37879809,38666242,39387137,40435713,40501249,40697857,40960001,41156609,41287681,41353217,41418753,41811969,41877505,42008577,42074113,42139649,42205185,42270721,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,43057153,43122689,43188225,43384833,43450369,43581441,43646977,43712513,43778049,43843585,43974657,44040193,44105729,44236801,44302337,44367873,44564481,44630017,44695553,44761089,44826625,44892161,45678593,46071809,46727169,46792705,47185921,47448065,48234497,48300033,48758785,49086465,50397185,50659331,51642369,52297729,52690945,53673985,54198273,54394881,54984705,55115777,55508993,55836673,56229889,56492033,56819713,59047937],"value":[131073,196611,262145,393219,458758,524289,720898,786433,851976,917510,983046,1048577,1310724,1966085,2031620,2162690,2228230,2293766,2359302,2424836,2621444,2686979,2752516,2818054,2883588,2949124,3014678,3080194,3276804,3211270,3604501,3735553,3801090,4128776,4325378,4521985,4587521,4653057,4784132,5373953,5570561,5636097,5898241,6488065,6553601,6619140,6750209,6815745,6881281,6946817,7012353,7143426,7208961,7274497,7340033,7471108,7536644,7602179,7667717,7733249,7798794,7864321,7929857,7995393,8060937,8126466,8192001,8257543,8323073,8388609,8454145,8519681,8585217,8650761,8716296,8847363,8912905,8978437,9043969,9109505,9175041,9240585,9371649,9437185,9502728,9568259,9633798,9764873,9830401,9961481,10027017,10092553,10223622,10354689,10551305,10616841,10747905,10682369,10878985,10944513,11075593,11141129,11272199,11534337,11599881,11665409,11730945,11862017,11927561,11993097,12124161,12189697,12320769,12386305,12517385,12582914,12845057,13172739,13238275,13303815,13434882,13697025,13762561,13828098,13893635,13959169,14024707,14090241,14286850,14352385,14417922,14614529,14745601,14811137,14876673,14942209,15007746,15073282,15138819,15269890,15400961,15466497,15532033,15597569,15663105,15728641,15794178,15859713,15990791,16056322,16252929,16318465,16384004,16646145,16777217,16908289,16973825,17039361,17170434,17235969,17301505,17432578,17498113,17563649,17760257,17825795,17956865,18153473,18415617,18546689,18612225,18677762,19005441,19070978,19136519,19267585,19333121,19464193,19595265,19660801,19726337,19791873,19857410,20185098,20512769,20643843,20905985,20971522,21037059,21233665,21626883,21692417,21823489,21889026,21954561,22282242,22413313,22478849,22544385,22740994,22872065,23003138,23134209,23330817,23527426,23658497,23789570,23920641,24051716,24117249,24182785,24248321,24313857,24444929,24641537,24707074,24772609,24838145,24903681,25100289,25165825,25231361,25362433,25427969,25493505,25624577,25690113,25755649,25886721,25952258,26017794,26083329,26148866,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26869762,27000833,27066369,27131905,27197442,27262977,27328513,27459585,27525121,27787278,27721729,27852801,27918337,27983873,28049409,28180481,28246017,28311554,28377089,28508161,28573697,28639233,28704769,28835841,29032449,29097988,29163521,29229057,29294593,29425665,29491201,29556737,29622273,29818881,29884417,29949953,30081026,30343169,30474241,30539777,30605314,30867457,31129601,31522817,31588354,31653889,31719426,31784961,32047106,32309249,32505857,32702465,32768003,32899074,33554433,33751042,33882113,34013186,34209793,34275331,34340866,34406401,34471938,34930692,35061762,35127299,35389442,35454978,35717122,35848194,35979266,36110339,36175875,36241410,36306945,36372482,36503553,36569091,36634625,36700162,36831234,36765699,36896771,36962306,37027843,37093377,37158914,37224449,37289986,37355521,37421058,37486594,37552130,37617667,37683202,37748738,37814274,37879809,37945345,38010882,38076417,38141954,38207490,38273026,38338563,38404097,38469634,38535170,38600705,38666241,38731778,38797314,38862850,38928386,38993922,39059458,39124994,39190530,39256065,39321603,39387137,39452673,39518210,39583748,39649282,39714817,39780353,39845890,39911426,39976964,40042497,40108040,40173570,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697858,40763394,40828929,40894466,40960002,41025539,41091073,41156609,41222145,41287682,41353217,41418754,41484296,41549825,41680905,41615361,41746434,41811970,41877506,41943041,42008578,42074113,42139649,42205186,42270722,42336257,42401794,42467330,42532868,42598402,42663937,42729474,42795009,42860548,42926088,42991617,43057153,43122690,43188233,43253763,43319299,43384834,43450370,43515905,43581441,43646978,43712514,43778049,43843586,43909122,43974657,44040193,44105729,44171265,44236802,44302337,44367873,44433409,44498945,44564488,44630017,44695554,44761089,44826626,44892164,44957697,45023235,45088769,45154305,45219842,45285377,45350914,45416450,45481985,45547523,45613058,45678594,45744129,45809665,45875202,45940739,46006273,46071809,46137346,46202881,46268418,46333954,46399489,46465025,46530561,46596098,46661633,46727169,46792705,46858242,46923778,46989313,47054851,47120385,47185922,47251457,47316993,47382529,47448065,47513601,47579138,47710210,47775748,47841281,47906819,48037890,48103428,48234498,48300033,48365571,48496643,48627714,48693250,48758786,48889857,49086466,49152008,49283073,49348610,49414148,49479681,49545222,49610753,49676296,49807362,49938433,50003969,50069507,50200584,50266117,50331650,50397188,50462742,50528257,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51183622,51249154,51642375,51773441,51838978,52035585,52166657,52297731,52363268,52559893,52690946,52756488,52953089,53084166,53280770,53346305,53542913,53673985,53739522,53805057,53936133,54067201,54132738,54198274,54329347,54394881,54460417,54591489,54788098,54853633,54984708,55181313,55705602,55771139,55902211,56033284,56164355,56229891,56360962,56492033,56557570,57016322,57081857,57344004,57606150,57737219,57933827,57999363,58130440,58195969,58327046,58392578,58458115,58523651,58589187,58654722,58720260,58785794,58851332,58916868,58982403,59047946,59113476,59179011],"violated":[58392577],"void":[196610,262145,917505,4390913,4980738,5439490,5505026,5701634,5963778,6094850,6225922,9699330,10158082,10420226,10682370,10813442,11010050,11206658,11403266,11468802,11534338,11665410,11730946,11796482,12189698,12255234,12320770,12386306,12451842,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13303810,13369346,13500418,13565954,13631490,13697026,13959170,14024706,14090242,14155778,14221314,14483458,14548994,14680066,14745602,15204354,15335426,15400962,15532034,15597570,15990786,16121858,16384001,16515074,16580610,16842754,16908290,17039362,17498114,17891330,18022402,18153474,18219010,18284546,18350082,18415618,18481154,18743298,18874370,19005442,19136514,19267586,19529730,19660802,19791874,19922946,19988482,20250626,20316162,20381698,20447234,20512770,20840450,21102594,21168130,21233666,21364738,21430274,21757954,22020098,22151170,22347778,22478850,22675458,22806530,23068674,23199746,23265282,23330818,23724034,23855106,23986178,24051713,24379394,24444930,24576002,25296898,25427970,25559042,26017794,26804226,26935298,27328514,27394050,27590658,27656194,28114946,28377090,28770306,28901378,29687810,34275329,35127297,36110337,36175873,36241409,36372481,36569089,36831233,36765697,36896769,36962305,37027841,37158913,37421057,37486593,37552129,37617665,37683201,37748737,37814273,38141953,38207489,38273025,38338561,38469633,38535169,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39321601,39518209,39583745,39649281,39911425,39976961,40108033,40173569,40763393,40894465,40960001,41025537,41287681,41484289,41680900,41746433,41811969,41877505,42008577,42205185,42270721,42401793,42532865,42598401,42729473,42860545,42926081,43188228,43253761,43319297,43384833,43450369,43646977,43843585,43909121,44564481,44695553,44826625,44892161,45023233,45350913,45416449,45547521,45613057,45678593,45875201,45940737,46137345,46268417,46333953,46858241,46923777,47054849,47579137,47710209,47775745,47906817,48365569,48496641,48627713,48693249,49348609,49414145,49807361,50069505,51314690,51642370,52297730,52494338,52625410,53936130,54329345,54394882,55115778,55508994,55836674,56164353,56819714,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"voidresult":[262147,917511,4390914,16384001,24051713,27328514,41680897,43188225,53936135,55771137],"vt_array":[50659329],"valueref":[393219,851970,3735554,7143427,27787272,46530565,51838984,53084167,55771139],"vbarray":[50659329],"various":[49938433],"vt_dispatch":[50659329,58654721],"view":[2293763,2359298,2818051,3211266,13893633,14614529,14811139,15400961,15663107,16121857,16384001,23724033,24051713,32899073,34013185,35061761,39780353,40370177,41615361,49152003,49676290,50200579,52756482]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_119.json b/docs/Reference/fti/FTI_119.json index e7dbc8c75..734d749ba 100644 --- a/docs/Reference/fti/FTI_119.json +++ b/docs/Reference/fti/FTI_119.json @@ -1 +1 @@ -{"wrapping":[8388609,38141953,38207489,38797314,40042497,40501249,41811970,42532865,44236801,47185921,48824321,50331649,54263809,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"writer":[3342337,27066375,55050241],"waiting":[6094849,30343169,54263809],"windows":[327681,393217,851972,1048580,3538945,3997697,4128769,4259841,5046273,5242882,5308417,5505026,5570561,5832705,6553601,13893633,14024705,17367041,17563649,18219009,18546689,22413313,26345473,28049412,28180484,28573701,28704772,28770309,28835844,29163524,29294596,29360133,29425669,29687812,29884420,29949956,30015493,30146564,30212101,30539780,30605317,30670853,30736388,30932997,31129605,31195140,31260676,31522821,31719429,31784965,31916036,31981573,32243719,32309253,32505860,32571397,32768007,32833541,32899079,33292292,33357828,33423365,33488900,33882117,33947652,34275332,35979268,37027844,37486593,38076417,38600705,39124993,39649282,40304641,40501249,41025537,42532865,44236802,44630017,45285377,47185921,48824321,49020932,49676292,50266117,50331650,50855941,51511301,51970053,52428804,52625414,52953092,53346308,53739525,53870598,54657025,54788098,55640069,56492038,56688646,57344006,57475073,57868299,57999365,58130437,58261512,58327046,58392584,58458124],"writeruntimeheapsnapshot":[6094849,28442628,54263809],"written":[49610753,52297729,55508993],"webclientt":[10682370],"writes":[3342337,4194305,6094849,27066369,27459585,28442625,54263809,55050241,57016321],"writejson":[3342337,27066372,55050241],"waited":[54788097],"wrapped":[49872897,53411841],"web":[10682370,41287681,53477377],"writeheapsnapshot":[4194305,27459588,57016321],"webclient":[10682372],"write":[2555905,9764865,16908289,18022401,20316165,27066370,27459586,28442626,54132737],"windowsscriptengineflags":[28770309,29425669,30015493,30605317,30670853,30932997,31522821,31784965,31981573,32243713,32309253,32571397,32768005,32899077,33423365,38076419,39124995,40304643,41025539,52625412,56492035,57344003,58261507,58392579],"widget":[7471105],"writebytes":[2228225,2293761,2555905,2752513,2949121,16908292,18022404,52822017,54132737,57409537,57606145,57802753],"weight":[7471105],"writeline":[7733249,10682371,12517377],"windowsscriptengine":[5046278,5242882,5505032,5570566,5832710,6553606,28573697,29360129,30212098,31129601,31719425,32243713,32768004,32833537,32899076,33882113,39649281,40501252,42532868,44236802,47185925,48824325,50266113,50331654,50855937,51511297,51970049,53739521,54263809,56492047,57344015,57475073,57868296,58261521,58392593,58458134],"www":[7405569],"writable":[15925249,16384001,19464193,20185089,35389442,56754178,56885249],"wait":[54788097,54919169],"window":[5308417,33488897,44630018,50855937,52428802,57999362],"work":[56557570],"way":[8585217,14024705,22413313],"wrapnullresult":[8388610,38797313,41811969,44367873,49938433,58195969]} \ No newline at end of file +{"www":[8388609],"writeruntimeheapsnapshot":[6684673,29687812,58458113],"writeheapsnapshot":[4849665,23986180,51970049],"windowsscriptengineflags":[29229061,29491205,29818885,29949957,30343173,30474245,30867461,31522821,32505861,50659332,52035589,52953093,53805061,54329347,55181317,56098819,56950787,57081861,57212929,57409539,57671683,57999363,58589187,58982403],"windowsscriptengine":[6029318,6291462,6356998,6422534,8781826,9306120,32505860,36765700,36896772,37617669,38338562,39321605,41025542,47382529,48234497,48627713,49086465,49610753,51314689,52035588,54329359,54591489,55115777,55836673,56492034,56819713,57147393,57212929,57475073,57737224,57999375,58458113,58523649,58589201,58982417,59179030],"writes":[3932161,4849665,6684673,23199745,23986177,29687809,51707905,51970049,58458113],"written":[41680897,43188225,53936129],"webclient":[10354692],"writable":[15925249,16711681,17367041,20578305,33226754,57933826,58195969],"window":[4194305,35651586,48627713,50003970,52625409,57868290],"way":[9043969,16384001,24051713],"write":[3211265,8978433,15663105,16318469,19464193,23199746,23986178,29687810,49676289],"wrapnullresult":[8060930,38862849,41484289,42926081,43646977,58916865],"writeline":[8192001,10223617,10354691],"writer":[3932161,23199751,51707905],"widget":[8585217],"work":[49938434],"webclientt":[10354690],"waited":[50921473],"web":[10354690,33095681,49479681],"waiting":[6684673,26935297,58458113],"wrapping":[8060929,34275329,35127297,36569089,36765697,36896769,37617665,38338561,38862850,39321601,41025537,43646978,54329345,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"writejson":[3932161,23199748,51707905],"wrapped":[47710209,49348609],"windows":[327681,524289,983044,1048580,3801089,4194305,4325377,4784129,6029313,6291457,6356993,6422529,7077889,8781826,9306114,15794177,16056321,16121857,16384001,17432577,18677761,23724033,24051713,27394052,27721732,28311556,28377092,28442628,28966916,29097988,29229061,29360132,29491205,29753348,29818885,29949957,30015492,30343173,30474245,30867461,31522821,31784964,32505863,32768004,35651585,35979265,36765697,36896769,37617665,38338562,39321601,41025538,46071812,46727172,46792708,47382533,47448068,47972358,48234501,48627717,49086469,49610757,50003972,50659334,50921474,50987009,51314693,52035591,52625412,52953093,53346308,53673988,53805061,54198276,54329350,54394884,54591493,54722564,54788101,54984708,55115781,55181317,55508996,55640068,55705601,55836677,56098817,56229892,56492037,56557569,56623108,56819717,56950785,57081861,57147394,57212935,57409537,57475077,57671681,57737227,57868293,57999366,58327045,58392582,58523649,58589192,58654726,58982408,59179020],"writebytes":[2228225,2293761,2359297,2818049,3211265,15663108,19464196,49152001,49676289,50200577,52756481,58130433],"wait":[50790401,50921473],"weight":[8585217]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_121.json b/docs/Reference/fti/FTI_121.json index 8429e1f4d..3d4c67782 100644 --- a/docs/Reference/fti/FTI_121.json +++ b/docs/Reference/fti/FTI_121.json @@ -1 +1 @@ -{"yield":[7077889,7667713,8585217,12451841,12648449,12713985,13303809,13565953,14155777,14614529,15269889,15335425,16777217,17825793,18284545,18612225,19005441,19791873,21037057,21757953,22151169],"yields":[54919169],"young":[35127297,47120386,57212929]} \ No newline at end of file +{"yields":[50790401],"young":[35323905,46268418,53411841],"yield":[6946817,7864321,9043969,12713985,12976129,13631489,13697025,14483457,14745601,15335425,15532033,15597569,18481153,19529729,20381697,21168129,21233665,22151169,23330817,24444929,25427969]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_122.json b/docs/Reference/fti/FTI_122.json index 46b1d0d43..2dfaac459 100644 --- a/docs/Reference/fti/FTI_122.json +++ b/docs/Reference/fti/FTI_122.json @@ -1 +1 @@ -{"zero":[37552129,40960001,43450369,46268417,57081857]} \ No newline at end of file +{"zero":[35454977,37355521,45219841,48037889,57016321]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_97.json b/docs/Reference/fti/FTI_97.json index 31b959de6..aebe5341f 100644 --- a/docs/Reference/fti/FTI_97.json +++ b/docs/Reference/fti/FTI_97.json @@ -1 +1 @@ -{"addsystemdocument":[1441796,5439493,6029317,6815749,7536645,37945348,55902212],"accordance":[47054849,51838977],"associated":[2162689,2228225,2293761,2555905,2752513,2949121,3145729,3211269,3604481,3801093,3866625,4194308,4259841,5046277,5242885,5505029,5570565,5832709,6094857,6553605,13893633,14024705,14680065,15073281,17760257,21364737,22413313,23265281,24379393,25362433,25493505,25690113,26345473,26542081,26607617,27262977,27394049,28966913,32702466,33685507,33816578,34471937,34734081,34996226,35323906,35782658,36306946,36503553,37683204,38141953,38207489,39387138,39649281,39976961,40042497,40173569,40501250,40960001,42532866,43515905,44236802,44826625,46596097,47185923,48234497,48365569,48824323,49152001,50331651,51249153,51970049,52232193,52690945,52822017,53280769,53739521,54132737,54263818,56098817,56492039,56950790,57016325,57081857,57147393,57344007,57409537,57475078,57606145,57737218,57802753,57868295,57933825,58130433,58261512,58392584,58458120],"arr":[8454145,9109505,10289153,33751041],"activex":[3211280,3801104,4980739,5046288,5242896,5505040,5570576,5832720,6094864,6553616,7733250,8126465,9175041,10616833,11206658,11468801,11534337,11730945,11796481,11993089,12189697,12255233,12386305,12582913,12910593,12976129,13107201,13369345,13697025,14286849,16056321,16187393,16973825,17039361,17891329,17956865,19070977,19136513,19857409,19922945,20709377,20774913,21626881,21692417,22216705,22282241,32440328,37093384,38535176,39321608,52101123,54263824,56492048,56950800,57344016,57475088,57868304,58261520,58392592,58458128],"addcomtype":[3211272,3801096,5046280,5242888,5505032,5570568,5832712,6094856,6553608,11730949,11796485,11993093,12386309,12582917,12910597,13369349,14286853,16187399,16973831,17956871,19070983,19857415,20709383,21626887,22216711,32440328,39321608,54263816,56492040,56950792,57344008,57475080,57868296,58261512,58392584,58458120],"allows":[1179649,1245185,1310721,1376257,1441793,1572865,1507329,1638401,1703937,1769473,1835009,1900545,2097153,2359297,2424833,2686977,2818049,2883585,3014658,3080193,3276801,3342337,3407873,3473409,3670017,3735553,3866625,3932161,3997697,4063233,4128769,4194305,4325377,4456449,4521985,4980738,6750209,10682369,32243713,34537473,38010881,38141955,38207491,40042499,40501251,41943041,42532867,43057154,43843585,44236803,45088769,47185923,48562178,48824323,49414145,49545217,50266114,50331651,50528257,50790401,51052546,51511297,52101123,52166657,52232193,53018625,53280769,53673985,53805057,54001665,54067201,54263811,54329346,54460417,55050241,55246849,55508993,55574529,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56295425,56360961,56426497,56492035,56623105,56688641,56754177,56819713,56950787,57016321,57212929,57344003,57475075,57540609,57737217,57868291,57999361,58064897,58261507,58327041,58392579,58458115],"attempt":[42729473,44761089,46333953,49348609],"attributetargets":[52166676,53805092,55836676,55967764,56426532,58064912],"ancestors":[6291457],"arrayt":[9830402,12517378],"automatic":[37814273,38141953,38207490,40042497,40501249,40894465,42532865,44236801,44826625,47185921,48824321,49086465,50331649,52559873,54263810,54919171,55312385,56492033,56950785,57016321,57344001,57475073,57868289,58261505,58392577,58458113],"affects":[41943041,42729473,43843585,44761089,52625409,53936129,54394881,56885249],"attributes":[1179649,6291463,34537473,34865153,34930689,35586049,41680897,42336257,42598401,43253761,43974657,44564481,45481985,49414145,51249153,52822017,54132737,54788098,54853634,55246849,57409537,57606145,57802753],"addhosttype":[3211272,3801096,5046280,5242888,5505032,5570568,5832712,6094856,6553608,12451845,12648453,12713989,13565957,14155781,14614533,15269893,15335429,16777223,17825799,18284551,18612231,19791879,21037063,21757959,22151175,31588360,33554440,54263816,56492040,56950792,57344008,57475080,57868296,58261512,58392584,58458120],"awaitdebuggerandpauseonstart":[54919169],"attached":[12845057,13172737,13893633,14024705,14680065,15073281,21168129,22413313,23265281,25559041,26345473,27262977],"api":[20905985,44695553,46596097,47120385,47448065],"addcomobject":[3211272,3801096,5046280,5242888,5505032,5570568,5832712,6094856,6553608,10616837,11468805,11534341,12189701,12255237,12976133,13107205,13697029,16056327,17039367,17891335,19136519,19922951,20774919,21692423,22282247,37093384,38535176,54263816,56492040,56950792,57344008,57475080,57868296,58261512,58392584,58458120],"attributeusageattribute":[52166660,53805060,55836676,55967748,56426500,58064900],"allocate":[35127297,43778049,57212929],"auxiliary":[36700161,38010882,54984705],"accepted":[22020098,22740994,23789570,24969218,25362434,25755650,26542082,26738690,27328514,28966914,29491202,31850498],"asconstructor":[14483461,23134213],"arrtype":[4980737,10289156,52101121],"await":[30343169,38862849,47448073,55181313,56557569],"automatically":[1,12845057,13172737,21168129,25559041,27918337,51642369,54263809,54919169,55836673],"avoid":[11927553],"auxiliarysearchpath":[36700161,38010884,54984705],"appears":[58327041],"accept":[14090241,16646145],"additionally":[57671681],"algorithm":[38010881,44105729,44433409,44957697,46989313,47710209,48889857,51773441,55967745,56426497,56885249],"anonymous":[38141953,38207489,39714821,40042497,40501249,42532865,44236801,45875205,47185921,48824321,50331649,54263809,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"add":[786433,2686977,3145730,3932161,5439489,6029313,6815745,7536641,8650754,9240578,9306114,9502722,9568258,9699331,9764866,9895938,10027010,10092546,10354691,10485763,10616833,10747906,10813442,10944514,11010050,11075586,11206659,11337730,11403265,11468801,11534337,11665410,11730945,11796481,11862018,11993089,12124161,12189697,12255233,12386305,12451841,12582913,12648449,12713985,12910593,12976129,13107201,13303809,13369345,13500417,13565953,13697025,14090241,14155777,14286849,14352385,14614529,15007745,15269889,15335425,16056321,16187393,16580609,16646145,16777217,16973825,17039361,17432577,17825793,17956865,17891329,18284545,18612225,19005441,19070977,19136513,19791873,19857409,19922945,20709377,20774913,21037057,21299208,21626881,21692417,21757953,22151169,22216705,22282241,23003137,31588353,32112641,32440321,33030145,33554433,34013185,36438017,36962305,37093377,37945345,38535169,39321601,39911425,53870593,54919169,55574529,56098818,56754177],"allowreflection":[11599873,12320769,38141953,38207489,40042497,40501249,42532865,42729476,44236801,44761094,47185921,48824321,50331649,54263809,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"attempting":[58261505,58392577,58458113],"abc":[11206657],"added":[65537,262145,786433,6815745,55574529,56098817,56754177],"ascii":[27459585,28442625],"actions":[2424833,3866625,53280769,56164353],"asynchronous":[5636097,6946817,15663105,15990785,16515073,16711681,17367041,17563649,18219009,18546689,19660801,57671681],"absolute":[4653057,5636097,5701633,6160385,6946817],"addrestrictedhostobject":[3211266,3801090,5046274,5242882,5505026,5570562,5832706,6094850,6553602,13500421,14352389,16580615,23003143,32112642,34013186,54263810,56492034,56950786,57344002,57475074,57868290,58261506,58392578,58458114],"access":[2228226,2293762,2359297,2424833,2555906,2752514,2883585,2949122,3538946,3866625,3997698,4259841,4915208,5046274,5242882,5439489,5505026,5570562,5636097,5832706,6029313,6160385,6553602,6815745,6881281,6946817,7536641,9764865,10158081,12058625,13500417,14024705,14090241,14352385,14548995,15400963,15597571,16318467,16580609,16646145,19726344,20054017,20381704,20512769,21430273,22413313,22478857,23003137,23068681,23658497,24707080,28180482,29949955,31326209,31719426,31916034,32243713,32374785,32505859,32833537,33095683,33619971,33882115,33947649,34537478,35586049,35848195,36175873,36241409,36569091,38141958,38207494,38666244,39714820,40042502,40370177,40501254,40763393,40828931,41877506,41943042,42401794,42467329,42532870,42926081,43057155,43843586,44105730,44236806,44433409,45088769,45875204,45940738,46465025,46530561,46661633,46989314,47185926,47841281,48562179,48758790,48824326,49479681,49741825,50266115,50331654,50528257,50724865,51052547,51380225,51511297,52035590,52166659,52625410,52822018,53018625,53280769,53477378,53673985,53805059,53870596,54067201,54132738,54263814,54657026,54919170,55574529,55640066,55902210,55967748,56098818,56164353,56426500,56492040,56688642,56885253,56950790,57344008,57409538,57475078,57606146,57737217,57802754,57868296,58064903,58130433,58261512,58392584,58458120],"avoids":[44957697,47710209],"arraybuffer":[2228229,14745602,15597571,16318467,17301506,18022402,33619970,34865155,35127297,35586050,39845893,40435713,42008577,42336257,43253763,43778051,43974659,45481987,47054849,51838977,52822019,54132739,54853633,55115778,57212929,57409543,57606148,57802755],"adds":[1441796,2686977,3145730,3932168,5439489,6029313,6815745,7471105,7536641,8650753,9240577,9306113,9502721,9568257,9699329,9895937,10027009,10092545,10354689,10485761,10747905,10813441,10944513,11010049,11075585,11337729,11665409,11862017,21299201,36438020,36962307,37945348,55574536,55902212,56098818,56754177],"args":[7405573,7995397,8126469,8847365,13631493,13762565,13828101,14483461,15138821,15204358,20250630,21102598,22544389,23134213,23920646,24576005,46530566,51380230],"addtype":[3932163,10354693,10944517,11337733,36962307,55574531],"accommodate":[55902209],"assemblies":[4980738,6881284,10420231,10878979,11403271,12058629,12124163,37617670,38010881,38338562,52101122,52166657,55574535,55967745],"approach":[44957697,47710209,48889857,51773441],"assemblyname":[7077893,9699333,10354693,11075589,13565957,14155781,16777222,19791878],"allocated":[43778049,47054849,51838977],"async":[5636097,6946817,47448065,54853636],"augment":[38010881],"additional":[22937601,24313857,25231361,27721729,34537473,39387137,47054849,51838977,57737217,58064897],"allow":[42729473,44761089],"assemblyqualifiedname":[11599873,12320769],"allocation":[43778049],"array":[2228227,2293763,2555913,2752516,2949123,3014658,3145730,4980738,6291458,6881283,7077891,7405569,7995393,8126465,8257537,8454148,8585217,8847361,9043976,9109511,9633793,9830406,9961473,10289156,10354689,10420225,10878977,10944513,11403265,12058627,12124161,12517384,13303809,13565953,13631489,13762561,13828097,14090242,14155777,14483457,14614529,14745603,15138817,15204356,15269889,15794179,16121859,16646146,16777217,16908291,17301507,17825793,18022403,18808838,19005441,19398661,19791873,20250625,20316166,21037057,21102596,22020097,22544385,22740993,22806529,23134209,23592961,23789569,23920641,24576001,24772609,24903681,24969217,25362433,25755649,25952257,26542081,26607617,26673153,26738689,27328513,27394049,27787265,28246017,28966913,29491201,30081025,30801921,31850497,33751042,34865153,35586049,38141953,38207489,39845889,40042497,40501249,42532865,43646977,43778049,44236801,45481985,46530563,46858242,47185921,48824321,50003970,50331649,51380227,52101122,52625409,52822020,54132747,54263809,54329346,54853633,55115779,56098818,56492033,56950785,57344001,57409539,57475073,57606147,57802755,57868289,58261505,58392577,58458113],"accelerated":[4194310,6094854,22020097,22740993,22806530,23592962,23789569,24772610,24903682,24969217,25362433,25755649,25952258,26542081,26607618,26673154,26738689,27328513,27394050,27787266,28246018,28966913,29491201,30081026,30801922,31850497,33685507,34144259,34406403,37683203,54263814,57016326],"asynchronously":[1507329,1703937,5636097,6946817,50790401,55705601],"analysis":[10682369],"auto":[37814273,40894465],"addhosttypes":[3211265,3801089,5046273,5242881,5505025,5570561,5832705,6094849,6553601,13303812,19005446,54263809,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"alternative":[46661633],"appear":[14090241,16646145,53936129],"awaitdebuggerandpause":[54788097],"active":[4194305,6094849,22085633,23855105,49086465,52559873,54263809,57016321],"affinity":[28049409,28770305,29687809,29884417,30605313,30670849,31260673,31784961,32309249,32833537,32899073,33423361,54263809,55640065,56492033,56688642,57344001,57868289,58261505,58392577,58458113],"arrays":[14090242,16646146,35586049,52625410,52822017,54132737],"attempts":[26017793,28704769,29163521,33357825,34275329,40763393,46661633,48889857,51773441],"ambiguous":[12845057,13172737,13434881,13893633,13959169,14024705,14680065,14876673,15073281,15728641,15859713,16449537,17235969,17629185,18087937,18415617,19333121,19595265,20447233,21168129,22413313,23265281,23986177,24051713,24838145,25559041,26345473,27262977],"associate":[19202049,20905985,23461889,23527425,23724033,24182785,24313857,24444929,25231361,26083329,27197441,27852801,27983873,29687809,29818881,30146561,30408705,30474241,30670849,30736385,30932993,31260673,31391745,31522817,31784961,31981569,32309249,32571393,32768001,32899073,33423361],"accessflags":[36175873,45940740,55902209],"attribute":[1179649,1245189,2097157,2359301,2883589,3080197,4325381,4390913,4718593,4915201,6291462,11272193,19726337,20054017,20381697,20512769,20971521,21430273,21561345,22478849,23068673,23396353,23658497,24707073,32374785,34537473,35848195,36241409,36569091,36700161,37748739,38469634,38666241,40828931,41877507,42401795,43712513,44433409,48758785,49414146,52035585,52166669,53805069,54788098,54984705,55836685,55967754,56426506,58064905],"addassembly":[3932164,9699333,9895941,10485765,11075589,36438020,55574532],"application":[2162689,2228225,2293761,2555905,2752513,2949121,3211265,3604481,3801089,3866625,4194305,4259841,5046273,5242881,5505025,5570561,5832705,6094849,6553601,17760257,21364737,22806529,23592961,24772609,24903681,25690113,25952257,26607617,26673153,27394049,27787265,27918337,28246017,30081025,30801921,34471937,34734081,39387137,39649281,51249153,51642369,52822017,53280769,54132737,54263809,54919169,56492033,56950785,57016321,57147393,57344001,57409537,57475073,57606145,57737217,57802753,57868289,58130433,58261505,58392577,58458113],"argcount":[8060934,9043974,12517382],"accessible":[7012353,7340033,7602177,8519681,13500417,14090242,14352385,16580609,16646146,23003137,39714817,41943041,43843585,45875201,54919169,56098817],"ability":[55836673],"ambiguity":[54919169],"arra":[2555905,19398658,34865153,43646977,45481985,52822017,54132739],"accelerate":[39256065],"allowcategorymismatch":[53477377],"addhostobject":[3211266,3801090,5046274,5242882,5505026,5570562,5832706,6094850,6553602,6881281,7077890,7405569,7471105,7667713,7733249,7929857,8126465,8192001,8454145,8585218,8650753,8847362,8912897,9043969,9109506,9240577,9306113,9502721,9568257,9764865,9830401,10027009,10092545,10616833,10682369,10747905,10813441,11010049,11206657,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11993089,12058625,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12910593,12976129,13107201,13303809,13369345,13500417,13565953,13697025,14090245,14155777,14286849,14352385,14614529,15007750,15269889,15335425,16056321,16187393,16580609,16646151,16777217,16973825,17039361,17432584,17825793,17891329,17956865,18284545,18612225,19005441,19070977,19136513,19791873,19857409,19922945,20709377,20774913,21037057,21626881,21692417,21757953,22151169,22216705,22282241,23003137,33030146,39911426,54263810,54329345,55574529,56098817,56492034,56950786,57344002,57475074,57868290,58261506,58392578,58458114],"able":[56098817],"acme":[6881283,12058627,55574531],"activities":[56557569],"abandons":[44957697,47710209],"accesscontext":[38141953,38207489,39714817,40042497,40501249,41943044,42532865,43843590,44236801,45875201,47185921,48824321,50331649,54263809,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"assumes":[6881281,7077889,7405569,7471105,7733249,7929857,8192001,8585217,8650753,8847361,8912897,9043969,9109505,9240577,9306113,9502721,9568257,9764865,9830401,10027009,10092545,10682369,10747905,10813441,11010049,11206657,11599873,11665409,11862017,12058625,12320769,12517377],"argument":[3014662,4980742,7143427,7733249,8126466,8781826,8847362,9764866,9830401,11206657,11599874,11993089,12255233,12320770,12910593,12976129,13107201,13369345,13697025,14090242,14286849,16646146,17891329,17956865,19070977,19136513,21626881,21692417,22216705,22282241,26214401,28901377,31784961,31981569,32571393,32768001,32899073,33161218,33423361,34078722,35717122,52101126,54329350],"assumed":[44695553,45350913,46202881,47120385],"affect":[52625409],"assembly":[655361,720897,786433,851969,917505,983041,1048577,3211266,3801090,3932169,4390913,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046274,5111809,5177345,5242882,5373953,5439489,5505026,5570562,5636097,5701633,5767169,5832706,5898241,5963777,6029313,6094850,6160385,6225921,6291457,6356993,6422529,6488065,6553602,6619137,6684673,6815745,6881282,6946817,7012353,7077891,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699333,9764865,9830401,9895951,9961473,10027009,10092545,10158081,10223617,10289153,10354691,10420231,10485775,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075589,11141121,11206657,11272193,11337729,11403271,11468801,11534337,11599874,11665409,11730945,11796481,11862017,11927553,11993089,12058626,12124161,12189697,12255233,12320770,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565955,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155779,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777219,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17956865,17891329,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18939905,18874369,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791875,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,31064065,31129601,31195137,31260673,31391745,31522817,31588354,31719425,31784961,31850497,31916033,31981569,32309249,32505857,32571393,32768001,32899073,33292289,33357825,33423361,33488897,33554434,33882113,33947649,34275329,35979265,36372481,36438025,36700161,36765697,36962305,37027841,37224449,37552129,37617666,37814273,38010881,38273025,38404097,38469633,38797313,38928385,38993921,39190529,39256070,39452673,39583745,39714818,39780353,39845889,39976961,40239105,40370177,40435713,40566785,40697857,40763393,40894465,41091073,41156609,41222145,41353217,41484289,41549825,41680897,41811969,41943041,42008577,42074113,42139649,42205185,42270721,42598401,42663937,42729473,42795009,42991617,43057153,43122689,43188225,43319297,43384833,43450369,43515905,43646977,43712513,43778049,43843585,43909121,44105729,44171265,44302337,44367873,44433409,44498945,44695553,44761089,44892161,44957697,45023233,45088769,45154305,45219841,45350913,45416449,45547521,45613057,45678593,45744129,45809665,45875202,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101122,52166661,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53936129,54001665,54067201,54132737,54198273,54263811,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984706,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574541,55640065,55705601,55771137,55836673,55902209,55967749,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492035,56557569,56623105,56688641,56754177,56819713,56885249,56950787,57016321,57081857,57147393,57212929,57278465,57344003,57409537,57475075,57540609,57606145,57671681,57737217,57802753,57868291,57933825,57999361,58064897,58130433,58195969,58261507,58327041,58392579,58458115],"applies":[8126465,8781825,11599873,40763393,54657025],"applied":[55836673],"assemblynames":[6881285,10878981,12058629,12124165],"action":[2228225,2293761,2555905,2752513,2949121,3538945,3997697,9830401,14549003,15597579,28180481,30539787,33095681,33619969,35979279,37486593,38600705,52822017,54132737,55640065,56688641,57409537,57606145,57802753],"accelerating":[54722562,56557569],"allowing":[37814273,40894465],"advantage":[30277633],"assigning":[9830401,49086465,52559873],"abstractclassattribute":[52232193,52756481,53018625,53280769,54001665,54591489,54984705,55181313,55377921,55705601,56164353,56360961,56819713,57475073,57868289,58458113],"administrator":[589825],"astype":[3014657,4980737,8192005,52101121,54329345],"applications":[53870593,56492033,57344001,57868289],"abstract":[786433,4587521,4653057,4784129,5111809,5636099,5701633,5898241,6160385,6291457,6356993,6946817,10616833,11468801,11534337,11730945,11796481,11927553,11993089,12189697,12255233,12386305,12451841,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15597569,15728641,15794177,15859713,16056321,16121857,16187393,16252929,16318465,16449537,16580609,16646145,16777217,16842753,16908289,16973825,17039361,17104897,17170435,17235969,17301505,17432577,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18284545,18415617,18481153,18612225,18677763,18743297,18808833,18939905,19005441,19070977,19136513,19267587,19333121,19398657,19595265,19791873,19857409,19922945,19988481,20250625,20316161,20447233,20578305,20643843,20709377,20774913,21037057,21102595,21168129,21299201,21364739,21626881,21692417,21757953,21954563,22151169,22216705,22282241,22413313,22544387,23003137,23134211,23265281,23920641,23986177,24051713,24248323,24510465,24576003,24838145,25165827,25559041,25690113,25886721,26017793,26345473,27131905,27262977,27590657,27918337,28114945,28180481,28508163,28573697,28704769,29163521,29229057,29360129,29949953,30212097,30539777,31129601,31195137,31916033,32505857,33292289,33357825,33488897,33947649,34275329,34537473,35979265,36372481,37027841,37224451,37552129,37814273,38273025,38404097,38797313,38993921,39190529,39583745,39714817,39780353,39845889,39976961,40239105,40370177,40435713,40566785,40697857,40894465,41091073,41156609,41222145,41353217,41484289,41549825,41811969,41943041,42008577,42074113,42205185,42270721,42598401,42729473,42991617,43057153,43122689,43188225,43384833,43515905,43646977,43843585,44105729,44367873,44761089,44957697,45088769,45154307,45219841,45547521,45613057,45809665,45875201,46333953,46399489,46465025,46530561,46792707,46858241,46923777,46989313,47251459,47579137,47644673,47710209,47841281,48037891,48103425,48300033,48365569,48496641,48562179,48889857,49020929,49152001,49348609,49479681,49610753,49676289,49741827,49938433,50003969,50069505,50135041,50266113,50462721,50528259,50593793,50659329,50724865,51052545,51118081,51314689,51380225,51511297,51576833,51773441,52232194,52297729,52428801,52690945,52756481,52953089,53018627,53149697,53280770,53346305,53608449,53673985,54001666,54591489,54984705,55181313,55377921,55705602,56164354,56360962,56819714,57475074,57868290,58458114],"applicable":[52166657,53805057,55967745,56426497,58064897],"addition":[2424833,3866625,7471105,9764865,14090241,16646145,53280769,56164353],"available":[14090241,16646145,17367041,17563649,18219009,18546689,35913729,37552129,39256066,39387137,39780353,40173569,40697857,40763393,40960002,41287681,43450369,46268417,46661633,48431106,51642369,53149697,54722561,57081858,57540609,57737217,57933825],"address":[14548994,15400962,15597570,16318466,41287681,51642369],"assigned":[8323073,8978433,9961473,39387137,57737217],"accepts":[8060929,9043969,12517377],"arguments":[7077890,7143425,7667713,7995393,8060930,8126465,8585218,8650753,8847361,9043970,9240577,9306113,9502721,9568257,9764865,9830401,10027009,10092545,10354689,10747905,10813441,10944513,11010049,11665409,11862017,12451841,12517378,12648449,12713985,13303809,13565954,13631489,13762561,13828097,14090243,14155778,14483457,14614530,15138817,15204353,15269890,15335425,16646147,16777218,17825794,18284545,18612225,19005441,19791874,20250625,21037058,21102593,21757953,22151169,22544385,23134209,23920641,24576001,37814275,38141953,38207489,40042497,40501249,40894467,42532865,44236801,46530561,47185921,48824321,50331649,51380225,54263809,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113]} \ No newline at end of file +{"allocation":[45940737],"attributes":[1179649,4653063,34013185,34340865,34471937,35061761,35586049,35848193,36372481,36700161,40632321,48168961,49152001,49676289,50200577,50921474,51052546,51183617,51773441,52756481,55771137,56295425,58130433],"affinity":[28442625,28966913,29229057,29360129,29491201,29949953,52035585,52953089,53805057,54329345,54788097,56623105,57081857,57475073,57737217,57999361,58392578,58458113,58589185,58982401,59179009],"astype":[3014657,3604481,8650757,50462721,52559873],"approach":[37552129,40894465,41811969,42270721],"auxiliarysearchpath":[33488897,40173572,51904513],"accepted":[23920642,24313858,25165826,25624578,26476546,27131906,27918338,28049410,28704770,29425666,31129602,31653890],"accommodate":[48824321],"addcomobject":[3145736,4259848,6029320,6291464,6357000,6422536,6684680,8781832,9306120,10682373,11468805,11534341,12189701,12255237,12320773,13041669,13107205,16580615,17039367,18153479,19005447,19791879,20840455,21757959,22675463,31195144,32178184,54329352,56164360,57737224,57999368,58458120,58523656,58589192,58982408,59179016],"affect":[50659329],"awaitdebuggerandpause":[50921473],"accelerate":[41746433],"addhosttype":[3145736,4259848,6029320,6291464,6357000,6422536,6684680,8781832,9306120,12976133,13631493,13697029,14483461,14745605,15335429,15532037,15597573,18481159,19529735,20381703,21168135,21233671,23330823,24444935,25427975,31457288,32243720,54329352,56164360,57737224,57999368,58458120,58523656,58589192,58982408,59179016],"accepts":[7536641,8257537,10223617],"allow":[38273025,44826625],"administrator":[655361],"applicable":[48103425,56033281,57344001,58851329,59113473],"addsystemdocument":[1572868,5439493,5505029,5701637,6225925,48824324,54001668],"attempting":[58589185,58982401,59179009],"activex":[3145744,3604483,4259856,6029328,6291472,6357008,6422544,6684688,6815746,7012353,8192002,8781840,9306128,9830401,10682369,11468801,11534337,11665409,11730945,12189697,12255233,12320769,12386305,12451841,12779521,13041665,13107201,13369345,13959169,14155777,16580609,17039361,17498113,18153473,18284545,18415617,19005441,19267585,19791873,20512769,20840449,21364737,21757953,22347777,22675457,23068673,31195144,31260680,32112648,32178184,52559875,54329360,56164368,57737232,57999376,58458128,58523664,58589200,58982416,59179024],"automatic":[34275329,35127297,35782657,36569090,36765697,36896769,37617665,38338561,39321601,39518209,41025537,42729473,47054849,48365569,50790403,51970049,52166657,54329345,56164353,57737217,57999361,58458114,58523649,58589185,58982401,59179009],"allowing":[39518209,42729473],"addcomtype":[3145736,4259848,6029320,6291464,6357000,6422536,6684680,8781832,9306120,11665413,11730949,12386309,12451845,12779525,13369349,13959173,14155781,17498119,18284551,18415623,19267591,20512775,21364743,22347783,23068679,31260680,32112648,54329352,56164360,57737224,57999368,58458120,58523656,58589192,58982408,59179016],"associate":[18808833,19398657,24838145,25034753,25231361,25755649,25821185,26148865,26214401,26279937,26345473,26542081,26738689,27197441,28966913,29360129,29491201,29818881,29949953,30015489,30343169,30867457,31522817,32505857,52035585,52953089,53149697,53870593,53805057,54853633,55640065],"attached":[15073281,15204353,16121857,16384001,16842753,17170433,22740993,22806529,23724033,24051713,24576001,52690945],"await":[26935297,35520513,49807369,49938433,51445761],"arguments":[6946817,7536642,7667713,7864322,8126465,8257538,8978433,9043970,9109505,9240577,9437185,9764865,9830401,9961473,10092545,10158081,10223618,10551297,10813441,10878977,11075585,11141121,11599873,11927553,11993089,12517377,12713985,12976130,13172737,13238273,13631490,13697026,13828097,14024705,14090243,14417921,14483457,14745602,15269889,15335425,15532033,15597569,18481154,19529730,19660803,20381697,21037057,21168129,21233665,21626881,22151169,22282241,23003137,23330818,23527425,24444930,25427969,34275329,35127297,36569089,36765697,36896769,37617665,38338561,39321601,39518211,39583745,41025537,42729475,42860545,52297729,54329345,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"addtype":[2162691,10158085,10813445,11206661,30736387,49545219],"attributetargets":[48103444,50266116,56033300,57344036,58851344,59113508],"abc":[6815745],"able":[52363265],"asconstructor":[13828101,22282245],"argcount":[7536646,8257542,10223622],"accessible":[7274497,7929857,8454145,9371649,12845057,13565953,14090242,19660802,22478849,23265281,37486593,39649281,43843585,44695553,50790401,52363265],"address":[13893634,15400962,16908290,17825794,33095681,45023233],"application":[2031617,2228225,2293761,2359297,2752513,2818049,3145729,3211265,4128769,4259841,4784129,4849665,6029313,6291457,6356993,6422529,6684673,8781825,9306113,18743297,19988481,22872065,23658497,24379393,25362433,26083329,26607617,27459585,27656193,28180481,28835841,29163521,30539777,31981569,32309249,32702465,34930689,45023233,49152001,49676289,50200577,50790401,51183617,51970049,52756481,54329345,56164353,57147393,57606145,57737217,57999361,58130433,58261505,58327041,58458113,58523649,58589185,58720257,58982401,59047937,59179009],"appears":[58654721],"accept":[14090241,19660801],"analysis":[10354689],"ascii":[23986177,29687809],"assemblyname":[7864325,10158085,11010053,11796485,12976133,13697029,18481158,23330822],"assemblyqualifiedname":[11272193,12124161],"active":[4849665,6684673,25559041,28114945,47054849,48365569,51970049,58458113],"asynchronous":[2490369,5373953,6488065,15728641,15794177,16056321,16646145,16777217,16973825,17301506,17432577,17760257,18677761,46530561,50593793,53084161,55902209],"advantage":[26017793],"anonymous":[34275329,35127297,36569089,36765697,36896769,37617665,38338561,39321601,39649285,41025537,44695557,54329345,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"attempt":[38273025,38535169,43384833,44826625],"algorithm":[37552129,39911425,40173569,40894465,40960001,41811969,42270721,43319297,56033281,57344001,58195969],"addhostobject":[3145730,4259842,6029314,6291458,6356994,6422530,6619137,6684674,6815745,6946817,7471105,7667713,7798785,7864322,7995394,8126466,8192001,8257537,8323073,8388609,8585217,8650753,8781826,8978433,9043970,9240577,9306114,9502721,9764865,9830401,9961473,10092545,10223617,10354689,10551297,10682369,10878977,11075585,11141121,11272193,11468801,11534337,11599873,11665409,11730945,11927553,11993089,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12713985,12779521,12845057,12976129,13041665,13107201,13369345,13565953,13631489,13697025,13959169,14090245,14155777,14483457,14680070,14745601,15335425,15532033,15597569,16580609,17039361,17498113,18153473,18284545,18415617,18481153,19005441,19267585,19529729,19660807,19791873,20381697,20447240,20512769,20840449,21168129,21233665,21364737,21757953,22151169,22347777,22478849,22675457,23068673,23265281,23330817,24444929,25427969,30801922,32833538,49545217,50462721,52363265,54329346,56164354,57737218,57999362,58458114,58523650,58589186,58982402,59179010],"argument":[3014662,3604486,6815745,7667713,8126466,8192001,8716290,8978434,9437187,9830402,11272194,11534337,11730945,12124162,12255233,12320769,12386305,12779521,13041665,14090242,14155777,14942209,16580609,16973825,17301505,18284545,19005441,19267585,19660802,19791873,20512769,22675457,23068673,25493505,28573697,29491201,30277634,30408706,30867457,30998530,31522817,32505857,50462726,52035585,52559878,53805057],"addhosttypes":[3145729,4259841,6029313,6291457,6356993,6422529,6684673,8781825,9306113,12713988,22151174,54329345,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"abandons":[37552129,41811969],"access":[2228226,2293762,2359298,2424833,2621441,2818050,2883585,3211266,3801090,4128769,4325378,4784129,5177352,5373953,5439489,5505025,5636097,5701633,6029314,6225921,6291458,6356994,6422530,6488065,6619137,7471105,8781826,8978433,9306114,9633793,12845057,13565953,13893635,14090241,15400963,16384001,16908291,17629185,17825795,18087937,19202056,19660801,20054024,20709384,21561345,22216713,22478849,22937609,23265281,23461889,24051713,27394050,27721731,32899075,33947650,34144259,34275334,34537473,34603011,34668546,34734081,35127302,36438017,36569094,36634630,36765702,36831233,36896774,36962305,37486594,37617670,37748738,37879809,38338566,38928385,38993921,39190529,39321606,39583745,39649284,39845891,39911426,40960002,41025542,42008577,42205185,42860545,43057153,43319297,43712513,43843586,44236803,44695556,45088774,46530561,47185921,47972356,48103427,48234499,48758787,48824322,48955393,49086465,49152002,49479682,49545217,49676290,49741825,50200578,50397185,50659330,50790402,50987010,51249155,51314690,52363266,52428804,52756482,52822019,53215233,53346305,53673987,54329352,54591491,54657025,54788098,55508994,55771142,56033284,56164358,56295425,56885249,57212929,57344004,57475073,57737224,57999368,58130434,58195973,58327041,58392578,58458118,58523654,58589192,58720257,58851335,58982408,59047937,59113475,59179016],"accessflags":[36438017,37748740,48824321],"avoids":[37552129,41811969],"added":[196609,5701633,34078721,49545217,51576833,52363265,57933825],"arrtype":[3604481,5898244,52559873],"action":[2228225,2293761,2359297,2818049,3211265,3801089,4325377,7667713,15400971,16908299,28377099,32899073,49152001,49676289,50200577,51249153,52756481,54394895,54788097,55508993,55705601,56557569,58130433,58392577],"asyncloadcallback":[36438017,38469636,48824321,49479681],"assigned":[8912897,10027009,10616833,34930689,58720257],"accelerating":[49938433,50724866],"alternative":[36831233],"additionally":[55902209],"accesscontext":[34275329,35127297,36569089,36765697,36896769,37486596,37617665,38338561,39321601,39649281,41025537,43843590,44695553,54329345,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"allows":[1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1966081,2097153,2162689,2424833,2621441,2883585,2949121,3014658,3080193,3276801,3342337,3407873,3473409,3538945,3604482,3670017,3735553,3866625,3932161,3997697,4063233,4128769,4325377,4390913,4718593,4849665,7077889,10354689,34275331,35127299,36569091,36765699,36896771,37486593,37617667,38338563,39190529,39321603,39845890,40173569,41025539,43712513,43843585,44236802,47185921,47644673,48168961,48103425,48234498,48562177,48758786,48824321,48955393,49020929,49086465,49217537,49545217,49741825,49872897,50135041,50266113,50331649,50397185,50462722,51118081,51707905,51773441,51970049,52363265,52559875,53084161,53411841,53477377,53936129,54329347,54460417,55246849,55312385,55771137,56033281,56164355,56754177,57212929,57344001,57737219,57868289,57933825,57999363,58392577,58458115,58523651,58589187,58654721,58720257,58851329,58982403,59047937,59113473,59179011],"ambiguous":[12582913,12910593,13434881,13500417,14286849,14548993,15007745,15073281,15204353,16121857,16384001,16842753,17170433,17891329,18874369,19070977,19857409,20316161,20971521,21102593,21889025,22020097,22740993,22806529,23724033,24051713,24576001,52690945],"addassembly":[2162692,9699333,10420229,11010053,11796485,30670852,49545220],"accelerated":[4849670,6684678,22872066,23658498,23920641,24313857,25165825,25362434,25624577,26083330,26476545,26607618,27131905,27459586,27918337,28049409,28180482,28704769,28835842,29163522,29425665,30539778,31129601,31653889,32309250,32702466,51970054,55574531,56426499,57802755,58064899,58458118],"array":[2228227,2293763,2359300,2686978,2818051,3014658,3211273,3604482,4653058,5898244,6619139,7471107,7667718,7864323,7995399,8126465,8257544,8323076,8388609,8847361,9043969,9109505,9830401,10027009,10158081,10223624,10289153,10485761,10813441,10944513,11337729,12058625,12713985,12976129,13172737,13238273,13631489,13697025,13828097,14024708,14090242,14417921,14614531,14745601,14811139,14876678,15269889,15466501,15663107,16252931,16318470,18481153,18612227,19464195,19529729,19660802,21037057,21626881,22151169,22282241,22872065,23003137,23330817,23527425,23658497,23920641,24313857,24444929,25165825,25362433,25624577,26083329,26476545,26607617,27131905,27459585,27918337,28049409,28180481,28704769,28835841,29163521,29425665,30212098,30539777,31129601,31653889,32309249,32702465,34275329,34340865,35127297,36569089,36700161,36765697,36896769,37617665,38207490,38338561,39321601,39583747,41025537,41287682,41615361,41943041,42860547,45940737,49152003,49676299,50200579,50462722,50659329,51052545,52297732,52363266,52559874,52756484,53542915,54329345,56164353,56295425,57737217,57999361,58130435,58458113,58523649,58589185,58982401,59179009],"args":[8126469,8388613,9109509,9830405,13172741,13238277,13828101,14024710,14417925,15269893,21037062,21626885,22282245,23003142,23527429,39583750,42860550,52297734],"affects":[37486593,38273025,43843585,44826625,47906817,48496641,50659329,58195969],"assumes":[6619137,6815745,7471105,7667713,7798785,7864321,7995393,8126465,8192001,8257537,8388609,8585217,8650753,8978433,9043969,9240577,9502721,9764865,9961473,10092545,10223617,10354689,10551297,10878977,11075585,11141121,11272193,11599873,11927553,11993089,12124161,12517377],"assumed":[45350913,46268417,46858241,47579137],"abstractclassattribute":[47644673,48431105,48955393,49217537,50135041,50397185,50593793,51118081,51445761,51838977,51904513,54263809,56754177,57737217,58523649,59047937,59179009],"asynciterable":[17301510],"auto":[39518209,42729473],"assign":[27787265],"appear":[14090241,19660801,47906817],"asyncdocumentloadcallback":[38469639,46530564,55771137],"accordance":[47775745,49414145],"associated":[2031617,2228225,2293761,2359297,2686977,2752513,2818049,3145733,3211265,4128769,4259845,4784129,4849668,6029317,6291461,6356997,6422533,6684681,8781829,9306117,16121857,16384001,16842753,17170433,19988481,23724033,24051713,24379393,24576001,25624577,26673153,27656193,27918337,28835841,29884417,31064066,31129601,31981569,32309249,32571394,32636930,33161218,33423362,33816578,34275329,34930690,35127297,35192833,35454977,35717121,35782657,36569089,36765698,36896770,37617667,38338562,39321603,40435713,40566785,41025539,42074113,42336257,43974657,46202881,47382529,49152001,49283073,49610753,49676289,50200577,51183617,51970053,52363265,52690945,52756481,54329351,55574531,56164358,56754177,57016321,57147393,57606145,57737223,57802756,57999367,58130433,58261505,58327041,58458122,58523654,58589192,58720258,58785793,58982408,59047937,59179016],"absolute":[4521985,5373953,5570561,5636097,6488065],"async":[2490369,5373953,6488065,17301507,38469633,46530561,49807361,50593793,51052548],"augment":[40173569],"assemblynames":[6619141,7471109,10289157,11337733],"assemblies":[3604482,6619141,7471108,10289155,10485767,11337731,12058631,30932998,40173569,48103425,49545223,52559874,54525954,56033281],"addrestrictedhostobject":[3145730,4259842,6029314,6291458,6356994,6422530,6684674,8781826,9306114,12845061,13565957,22478855,23265287,31916034,33030146,54329346,56164354,57737218,57999362,58458114,58523650,58589186,58982402,59179010],"actions":[2424833,4128769,50397185,59047937],"allocate":[35323905,45940737,53411841],"acme":[6619139,7471107,49545219],"arrayt":[7667714,10223618],"adds":[1572868,2162696,2686978,3080193,5439489,5505025,5701633,6225921,8585217,9240577,9699329,9764865,9961473,10092545,10158081,10420225,10551297,10813441,10878977,11010049,11075585,11141121,11206657,11599873,11796481,11927553,11993089,12517377,15990785,30670852,30736387,48824324,49545224,52363266,54001668,57933825],"available":[14090241,15794177,16056321,17432577,18677761,19660801,33095681,34930689,35454978,35717121,35913729,36831233,36962305,37224449,37355521,41156609,41746434,44630017,45023233,45219841,47513602,48037889,50724865,55246849,57016322,58720257,58785793],"additional":[23789569,24707073,26148865,27197441,34930689,47775745,49414145,55771137,58720257,58851329],"attributeusageattribute":[48103428,50266116,56033284,57344004,58851332,59113476],"attempts":[26869761,28311553,32768001,36831233,36962305,40894465,42270721,54198273,56229889],"allowcategorymismatch":[49479681],"arraybuffer":[2228229,16252930,16908291,17825795,18612226,19464194,34013187,34340867,34471937,35061763,35323905,36700163,39780353,40042497,41615365,45940739,47775745,49152004,49414145,49676291,50200579,51052545,51249154,52756483,53411841,53542914,56295426,58130439],"applies":[8716289,9830401,11272193,36962305,50987009],"ancestors":[4653057],"allowreflection":[11272193,12124161,34275329,35127297,36569089,36765697,36896769,37617665,38273028,38338561,39321601,41025537,44826630,54329345,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"applied":[50266113],"attribute":[1179649,1310725,1966085,2621445,2883589,2949125,3276805,4653062,4915201,5046273,5177345,10747905,17629185,18087937,18939905,19202049,20054017,20119553,20709377,20774913,21561345,22216705,22937601,23461889,33488897,33554435,33947651,34144259,34603011,34668547,36634625,40763394,42401793,43319297,45088769,48103437,48168962,50266125,50921474,51904513,52428801,52822019,53215233,54657025,55771137,56033290,57344010,58851337,59113485],"add":[196609,2162689,2686978,3080193,5439489,5505025,5701633,6225921,6815747,8978434,9240578,9699330,9764866,9961474,10092546,10158083,10420227,10485761,10551298,10682369,10813442,10878978,11010050,11075586,11141122,11206658,11337729,11468801,11534337,11599874,11665409,11730945,11796483,11927554,11993090,12189697,12255233,12320769,12386305,12451841,12517378,12713985,12779521,12845057,12976129,13041665,13107201,13369345,13565953,13631489,13697025,13959169,14090241,14155777,14483457,14680065,14745601,15335425,15532033,15597569,15990792,16580609,17039361,17498113,18153473,18284545,18415617,18481153,19005441,19267585,19529729,19660801,19791873,20381697,20447233,20512769,20840449,21168129,21233665,21364737,21757953,22151169,22347777,22478849,22675457,23068673,23265281,23330817,24444929,25427969,30670849,30736385,30801921,31195137,31260673,31457281,31916033,32112641,32178177,32243713,32833537,33030145,47972353,49545217,50790401,52363266,54001665,57933825],"arr":[5898241,7995393,8323073,30212097],"avoid":[11403265],"assembly":[196609,458753,720897,786433,851969,917505,983041,1048577,2162697,3145730,3604481,4259842,4456449,4521985,4587521,4653057,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029314,6094849,6160385,6225921,6291458,6356994,6422530,6488065,6553601,6619138,6684674,6750209,6815745,6881281,6946817,7012353,7208961,7274497,7340033,7405569,7471106,7536641,7602177,7667713,7733249,7798785,7864323,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781826,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306114,9371649,9437185,9502721,9568257,9633793,9699343,9764865,9830401,9895937,9961473,10027009,10092545,10158083,10223617,10289153,10354689,10420239,10485767,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010053,11075585,11141121,11206657,11272194,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796485,11862017,11927553,11993089,12058631,12124162,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976131,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697027,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481155,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330819,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28114945,28049409,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30343169,30474241,30539777,30670857,30736385,30867457,30932994,31129601,31457282,31522817,31653889,31784961,32243714,32309249,32505857,32702465,32768001,33488897,36110337,36175873,36241409,36306945,36372481,36503553,36634625,36831233,36962305,37027841,37093377,37158913,37224449,37355521,37289985,37421057,37486593,37552129,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39387137,39452673,39518209,39583745,39649282,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746438,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695554,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,48037889,48103429,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545229,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51314689,51445761,51511297,51642369,51707905,51773441,51838977,51904514,51970049,52035585,52101121,52166657,52297729,52363265,52494337,52559874,52625409,52690945,52756481,52953089,53018625,53084161,53149697,53346305,53411841,53477377,53542913,53673985,53805057,53870593,53936129,54067201,54263809,54198273,54329347,54394881,54460417,54591489,54722561,54788097,54853633,54984705,55050241,55115777,55181313,55246849,55312385,55508993,55640065,55836673,55902209,56033285,56164355,56229889,56492033,56623105,56754177,56819713,57016321,57081857,57344001,57606145,57737219,57868289,57933825,57999363,58130433,58195969,58327041,58392577,58458115,58523651,58589187,58654721,58720257,58785793,58851329,58916865,58982403,59047937,59113473,59179011],"ability":[50266113],"auxiliary":[33488897,40173570,51904513],"api":[18808833,46268417,46858241,49283073,49807361],"addition":[2424833,4128769,8585217,8978433,14090241,19660801,50397185,59047937],"automatically":[1,15073281,15204353,18743297,22740993,22806529,45023233,50266113,50790401,58458113],"ambiguity":[50790401],"asynchronously":[1441793,1507329,5373953,6488065,36438017,38469633,46530561,47644673,48824321,49020929,55771137],"arrays":[14090242,19660802,49676289,50659330,52756481,56295425],"activities":[49938433],"applications":[47972353,54329345,57737217,57999361],"arra":[3211265,15466498,34340865,36700161,41943041,49676291,52756481],"allocated":[45940737,47775745,49414145],"assigning":[7667713,47054849,48365569],"abstract":[196609,4521985,4587521,4653057,4980737,5373953,5570561,5636097,5963777,6488067,6553601,6881281,10682369,11403265,11468801,11534337,11665409,11730945,12189697,12255233,12320769,12386305,12451841,12582913,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15859713,15990785,16121857,16252929,16318465,16384001,16580609,16842753,16908289,17039361,17170433,17235969,17498113,17563649,17825793,17891329,17956865,18022401,18153473,18219009,18284545,18350081,18415617,18481153,18612225,18743297,18874369,19005441,19070977,19267585,19333123,19464193,19529729,19595265,19660801,19726339,19791873,19857409,19922947,19988483,20185089,20250625,20316161,20381697,20447233,20512769,20643843,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21364737,21626883,21757953,21823489,21889025,22020097,22151169,22282243,22347777,22478849,22675457,22740993,22806529,23003137,23068673,23265281,23330817,23527427,23724033,23855107,24051713,24117251,24379393,24444929,24576001,25296897,25427969,26804227,26869761,27328513,27394049,27656193,27721729,28246017,28311553,28377089,28770305,28901377,29097985,31784961,32768001,36175873,37027841,37224449,37355521,37289985,37486593,37552129,37683201,37879811,37945345,38010881,38076417,38207489,38273025,38535169,38600705,38666241,38731777,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39387139,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40894465,40960001,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41615361,41680897,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42467329,42532865,42598401,42663939,42729473,42795009,42860548,42926081,43057153,43122689,43188225,43384833,43450369,43581443,43646977,43712515,43778049,43843585,43974657,44040195,44105729,44236803,44302337,44367875,44564481,44630017,44695553,44761089,44826625,44892164,45678593,46071809,46727169,46792705,47185921,47448065,47644674,48234497,48300033,48431105,48758785,48955395,49086465,49217538,50003969,50135042,50397186,50593793,50855937,51118082,51445761,51642371,51838977,51904513,52297731,52625409,52690945,53346305,53673985,54263809,54198273,54394881,54984705,55115777,55508993,55771137,55836673,56229889,56492033,56754178,56819713,57737218,58523650,59047938,59179010],"awaitdebuggerandpauseonstart":[50790401]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_98.json b/docs/Reference/fti/FTI_98.json index fcee8b03e..d07943cbb 100644 --- a/docs/Reference/fti/FTI_98.json +++ b/docs/Reference/fti/FTI_98.json @@ -1 +1 @@ -{"bailout":[42139649],"blank":[42074113,42663938,47644673,53542913],"base":[6291458,13500417,14352385,16580609,23003137,32243713,34537476,53280769,56360961,56819713,57475073,58458113],"better":[43057153,48562177,50266113,51052545],"benefit":[54919169],"behalf":[40501249,42532865,44236801,44630017,47185921,48824321,50331649,50855937,52428801,52625409,56492033,57344001,57868289,57999361,58261505,58392577,58458113],"bool":[4653060,5701636,5898248,6291460,7143427,7929859,8257539,8388611,8716291,8781827,9371651,10682371,13893635,14024707,14221315,14483459,14811139,14942211,15925251,16252932,16842756,17170435,17498115,18481156,18939908,20185091,20643843,20840451,21495811,22020099,22413316,22609923,22740995,23134211,23789571,24248323,24510468,24969219,25362435,25755651,26345476,26542083,26738691,27328515,28114948,28573700,28639235,28966915,29360132,29491203,29753347,29949955,31850499,32505860,33488899,33882115,37814277,38797317,38993924,39256069,39714821,40370181,40566789,40894470,41353220,41484293,41549829,41811974,42074117,42729477,44761094,44957701,45613061,45875206,46333957,46465030,46858245,47448069,47644678,47710214,47841285,48496646,48889861,49348614,49872901,50003974,50724870,51773446,53411845,53542917,53608453,53936133,54198275,54394885],"byref":[18939907,22020098,22740994,22806530,23592962,23789570,24772610,24903682,24969218,25362434,25755650,25952258,26542082,26607618,26673154,26738690,27328514,27394050,27787266,28246018,28966914,29491202,30081026,30801922,31850498,55443458],"bytes":[2228226,2293762,2555906,2752514,2949122,14745601,15794177,16121861,16908293,17301509,18022405,34865153,35913735,41222145,42008577,42336257,43253761,43778049,43974657,44695553,45350913,45481985,46202881,47054849,47120385,47513601,47775745,48431105,48955393,50200577,50921473,51445761,51838977,51904513,52363265,52822019,54132739,57409539,57540615,57606147,57802755],"blocked":[44105729,46989313,55967745,56426497,56885249,57671681],"bidirectional":[54919170],"buggy":[51642369],"bind":[48889857,51773441],"begin":[20840449,21495809,28639233,29753345,32964609,36634625,53477377],"behavior":[2424842,3866634,31326209,34537473,38207489,39714817,44826625,45875201,46071809,46333953,47841281,48889857,49348609,50724865,51773441,53215233,53280778,54263809,54919170,55836673,56164363,57016321,57671682],"bigint":[54919170],"bypassing":[5439489,6029313,6815745,7536641],"begincpuprofile":[4194306,6094850,20840453,21495813,28639237,29753349,32964610,36634626,54263810,57016322],"build":[22020097,22740993,23789569,24969217,25362433,25755649,26542081,26738689,27328513,28966913,29491201,31850497],"binary":[2424833,3866625,36372481,53280769,56164353],"based":[524289,917505,14090241,16646145,38141953,38207489,40042497,40501249,42532865,43450369,43581442,44105729,44236801,44433409,44957697,46268417,46989313,47185921,47710209,48824321,48889859,50331649,51773443,54263809,55771138,55967745,56033281,56426497,56492033,56885249,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"buffer":[2228225,2949121,14548993,14745601,15400961,15597569,15794177,16121857,16318465,16908289,17301505,18022401,33095681,33619969,39845890,40435713,41222145,42008577,42336257,43253761,43778049,57409537,57606145],"bailoutreason":[42139652,43581441,55771137],"basic":[2424835,3866627,7012354,7274498,7340034,7602178,7864322,8519682,15663106,15990786,16515074,16711682,17367042,17563650,18219010,18546690,19660802,53280771,56164355],"begins":[4194306,6094850,20840449,21495809,28639233,29163521,29753345,32964610,34275329,36634626,54263810,57016322],"behave":[47054849,51838977,56688641],"breaking":[44695553,45350913,46202881,46858241,47120385,50003969],"beginning":[14090241,16646145],"bit":[8912897],"byte":[2228227,2293763,2555907,2752515,2949123,3014657,4194316,4980737,6094860,8650759,14745606,15794182,16121864,16908296,17301512,18022408,22020101,22740998,22806533,23592966,23789573,24772613,24903686,24969221,25362438,25755653,25952261,26542086,26607622,26673157,26738693,27328518,27394054,27787269,28246022,28966918,29491205,30081030,30801925,31850502,33685510,34144262,34406406,37683206,52101121,52822019,54132741,54263820,54329345,57016332,57409539,57606147,57802755],"bound":[7077889,7667713,8585217,12451841,12648449,12713985,13303809,13565953,14155777,14614529,15269889,15335425,16777217,17825793,18284545,18612225,19005441,19791873,21037057,21757953,22151169,43057153,44105729,44433409,45088769,46989313,48562177,50266113,50528257,51052545,51511297,53673985,55967745,56426497,56885249,58261505,58392577,58458113],"bypasses":[44957697,47710209],"boolean":[1507329,3211266,3801091,4194310,4653058,5046275,5242885,5505027,5570563,5701634,5832707,5898244,6094859,6291458,6553603,7143426,7929858,8060929,8257538,8388610,8716290,8781826,9371650,10682370,12845057,13893635,14024709,14221314,14483458,14811138,14942210,15073281,15728641,15925251,16252930,16449537,16842754,17170435,17235969,17498114,17629185,18087937,18415617,18481157,18939906,19333121,20185091,20447233,20643842,20840450,21168129,21495810,22020099,22413318,22609922,22740995,23134211,23265281,23592961,23789571,24248322,24510468,24903681,24969219,25362435,25755651,26345476,26542083,26607617,26738691,27328515,27394049,28114949,28246017,28573699,28639234,28966915,29360133,29491203,29556737,29753346,29949954,30081025,31850499,32505858,32702465,33488898,33685507,33816577,33882114,34144259,34406403,34471937,34734081,34996225,35323905,35389442,35782657,36306945,37683203,37814274,38797314,38993922,39256066,39649281,39714818,40370178,40566786,40894466,41353218,41484290,41549826,41811970,42074114,42729474,44761090,44957698,45613058,45875202,46333954,46465026,46858242,47448066,47644674,47710210,47841282,48496642,48889858,49348610,49872898,50003970,50724866,50790401,51773442,52625409,53411842,53542914,53608450,53936130,54198274,54263819,54394882,56492035,56754178,56950786,57016326,57344003,57475075,57868293,58261507,58392579,58458115],"boundary":[8650753,9240577,9306113,9502721,9568257,10027009,10092545,10747905,10813441,11010049,11665409,11862017],"background":[56557571],"bag":[262145,786433,2686977,3145729,7208961,8323073,8716289,15532033,15925249,16252929,16384001,16842753,17498113,18153473,18939905,19464193,20185089,21299201,35389441,37158913,38731777,45678593,46399489,46923777,47579137,56098817,56754177],"bar":[9764865,11206657],"baz":[9764866,11206657],"braces":[7733249,11206657,11993089,12255233,12910593,12976129,13107201,13369345,13697025,14286849,17891329,17956865,19070977,19136513,21626881,21692417,22216705,22282241,31784961,31981569,32571393,32768001,32899073,33423361],"box":[41287681],"binding":[38141954,38207490,40042498,40501250,42532866,44105729,44236802,44433409,44957700,46333953,46989313,47185922,47710212,47841281,48824322,48889860,49348609,50331650,50724865,51773444,54263810,55967745,56426497,56492034,56885249,56950786,57344002,57475074,57868290,58261506,58392578,58458114],"button":[6881283,12058627,55574531]} \ No newline at end of file +{"boolean":[1441793,3145730,4259843,4521986,4653058,4849670,5570562,6029315,6291459,6356995,6422531,6684683,6881284,7536641,7798786,8060930,8519682,8716290,8781829,9175042,9306115,9437186,10354690,10944514,12582913,13434881,13762562,13828098,14221314,14286849,14352386,15007745,15073281,15925251,16121859,16384005,16711683,17170433,17235970,17956866,18350085,18546690,19070977,19726338,19857409,20185090,20971521,21430274,21889025,22282243,22740993,23658497,23724036,23855107,23920643,24051718,24117250,24248322,24313859,24903682,25165827,25296901,25624579,25690114,25952257,26083329,26411010,26476547,26607617,27131907,27721730,27918339,28049411,28704771,28770308,28835841,29163521,29425667,31064065,31129603,31653891,31981569,32309249,32571393,32636929,33161217,33226754,33423361,33816577,37289986,37552130,37683202,38010882,38207490,38273026,38535170,38862850,38928386,38993922,39124994,39518210,39649282,40697858,40894466,41287682,41418754,41746434,41811970,42008578,42205186,42270722,42467330,42598402,42729474,43122690,43384834,43450370,43646978,44695554,44826626,45416450,47120386,47710210,47906818,48496642,49020929,49348610,49807362,50659329,51970054,52625410,52690945,53673986,54329347,54591490,55115779,55574531,55836677,56164354,56426499,57147393,57737221,57802755,57933826,57999363,58064899,58261505,58458123,58523651,58589187,58982403,59179011],"begins":[4849666,6684674,24248321,24903681,25690113,26411009,32768001,51970050,54919170,56229889,57540610,58458114],"begincpuprofile":[4849666,6684674,24248325,24903685,25690117,26411013,51970050,54919170,57540610,58458114],"buffer":[2228225,2818049,13893633,14614529,14811137,15400961,15663105,16252929,16908289,17825793,18612225,19464193,32899073,34013185,34471937,39780353,40042497,40370177,41615362,45940737,49152001,51249153,58130433],"bag":[196609,2686977,3080193,8519681,9568257,10616833,15925249,15990785,16515073,16711681,17235969,17367041,17956865,18546689,19136513,20185089,20578305,33226753,34209793,34406401,40501249,41353217,41549825,42532865,51576833,52363265,57933825],"bar":[6815745,8978433],"baz":[6815745,8978434],"basic":[2424835,4128771,7208962,7274498,7733250,7929858,8454146,9371650,14942210,15728642,15794178,16056322,16646146,16777218,16973826,17301506,17432578,17760258,18677762,50397187,59047939],"beginning":[14090241,19660801],"buggy":[45023233],"blocked":[39911425,40960001,55902209,56033281,57344001,58195969],"byref":[20185091,22872066,23658498,23920642,24313858,25165826,25362434,25624578,26083330,26476546,26607618,27131906,27459586,27918338,28049410,28180482,28704770,28835842,29163522,29425666,30539778,31129602,31653890,32309250,32702466,52494338],"button":[6619139,7471107,49545219],"bytes":[2228226,2293762,2359298,2818050,3211266,14614529,14811141,15663109,16252929,18612229,19464197,34013185,34340865,34471937,35061761,35913735,36700161,40042497,40370177,45285377,45350913,45547521,45940737,46006273,46268417,46661633,46858241,46989313,47251457,47513601,47579137,47775745,47841281,49152003,49414145,49676291,50069505,50200579,52756483,55246855,58130435],"better":[39845889,44236801,48234497,48758785],"build":[23920641,24313857,25165825,25624577,26476545,27131905,27918337,28049409,28704769,29425665,31129601,31653889],"bailout":[43515905],"bailoutreason":[35258369,43515908,53477377],"bit":[9502721],"based":[589825,786433,14090241,19660801,34275329,35127297,35258370,36569089,36765697,36896769,37552129,37617665,38338561,39321601,39911425,40894467,40960001,41025537,41811969,42270723,43319297,45219841,48037889,53477378,54329345,54460417,56033281,56164353,57344001,57737217,57999361,58195969,58458113,58523649,58589185,58982401,59179009],"byte":[2228227,2293763,2359299,2818051,3014657,3211267,3604481,4849676,6684684,9961479,14614534,14811144,15663112,16252934,18612232,19464200,22872069,23658502,23920646,24313861,25165830,25362437,25624582,26083334,26476549,26607622,27131909,27459589,27918342,28049414,28180485,28704773,28835846,29163526,29425669,30539781,31129606,31653893,32309254,32702469,49152003,49676293,50200579,50462721,51970060,52559873,52756483,55574534,56426502,57802758,58064902,58130435,58458124],"box":[33095681],"breaking":[38207489,41287681,45350913,46268417,46858241,47579137],"bool":[4521988,4653060,5570564,6881288,7798787,8060931,8519683,8716291,9175043,9437187,10354691,10944515,13762563,13828099,14221315,14352387,15925251,16121859,16384003,16711683,17235972,17956868,18350084,18546691,19726339,20185092,21430275,22282243,23724036,23855107,23920643,24051716,24117251,24248323,24313859,24903683,25165827,25296900,25624579,25690115,26411011,26476547,27131907,27721731,27918339,28049411,28704771,28770308,29425667,31129603,31653891,37289988,37552133,37683205,38010884,38207493,38273029,38535173,38862853,38928389,38993925,39124997,39518213,39649285,40697861,40894469,41287686,41418757,41746437,41811974,42008582,42205190,42270726,42467333,42598406,42729478,43122693,43384838,43450374,43646982,44695558,44826630,45416453,47120387,47710213,47906821,48496645,49348613,49807365,52625411,53673988,54591491,55115780,55836676],"behavior":[2424842,4128778,35782657,36569089,38535169,38993921,39649281,40894465,42205185,42270721,43384833,44695553,46333953,46923777,50266113,50397195,50790402,51970049,55771137,55902210,56885249,58458113,59047946],"bound":[6946817,7864321,9043969,12713985,12976129,13631489,13697025,14483457,14745601,15335425,15532033,15597569,18481153,19529729,20381697,21168129,21233665,22151169,23330817,24444929,25427969,39190529,39845889,39911425,40960001,43319297,43712513,44236801,47185921,48234497,48758785,49086465,56033281,57344001,58195969,58589185,58982401,59179009],"braces":[6815745,8192001,11534337,11730945,12255233,12320769,12386305,12779521,13041665,14155777,16580609,18284545,19005441,19267585,19791873,20512769,22675457,23068673,29491201,30867457,31522817,32505857,52035585,53805057],"base":[4653058,12845057,13565953,22478849,23265281,49217537,51118081,55771140,57212929,58523649,59047937,59179009],"bigint":[50790402],"bidirectional":[50790402],"benefit":[50790401],"boundary":[9240577,9764865,9961473,10092545,10551297,10878977,11075585,11141121,11599873,11927553,11993089,12517377],"binary":[2424833,4128769,38666241,50397185,59047937],"behave":[47775745,49414145,58392577],"binding":[34275330,35127298,36569090,36765698,36896770,37552132,37617666,38338562,38535169,38993921,39321602,39911425,40894468,40960001,41025538,41811972,42205185,42270724,43319297,43384833,54329346,56033281,56164354,57344001,57737218,57999362,58195969,58458114,58523650,58589186,58982402,59179010],"bypasses":[37552129,41811969],"behalf":[35651585,36765697,36896769,37617665,38338561,39321601,41025537,48627713,50003969,50659329,54329345,57737217,57868289,57999361,58589185,58982401,59179009],"bypassing":[5439489,5505025,5701633,6225921],"background":[49938435],"begin":[24248321,24903681,25690113,26411009,49479681,54919169,57540609],"bind":[40894465,42270721],"blank":[37093378,39124993,43450369,45416449]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_99.json b/docs/Reference/fti/FTI_99.json index 349f82822..a12c62b3c 100644 --- a/docs/Reference/fti/FTI_99.json +++ b/docs/Reference/fti/FTI_99.json @@ -1 +1 @@ -{"consumed":[22020097,22740993,23789569,24969217,25362433,25755649,26542081,26738689,27328513,28966913,29491201,31850497,54722561],"converts":[2031622,2490377,3014668,4980748,7012353,7274497,7340033,7602177,7864321,8519681,8650754,9240578,9306114,9502722,9568258,10027010,10092546,10747906,10813442,11010050,11665410,11862018,15663105,15990785,16515073,16711681,17367041,17563649,18219009,18546689,19660801,30998530,31653892,34603016,52101132,52756486,54329356,54591497],"call":[720897,3211265,3801089,5046273,5242881,5505025,5570561,5832705,6094849,6553601,7012354,7274498,7340034,7602178,7864322,8519682,9830401,14090242,15466498,15663106,15990786,16515074,16646146,16711682,17367042,17563650,18219010,18546690,18677762,19660802,27131906,27918338,28508161,30212098,31326209,39387137,42860545,44040193,44105730,44433410,44892161,46989314,47775745,48627713,49610753,49807361,52297729,52363265,54263809,55050241,55508993,55771137,55967746,56295425,56426498,56492033,56885250,56950785,57344001,57475073,57737217,57868289,58261505,58392577,58458113],"catchfunc":[10682376],"createscriptengine":[4194310,22937605,23527429,24313861,25231365,27000837,27721733,35061766,57016326],"context":[1441793,3211266,3801090,4194307,5046274,5242882,5439491,5505026,5570562,5636097,5832706,6094853,6160385,6553602,6946817,14876675,17104902,18087939,18874374,19988486,20447235,21823494,22020099,22806531,24838147,25427971,28377091,29491203,30801923,33226753,34144259,34209793,34406403,34537473,34930689,35651585,36175873,36831233,37945345,40763396,41943041,43843585,46661636,54263813,54525955,55246849,55902210,56492034,56950786,57016323,57344002,57475074,57868290,58261506,58392578,58458114],"clean":[10682369],"clear":[3145729,15532033,31326209,32243713,32833537,34537473,35586049,56098817],"changed":[786433],"contextcallback":[5439493,5636101,6160390,6946822,14876677,18087941,20447238,22020101,22806533,24838150,25427973,28377093,29491205,30801925,34930689,36175873,40763396,46661637,55246849,55902209],"client":[10682369],"calculate":[9830401],"comparison":[38797314,41811970,55836673,58195970],"case":[5898241,29163521,34275329,54919170],"converted":[52625409],"comparer":[15925256,16384008,19464193,20185089,35389442,37158914,37421058,45678598,55574530,56754180],"categories":[35586049,52494337,55377921],"cachedocument":[1507330,1703937,4653061,5701637,50790402,55705601],"columnnumber":[43450372,43581441,55771137],"copy":[655361,720897,786433,851969,917505,983041,1048577,1179649,1245185,1310721,1376257,1441793,1572865,1507329,1638401,1703937,1769473,1835009,1900545,2097153,2228225,2293761,2359297,2424833,2555906,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3276801,3342337,3407873,3473409,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6619137,6553601,6684673,6750209,6815745,6881282,6946817,7012353,7077890,7143425,7208961,7274497,7340033,7405570,7471106,7536641,7602177,7667713,7733250,7798785,7864321,7929858,7995393,8060929,8126465,8192002,8257537,8323073,8388609,8454145,8519681,8585219,8650754,8716289,8781825,8847362,8912898,8978433,9043970,9109506,9175041,9240578,9306114,9371649,9437185,9502722,9568258,9633793,9699329,9764866,9830402,9895937,9961473,10027010,10092546,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682370,10747906,10813442,10878977,10944513,11010050,11075585,11141121,11206658,11272193,11337729,11403265,11468801,11534337,11599874,11665410,11730945,11796481,11862018,11927553,11993089,12058626,12124161,12189697,12255233,12320770,12386305,12451841,12517378,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745603,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794179,15859713,15925249,15990785,16056321,16121860,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908292,16973825,17039361,17104897,17170433,17235969,17301508,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022404,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808836,18939905,18874369,19005441,19070977,19136513,19202049,19267585,19333121,19398659,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316164,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,31064065,31129601,31195137,31260673,31391745,31522817,31719425,31784961,31850497,31916033,31981569,32309249,32505857,32571393,32768001,32899073,33292289,33357825,33423361,33488897,33882113,33947649,34275329,35979265,36372481,36765697,37027841,37224449,37552129,37814273,38010881,38273025,38404097,38469633,38797313,38993921,39190529,39256065,39452673,39583745,39714817,39780353,39845889,39976961,40239105,40370177,40435713,40566785,40697857,40763393,40894465,41091073,41156609,41222145,41353217,41484289,41549825,41680897,41811969,41943041,42008577,42074113,42139649,42205185,42270721,42598401,42663937,42729473,42795009,42991617,43057153,43122689,43188225,43319297,43384833,43450369,43515905,43646977,43712513,43778049,43843585,43909121,44105729,44171265,44302337,44367873,44433409,44498945,44695553,44761089,44892161,44957697,45023233,45088769,45154305,45219841,45350913,45416449,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414146,49479681,49545218,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50397185,50462721,50528257,50593793,50659329,50724865,50790402,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101122,52166658,52232194,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822018,52887553,52953089,53018626,53084161,53149697,53215233,53280770,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805058,53936129,54001666,54067202,54132739,54198273,54263810,54329346,54394881,54460418,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050242,55115777,55181313,55246850,55312385,55377921,55443457,55508994,55574530,55640065,55705602,55771138,55836674,55902210,55967746,56033282,56098817,56164354,56229889,56295426,56360962,56426498,56492034,56557569,56623106,56688642,56754178,56819714,56885249,56950785,57016322,57081857,57147393,57212930,57278465,57344002,57409538,57475074,57540610,57606146,57671681,57737218,57802754,57868290,57933825,57999361,58064898,58130433,58195969,58261506,58327042,58392578,58458114],"customize":[12779521,18743297,26017793,28704769,29163521,33357825,34275329],"contexts":[8060929,9043969,12517377,13893633,14024705,14680065,15073281,19202049,20905985,22413313,23265281,23461889,23527425,23724033,24182785,24313857,24379393,24444929,25231361,25362433,25493505,26083329,26345473,26542081,26607617,27197441,27262977,27394049,27852801,27983873,29687809,29818881,30146561,30408705,30474241,30670849,30736385,30932993,31260673,31391745,31522817,31784961,31981569,32309249,32571393,32768001,32899073,33423361,39714817,45875201],"constructor":[4390913,4718593,4849665,4915201,5177345,5373953,5767169,6225921,6488065,6619137,8126465,8847362,9437185,10420225,10551297,10878977,11141121,11272193,11403265,12124161,14024705,14090242,14483457,15925249,16384001,16646146,18350081,18874369,19202049,19464193,19529729,19726337,20054017,20119553,20185089,20381697,20512769,20905985,20971521,21233665,21430273,21561345,21823489,22347777,22413313,22478849,22675457,22872065,23068673,23134209,23199745,23396353,23461889,23658497,23724033,24182785,24444929,24707073,25034753,25296897,25821185,26083329,26148865,26804225,26935297,27197441,27525121,27656193,27852801,27983873,28049409,28311553,28770305,28835841,29032449,29097985,29294593,29425665,29622273,29687809,29818881,29884417,30015489,30146561,30408705,30474241,30605313,30670849,30736385,30932993,31260673,31391745,31522817,31784961,31981569,32309249,32374785,32571393,32768001,32899073,33423361,35389441,36044801,36110337,36241409,36896769,37289985,37355521,37617665,37879809,38076417,38666241,39124993,40304641,41025537,52625409,53805060,56426500],"continues":[39714817,45875201],"constructed":[54919170],"coded":[39387137,57737217],"cancelawaitdebugger":[6094849,30343172,54263809],"contravariance":[8060929,9043969,12517377],"continue":[34537473,43384833,45547521,54198274],"collecting":[4194306,6094850,20840449,21495809,28639233,29753345,32964610,36634626,54263810,57016322],"console":[7733249,10682369,11599873,12517378,12779521,18743297,26017793,28704769,29163521,33357825,34275329],"contained":[38731777,56098817],"constraints":[4521985,23199752,24182792,25034760,25821192,26804232,27197448,27525121,27656200,27852808,27983880,29622280,30474248,31326209,31391752,35127297,36110342,36896774,43778049,44695553,45350913,46202881,47054849,47120385,51642369,51838977,54263814,57016326,57212930],"configuration":[1441796,5439490,6029314,6815746,7536642,31326209,34537474,37945348,54984705,55181313,55902213],"compiling":[42074113,47644673,53542913],"cpuprofilesampleinterval":[38207489,44826625,49086468,52559876,54263809,57016321],"clearscrip":[31326209,34537473,38010881,54984705,55181313],"cpu":[720897,4194308,6094852,20840451,21495811,22085634,23855106,26214403,28639235,28901379,29753347,31326213,32964611,36634627,38207489,44826625,44892161,49086467,52559875,54263813,55050241,55312385,55771137,56033281,56295425,57016325],"completeness":[14942209,17170433,22609921,24510465,28573697],"conversion":[2424833,3866625,53280769,54919174,56164353],"caution":[54919169,56688641],"coordinated":[54919169],"corresponds":[44367873,49938433],"convenient":[6881281,12058625,14024705,22413313,55574529],"collector":[27918337,28508161,43778049],"creating":[21495809,29753345,31326209,55312385],"containing":[2228225,2293761,2555906,2752513,2949121,5439489,5636097,6029313,6160385,6946817,7405569,7536641,14745602,15204353,15728641,15794178,15859713,17629185,19398658,21102593,23330817,24051713,25100289,25296898,26476545,26869761,27328513,28246017,28966913,30081025,37224449,38731778,42467329,42926081,43581442,47382529,47906817,50593793,52822017,53018625,54067201,54132738,54525954,55443457,55771138,56098818,57409537,57606145,57802753],"comprise":[31326209,34537473,54984705,55181313],"collects":[4194305,6094849,22085633,23855105,54263809,57016321],"connection":[1638401,1769473,5963777,6094849,6422529,6684673,22937601,24444929,25231361,25821185,26083329,26935297,27656193,27852801,27983873,29097985,30343169,34537474,54263809,54788098,54919169,56360962,56623106],"combination":[5439489,6029313,6815745,7536641],"change":[22937601,24313857,25231361,27721729,44695553,45350913,46202881,46858241,47120385,50003969],"category":[1310721,1441794,3211268,3801092,4194310,5046276,5242884,5439497,5505028,5570564,5636102,5832708,6094858,6160391,6553604,6815745,6946823,7536649,13959176,14876680,17235976,18087944,19333129,20447241,22020104,22806536,23789576,23986185,24641544,24772616,24838153,24969224,25427976,25952264,26279944,28377096,29491208,30801928,33226754,34144262,34209794,34340867,34406406,34537473,34930690,35454979,35651586,36765698,36831234,37945346,39452678,44302338,45023234,52494339,53477377,54001668,54263818,55246850,55377923,55902210,56492036,56950788,57016326,57344004,57475076,57868292,58261508,58392580,58458116],"clsid":[3211272,3801096,5046280,5242888,5505032,5570568,5832712,6094856,6553608,7733249,10616839,11206657,11468807,11534343,11730951,11796487,11993089,12189703,12255233,12386311,12582919,12910593,12976129,13107201,13369345,13697025,14286849,16056328,16187400,16973832,17039368,17891329,17956865,19070977,19136513,19857416,19922952,20709384,20774920,21626881,21692417,22216705,22282241,31784961,31981569,32440324,32571393,32768001,32899073,33423361,37093380,38535172,39321604,54263816,56492040,56950792,57344008,57475080,57868296,58261512,58392584,58458120],"cause":[4456449,47054849,47775745,51642369,51838977,52363265,57737217],"contains":[458753,2686977,3145731,3932161,6881281,7077889,7208961,7798785,8257537,8323073,8716289,8978433,9371649,9633793,9699329,9895937,9961473,10354689,10485761,11075585,12058625,13565953,14155777,16252931,16777217,19791873,31326210,32243713,32833537,34537474,35586049,36372481,45744129,49283073,53870597,55246849,55574530,56098819,56754177,57540609,57737217],"caught":[10682369,54919169],"class":[65537,131074,196610,262145,327682,393218,458753,655362,786433,851970,983042,1048578,1179649,1245188,1310721,1376257,1441793,1507329,1638401,1703937,1769473,1835009,1900545,2031617,2097156,2359300,2424842,2490369,2621441,2686977,2818049,2883588,3014657,3080196,3211288,3276801,3342337,3473409,3670017,3735553,3801113,3866634,3932161,3997697,4063233,4128769,4194305,4325380,4390913,4456450,4521985,4587521,4653057,4718593,4784129,4915201,4980737,5046297,5111809,5242905,5373953,5439489,5505049,5570585,5636097,5701633,5767169,5832729,5898241,5963777,6029313,6094873,6160385,6225921,6291457,6356993,6422529,6488065,6553625,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733251,7798785,7864321,7929857,7995393,8060929,8126465,8192004,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847362,8912897,8978433,9043969,9109505,9175044,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616836,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206660,11272193,11337729,11403265,11468804,11534340,11599873,11665409,11730948,11796484,11862017,11993091,12058625,12124161,12189700,12255235,12320769,12386308,12517377,12582916,12910595,12976131,13107203,13369347,13500417,13697027,14286851,14352385,15532033,15663105,15925249,15990785,16056325,16187397,16252929,16384001,16515073,16580610,16646145,16711681,16777217,16842753,16973829,17039365,17104897,17170433,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17956868,17891332,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18874369,18939905,19005441,19070980,19136516,19202049,19267585,19333121,19464193,19529729,19595265,19660801,19726337,19791873,19857413,19922949,19988481,20054017,20119553,20185089,20250625,20381697,20447233,20512769,20578305,20643841,20709381,20774917,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626884,21692420,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216708,22282244,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22872065,22806529,22937601,23003138,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31260673,31326209,31391745,31522817,31653889,31719425,31784963,31850497,31981571,32178177,32243713,32309249,32374785,32440333,32505857,32571395,32636929,32768003,32833537,32899075,32964609,33030145,33161217,33292289,33357825,33423363,33554433,33685505,33751041,33882113,34013185,34078721,34144257,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34996225,35061761,35127297,35192833,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848194,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569090,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093389,37158913,37224449,37289985,37421057,37617665,37683201,37748738,37879809,37945345,38010881,38076417,38141953,38207489,38338561,38469633,38535180,38600705,38666241,38862849,38928385,39059457,39124993,39256065,39321612,39387137,39518209,39649281,39780353,40108033,40173569,40304641,40501249,40632321,40566785,40828930,40894465,41025537,41418753,41484289,41549825,41746433,41811969,41877506,42139649,42205185,42270721,42401794,42467329,42532865,42795009,42860545,42926081,42991617,43057153,43122689,43450369,43581441,43712513,43778049,43843585,44040193,44171265,44236801,44302337,44433409,44498945,44695553,44761089,44826625,44892161,45023233,45154305,45219841,45350913,45416449,45547521,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47906817,47972353,48037889,48168961,48234497,48365569,48431105,48496641,48562178,48627713,48693249,48758785,48824321,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414149,49479681,49545221,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50200577,50266114,50331649,50397185,50462721,50528257,50593793,50724865,50790405,50855937,50921473,50987009,51052546,51118081,51183617,51249153,51314689,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101125,52166669,52232197,52297729,52363265,52494337,52559873,52625409,52690945,52756485,52822017,52887553,52953089,53018629,53084161,53149697,53215233,53280782,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805069,53936129,54001669,54067205,54132737,54263838,54329349,54394881,54460423,54591493,54657025,54722561,54788097,54853633,54919170,54984709,55050245,55115777,55181317,55246849,55312385,55377925,55508999,55574533,55640065,55705605,55771141,55836681,55902214,55967757,56033281,56098817,56164366,56229889,56295429,56360965,56426509,56492062,56557569,56623109,56688647,56754181,56819717,56885249,56950809,57016325,57081857,57147393,57212933,57278465,57344030,57409537,57475101,57540613,57606145,57671681,57737222,57802753,57868318,57933829,57999361,58064905,58130433,58195969,58261533,58327047,58392605,58458141],"caches":[5636097,6160385,6946817,52494338],"create":[458753,6881281,7077889,7405570,7733249,8060929,8126465,8585218,8650753,8847361,9043971,9109505,9240577,9306113,9502721,9568257,9764866,9830403,10027009,10092545,10682369,10747905,10813441,11010049,11206657,11468801,11665409,11862017,12058625,12189697,12517378,13107201,13697025,14024705,17039361,19136513,20774913,22282241,22413313,22937601,23527425,24313857,25231361,27000833,27721729,35061761,57737217],"common":[34537473,35586050,44302337,52822017,57081857,57606145],"close":[51642369],"compile":[4194313,6094857,21889031,22020097,22741000,22806529,23330823,23592968,23789569,24117249,24379399,24641537,24772609,24903688,24969217,25100295,25362440,25427969,25493511,25624577,25755649,25952257,26279937,26542088,26607624,26673153,26738689,27328520,27394056,27787265,28246024,28377089,28966920,29491201,30081032,30801921,30867463,31850504,33685514,34144257,34406401,37683210,54263817,57016329],"completion":[5636097,6946817],"compilation":[22020097,22740993,23789569,24969217,25362433,25755649,26542081,26738689,27328513,28966913,29491201,31326209,31850497,54722563,56557570],"commonjs":[35454978,40763393,44302341,46661633,55377922],"continuation":[43384833,45547521,54198273],"callback":[1441793,3211266,3801090,4194307,5046274,5242882,5439491,5505026,5570562,5636097,5832706,6094853,6160385,6553602,6946817,9043969,9830402,12517377,14876675,18087939,20447235,22020099,22806531,24838147,25427971,28377091,29491203,30801923,33226753,34144259,34209793,34406403,34930689,35651585,36175873,36831233,37945345,38141953,38207489,40042497,40501249,40763395,42532865,43384836,44236801,45547524,46661635,47185921,47972353,48824321,50331649,54198273,54263814,54525953,55246849,55443458,55902210,56492035,56950787,57016323,57344003,57475075,57868291,58261507,58392579,58458115],"contain":[6881281,10420225,10878977,11403265,12058625,12124161,15204353,21102593,41287681,51642369],"comments":[65537,131073,196609,262145,327681,393217,458753,524289,655361,720897,786433,851969,917505,983041,1048577,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6619137,6553601,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17956865,17891329,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22872065,22806529,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34996225,34930689,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38273025,38207489,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40632321,40566785,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42598401,42532865,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49479681,49414145,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52887553,52822017,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57933825,57868289,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113],"cleared":[65537,262145,786433,55574529,56754177],"cancels":[6094849,31064065,54263809],"casts":[3014659,4980739,8192001,8912898,10158081,52101123,54329347],"custom":[1179650,2424833,3866625,4390913,6291464,34537473,36700161,38469634,49414147,53280769,54984705,55902209,56164353],"compliance":[52625409],"character":[36372482,42467329,42926081,50069505,53018625,54067201],"components":[7405571],"control":[47448068,47775745,52363265],"connect":[1835009,1900545,6422533,6684677,49545217,56819713],"collect":[14942209,17170433,20840449,21495809,22085633,22609921,23855105,24510465,28573697,28639233,29753345],"comtype":[4980737,11206661,11730945,11796481,11993089,12386305,12582913,12910593,13369345,14286849,16187393,16973825,17956865,19070977,19857409,20709377,21626881,22216705,32440321,39321601,52101121],"collection":[65538,262145,786433,1179649,1245185,1310721,1376257,1441793,1572865,1507329,1638401,1703937,1769473,1835009,1900545,2097153,2359297,2424833,2686977,2818049,2883585,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3670017,3735553,3801090,3866625,3932170,3997697,4063233,4128769,4194306,4325377,4456449,4521985,4980738,5046274,5242882,5505026,5570562,5832706,6094850,6553602,6750209,6881282,9175051,9699330,9895938,10223618,10354690,10420227,10485762,10551298,10878979,10944514,11075586,11337730,11403267,12058636,12124163,14942210,17170434,22609922,24510466,27918338,28573698,34537474,36438021,36962308,37158914,37421059,37617670,38338561,39387137,42795009,42860545,43581442,45744129,46923777,47579137,49283073,49414145,49545217,50790401,52101122,52166657,52232193,53018625,53280769,53805057,54001665,54067201,54263810,54329345,54460417,54525953,55050242,55246849,55312385,55508993,55574549,55705601,55771139,55836673,55902209,55967745,56033281,56098819,56164353,56295425,56360961,56426497,56492034,56557569,56623105,56688641,56754180,56819713,56950785,57016322,57212929,57344002,57475074,57540609,57737218,57868290,58064897,58261506,58327041,58392578,58458114],"comobject":[10616833,11468801,11534337,12189697,12255233,12976129,13107201,13697025,16056321,17039361,17891329,19136513,19922945,20774913,21692417,22282241,37093377,38535169],"correct":[14090241,16646145,46858241,47841281,50003969,50724865,58261505,58392577,58458113],"converting":[12779521,18743297,26017793,28704769,29163521,33357825,34275329],"collectcpuprofilesample":[4194305,6094849,22085636,23855108,54263809,57016321],"cacheaccepted":[22020101,22740997,23789573,24969221,25362437,25755653,26542085,26738693,27328517,28966917,29491205,31850501],"cleaning":[10682369],"corresponding":[6881281,7077889,7667713,8585217,9830402,12058625,12451841,12648449,12713985,13303809,13565953,14155777,14614529,15269889,15335425,16777217,17825793,18284545,18612225,19005441,19791873,21037057,21757953,22151169,43778049,55574529],"cachekind":[22020101,22740997,22806533,23592965,23789573,24772613,24903685,24969221,25362437,25755653,25952261,26542085,26607621,26673157,26738693,27328517,27394053,27787269,28246021,28966917,29491205,30081029,30801925,31850501],"conjunction":[51642369],"called":[11927553,13041665,18481153,19267585,27590657,28114945,29360129,30343169,31064065,31129601,34537474,36175873,47972353,55443457,55902209,56229889],"clearscript":[65538,131074,196610,262146,327682,393218,458754,524290,589825,655365,720901,786437,851973,917509,983045,1048581,1114113,1179650,1245186,1310722,1376258,1441794,1507330,1572866,1638402,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407874,3473410,3538946,3604482,3670018,3735554,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4259842,4325378,4390917,4456450,4521986,4587525,4653061,4718597,4784133,4849669,4915205,4980738,5046274,5111813,5177349,5242882,5308418,5373957,5439493,5505026,5570562,5636101,5701637,5767173,5832706,5898245,5963781,6029317,6094850,6160389,6225925,6291462,6356997,6422533,6488069,6553602,6619141,6684677,6750210,6815749,6881285,6946821,7012357,7077893,7143429,7208965,7274501,7340037,7405573,7471109,7536645,7602181,7667717,7733253,7798789,7864325,7929861,7995397,8060933,8126469,8192005,8257541,8323077,8388613,8454149,8519685,8585221,8650757,8716293,8781829,8847365,8912901,8978437,9043973,9109509,9175045,9240581,9306117,9371653,9437189,9502725,9568261,9633797,9699333,9764869,9830405,9895941,9961477,10027013,10092549,10158085,10223621,10289157,10354693,10420229,10485765,10551301,10616837,10682373,10747909,10813445,10878981,10944517,11010053,11075589,11141125,11206661,11272197,11337733,11403269,11468805,11534341,11599877,11665413,11730949,11796485,11862021,11927557,11993093,12058629,12124165,12189701,12255237,12320773,12386309,12451845,12517381,12582917,12648453,12713989,12779525,12845061,12910597,12976133,13041669,13107205,13172741,13238277,13303813,13369349,13434885,13500421,13565957,13631493,13697029,13762565,13828101,13893637,13959173,14024711,14090246,14155781,14221317,14286853,14352389,14417925,14483461,14548997,14614533,14680069,14745605,14811141,14876677,14942213,15007749,15073285,15138821,15204357,15269893,15335429,15400965,15466501,15532037,15597573,15663109,15728645,15794181,15859717,15925253,15990789,16056325,16121861,16187397,16252933,16318469,16384005,16449541,16515077,16580613,16646150,16711685,16777221,16842757,16908293,16973829,17039365,17104901,17170437,17235973,17301509,17367045,17432581,17498117,17563653,17629189,17694725,17760261,17825797,17956869,17891333,18022405,18087941,18153477,18219013,18284549,18350085,18415621,18481157,18546693,18612229,18677765,18743301,18808837,18874373,18939909,19005445,19070981,19136517,19202053,19267589,19333125,19398661,19464197,19529733,19595269,19660805,19726341,19791877,19857413,19922949,19988485,20054021,20119557,20185093,20250629,20316165,20381701,20447237,20512773,20578309,20643845,20709381,20774917,20840453,20905989,20971525,21037061,21102597,21168133,21233669,21299205,21364741,21430277,21495813,21561349,21626885,21692421,21757957,21823493,21889029,21954565,22020101,22085637,22151173,22216709,22282245,22347781,22413319,22478853,22544389,22609925,22675461,22740997,22806533,22872069,22937605,23003141,23068677,23134213,23199749,23265285,23330821,23396357,23461893,23527429,23592965,23658501,23724037,23789573,23855109,23920645,23986181,24051717,24117253,24182789,24248325,24313861,24379397,24444933,24510469,24576005,24641541,24707077,24772613,24838149,24903685,24969221,25034757,25100293,25165829,25231365,25296901,25362437,25427973,25493509,25559045,25624581,25690117,25755653,25821189,25886725,25952261,26017797,26083333,26148869,26214405,26279941,26345477,26411013,26476549,26542085,26607621,26673157,26738693,26804229,26869765,26935301,27000837,27066373,27131909,27197445,27262981,27328517,27394053,27459589,27525125,27590661,27656197,27721733,27787269,27852805,27918341,27983877,28049413,28114949,28180485,28246021,28311557,28377093,28442629,28508165,28573701,28639237,28704773,28770309,28835845,28901381,28966917,29032453,29097989,29163525,29229061,29294597,29360133,29425669,29491205,29556741,29622277,29687813,29753349,29818885,29884421,29949957,30015493,30081029,30146565,30212101,30277637,30343173,30408709,30474245,30539781,30605317,30670853,30736389,30801925,30867461,30932997,30998530,31064069,31129605,31195141,31260677,31326210,31391749,31457282,31522821,31588354,31653890,31719429,31784965,31850501,31916037,31981573,32047106,32112642,32178178,32243714,32309253,32374786,32440322,32505861,32571397,32636930,32702466,32768005,32833538,32899077,32964610,33030146,33095682,33161218,33226754,33292293,33357829,33423365,33488901,33554434,33619970,33685506,33751042,33816578,33882117,33947653,34013186,34078722,34144258,34209794,34275333,34340866,34406402,34471938,34537474,34603010,34668546,34734082,34799618,34865154,34930690,34996226,35061762,35127298,35192834,35258370,35323906,35389442,35454978,35520514,35586050,35651586,35717122,35782658,35848194,35913730,35979269,36044802,36110338,36175874,36241410,36306946,36372485,36438018,36503554,36569090,36634626,36700163,36765701,36831234,36896770,36962306,37027845,37093378,37158914,37224453,37289986,37355522,37421058,37486594,37552133,37617666,37683202,37748738,37814277,37879810,37945346,38010885,38076418,38141954,38207490,38273029,38338562,38404101,38469638,38535170,38600706,38666242,38731778,38797317,38862850,38928386,38993925,39059458,39124994,39190533,39256070,39321602,39387138,39452677,39518210,39583749,39649282,39714823,39780357,39845893,39911426,39976965,40042498,40108034,40173570,40239109,40304642,40370181,40435717,40501250,40566789,40632322,40697861,40763397,40828930,40894469,40960002,41025538,41091077,41156613,41222149,41287681,41353221,41418754,41484293,41549829,41615362,41680901,41746434,41811973,41877506,41943045,42008581,42074117,42139653,42205189,42270725,42336258,42401794,42467330,42532866,42598405,42663941,42729477,42795013,42860546,42926082,42991621,43057157,43122693,43188229,43253762,43319301,43384837,43450373,43515909,43581442,43646981,43712517,43778053,43843589,43909125,43974658,44040194,44105733,44171269,44236802,44302341,44367877,44433413,44498949,44564482,44630018,44695558,44761093,44826626,44892165,44957701,45023237,45088773,45154309,45219845,45285378,45350918,45416453,45481986,45547525,45613061,45678597,45744133,45809669,45875207,45940741,46006277,46071813,46137349,46202886,46268421,46333957,46399493,46465029,46530565,46596101,46661637,46727173,46792709,46858247,46923781,46989317,47054853,47120390,47185922,47251461,47316997,47382533,47448069,47513605,47579141,47644677,47710213,47775749,47841285,47906821,47972357,48037893,48103429,48168965,48234501,48300037,48365573,48431109,48496645,48562181,48627717,48693253,48758789,48824322,48889861,48955397,49020933,49086469,49152005,49217541,49283077,49348613,49414150,49479685,49545223,49610757,49676293,49741829,49807365,49872901,49938437,50003975,50069509,50135045,50200581,50266117,50331650,50397189,50462725,50528261,50593797,50659333,50724869,50790407,50855941,50921477,50987013,51052549,51118085,51183621,51249157,51314693,51380229,51445765,51511301,51576837,51642373,51707909,51773445,51838981,51904517,51970053,52035589,52101127,52166663,52232198,52297733,52363269,52428805,52494341,52559877,52625414,52690949,52756486,52822021,52887557,52953093,53018631,53084165,53149701,53215237,53280774,53346309,53411845,53477381,53542917,53608453,53673989,53739525,53805064,53870605,53936133,54001670,54067207,54132741,54198277,54263815,54329351,54394885,54460423,54525957,54591494,54657029,54722565,54788101,54853637,54919174,54984711,55050246,55115781,55181318,55246854,55312389,55377926,55443461,55508999,55574535,55640069,55705607,55771142,55836679,55902214,55967751,56033286,56098821,56164358,56229893,56295430,56360967,56426503,56492040,56557573,56623111,56688646,56754183,56819719,56885253,56950789,57016326,57081861,57147397,57212934,57278469,57344008,57409541,57475080,57540614,57606149,57671685,57737222,57802757,57868298,57933830,57999365,58064903,58130437,58195973,58261513,58327046,58392585,58458122],"clearnocheck":[2686977,3932161,15532036,20185089,55574529,56754177],"calls":[8847361],"compare":[55836673],"compatibility":[7929858,39256065,44695553,45350913,46202881,47120385],"compiled":[4063233,4194313,6094859,21889026,22020098,22740994,22806530,23330818,23592962,23789570,24117250,24379395,24641538,24772610,24903682,24969218,25100290,25362435,25427970,25493507,25624578,25755650,25952258,26279938,26542083,26607619,26673154,26738690,27328514,27394051,27787266,28246018,28377090,28508165,28966914,29491202,29556738,30081026,30277634,30801922,30867458,31326209,31850498,33685513,35323905,35782657,36503554,37683209,46006273,46596097,52232196,52494337,54263819,57016329],"closest":[44367873,49938433],"connects":[1835009,1900545,6422529,6684673,49545217,56819713],"classes":[2424841,3866633,14024705,22413313,31326209,32243713,32833537,34537473,35586049,52166657,53280777,55967745,56164361],"consolet":[7733250,10682372,11599874,12517378],"column":[43450371,43581441,55771137],"cstr":[29163521,34275329],"command":[3211265,3801089,5046273,5242881,5505025,5570561,5832705,6094849,6553601,12779532,18743309,26017805,28704781,29163535,33357837,34275343,54263809,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"continuationcallback":[34537473,38141953,38207489,40042497,40501249,42532865,43384843,44236801,45547534,47185921,48824321,50331649,54198277,54263809,56492033,56950785,57344001,57475073,57868289,58261505,58392577,58458113],"completes":[4194305,6094849,26214401,28901377,54263809,57016321],"completed":[5636097,6160385,6946817,10682369,26214401,28901377],"cancelinterrupt":[6094849,27590657,31064068,54263809],"contact":[589825],"compiles":[4194313,6094857,22020097,22806529,23789569,24117249,24641537,24772609,24969217,25427969,25624577,25755649,25952257,26279937,26673153,26738689,27787265,28377089,29491201,30801921,34144265,34406409,54263817,57016329],"checking":[2686979,3932163,15532033,17498113,18153473,55574531,56754179],"calling":[2031619,2424833,2490372,3538946,3866625,3997698,5046274,5242882,5505026,5570562,5832706,6553602,7274497,7602177,8519681,15663105,15990785,17367041,17563649,20185089,28180481,28508161,29949954,30998529,31653890,31719425,31916033,32505858,33882114,34603012,52756483,53280769,54263809,54591492,55640066,56164353,56492034,56688642,57344002,57868290,58261506,58392578,58458114],"checkaccess":[3538945,3997697,5046273,5242881,5505025,5570561,5832705,6553601,29949956,32505862,33882116,55640065,56492033,56688641,57344001,57868289,58261505,58392577,58458113],"copies":[2228226,2293762,2555908,2752514,2949122,3145729,16121857,16908289,17301505,18022401,18808833,20316161,52822018,54132740,56098817,57409538,57606146,57802754],"catch":[10682370,49872897,53411841],"caused":[20119553,22872065,38273025,39387139,40173570,40239105,40960003,41091073,42205185,42270721,42991617,43122689,57081859,57737219,57933826],"connected":[54788097],"collectgarbage":[3211265,3801089,4194305,5046273,5242882,5505025,5570561,5832705,6094850,6553601,14942212,17170437,22609924,24510471,28573702,54263810,56492033,56950785,57016321,57344001,57475073,57868290,58261505,58392577,58458113],"consoles":[12779521,18743297,26017793,28704769,29163521,33357825,34275329],"code":[1245185,1572865,1966081,2031622,2097153,2359297,2424833,2490376,2883585,3014657,3080193,3211302,3407873,3801126,3866625,4325377,4980737,5046310,5242918,5505062,5570598,5832742,6094886,6553638,6881281,7012355,7077889,7274498,7340035,7405569,7471105,7602179,7733249,7864322,7929857,8060929,8192001,8519683,8585217,8650753,8847361,8912897,9043969,9109505,9240577,9306113,9502721,9568257,9764865,9830401,10027009,10092545,10616833,10682371,10747905,10813441,11010049,11206657,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927554,11993089,12058625,12189697,12255233,12320769,12386305,12451842,12517377,12582913,12648450,12713986,12779521,12845066,12910593,12976129,13107201,13172745,13303810,13369345,13434881,13500418,13565954,13697025,13893642,13959169,14024718,14090244,14155778,14286849,14352386,14614530,14680074,14876673,15007745,15073291,15269890,15335426,15466497,15532033,15663105,15728649,15859720,15990785,16056321,16187393,16449538,16515073,16580610,16646148,16711681,16777218,16973825,17039361,17235970,17367041,17432577,17498113,17563649,17629194,17825794,17956865,17891329,18087938,18153473,18219009,18284546,18415618,18546689,18612226,18677761,18743297,19005442,19070977,19136513,19333122,19595265,19791874,19857409,19922945,20447234,20709377,20774913,21037058,21168139,21430273,21626881,21692417,21757954,21889030,22020097,22151170,22216705,22282241,22413327,22478849,22740999,23003138,23068673,23265292,23330822,23592966,23658497,23789569,23986177,24051721,24379398,24838145,24903686,24969217,25100294,25362439,25493510,25559050,25755649,26017793,26345483,26542087,26607622,26738689,27131905,27262987,27328519,27394054,27918337,28246022,28704769,28966919,29163521,29491201,29556737,30081030,30212097,30867462,30998530,31588360,31653892,31850503,32112642,32440328,32702468,33030146,33357825,33554440,33816580,34013186,34275329,34537481,34603016,34996228,35127297,35323908,35782660,36306948,37093384,37552129,37814273,38141956,38207492,38535176,39321608,39387137,39911426,40042500,40173569,40370177,40501253,40566785,40828929,40894465,40960002,41353217,41943043,42074115,42532869,42729475,43843587,44236805,44367873,44433409,44630017,44695557,44761091,44826625,46465025,46858241,47185925,47448065,47644675,47841281,48824325,49610753,49872897,49938433,50003969,50331653,50724865,50855937,52101122,52166658,52297729,52428801,52625411,52756486,53280769,53411841,53542915,53608449,53805058,54263851,54329346,54591496,54657025,54722564,54919171,55246849,55508993,55574529,55836674,55967746,56033281,56098817,56164353,56229890,56426498,56492075,56885251,56950826,57016321,57081858,57212929,57344043,57475114,57737217,57868331,57933825,57999361,58064899,58195969,58261548,58392620,58458156],"core":[327681,655362,786434,851970,983042,1048580,3538945,3997697,4390914,4587522,4653058,4718594,4784130,4849666,4915202,5046273,5111810,5177346,5242881,5373954,5439490,5570561,5636098,5701634,5767170,5898242,5963778,6029314,6160386,6225922,6291458,6356994,6422530,6488066,6619138,6684674,6815746,6881284,6946818,7012354,7077891,7143426,7208962,7274498,7340034,7405570,7471106,7536642,7602178,7667714,7733250,7798786,7864322,7929858,7995394,8060930,8126466,8192002,8257538,8323074,8388610,8454146,8519682,8585218,8650754,8716290,8781826,8847362,8912898,8978434,9043971,9109506,9175042,9240578,9306114,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830403,9895938,9961474,10027010,10092546,10158082,10223618,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747906,10813442,10878978,10944514,11010050,11075586,11141122,11206658,11272194,11337730,11403266,11468802,11534338,11599874,11665410,11730946,11796482,11862018,11927554,11993090,12058628,12124162,12189698,12255234,12320770,12386306,12451842,12517378,12582914,12648450,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13172738,13238274,13303810,13369346,13434882,13500418,13565954,13631490,13697026,13762562,13828098,13893634,13959170,14024706,14090242,14155778,14221314,14286850,14352386,14417922,14483458,14548994,14614530,14680066,14745602,14811138,14876674,14942210,15007746,15073282,15138818,15204354,15269890,15335426,15400962,15466498,15532034,15597570,15663106,15728642,15794178,15859714,15925250,15990786,16056322,16121858,16187394,16252930,16318466,16384002,16449538,16515074,16580610,16646146,16711682,16777218,16842754,16908290,16973826,17039362,17104898,17170434,17235970,17301506,17367042,17432578,17498114,17563650,17629186,17694722,17760258,17825794,17956866,17891330,18022402,18087938,18153474,18219010,18284546,18350082,18415618,18481154,18546690,18612226,18677762,18743298,18808834,18939906,18874370,19005442,19070978,19136514,19202050,19267586,19333122,19398658,19464194,19529730,19595266,19660802,19726338,19791874,19857410,19922946,19988482,20054018,20119554,20185090,20250626,20316162,20381698,20447234,20512770,20578306,20643842,20709378,20774914,20905986,20971522,21037058,21102594,21168130,21233666,21299202,21364738,21430274,21561346,21626882,21692418,21757954,21823490,21954562,22151170,22216706,22282242,22347778,22413314,22478850,22544386,22872066,23003138,23068674,23134210,23265282,23396354,23658498,23920642,23986178,24051714,24248322,24576002,24707074,24838146,25165826,25296898,25559042,25886722,26345474,27262978,27918338,28049412,28180484,28573700,28770308,29163524,29229058,29360132,29687812,29884420,29949956,30212100,30539780,30605316,30670852,31129604,31195140,31260676,31719428,31784964,31916036,32309252,32505860,32833539,32899076,33292290,33357828,33423364,33488898,33882116,33947650,35979268,36372482,36765698,37027844,37224450,37486593,37552130,37814274,38010882,38076417,38273026,38404098,38469634,38600705,38797314,38993922,39124993,39190530,39256066,39452674,39583746,39649281,39714818,39780354,39845890,39976962,40239106,40370178,40435714,40501249,40566786,40697858,40763394,40894466,41091074,41156610,41222146,41353218,41484290,41549826,41680898,41811970,41943042,42008578,42074114,42205186,42270722,42598402,42532865,42663938,42729474,42991618,43057154,43122690,43188226,43319298,43384834,43515906,43646978,43712514,43843586,43909122,44105730,44236801,44302338,44367874,44433410,44498946,44761090,44957698,45023234,45088770,45154306,45219842,45547522,45613058,45678594,45809666,45875202,45940738,46137346,46333954,46399490,46465026,46530562,46661634,46792706,46858242,46923778,46989314,47251458,47316994,47579138,47644674,47710210,47841282,47972354,48037890,48103426,48300034,48365570,48496642,48562178,48693250,48758786,48889858,49020932,49152002,49217538,49348610,49414146,49479682,49545218,49610754,49676292,49741826,49938434,50003970,50069506,50135042,50266116,50528258,50593794,50659330,50724866,50790402,50855940,51118082,51249154,51314690,51380226,51511300,51576834,51773442,51970052,52035586,52101122,52166658,52297730,52428802,52494338,52625410,52690946,52756482,52822018,53018626,53149698,53280770,53477378,53608450,53805058,53870594,54001666,54067202,54132738,54198274,54329346,54460418,54525954,54591490,54657026,54788098,54853634,54984706,55115778,55246850,55377922,55443458,55508994,55574530,55640068,55705602,55836674,55902210,55967746,56098818,56164354,56229890,56360962,56426498,56492038,56623106,56688645,56754178,56819714,56885250,56950786,57081858,57147394,57344006,57409538,57475075,57606146,57737218,57802754,57868296,57933826,57999362,58064898,58130434,58195970,58261505,58327042,58392577,58458113],"consecutive":[38207489,44826625,45416449,52887553,54263809,57016321],"correspond":[45088769,50528257,51511297,53673985],"conversions":[14024705,22413313],"creates":[1179649,1245185,1310721,1376257,1441793,1572865,1507329,1638401,1703937,1769473,1835009,1900545,2097153,2228225,2293761,2359297,2424833,2555906,2686977,2752513,2818049,2883585,2949121,3014668,3080193,3211272,3276801,3342337,3407873,3473409,3670017,3735553,3801097,3866625,3932161,3997697,4063233,4128769,4194320,4325377,4456449,4521985,4980747,5046281,5242889,5505033,5570569,5832713,6094866,6553609,6750209,7405569,7471107,7733250,8060930,8126465,8454145,8847362,9043970,9109506,9764865,9830401,10616833,11468801,11534337,12189697,12255233,12517378,12976129,13107201,13697025,14745601,15794177,16056321,17039361,17891329,19136513,19398657,19922945,20774913,21692417,21889025,22282241,22740993,22937601,23330817,23527425,23592961,24313857,24379393,24903681,25100289,25231361,25362433,25493505,26542081,26607617,27000833,27328513,27394049,27721729,28246017,28966913,30081025,30867457,31850497,32178178,33685513,33751042,34078723,35061766,37093384,37683209,38535176,49414145,49545217,50790401,52101131,52166657,52232193,52822017,53018625,53280769,53805057,54001665,54067201,54132738,54263826,54329356,54460417,55050241,55246849,55508993,55574529,55705601,55771137,55836673,55902209,55967745,56033281,56164353,56295425,56360961,56426497,56492041,56623105,56688641,56754177,56819713,56950792,57016336,57212929,57344009,57409537,57475081,57540609,57606145,57737217,57802753,57868297,58064897,58261513,58327041,58392585,58458121],"created":[20840449,21495809,22937601,23527425,24313857,25231361,26083329,26214401,26804225,27000833,27656193,27721729,27852801,28311553,28639233,28901377,29032449,29097985,29622273,29753345,29818881,30408705,30474241,31391745],"callbackt":[9830402],"configuratio":[5439489,6029313,6815745,7536641],"cached":[1507330,1703938,4587522,4653058,4784131,5111811,5701634,6356994,45219841,50790402,51576833,52494337,55705602],"considered":[53477377],"caching":[31326209,54722563],"copyto":[3145729,56098817],"callable":[7077889,7667713,8126465,8454145,8585217,8847361,9109505,10616833,11468801,11534337,11730945,11796481,11993089,12189697,12255233,12386305,12451841,12582913,12648449,12713985,12910593,12976129,13107201,13303809,13369345,13500417,13565953,13697025,14090241,14155777,14286849,14352385,14614529,15007745,15269889,15335425,16056321,16187393,16580609,16646145,16777217,16973825,17039361,17432577,17825793,17956865,17891329,18284545,18612225,19005441,19070977,19136513,19791873,19857409,19922945,20709377,20774913,21037057,21626881,21692417,21757953,22151169,22216705,22282241,23003137,34537474,52101121,54329345],"convert":[2424833,3866625,7012353,7274497,7340033,7602177,7864321,8519681,8650753,9240577,9306113,9502721,9568257,10027009,10092545,10747905,10813441,11010049,11665409,11862017,15663105,15990785,16515073,16711681,17367041,17563649,18219009,18546689,19660801,26017793,28704769,29163521,33357825,34275329,46333953,49348609,53280769,56164353],"containskey":[2686977,3145729,3932161,16252934,55574529,56098817,56754177],"corporation":[65537,131073,196609,262145,327681,393217,458753,524289,655361,720897,786433,851969,917505,983041,1048577,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6619137,6553601,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17956865,17891329,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22872065,22806529,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34996225,34930689,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38273025,38207489,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40632321,40566785,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42598401,42532865,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49479681,49414145,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52887553,52822017,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57933825,57868289,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113],"customattributeloader":[1179650,4390917,6291457,34537473,36700161,38469643,49414152,54984705],"cnn":[10682369],"consuming":[4194310,6094854,22020097,22740993,23789569,24969217,25362433,25755649,26542081,26738689,27328513,28966913,29491201,31850497,33685507,34144259,34406403,37683203,54263814,57016326],"char":[3014657,4980737,9306119,14745601,15794177,16121857,16908289,17301505,18022401,22020097,22740993,22806529,23592961,23789569,24772609,24903681,24969217,25362433,25755649,25952257,26542081,26607617,26673153,26738689,27328513,27394049,27787265,28246017,28966913,29491201,30081025,30801921,31850497,52101121,54132737,54329345],"cleanup":[1179649,1245185,1310721,1376257,1441793,1572865,1507329,1638401,1703937,1769473,1835009,1900545,2097153,2359297,2424833,2686977,2818049,2883585,3014657,3080193,3276801,3342337,3407873,3473409,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4325377,4456449,4521985,4980737,5046273,5242881,5505025,5570561,5832705,6094849,6553601,6750209,10682369,27918337,49414145,49545217,50790401,52101121,52166657,52232193,53018625,53280769,53805057,54001665,54067201,54263809,54329345,54460417,55050241,55246849,55508993,55574529,55705601,55771137,55836673,55902209,55967745,56033281,56164353,56295425,56360961,56426497,56492033,56623105,56688641,56754177,56819713,57016321,57212929,57344001,57475073,57540609,57737217,57868289,58064897,58261505,58327041,58392577,58458113],"child":[42795011,43581441,55771137],"contextual":[18874369,21823489],"compiledocument":[4194313,6094857,22020101,22806533,23789573,24117253,24641541,24772613,24969221,25427973,25624581,25755653,25952261,26279941,26673157,26738693,27787269,28377093,29491205,30801925,34144265,34406409,54263817,57016329],"currently":[2031619,2490372,7274497,7602177,8519681,13893633,14024705,14680065,15073281,15663105,15990785,17367041,17563649,19202049,20905985,22413313,23265281,23461889,23527425,23724033,24182785,24313857,24379393,24444929,25231361,25362433,25493505,26083329,26345473,26542081,26607617,27197441,27262977,27394049,27852801,27983873,29687809,29818881,30146561,30408705,30474241,30670849,30736385,30932993,30998529,31260673,31391745,31522817,31653890,31784961,31981569,32309249,32571393,32768001,32899073,33423361,34603012,40763393,42074113,47644673,52756483,53542913,54591492,54657025],"cast":[3014658,4980738,8192004,8912906,10158081,52101122,54329346],"constructors":[49414145,50790401,52101121,52166657,53018625,53805057,54067201,54263809,54329345,55246849,55574529,55705601,55836673,55902209,55967745,56164353,56426497,56492033,56754177,57016321,57212929,57344001,57475073,57737217,57868289,57933825,58064897,58261505,58392577,58458113],"critical":[6291457],"current":[720897,1179652,1245187,1310724,1376260,1441796,1572866,1507332,1638404,1703940,1769476,1835012,1900548,2097155,2359299,2424836,2621441,2686980,2818052,2883587,3014660,3080195,3276804,3342340,3407874,3473412,3670020,3735556,3801092,3866628,3932164,3997700,4063236,4128772,4194308,4325379,4456452,4521988,4980740,5046278,5242886,5505030,5570566,5832710,6094852,6553606,6750212,7733249,9764865,14090241,16646145,17694722,20119553,20578306,22872065,22937601,24313857,25231361,25886722,27721729,29229058,31719425,33292290,33882114,38141954,38273025,39387142,40173571,40239105,40501249,40566785,40960004,41091073,41353217,41943041,42205185,42270721,42532865,42729473,42991617,43122689,43843585,44236801,44761089,46137352,47185922,47841281,48824322,49414148,49545220,50331650,50724865,50790404,51642369,51970049,52101124,52166659,52232196,52494337,52625409,53018628,53280772,53608449,53739521,53805059,53936129,54001668,54067204,54263812,54329348,54394881,54460420,55050244,55246850,55508996,55574532,55705604,55771140,55836675,55902212,55967747,56033282,56164356,56295428,56360964,56426499,56492039,56623108,56688644,56754180,56819716,57016324,57081860,57212932,57344007,57475078,57540612,57737226,57868295,57933828,58064899,58261512,58327044,58392584,58458120],"compatible":[3014657,4980737,7929858,52101121,54329345],"causing":[47448065],"causes":[3211265,3801089,5046273,5242881,5505025,5570561,5832705,6094849,6553601,13041665,19267585,27590657,31129601,39387137,47054849,49872897,51838977,53411841,53936129,54263809,54394881,56492033,56950785,57344001,57475073,57737217,57868289,58261505,58392577,58458113],"com":[3211280,3801104,4259841,4980739,5046288,5242896,5505040,5570576,5832720,6094864,6553616,7405569,7733251,8126465,9175041,10616833,10682369,11206659,11468801,11534337,11730945,11796481,11993089,12189697,12255233,12386305,12582913,12910593,12976129,13107201,13369345,13697025,14286849,16056321,16187393,16973825,17039361,17891329,17956865,19070977,19136513,19857409,19922945,20709377,20774913,21626881,21692417,22216705,22282241,32440328,33947650,37093384,38535176,39321608,52101123,54263824,54657026,56492048,56950800,57344016,57475088,57868304,58130433,58261520,58392592,58458128],"copied":[16121858,16908290,17301506,18022402,18808834,20316162],"cancel":[30343169,31064065],"count":[524289,720898,16121861,16908293,17301509,18022405,38731777,43581441,44892162,55771137,56033281,56098817],"collections":[6881282,8585218,8650753,9240577,9306113,9502721,9568257,9764865,10027009,10092545,10747905,10813441,11010049,11665409,11862017,12058626,14090241,16646145,55574530],"certain":[8126465,12845057,13172737,13434881,13893633,13959169,14024705,14680065,14876673,15073281,15728641,15859713,16449537,17235969,17629185,18087937,18415617,19333121,19595265,20447233,21168129,22413313,23265281,23986177,24051713,24838145,25559041,26345473,27262977],"cache":[1507329,1703937,4194316,4653059,5701635,6094860,11927553,22020100,22740996,22806532,23592964,23789572,24772612,24903684,24969220,25362436,25755652,25952260,26542084,26607620,26673156,26738692,27328516,27394052,27787268,28246020,28966916,29491204,30081028,30801924,31850500,33685510,34144262,34340865,34406406,35520513,37683206,41746433,45219842,50790402,51576834,52494338,54001665,54263820,54722566,55705602,57016332],"cachebytes":[22020102,22740998,22806533,23592965,23789574,24772613,24903685,24969222,25362438,25755654,25952261,26542086,26607621,26673157,26738694,27328518,27394053,27787269,28246021,28966918,29491206,30081029,30801925,31850502],"check":[15532033,17498113,18153473,29949953,32505857,33882113,41287681],"childnodes":[42795012,43581441,55771137],"contents":[2228227,2293763,2555908,2752515,2949123,5439494,6029318,7536646,14548994,14745602,15400962,15597570,15794178,16318466,19398658,25296902,33095682,33619970,42467330,42926081,49479686,49741829,52822019,53018625,54067202,54132740,54853633,57409539,57606147,57802755],"copyright":[65537,131073,196609,262145,327681,393217,458753,524289,655361,720897,786433,851969,917505,983041,1048577,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6619137,6553601,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22872065,22806529,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34996225,34930689,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38273025,38207489,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40632321,40566785,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42598401,42532865,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49479681,49414145,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52887553,52822017,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57933825,57868289,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113],"clr":[6881282,12058628],"controls":[38141954,38207490,40042498,40370177,40501250,42532866,42729473,44236802,44761089,46465025,47185922,48824322,50331650,54263810,56492034,56950786,57344002,57475074,57868290,58261506,58392578,58458114]} \ No newline at end of file +{"cachedocument":[1441794,1507329,4521989,5570565,47644673,49020930],"cnn":[10354689],"constructor":[4456449,4915201,5046273,5111809,5177345,5242881,5308417,5767169,5832705,6160385,7405569,8126466,9830401,9895937,10289153,10485761,10747905,11337729,12058625,12648449,13828097,14090242,15925249,16187393,16384001,16449537,16711681,17104897,17367041,17629185,17694721,18087937,18808833,18939905,19202049,19398657,19660802,20054017,20119553,20578305,20709377,20774913,21299201,21495809,21561345,22085633,22216705,22282241,22609921,22937601,23396353,23461889,23592961,24051713,24510465,24641537,24838145,24969217,25034753,25755649,25821185,26214401,26279937,26345473,26542081,26738689,27000833,27066369,27852801,27983873,28442625,28508161,28639233,28966913,29229057,29294593,29360129,29491201,29753345,29818881,29949953,30015489,30343169,30474241,30867457,30932993,31522817,31850497,32505857,33226753,33292289,33685505,50659329,51511297,52035585,52101121,52428801,52953089,53149697,53215233,53608449,53805057,53870593,54657025,54722561,54853633,55181313,55377921,55640065,56098817,56623105,56950785,57081857,57278465,57344004,57409537,57671681,59113476],"comprise":[51445761,51904513,55771137,56885249],"change":[23789569,24707073,26148865,27197441,38207489,41287681,45350913,46268417,46858241,47579137],"containskey":[2162689,2686977,3080193,17235974,49545217,52363265,57933825],"childnodes":[35258369,44433412,53477377],"cpu":[720897,4849668,6684676,24248323,24903683,25493507,25559042,25690115,26411011,28114946,28573699,35782657,36569089,46596097,47054851,48365571,51707905,51970053,52166657,53477377,54460417,54919171,55312385,56885253,57540611,58458117],"contextual":[17104897,22085633],"comparer":[15925249,16711688,17367048,20578305,33226754,33882114,34209794,41549830,49545218,57933828],"certain":[9830401,12582913,12910593,13434881,13500417,14286849,14548993,15007745,15073281,15204353,16121857,16384001,16842753,17170433,17891329,18874369,19070977,19857409,20316161,20971521,21102593,21889025,22020097,22740993,22806529,23724033,24051713,24576001,52690945],"clearscrip":[40173569,51445761,51904513,55771137,56885249],"clr":[6619140,7471106],"consuming":[4849670,6684678,23920641,24313857,25165825,25624577,26476545,27131905,27918337,28049409,28704769,29425665,31129601,31653889,51970054,55574531,56426499,57802755,58064899,58458118],"character":[34537473,34734081,38666242,43778049,48955393,49741825],"copies":[2228226,2293762,2359298,2686977,2818050,3211268,14811137,14876673,15663105,16318465,18612225,19464193,49152002,49676292,50200578,52363265,52756482,58130434],"compatibility":[7798786,41746433,45350913,46268417,46858241,47579137],"compiles":[4849673,6684681,21692417,22413313,22872065,23134209,24313857,24772609,25100289,25362433,25886721,26476545,27131905,27459585,28180481,28704769,29425665,30539777,31653889,32702465,51970057,56426505,58064905,58458121],"category":[1245185,1572866,3145732,4259844,4849670,5373959,5505033,5636103,5701633,6029316,6225929,6291460,6356996,6422532,6488070,6684682,8781828,9306116,13434888,13500424,14286856,14549000,20971529,21102601,21889033,22020105,22413320,23134216,24313864,25100296,25362440,25886728,26476552,27131912,27459592,28180488,29425672,30539784,31326210,32440322,32964610,33357826,34996227,35586050,36110339,36241414,36503554,40239106,40828930,48824322,49479681,50135044,51773442,51970054,52232195,54001666,54263811,54329348,55771137,56164356,56426502,57737220,57999364,58064902,58458122,58523652,58589188,58982404,59179012],"code":[1310721,1376257,1835009,1900550,1966081,2424833,2490376,2621441,2883585,2949121,3014657,3145766,3276801,3604481,4063233,4128769,4259878,6029350,6291494,6357030,6422566,6619137,6684710,6815745,7208962,7274499,7471105,7536641,7667713,7733250,7798785,7864321,7929859,7995393,8126465,8192001,8257537,8388609,8454147,8585217,8650753,8781862,8978433,9043969,9240577,9306150,9371651,9502721,9764865,9961473,10092545,10223617,10354691,10551297,10682369,10878977,11075585,11141121,11272193,11403266,11468801,11534337,11599873,11665409,11730945,11927553,11993089,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582914,12713986,12779521,12845058,12910593,12976130,13041665,13107201,13369345,13434882,13500417,13565954,13631490,13697026,13959169,14090244,14155777,14286850,14483458,14548993,14680065,14745602,15007753,15073290,15204361,15335426,15532034,15597570,15728641,15794177,16056321,16121866,16384014,16515073,16580609,16646145,16777217,16842762,17039361,17170443,17432577,17498113,17563649,17760257,17891336,18153473,18284545,18415617,18481154,18546689,18677761,18743297,18874377,19005441,19070986,19136513,19267585,19333121,19529730,19595265,19660804,19791873,19857410,20316161,20381698,20447233,20512769,20840449,20971522,21102593,21168130,21233666,21364737,21561345,21757953,21889026,21954566,22020097,22151170,22216705,22347777,22478850,22675457,22741003,22806538,22937601,23068673,23265282,23330818,23461889,23658502,23724043,23920647,24051727,24182790,24313857,24444930,24576011,25165831,25427970,25624583,25952257,26083334,26476545,26607622,26673158,26869761,27131905,27262982,27918343,28049415,28246017,28311553,28704769,28835846,29163526,29425665,29622278,29884422,30801922,31064068,31129607,31195144,31260680,31457288,31653889,31916034,32112648,32178184,32243720,32309254,32374792,32571396,32636932,32768001,32833538,33030146,33161220,33423364,33816580,34275332,34603009,34930689,35127300,35323905,35454978,35651585,35717121,35782657,36569092,36765701,36896773,37355521,37486595,37617669,38010881,38207489,38273027,38338565,38928385,38993921,39124995,39321605,39518209,40697857,41025541,41287681,41484289,41680897,42008577,42205185,42467329,42729473,42926081,43188225,43319297,43450371,43843587,44826627,45416451,46858245,47710209,48103426,48431110,48627713,49348609,49545217,49807361,50003969,50266114,50397185,50462722,50593800,50659331,50724868,50790403,50855937,50987009,51773441,51970049,52363265,52559874,52690956,53018626,53411841,53936129,54198273,54329387,54460417,55443458,55771145,55967748,56033282,56164394,56229889,56492033,57016322,57344002,57737259,57868289,57999403,58195971,58458155,58523690,58589228,58720257,58785793,58851331,58916865,58982444,59047937,59113474,59179052],"core":[196610,327681,458754,851970,917506,983042,1048580,3801089,4325377,4456450,4521986,4587522,4653058,4915202,4980738,5046274,5111810,5177346,5242882,5308418,5373954,5439490,5505026,5570562,5636098,5701634,5767170,5832706,5898242,5963778,6029313,6094850,6160386,6225922,6291457,6488066,6553602,6619140,6750210,6815746,6881282,6946818,7012354,7208962,7274498,7340034,7405570,7471108,7536642,7602178,7667715,7733250,7798786,7864323,7929858,7995394,8060930,8126466,8192002,8257539,8323074,8388610,8454146,8519682,8585218,8650754,8716290,8781825,8847362,8912898,8978434,9043970,9109506,9175042,9240578,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895938,9961474,10027010,10092546,10158082,10223618,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747906,10813442,10878978,10944514,11010050,11075586,11141122,11206658,11272194,11337730,11403266,11468802,11534338,11599874,11665410,11730946,11796482,11862018,11927554,11993090,12058626,12124162,12189698,12255234,12320770,12386306,12451842,12517378,12582914,12648450,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13172738,13238274,13303810,13369346,13434882,13500418,13565954,13631490,13697026,13762562,13828098,13893634,13959170,14024706,14090242,14155778,14221314,14286850,14352386,14417922,14483458,14548994,14614530,14680066,14745602,14811138,14876674,14942210,15007746,15073282,15138818,15204354,15269890,15335426,15400962,15466498,15532034,15597570,15663106,15728642,15794178,15859714,15925250,15990786,16056322,16121858,16187394,16252930,16318466,16384002,16449538,16515074,16580610,16646146,16711682,16777218,16842754,16908290,16973826,17039362,17104898,17170434,17235970,17301506,17367042,17432578,17498114,17563650,17629186,17694722,17760258,17825794,17891330,17956866,18022402,18087938,18153474,18219010,18284546,18350082,18415618,18481154,18546690,18612226,18677762,18743298,18808834,18874370,18939906,19005442,19070978,19136514,19202050,19267586,19333122,19398658,19464194,19529730,19595266,19660802,19726338,19791874,19857410,19922946,19988482,20054018,20119554,20185090,20250626,20316162,20381698,20447234,20512770,20578306,20643842,20709378,20774914,20840450,20905986,20971522,21037058,21102594,21168130,21233666,21299202,21364738,21495810,21561346,21626882,21757954,21823490,21889026,22020098,22085634,22151170,22216706,22282242,22347778,22478850,22609922,22675458,22740994,22806530,22937602,23003138,23068674,23265282,23330818,23396354,23461890,23527426,23724034,23855106,24051714,24117250,24379394,24444930,24576002,25427970,27328514,27394052,27721732,27787266,28311556,28377092,28442628,28966916,29097988,29229060,29360132,29491204,29949956,31784962,36110338,36175874,36241410,36306946,36372482,36503554,36634626,36831234,36765697,36896769,36962306,37027842,37093378,37158914,37224450,37289986,37355522,37421058,37486594,37552130,37683202,37748738,37814274,37879810,37945346,38010882,38076418,38141954,38207490,38273026,38338561,38404098,38469634,38535170,38600706,38666242,38731778,38797314,38862850,38928386,38993922,39059458,39124994,39190530,39256066,39387138,39452674,39518210,39583746,39649282,39714818,39780354,39845890,39911426,39976962,40042498,40108034,40173570,40239106,40304642,40370178,40435714,40501250,40566786,40632322,40697858,40763394,40828930,40894466,40960002,41091074,41156610,41222146,41287682,41353218,41418754,41484290,41549826,41615362,41680898,41746434,41811970,41877506,41943042,42008578,42074114,42139650,42205186,42270722,42336258,42401794,42467330,42532866,42598402,42663938,42729474,42795010,42860546,42926082,43057154,43122690,43188226,43319298,43384834,43450370,43581442,43646978,43712514,43778050,43843586,43974658,44040194,44105730,44236802,44302338,44367874,44564482,44630018,44695554,44761090,44826626,44892162,45088770,45678594,46399490,46530562,46727172,47120386,47448068,47644674,47972354,48103426,48168962,48234500,48431106,48562178,48627716,48824322,48955394,49020930,49086468,49152002,49217538,49479682,49545218,49610756,49676290,49741826,49872898,50003970,50135042,50200578,50266114,50331650,50397186,50462722,50528258,50593794,50659330,50855938,50921474,50987010,51052546,51118082,51183618,51314692,51642370,51773442,51838978,51904514,52035588,52297730,52363266,52494338,52559874,52625410,52690946,52756482,52953092,53018626,53084162,53346306,53542914,53673988,53805060,53936130,54263810,54329350,54394884,54591492,54788100,54984708,55115780,55508996,55705601,55836676,56033282,56098817,56164354,56229892,56492036,56557569,56623108,56819716,56950785,57016322,57081860,57147393,57344002,57475075,57606146,57737224,57868290,57933826,57999366,58130434,58195970,58327042,58392581,58523651,58589185,58654722,58720258,58785794,58851330,58916866,58982401,59047938,59113474,59179009],"causes":[3145729,4259841,6029313,6291457,6356993,6422529,6684673,8781825,9306113,18022401,19922945,28901377,34930689,47710209,47775745,47906817,48496641,49348609,49414145,54329345,56164353,56819713,57737217,57999361,58458113,58523649,58589185,58720257,58982401,59179009],"consoles":[19595265,26869761,28311553,32768001,50855937,54198273,56229889],"control":[45547521,49807364,50069505],"connect":[1769473,2097153,6750213,7340037,49217537,49872897],"compare":[50266113],"collecting":[4849666,6684674,24248321,24903681,25690113,26411009,51970050,54919170,57540610,58458114],"comtype":[3604481,6815749,11665409,11730945,12386305,12451841,12779521,13369345,13959169,14155777,17498113,18284545,18415617,19267585,20512769,21364737,22347777,23068673,31260673,32112641,52559873],"comobject":[10682369,11468801,11534337,12189697,12255233,12320769,13041665,13107201,16580609,17039361,18153473,19005441,19791873,20840449,21757953,22675457,31195137,32178177],"continuationcallback":[34275329,35127297,36569089,36765697,36896769,37617665,38338561,39059467,39321601,41025537,45678606,47120389,54329345,55771137,56164353,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"console":[8192001,10223618,10354689,11272193,19595265,26869761,28311553,32768001,50855937,54198273,56229889],"casts":[3014659,3604483,8650753,9502722,9633793,50462723,52559875],"callback":[1572865,3145730,4259842,4849667,5373953,5636097,6029314,6225923,6291458,6356994,6422530,6488065,6684677,7667714,8257537,8781826,9306114,10223617,14286851,14548995,21889027,22020099,23134211,24313859,25362435,25886723,27131907,28180483,31326209,32440321,32964609,33357825,34275329,35127297,35586049,36438017,36569089,36831235,36765697,36896769,36962307,37617665,38141953,38338561,38469633,39059460,39321601,41025537,45678596,46530562,47120385,48824322,50528257,51773441,51970051,52494338,54001665,54329347,56164355,56426499,57737219,57999363,58064899,58458118,58523651,58589187,58982403,59179011],"cachebytes":[22872069,23658501,23920646,24313862,25165830,25362437,25624582,26083333,26476550,26607621,27131910,27459589,27918342,28049414,28180485,28704774,28835845,29163525,29425670,30539781,31129606,31653894,32309253,32702469],"cancels":[6684673,27590657,58458113],"convert":[2424833,4128769,7208961,7274497,7733249,7929857,8454145,9240577,9371649,9764865,9961473,10092545,10551297,10878977,11075585,11141121,11599873,11927553,11993089,12517377,15728641,15794177,16056321,16646145,16777217,16973825,17432577,17760257,18677761,26869761,28311553,32768001,38535169,43384833,50397185,54198273,56229889,59047937],"connected":[50921473],"cached":[1441794,1507330,4521986,4587523,4980738,5570562,5963778,6553603,36110337,36175873,37027841,47644674,49020930],"consolet":[8192002,10223618,10354692,11272194],"class":[65537,131074,196609,262146,327682,393217,458754,524290,851969,917506,983042,1048578,1114113,1179649,1245185,1310724,1441793,1507329,1572865,1638401,1703937,1769473,1900545,1966084,2097153,2162689,2424842,2490369,2555905,2621444,2883588,2949124,3014657,3080193,3145752,3276804,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3866625,3932161,3997697,4128778,4259865,4325377,4390913,4456449,4521985,4587521,4653057,4718594,4849665,4915201,4980737,5046273,5177345,5242881,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029337,6094849,6160385,6225921,6291481,6357017,6422553,6488065,6553601,6619137,6684697,6750209,6815748,6881281,6946817,7012356,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126466,8192003,8257537,8323073,8388609,8454145,8519681,8585217,8650756,8716289,8781849,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306137,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682372,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11468804,11534339,11599873,11665412,11730947,11796481,11862017,11927553,11993089,12058625,12124161,12189700,12255235,12320771,12386307,12451844,12517377,12648449,12779523,12845057,13041667,13107204,13369348,13565953,13959172,14155779,14942209,15728641,15794177,15859713,15925249,15990785,16056321,16187393,16449537,16515073,16580612,16646145,16711681,16777217,16973825,17039365,17104897,17235969,17301505,17367041,17432577,17498117,17629185,17694721,17760257,17956865,18087937,18153477,18219009,18284548,18350081,18415621,18481153,18546689,18677761,18743297,18808833,18874369,18939905,19005444,19070977,19136513,19202049,19267588,19333121,19398657,19529729,19595265,19726337,19660801,19791876,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512772,20578305,20643841,20709377,20774913,20840453,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364741,21430273,21495809,21561345,21626881,21692417,21757957,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347781,22413313,22478850,22544385,22609921,22675460,22740993,22806529,22872065,22937601,23003137,23068676,23134209,23199745,23265282,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24510465,24444929,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27459585,27525121,27590657,27656193,27787266,27852801,27918337,27983873,28114945,28049409,28180481,28246017,28311553,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29163521,29229057,29294593,29360129,29425665,29491203,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30867459,30932993,30998529,31129601,31195148,31260684,31522819,31653889,31784961,31850497,31981569,32112653,32178189,32243713,32309249,32374785,32440321,32505859,32636929,32702465,32768001,32833537,32964609,33030145,33161217,33226753,33292289,33423361,33488897,33554434,33619969,33685505,33816577,33882113,33947650,34078721,34144258,34209793,34537473,34603010,34668546,34734081,34799617,34865153,34930689,34996225,35127297,35192833,35258369,35323905,35389441,35520513,35717121,35782657,35913729,36044801,36110337,36175873,36306945,36438017,36503553,36569089,36634625,36831233,36765697,36896769,37027841,37158913,37421057,37617665,37748737,37879809,38141953,38338561,38469633,38666241,38797313,39321601,39387137,39845889,40173569,40239105,40435713,40501249,40697857,40763393,40828929,40960001,41025537,41156609,41287681,41353217,41418753,41549825,41746433,41811969,41877505,42008577,42074113,42139649,42205185,42270721,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236802,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644677,47710209,47775745,47841281,47906817,48037889,48103437,48168965,48234498,48300033,48365569,48431109,48496641,48562181,48627713,48693249,48758786,48824326,48889857,48955397,49020933,49086465,49152001,49217541,49283073,49348609,49414145,49479681,49545221,49610753,49676289,49741829,49807361,49872901,49938433,50069505,50135045,50200577,50266121,50331655,50397198,50462725,50593797,50659329,50724865,50790402,50921473,50987009,51052545,51118085,51183617,51314689,51445765,51511297,51576833,51642369,51707909,51773441,51838981,51904517,51970053,52035587,52101121,52166657,52232193,52297729,52363265,52428801,52559877,52690945,52756481,52822018,52887553,52953089,53018625,53084167,53149697,53215233,53280769,53411845,53477381,53542913,53673985,53739521,53805059,53870593,53936135,54001665,54067201,54132737,54263813,54198273,54329374,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246853,55312389,55377921,55443457,55508993,55574529,55640065,55771137,55836673,55902209,55967745,56033293,56098817,56164377,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754181,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344013,57409537,57475073,57540609,57606145,57671681,57737246,57802753,57868289,57933829,57999390,58064897,58130433,58195969,58261505,58327041,58392583,58458142,58523677,58589213,58654727,58720262,58785797,58851337,58916865,58982429,59047950,59113485,59179037],"contained":[34406401,52363265],"contain":[6619137,7471105,10289153,10485761,11337729,12058625,14024705,33095681,45023233,52297729],"contextcallback":[5373958,5636102,6225925,6488069,14286853,14548997,21889030,22020102,23134213,24313861,25362437,25886725,27131909,28180485,35586049,36438017,36831237,36962308,48824321,51773441],"coded":[34930689,58720257],"caused":[16187393,23396353,34930691,35454979,35717122,38076417,38600705,39452673,42139649,42795009,44105729,44761089,57016323,58720259,58785794],"configuratio":[5439489,5505025,5701633,6225921],"callable":[6946817,7864321,7995393,8126465,8323073,9043969,9830401,10682369,11468801,11534337,11665409,11730945,12189697,12255233,12320769,12386305,12451841,12713985,12779521,12845057,12976129,13041665,13107201,13369345,13565953,13631489,13697025,13959169,14090241,14155777,14483457,14680065,14745601,15335425,15532033,15597569,16580609,17039361,17498113,18153473,18284545,18415617,18481153,19005441,19267585,19529729,19660801,19791873,20381697,20447233,20512769,20840449,21168129,21233665,21364737,21757953,22151169,22347777,22478849,22675457,23068673,23265281,23330817,24444929,25427969,50462721,52559873,55771138],"caching":[50724867,56885249],"copied":[14811138,14876674,15663106,16318466,18612226,19464194],"constraints":[3538945,23592961,24838152,24969224,25821192,26542088,26738696,27000840,27066376,27852808,27983880,35323905,45023233,45350913,45940737,46268417,46858241,47579137,47775745,49414145,51970054,52101128,53411842,53870600,54853640,55377926,56885249,57278470,58458118],"components":[8388611],"compiled":[3670017,4849673,6684683,21692418,21954562,22413314,22872066,23134210,23658498,23920642,24182786,24313858,24772610,25100290,25165826,25362434,25624578,25886722,25952258,26017794,26083330,26476546,26607618,26673155,26804229,27131906,27262978,27459586,27918339,28049410,28180482,28704770,28835843,29163522,29425666,29622274,29884419,30539778,31129603,31653890,32309251,32702466,33423361,33816577,35192834,36110337,48889857,49283073,51970057,55574537,56754180,56885249,57802761,58458123],"cache":[1441793,1507329,4521987,4849676,5570563,6684684,11403265,22872068,23658500,23920644,24313860,25165828,25362436,25624580,26083332,26476548,26607620,27131908,27459588,27918340,28049412,28180484,28704772,28835844,29163524,29425668,30539780,31129604,31653892,32309252,32702468,33619969,34996225,36044801,36110338,36175874,37027842,47644674,49020930,50135041,50724870,51970060,55574534,56426502,57802758,58064902,58458124],"cachekind":[22872069,23658501,23920645,24313861,25165829,25362437,25624581,26083333,26476549,26607621,27131909,27459589,27918341,28049413,28180485,28704773,28835845,29163525,29425669,30539781,31129605,31653893,32309253,32702469],"compliance":[50659329],"cleared":[196609,34078721,49545217,51576833,57933825],"convenient":[6619137,7471105,16384001,24051713,49545217],"close":[45023233],"conversion":[2424833,4128769,50397185,50790406,59047937],"caution":[50790401,58392577],"correspond":[39190529,43712513,47185921,49086465],"collects":[4849665,6684673,25559041,28114945,51970049,58458113],"catch":[10354690,47710209,49348609],"cancel":[26935297,27590657],"callbackt":[7667714],"converts":[1900550,2490377,3014668,3604492,7208961,7274497,7733249,7929857,8454145,9240578,9371649,9764866,9961474,10092546,10551298,10878978,11075586,11141122,11599874,11927554,11993090,12517378,15728641,15794177,16056321,16646145,16777217,16973825,17432577,17760257,18677761,32374792,48431110,50462732,50593801,52559884,55443458,55967748],"common":[40239105,49152001,52756481,55771137,56295426,57016321],"collection":[196609,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1966081,2097153,2162698,2424833,2621441,2686977,2883585,2949121,3014657,3080193,3145729,3276801,3342337,3407873,3473409,3538945,3604482,3670017,3735553,3866625,3932161,3997697,4063233,4128769,4259842,4325377,4390913,4718593,4849666,6029314,6291458,6356994,6422530,6619148,6684674,7012363,7077889,7471106,8781826,9306114,9699330,9895938,10158082,10289155,10420226,10485763,10813442,11010050,11206658,11337731,11796482,11862018,12058627,14221314,18743298,21430274,23855106,28770306,30670853,30736388,30932998,33882115,34078722,34209794,34799617,34930689,35258370,40501249,41353217,44171265,44433409,47316993,47644673,48168961,48103425,48562177,48824321,48955393,49020929,49217537,49545237,49741825,49872897,49938433,50135041,50266113,50331649,50397185,50462721,50528257,51118081,51576833,51707906,51773441,51970050,52166657,52363267,52559874,53084161,53411841,53477379,53936129,54329346,54460417,54525953,55115778,55246849,55312385,55771138,56033281,56164353,56754177,57344001,57737218,57933828,57999362,58392577,58458114,58523650,58589186,58654721,58720258,58851329,58982402,59047937,59113473,59179010],"catchfunc":[10354696],"configuration":[1572868,5439490,5505026,5701634,6225922,48824325,51445761,51904513,54001668,55771138,56885249],"collections":[6619138,7471106,8978433,9043970,9240577,9764865,9961473,10092545,10551297,10878977,11075585,11141121,11599873,11927553,11993089,12517377,14090241,19660801,49545218],"creates":[1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1966081,2097153,2162689,2228225,2293761,2359297,2424833,2621441,2818049,2883585,2949121,3014668,3080193,3145736,3211266,3276801,3342337,3407873,3473409,3538945,3604491,3670017,3735553,3866625,3932161,3997697,4063233,4128769,4259849,4325377,4390913,4718593,4849680,6029321,6291465,6357001,6422537,6684690,7077889,7143425,7536642,7667713,7995394,8126466,8192002,8257538,8323073,8388609,8585219,8781833,8978433,9306121,9830401,10223618,10682369,11468801,11534337,12189697,12255233,12320769,13041665,13107201,14614529,15466497,16252929,16580609,17039361,18153473,19005441,19791873,20840449,21757953,21954561,22675457,23658497,23789569,23920641,24182785,24707073,25165825,25231361,25624577,26083329,26148865,26607617,26673153,27197441,27262977,27787265,27918337,28049409,28835841,29163521,29556737,29622273,29884417,30212098,30408707,31129601,31195144,32178184,32309249,47644673,48168961,48103425,48562177,48824321,48955393,49020929,49152001,49217537,49545217,49676290,49741825,49872897,50135041,50200577,50266113,50331649,50397185,50462732,51118081,51707905,51773441,51838977,51970064,52559883,52756481,53084161,53411841,53477377,53936129,54329353,54460417,55246849,55312385,55574537,56033281,56164360,56360962,56688646,56754177,57344001,57737225,57802761,57933825,57999369,58130433,58392577,58458130,58523657,58589193,58654721,58720257,58851329,58982409,59047937,59113473,59179017],"converting":[19595265,26869761,28311553,32768001,50855937,54198273,56229889],"checkaccess":[3801089,4325377,6029313,6291457,6356993,6422529,8781825,9306113,27721732,53673990,54329345,54591492,54788097,57737217,57999361,58392577,58589185,58982401,59179009],"constructed":[50790402],"created":[23789569,24248321,24707073,24903681,25231361,25493505,25690113,26148865,26214401,26279937,26411009,26738689,27066369,27197441,27983873,28573697,28639233,29294593,29556737,51511297,52101121,53149697,53870593,54853633],"changed":[196609],"call":[720897,3145729,4259841,6029313,6291457,6356993,6422529,6684673,7208962,7274498,7667713,7733250,7929858,8454146,8781825,9306113,9371650,14090242,14942210,15728642,15794178,16056322,16646146,16777218,16973826,17301506,17432578,17563650,17760258,18677762,18743298,19333122,19660802,26804225,28246018,34799617,34865153,34930689,39911426,40960002,41680897,43188225,43319298,44957697,45481985,45547521,46596097,50069505,51707905,53477377,53936129,54329345,55312385,56033282,56164353,56492034,56885249,57344002,57737217,57999361,58195970,58458113,58523649,58589185,58720257,58982401,59179009],"closest":[41484289,42926081],"corporation":[65537,131073,196609,262145,327681,393217,458753,524289,589825,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3276801,3211265,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10747905,10682369,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12648449,12582913,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14155777,14090241,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19726337,19660801,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24510465,24444929,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28114945,28049409,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36831233,36765697,36896769,36962305,37027841,37093377,37158913,37224449,37355521,37289985,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39256065,39190529,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48168961,48103425,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52101121,52035585,52166657,52232193,52297729,52363265,52428801,52494337,52625409,52690945,52559873,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53870593,53805057,54001665,53936129,54067201,54132737,54263809,54198273,54394881,54329345,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56360961,56295425,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56950785,56885249,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58261505,58195969,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009],"considered":[49479681],"controls":[34275330,35127298,36569090,36765698,36896770,37617666,38273025,38338562,38928385,39321602,41025538,42008577,44826625,54329346,56164354,57737218,57999362,58458114,58523650,58589186,58982402,59179010],"comparison":[38862850,43646978,50266113,58916866],"char":[3014657,3604481,11075591,14614529,14811137,15663105,16252929,18612225,19464193,22872065,23658497,23920641,24313857,25165825,25362433,25624577,26083329,26476545,26607617,27131905,27459585,27918337,28049409,28180481,28704769,28835841,29163521,29425665,30539777,31129601,31653889,32309249,32702465,49676289,50462721,52559873],"conversions":[16384001,24051713],"child":[35258369,44433411,53477377],"copyto":[2686977,52363265],"context":[1572865,3145730,4259842,4849667,5373953,5636097,6029314,6225923,6291458,6356994,6422530,6488065,6684677,8781826,9306114,14286851,14548995,17104902,18219014,20250630,21889027,22020099,22085638,23134211,24313859,25362435,25886723,27131907,28180483,31326209,32440321,32964609,33357825,35586049,36438017,36831236,36962308,37486593,43843585,48824322,50528259,51773441,51970051,54001665,54329346,55771137,56164354,56426499,57737218,57999362,58064899,58458117,58523650,58589186,58982402,59179010],"customattributeloader":[1179650,4653057,5046277,33488897,40763403,48168968,51904513,55771137],"create":[65537,6619137,6815745,7143425,7471105,7536641,7667715,7864321,7995393,8126465,8192001,8257539,8388610,8978434,9043970,9240577,9764865,9830401,9961473,10092545,10223618,10354689,10551297,10682369,10878977,11075585,11141121,11468801,11599873,11927553,11993089,12320769,12517377,13041665,16384001,16580609,18153473,19791873,21757953,23789569,24051713,24707073,25231361,26148865,27197441,27787269,29556737,51838977,56688641,58720257],"clearscript":[65538,131074,196613,262146,327682,393218,458757,524290,589826,655361,720901,786437,851973,917509,983045,1048581,1114114,1179650,1245186,1310722,1376258,1441794,1507330,1572866,1638402,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407874,3473410,3538946,3604482,3670018,3735554,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4259842,4325378,4390914,4456453,4521989,4587525,4653062,4718594,4784130,4849666,4915205,4980741,5046277,5111813,5177349,5242885,5308421,5373957,5439493,5505029,5570565,5636101,5701637,5767173,5832709,5898245,5963781,6029314,6094853,6160389,6225925,6291458,6356994,6422530,6488069,6553605,6619141,6684674,6750213,6815749,6881285,6946821,7012357,7077890,7143426,7208965,7274501,7340037,7405573,7471109,7536645,7602181,7667717,7733253,7798789,7864325,7929861,7995397,8060933,8126469,8192005,8257541,8323077,8388613,8454149,8519685,8585221,8650757,8716293,8781826,8847365,8912901,8978437,9043973,9109509,9175045,9240581,9306114,9371653,9437189,9502725,9568261,9633797,9699333,9764869,9830405,9895941,9961477,10027013,10092549,10158085,10223621,10289157,10354693,10420229,10485765,10551301,10616837,10682373,10747909,10813445,10878981,10944517,11010053,11075589,11141125,11206661,11272197,11337733,11403269,11468805,11534341,11599877,11665413,11730949,11796485,11862021,11927557,11993093,12058629,12124165,12189701,12255237,12320773,12386309,12451845,12517381,12582917,12648453,12713989,12779525,12845061,12910597,12976133,13041669,13107205,13172741,13238277,13303813,13369349,13434885,13500421,13565957,13631493,13697029,13762565,13828101,13893637,13959173,14024709,14090246,14155781,14221317,14286853,14352389,14417925,14483461,14548997,14614533,14680069,14745605,14811141,14876677,14942213,15007749,15073285,15138821,15204357,15269893,15335429,15400965,15466501,15532037,15597573,15663109,15728645,15794181,15859717,15925253,15990789,16056325,16121861,16187397,16252933,16318469,16384007,16449541,16515077,16580613,16646149,16711685,16777221,16842757,16908293,16973829,17039365,17104901,17170437,17235973,17301509,17367045,17432581,17498117,17563653,17629189,17694725,17760261,17825797,17891333,17956869,18022405,18087941,18153477,18219013,18284549,18350085,18415621,18481157,18546693,18612229,18677765,18743301,18808837,18874373,18939909,19005445,19070981,19136517,19202053,19267589,19333125,19398661,19464197,19529733,19595269,19660806,19726341,19791877,19857413,19922949,19988485,20054021,20119557,20185093,20250629,20316165,20381701,20447237,20512773,20578309,20643845,20709381,20774917,20840453,20905989,20971525,21037061,21102597,21168133,21233669,21299205,21364741,21430277,21495813,21561349,21626885,21692421,21757957,21823493,21889029,21954565,22020101,22085637,22151173,22216709,22282245,22347781,22413317,22478853,22544389,22609925,22675461,22740997,22806533,22872069,22937605,23003141,23068677,23134213,23199749,23265285,23330821,23396357,23461893,23527429,23592965,23658501,23724037,23789573,23855109,23920645,23986181,24051719,24117253,24182789,24248325,24313861,24379397,24444933,24510469,24576005,24641541,24707077,24772613,24838149,24903685,24969221,25034757,25100293,25165829,25231365,25296901,25362437,25427973,25493509,25559045,25624581,25690117,25755653,25821189,25886725,25952261,26017797,26083333,26148869,26214405,26279941,26345477,26411013,26476549,26542085,26607621,26673157,26738693,26804229,26869765,26935301,27000837,27066373,27131909,27197445,27262981,27328517,27394053,27459589,27525125,27590661,27656197,27721733,27787269,27852805,27918341,27983877,28049413,28114949,28180485,28246021,28311557,28377093,28442629,28508165,28573701,28639237,28704773,28770309,28835845,28901381,28966917,29032453,29097989,29163525,29229061,29294597,29360133,29425669,29491205,29556741,29622277,29687813,29753349,29818885,29884421,29949957,30015493,30081026,30146562,30212098,30277634,30343173,30408706,30474245,30539781,30605314,30670850,30736386,30801922,30867461,30932994,30998530,31064066,31129605,31195138,31260674,31326210,31391746,31457282,31522821,31588354,31653893,31719426,31784965,31850498,31916034,31981570,32047106,32112642,32178178,32243714,32309253,32374786,32440322,32505861,32571394,32636930,32702469,32768005,32833538,32899074,32964610,33030146,33095681,33161218,33226754,33292290,33357826,33423362,33488899,33554434,33619970,33685506,33751042,33816578,33882114,33947650,34013186,34078722,34144258,34209794,34275330,34340866,34406402,34471938,34537474,34603010,34668546,34734082,34799618,34865154,34930690,34996226,35061762,35127298,35192834,35258370,35323906,35389442,35454978,35520514,35586050,35651586,35717122,35782658,35848194,35913730,35979266,36044802,36110341,36175877,36241413,36306949,36372485,36438018,36503557,36569090,36634629,36700162,36765698,36831237,36896770,36962309,37027845,37093381,37158917,37224453,37355525,37289989,37421061,37486597,37552133,37617666,37683205,37748741,37814277,37879813,37945349,38010885,38076421,38141957,38207495,38273029,38338562,38404101,38469637,38535173,38600709,38666245,38731781,38797317,38862853,38928389,38993925,39059461,39124997,39190533,39256069,39321602,39387141,39452677,39518213,39583749,39649287,39714821,39780357,39845893,39911429,39976965,40042501,40108037,40173573,40239109,40304645,40370181,40435717,40501253,40566789,40632325,40697861,40763398,40828933,40894469,40960005,41025538,41091077,41156613,41222149,41287687,41353221,41418757,41484293,41549829,41615365,41680901,41746438,41811973,41877509,41943045,42008581,42074117,42139653,42205189,42270725,42336261,42401797,42467333,42532869,42598405,42663941,42729477,42795013,42860549,42926085,42991621,43057157,43122693,43188229,43253765,43319301,43384837,43450373,43515909,43581445,43646981,43712517,43778053,43843589,43909125,43974661,44040197,44105733,44171269,44236805,44302341,44367877,44433413,44498949,44564485,44630021,44695559,44761093,44826629,44892165,44957701,45023237,45088773,45154309,45219845,45285381,45350918,45416453,45481989,45547525,45613061,45678597,45744133,45809669,45875205,45940741,46006277,46071813,46137349,46202885,46268422,46333957,46399493,46465029,46530565,46596101,46661637,46727173,46792709,46858246,46923781,46989317,47054853,47120389,47185925,47251461,47316997,47382533,47448069,47513605,47579142,47644679,47710213,47775749,47841285,47906821,47972365,48037893,48103431,48168966,48234501,48300037,48365573,48431110,48496645,48562183,48627717,48693253,48758789,48824326,48889861,48955399,49020935,49086469,49152005,49217543,49283077,49348613,49414149,49479685,49545223,49610757,49676293,49741831,49807365,49872903,49938437,50003973,50069509,50135046,50200581,50266119,50331655,50397190,50462727,50528261,50593798,50659334,50724869,50790406,50855941,50921477,50987013,51052549,51118087,51183621,51249154,51314693,51380225,51445766,51511301,51576834,51642373,51707910,51773446,51838982,51904519,51970054,52035589,52101125,52166661,52232194,52297733,52363269,52428802,52494341,52559879,52625413,52690949,52756485,52822018,52887554,52953093,53018629,53084166,53149701,53215234,53280770,53346309,53411846,53477382,53542917,53608450,53673989,53739522,53805061,53870597,53936135,54001666,54067205,54132738,54198277,54263814,54329352,54394885,54460422,54525954,54591493,54657026,54722565,54788101,54853637,54919170,54984709,55050242,55115781,55181317,55246854,55312390,55377922,55443458,55508997,55574530,55640069,55705602,55771138,55836677,55902213,55967746,56033287,56098818,56164357,56229893,56295426,56360962,56426498,56492037,56557570,56623109,56688642,56754182,56819717,56885250,56950786,57016325,57081861,57147394,57212930,57278466,57344007,57409538,57475074,57540610,57606149,57671682,57737226,57802754,57868293,57933831,57999368,58064898,58130437,58195973,58261506,58327045,58392582,58458119,58523656,58589193,58654726,58720262,58785798,58851335,58916869,58982409,59047942,59113480,59179018],"client":[10354689],"cacheaccepted":[23920645,24313861,25165829,25624581,26476549,27131909,27918341,28049413,28704773,29425669,31129605,31653893],"compilation":[23920641,24313857,25165825,25624577,26476545,27131905,27918337,28049409,28704769,29425665,31129601,31653889,49938434,50724867,56885249],"com":[3145744,3604483,4259856,4784129,6029328,6291472,6357008,6422544,6684688,6815747,7012353,8192003,8388609,8781840,9306128,9830401,10354689,10682369,11468801,11534337,11665409,11730945,12189697,12255233,12320769,12386305,12451841,12779521,13041665,13107201,13369345,13959169,14155777,16580609,17039361,17498113,18153473,18284545,18415617,19005441,19267585,19791873,20512769,20840449,21364737,21757953,22347777,22675457,23068673,31195144,31260680,32112648,32178184,50987010,52559875,53346306,54329360,56164368,57737232,57999376,58327041,58458128,58523664,58589200,58982416,59179024],"cleaning":[10354689],"contexts":[7536641,8257537,10223617,16121857,16384001,16842753,17170433,18808833,19398657,23724033,24051713,24576001,24838145,25034753,25231361,25755649,25821185,26148865,26214401,26279937,26345473,26542081,26673153,26738689,27197441,27918337,28835841,28966913,29360129,29491201,29818881,29884417,29949953,30015489,30343169,30867457,31129601,31522817,32309249,32505857,39649281,44695553,52035585,52690945,52953089,53149697,53870593,53805057,54853633,55640065],"collector":[18743297,26804225,45940737],"commonjs":[36831233,36962305,40239109,52232194,54263810],"case":[6881281,32768001,50790402,56229889],"converted":[50659329],"collect":[14221313,21430273,23855105,24248321,24903681,25559041,25690113,26411009,28114945,28770305,55115777],"copyright":[65537,131073,196609,262145,327681,393217,458753,524289,589825,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3276801,3211265,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10747905,10682369,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12648449,12582913,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14155777,14090241,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19726337,19660801,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24510465,24444929,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28114945,28049409,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36831233,36765697,36896769,36962305,37027841,37093377,37158913,37224449,37355521,37289985,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39256065,39190529,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48168961,48103425,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52101121,52035585,52166657,52232193,52297729,52363265,52428801,52494337,52625409,52690945,52559873,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53870593,53805057,54001665,53936129,54067201,54132737,54263809,54198273,54394881,54329345,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56360961,56295425,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56950785,56885249,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58261505,58195969,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009],"collectgarbage":[3145729,4259841,4849665,6029313,6291457,6356993,6422529,6684674,8781826,9306113,14221316,21430276,23855109,28770311,51970049,54329345,55115782,56164353,57737218,57999361,58458114,58523649,58589185,58982401,59179009],"constructors":[47644673,48103425,48168961,48824321,48955393,49020929,49545217,49741825,50266113,50397185,50462721,51773441,51970049,52559873,53411841,54329345,56033281,57344001,57737217,57933825,57999361,58458113,58523649,58589185,58720257,58785793,58851329,58982401,59113473,59179009],"currently":[393217,851969,1900547,2490372,7208961,7274497,8454145,15728641,16121857,16384001,16777217,16842753,17170433,17432577,18677761,18808833,19398657,23724033,24051713,24576001,24838145,25034753,25231361,25755649,25821185,26148865,26214401,26279937,26345473,26542081,26673153,26738689,27197441,27918337,28835841,28966913,29360129,29491201,29818881,29884417,29949953,30015489,30343169,30867457,31129601,31522817,32309249,32374788,32505857,36962305,39124993,43450369,45416449,48431107,50593796,50987009,52035585,52690945,52953089,53084161,53149697,53870593,53805057,54853633,55443457,55640065,55967746],"combination":[5439489,5505025,5701633,6225921],"calculate":[7667713],"containing":[2228225,2293761,2359297,2818049,3211266,5373953,5439489,5505025,5636097,6225921,6488065,8388609,14024705,14614530,15007745,15466498,16252930,17891329,18874369,19070977,21299202,21954561,23658497,23920641,25624577,26607617,27525121,29032449,29622273,34406402,34537473,34734081,35258370,39387137,43909121,44302337,44498945,46530561,48955393,49152001,49676290,49741825,50200577,50528258,52297729,52363266,52494337,52756481,53477378,58130433],"cleanup":[1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1966081,2097153,2162689,2424833,2621441,2883585,2949121,3014657,3080193,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3866625,3932161,3997697,4063233,4128769,4259841,4325377,4390913,4718593,4849665,6029313,6291457,6356993,6422529,6684673,7077889,8781825,9306113,10354689,18743297,47644673,48168961,48103425,48562177,48824321,48955393,49020929,49217537,49545217,49741825,49872897,50135041,50266113,50331649,50397185,50462721,51118081,51707905,51773441,51970049,52559873,53084161,53411841,53477377,53936129,54329345,54460417,55246849,55312385,56033281,56754177,57344001,57737217,57933825,57999361,58392577,58458113,58523649,58589185,58654721,58720257,58851329,58982401,59047937,59113473,59179009],"completeness":[14221313,21430273,23855105,28770305,55115777],"contravariance":[7536641,8257537,10223617],"command":[3145729,4259841,6029313,6291457,6356993,6422529,6684673,8781825,9306113,19595277,26869773,28311565,32768015,50855948,54198285,54329345,56164353,56229903,57737217,57999361,58458113,58523649,58589185,58982401,59179009],"called":[11403265,18022401,18350081,19922945,25296897,26935297,27590657,28901377,36438018,38141953,38469633,46530561,48824322,52494337,53018625,55771139,55836673,56819713],"connection":[1638401,1703937,6094849,6684673,6750209,7340033,24641537,24707073,24838145,26279937,26345473,26738689,26935297,27197441,27852801,27983873,29294593,48562178,50790401,50921474,51118082,55771138,58458113],"comments":[65537,131073,196609,262145,327681,393217,458753,524289,589825,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3276801,3211265,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10747905,10682369,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12648449,12582913,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14155777,14090241,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19726337,19660801,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24510465,24444929,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28114945,28049409,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36831233,36765697,36896769,36962305,37027841,37093377,37158913,37224449,37355521,37289985,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39256065,39190529,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48168961,48103425,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52101121,52035585,52166657,52232193,52297729,52363265,52428801,52494337,52625409,52690945,52559873,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53870593,53805057,54001665,53936129,54067201,54132737,54263809,54198273,54394881,54329345,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56360961,56295425,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56950785,56885249,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58261505,58195969,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009],"checking":[2162691,3080195,16515073,18546689,19136513,49545219,57933827],"compatible":[3014657,3604481,7798786,50462721,52559873],"categories":[36110337,54263809,56295425],"compile":[4849673,6684681,21692417,21954567,22413313,22872065,23134209,23658504,23920648,24182791,24313857,24772609,25100289,25165832,25362433,25624584,25886721,26083336,26476545,26607624,26673159,27131905,27262983,27459585,27918344,28049416,28180481,28704769,28835848,29163528,29425665,29622279,29884423,30539777,31129608,31653889,32309256,32702465,51970057,55574538,56426497,57802762,58064897,58458121],"calls":[8126465],"caches":[5373953,5636097,6488065,36110338],"customize":[19595265,26869761,28311553,32768001,50855937,54198273,56229889],"corresponds":[41484289,42926081],"columnnumber":[35258369,45219844,53477377],"custom":[1179650,2424833,4128769,4653064,5046273,33488897,40763394,48168963,48824321,50397185,51904513,55771137,59047937],"cast":[3014658,3604482,8650756,9502730,9633793,50462722,52559874],"cstr":[32768001,56229889],"calling":[1900547,2424833,2490372,3801090,4128769,4325378,6029314,6291458,6356994,6422530,7208961,7274497,8454145,8781826,9306114,15728641,15925249,16777217,17432577,18677761,26804225,27394049,27721730,32374788,48431107,50397185,50593796,51314689,53673986,54329346,54591490,54788098,55443457,55508993,55967746,57737218,57999362,58392578,58458113,58589186,58982402,59047937,59179010],"classes":[2424841,4128777,16384001,24051713,48103425,50397193,55771137,56033281,56295425,56885249,57212929,57475073,59047945],"check":[16515073,18546689,19136513,27721729,33095681,53673985,54591489],"createscriptengine":[4849670,23789573,24707077,25231365,26148869,27197445,29556741,51970054,56688646],"copy":[196609,458753,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1966081,2097153,2162689,2228225,2293761,2359297,2424833,2621441,2818049,2883585,2949121,3014657,3080193,3211266,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3866625,3932161,3997697,4063233,4128769,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619138,6684673,6750209,6815746,6881281,6946817,7012353,7077889,7208961,7274497,7340033,7405569,7471106,7536641,7602177,7667714,7733249,7798786,7864322,7929857,7995394,8060929,8126466,8192002,8257538,8323073,8388610,8454145,8519681,8585218,8650754,8716289,8781825,8847361,8912897,8978434,9043971,9109505,9175041,9240578,9306113,9371649,9437185,9502722,9568257,9633793,9699329,9764866,9830401,9895937,9961474,10027009,10092546,10158081,10223618,10289153,10354690,10420225,10485761,10551298,10616833,10682369,10747905,10813441,10878978,10944513,11010049,11075586,11141122,11206657,11272194,11337729,11403265,11468801,11534337,11599874,11665409,11730945,11796481,11862017,11927554,11993090,12058625,12124162,12189697,12255233,12320769,12386305,12451841,12517378,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614531,14680065,14745601,14811140,14876676,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466499,15532033,15597569,15663108,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252931,16318468,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612228,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464196,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28114945,28049409,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30343169,30474241,30539777,30867457,31129601,31522817,31653889,31784961,32309249,32505857,32702465,32768001,36110337,36175873,36241409,36306945,36372481,36503553,36634625,36831233,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644674,47710209,47775745,47841281,47906817,48037889,48103426,48168962,48234497,48300033,48365569,48431105,48496641,48562178,48627713,48693249,48758785,48824322,48889857,48955394,49020930,49086465,49152002,49217538,49283073,49348609,49414145,49479681,49545218,49610753,49676291,49741826,49807361,49872898,49938433,50003969,50069505,50135042,50200578,50266114,50331650,50397186,50462722,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118082,51183617,51314689,51445761,51511297,51642369,51707906,51773442,51838977,51904513,51970050,52035585,52101121,52166657,52297729,52363265,52494337,52559874,52625409,52690945,52756482,52953089,53018625,53084162,53149697,53346305,53411842,53477378,53542913,53673985,53805057,53870593,53936130,54067201,54198273,54263809,54329346,54394881,54460418,54591489,54722561,54788097,54853633,54984705,55115777,55181313,55246850,55312386,55508993,55640065,55836673,55902209,56033282,56164353,56229889,56492033,56623105,56754178,56819713,57016321,57081857,57344002,57606145,57737218,57868289,57933826,57999362,58130434,58195969,58327041,58392578,58458114,58523650,58589186,58654722,58720258,58785793,58851330,58916865,58982402,59047938,59113474,59179010],"contents":[2228227,2293763,2359299,2818051,3211268,5439494,5505030,6225926,13893634,14614530,15400962,15466498,16252930,16908290,17825794,21299206,32899074,34537473,34734082,37879813,43057158,46530565,48955393,49152003,49676292,49741826,50200579,51052545,51249154,52756483,58130435],"contains":[65537,2162689,2686979,3080193,6619137,7471105,7602177,7864321,8519681,8847361,8912897,9175041,9568257,9699329,10027009,10158081,10420225,10616833,10944513,11010049,11796481,12976129,13697025,17235971,18481153,23330817,38666241,44171265,47316993,47972357,49545218,51773441,52363267,55246849,55771138,56295425,56885250,57212929,57475073,57933825,58720257],"corresponding":[6619137,6946817,7471105,7667714,7864321,9043969,12713985,12976129,13631489,13697025,14483457,14745601,15335425,15532033,15597569,18481153,19529729,20381697,21168129,21233665,22151169,23330817,24444929,25427969,45940737,49545217],"compiledocument":[4849673,6684681,21692421,22413317,22872069,23134213,24313861,24772613,25100293,25362437,25886725,26476549,27131909,27459589,28180485,28704773,29425669,30539781,31653893,32702469,51970057,56426505,58064905,58458121],"coordinated":[50790401],"completes":[4849665,6684673,25493505,28573697,51970049,58458113],"causing":[49807361],"completed":[5373953,5636097,6488065,10354689,25493505,28573697],"completion":[5373953,6488065],"clearnocheck":[2162689,3080193,15925249,16515076,49545217,57933825],"cpuprofilesampleinterval":[35782657,36569089,47054852,48365572,51970049,58458113],"correct":[14090241,19660801,38207489,38993921,41287681,42205185,58589185,58982401,59179009],"clean":[10354689],"clsid":[3145736,4259848,6029320,6291464,6357000,6422536,6684680,6815745,8192001,8781832,9306120,10682375,11468807,11534337,11665415,11730945,12189703,12255233,12320769,12386305,12451847,12779521,13041665,13107207,13369351,13959175,14155777,16580609,17039368,17498120,18153480,18284545,18415624,19005441,19267585,19791873,20512769,20840456,21364744,21757960,22347784,22675457,23068673,29491201,30867457,31195140,31260676,31522817,32112644,32178180,32505857,52035585,53805057,54329352,56164360,57737224,57999368,58458120,58523656,58589192,58982408,59179016],"clear":[2686977,16515073,52363265,55771137,56295425,56885249,57212929,57475073],"contact":[655361],"current":[720897,1114116,1179652,1245188,1310723,1376258,1441796,1507332,1572868,1638404,1703940,1769476,1966083,2097156,2162692,2424836,2555905,2621443,2883587,2949123,3014660,3080196,3342340,3276803,3407876,3473412,3538948,3604484,3670020,3735556,3866628,3932164,3997700,4063234,4128772,4259844,4325380,4390916,4718596,4849668,6029318,6291462,6356998,6422534,6684676,7077892,8192001,8781830,8978433,9306118,14090241,15859714,16187393,19660801,20905986,21823490,23396353,23789569,24707073,26148865,27197441,27328514,31784962,34930694,35127298,35454980,35717123,36110337,36765697,36896769,37486593,37617666,38010881,38076417,38273025,38338561,38600705,38993921,39321602,39452673,40697857,41025538,42139649,42205185,42467329,42795009,43843585,44105729,44761089,44826625,45023233,46399496,47382529,47644676,47906817,48168964,48103427,48496641,48562180,48824324,48955396,49020932,49217540,49545220,49610753,49741828,49872900,50135044,50266115,50331652,50397188,50462724,50659329,51118084,51314689,51707908,51773442,51970052,52559876,53084164,53411844,53477380,53936132,54329351,54460418,54591490,55246852,55312388,56033283,56754180,57016324,57344003,57737223,57933828,57999367,58392580,58458116,58523654,58589192,58654724,58720266,58785796,58851331,58982408,59047940,59113475,59179016],"conjunction":[45023233],"creating":[24903681,26411009,52166657,56885249],"cancelawaitdebugger":[6684673,26935300,58458113],"consecutive":[35782657,36569089,45613057,46137345,51970049,58458113],"column":[35258369,45219843,53477377],"continue":[39059457,45678593,47120386,55771137],"collectcpuprofilesample":[4849665,6684673,25559044,28114948,51970049,58458113],"consumed":[23920641,24313857,25165825,25624577,26476545,27131905,27918337,28049409,28704769,29425665,31129601,31653889,50724865],"cancelinterrupt":[6684673,27590660,28901377,58458113],"cause":[4718593,45023233,45547521,47775745,49414145,50069505,58720257],"compiling":[39124993,43450369,45416449],"caught":[10354689,50790401],"continues":[39649281,44695553],"connects":[1769473,2097153,6750209,7340033,49217537,49872897],"count":[589825,720898,14811141,15663109,18612229,19464197,34406401,35258369,46596098,52363265,53477377,54460417],"continuation":[39059457,45678593,47120385],"critical":[4653057]} \ No newline at end of file diff --git a/docs/Reference/fti/FTI_Files.json b/docs/Reference/fti/FTI_Files.json index 20c66d571..1deca59dc 100644 --- a/docs/Reference/fti/FTI_Files.json +++ b/docs/Reference/fti/FTI_Files.json @@ -1 +1 @@ -["ClearScript Library - Redirect\u0000index.html\u000018","HostTypeCollection Events\u0000html/Events_T_Microsoft_ClearScript_HostTypeCollection.htm\u000068","VoidResult Fields\u0000html/Fields_T_Microsoft_ClearScript_VoidResult.htm\u000053","Undefined Fields\u0000html/Fields_T_Microsoft_ClearScript_Undefined.htm\u000052","PropertyBag Events\u0000html/Events_T_Microsoft_ClearScript_PropertyBag.htm\u000061","NullSyncInvoker Fields\u0000html/Fields_T_Microsoft_ClearScript_Windows_Core_NullSyncInvoker.htm\u000056","Nothing Fields\u0000html/Fields_T_Microsoft_ClearScript_Windows_Nothing.htm\u000053","ScriptEngineException Events\u0000html/Events_T_Microsoft_ClearScript_ScriptEngineException.htm\u000072","HitLine Fields\u0000html/Fields_T_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitLine.htm\u000067","General Error\u0000html/GeneralError.htm\u000032","Undefined.Value Field\u0000html/F_Microsoft_ClearScript_Undefined_Value.htm\u000098","V8CpuProfile.Node.HitLine.HitCount Field\u0000html/F_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitLine_HitCount.htm\u0000126","PropertyBag.PropertyChanged Event\u0000html/E_Microsoft_ClearScript_PropertyBag_PropertyChanged.htm\u0000154","Nothing.Value Field\u0000html/F_Microsoft_ClearScript_Windows_Nothing_Value.htm\u0000102","V8CpuProfile.Node.HitLine.LineNumber Field\u0000html/F_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitLine_LineNumber.htm\u000099","VoidResult.Value Field\u0000html/F_Microsoft_ClearScript_VoidResult_Value.htm\u000099","NullSyncInvoker.Instance Field\u0000html/F_Microsoft_ClearScript_Windows_Core_NullSyncInvoker_Instance.htm\u0000106","ClearScript Library - Search\u0000search.html\u000011","CustomAttributeLoader Methods\u0000html/Methods_T_Microsoft_ClearScript_CustomAttributeLoader.htm\u0000168","DefaultScriptUsageAttribute Methods\u0000html/Methods_T_Microsoft_ClearScript_DefaultScriptUsageAttribute.htm\u0000216","DocumentCategory Methods\u0000html/Methods_T_Microsoft_ClearScript_DocumentCategory.htm\u0000153","Document Methods\u0000html/Methods_T_Microsoft_ClearScript_Document.htm\u0000152","DocumentSettings Methods\u0000html/Methods_T_Microsoft_ClearScript_DocumentSettings.htm\u0000226","DefaultDocumentLoader Methods\u0000html/Methods_T_Microsoft_ClearScript_DefaultDocumentLoader.htm\u0000237","DocumentInfo Methods\u0000html/Methods_T_Microsoft_ClearScript_DocumentInfo.htm\u0000154","EventConnection Methods\u0000html/Methods_T_Microsoft_ClearScript_EventConnection.htm\u0000165","DocumentLoader Methods\u0000html/Methods_T_Microsoft_ClearScript_DocumentLoader.htm\u0000188","EventConnection\u0026lt;T\u0026gt; Methods\u0000html/Methods_T_Microsoft_ClearScript_EventConnection_1.htm\u0000174","EventSource Methods\u0000html/Methods_T_Microsoft_ClearScript_EventSource.htm\u0000166","EventSource\u0026lt;T\u0026gt; Methods\u0000html/Methods_T_Microsoft_ClearScript_EventSource_1.htm\u0000169","IScriptableObject Methods\u0000html/Methods_T_Microsoft_ClearScript_IScriptableObject.htm\u000058","Extensions Methods\u0000html/Methods_T_Microsoft_ClearScript_Extensions.htm\u0000221","ImmutableValueAttribute Methods\u0000html/Methods_T_Microsoft_ClearScript_ImmutableValueAttribute.htm\u0000215","IJavaScriptObject Methods\u0000html/Methods_T_Microsoft_ClearScript_JavaScript_IJavaScriptObject.htm\u0000224","IArrayBuffer Methods\u0000html/Methods_T_Microsoft_ClearScript_JavaScript_IArrayBuffer.htm\u0000315","IDataView Methods\u0000html/Methods_T_Microsoft_ClearScript_JavaScript_IDataView.htm\u0000338","NoScriptAccessAttribute Methods\u0000html/Methods_T_Microsoft_ClearScript_NoScriptAccessAttribute.htm\u0000216","DynamicHostObject Methods\u0000html/Methods_T_Microsoft_ClearScript_DynamicHostObject.htm\u0000698","JavaScriptExtensions Methods\u0000html/Methods_T_Microsoft_ClearScript_JavaScript_JavaScriptExtensions.htm\u0000260","ITypedArray\u0026lt;T\u0026gt; Methods\u0000html/Methods_T_Microsoft_ClearScript_JavaScript_ITypedArray_1.htm\u0000378","ScriptInterruptedException Methods\u0000html/Methods_T_Microsoft_ClearScript_ScriptInterruptedException.htm\u000069","PropertyBag Methods\u0000html/Methods_T_Microsoft_ClearScript_PropertyBag.htm\u0000235","ITypedArray Methods\u0000html/Methods_T_Microsoft_ClearScript_JavaScript_ITypedArray.htm\u0000338","StringDocument Methods\u0000html/Methods_T_Microsoft_ClearScript_StringDocument.htm\u0000153","NoDefaultScriptAccessAttribute Methods\u0000html/Methods_T_Microsoft_ClearScript_NoDefaultScriptAccessAttribute.htm\u0000217","IArrayBufferView Methods\u0000html/Methods_T_Microsoft_ClearScript_JavaScript_IArrayBufferView.htm\u0000309","HostFunctions Methods\u0000html/Methods_T_Microsoft_ClearScript_HostFunctions.htm\u0000847","ScriptMemberAttribute Methods\u0000html/Methods_T_Microsoft_ClearScript_ScriptMemberAttribute.htm\u0000215","IPropertyBag Methods\u0000html/Methods_T_Microsoft_ClearScript_IPropertyBag.htm\u0000296","IScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_IScriptEngine.htm\u00001148","Undefined Methods\u0000html/Methods_T_Microsoft_ClearScript_Undefined.htm\u0000152","V8CpuProfile Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8CpuProfile.htm\u0000177","HitLine Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitLine.htm\u0000159","V8RuntimeHeapInfo Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8RuntimeHeapInfo.htm\u0000155","ISyncInvoker Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_Core_ISyncInvoker.htm\u0000108","IScriptObject Methods\u0000html/Methods_T_Microsoft_ClearScript_IScriptObject.htm\u0000168","Node Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8CpuProfile_Node.htm\u0000155","Sample Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8CpuProfile_Sample.htm\u0000155","ScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_ScriptEngine.htm\u00001267","ScriptObject Methods\u0000html/Methods_T_Microsoft_ClearScript_ScriptObject.htm\u0000804","HostTypeCollection Methods\u0000html/Methods_T_Microsoft_ClearScript_HostTypeCollection.htm\u0000430","NullSyncInvoker Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_Core_NullSyncInvoker.htm\u0000218","V8Script Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8Script.htm\u0000163","Nothing Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_Nothing.htm\u0000153","V8Runtime Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8Runtime.htm\u0000749","IWindowsScriptObject Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_IWindowsScriptObject.htm\u0000234","ScriptUsageAttribute Methods\u0000html/Methods_T_Microsoft_ClearScript_ScriptUsageAttribute.htm\u0000215","CustomAttributeLoader Constructor\u0000html/M_Microsoft_ClearScript_CustomAttributeLoader__ctor.htm\u000091","ScriptEngineException Methods\u0000html/Methods_T_Microsoft_ClearScript_ScriptEngineException.htm\u0000208","V8RuntimeConstraints Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8RuntimeConstraints.htm\u0000154","DefaultDocumentLoader.DiscardCachedDocuments Method\u0000html/M_Microsoft_ClearScript_DefaultDocumentLoader_DiscardCachedDocuments.htm\u0000109","DefaultDocumentLoader.CacheDocument Method\u0000html/M_Microsoft_ClearScript_DefaultDocumentLoader_CacheDocument.htm\u0000217","DefaultScriptUsageAttribute Constructor\u0000html/M_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor.htm\u000094","DefaultDocumentLoader.GetCachedDocument Method\u0000html/M_Microsoft_ClearScript_DefaultDocumentLoader_GetCachedDocument.htm\u0000163","DocumentInfo(String) Constructor\u0000html/M_Microsoft_ClearScript_DocumentInfo__ctor.htm\u0000124","DefaultScriptUsageAttribute(ScriptAccess) Constructor\u0000html/M_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor_1.htm\u0000132","ExtendedHostFunctions Methods\u0000html/Methods_T_Microsoft_ClearScript_ExtendedHostFunctions.htm\u00001188","JScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_Core_JScriptEngine.htm\u00001611","DocumentLoader.GetCachedDocument Method\u0000html/M_Microsoft_ClearScript_DocumentLoader_GetCachedDocument.htm\u0000161","DocumentInfo(Uri) Constructor\u0000html/M_Microsoft_ClearScript_DocumentInfo__ctor_1.htm\u0000124","WindowsScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine.htm\u00001602","IHostWindow Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_IHostWindow.htm\u000054","DocumentSettings Constructor\u0000html/M_Microsoft_ClearScript_DocumentSettings__ctor.htm\u000090","DocumentSettings.AddSystemDocument(String, DocumentCategory, String, DocumentContextCallback) Method\u0000html/M_Microsoft_ClearScript_DocumentSettings_AddSystemDocument_2.htm\u0000276","WindowsScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_WindowsScriptEngine.htm\u00001609","VBScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_Core_VBScriptEngine.htm\u00001611","DocumentLoader.LoadDocumentAsync Method\u0000html/M_Microsoft_ClearScript_DocumentLoader_LoadDocumentAsync.htm\u0000370","DocumentLoader.CacheDocument Method\u0000html/M_Microsoft_ClearScript_DocumentLoader_CacheDocument.htm\u0000215","Document Constructor\u0000html/M_Microsoft_ClearScript_Document__ctor.htm\u000089","VBScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_VBScriptEngine.htm\u00001610","DynamicHostObject.HasMember Method\u0000html/M_Microsoft_ClearScript_DynamicHostObject_HasMember.htm\u0000198","EventConnection.disconnect Method\u0000html/M_Microsoft_ClearScript_EventConnection_disconnect.htm\u000099","DocumentSettings.AddSystemDocument(String, String) Method\u0000html/M_Microsoft_ClearScript_DocumentSettings_AddSystemDocument_3.htm\u0000201","V8ScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8ScriptEngine.htm\u00002094","DocumentLoader.LoadDocument Method\u0000html/M_Microsoft_ClearScript_DocumentLoader_LoadDocument.htm\u0000371","DocumentLoader Constructor\u0000html/M_Microsoft_ClearScript_DocumentLoader__ctor.htm\u000090","CustomAttributeLoader.LoadCustomAttributes\u0026lt;T\u0026gt; Method\u0000html/M_Microsoft_ClearScript_CustomAttributeLoader_LoadCustomAttributes__1.htm\u0000311","DocumentLoader.DiscardCachedDocuments Method\u0000html/M_Microsoft_ClearScript_DocumentLoader_DiscardCachedDocuments.htm\u0000107","EventSource.connect Method\u0000html/M_Microsoft_ClearScript_EventSource_connect.htm\u0000144","DynamicHostObject Constructor\u0000html/M_Microsoft_ClearScript_DynamicHostObject__ctor.htm\u000091","JScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_JScriptEngine.htm\u00001610","ExtendedHostFunctions Constructor\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions__ctor.htm\u000091","EventSource\u0026lt;T\u0026gt;.connect Method\u0000html/M_Microsoft_ClearScript_EventSource_1_connect.htm\u0000162","VoidResult Methods\u0000html/Methods_T_Microsoft_ClearScript_VoidResult.htm\u0000153","DocumentSettings.AddSystemDocument(String, Document) Method\u0000html/M_Microsoft_ClearScript_DocumentSettings_AddSystemDocument.htm\u0000211","ExtendedHostFunctions.lib(String[]) Method\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_lib_1.htm\u0000353","DefaultDocumentLoader.LoadDocumentAsync Method\u0000html/M_Microsoft_ClearScript_DefaultDocumentLoader_LoadDocumentAsync.htm\u0000417","Extensions.ToRestrictedHostObject(Object, Type, ScriptEngine) Method\u0000html/M_Microsoft_ClearScript_Extensions_ToRestrictedHostObject_1.htm\u0000336","ExtendedHostFunctions.type(String, String, Object[]) Method\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_type_1.htm\u0000474","HostFunctions.isTypeObj\u0026lt;T\u0026gt; Method\u0000html/M_Microsoft_ClearScript_HostFunctions_isTypeObj__1.htm\u0000192","HostFunctions.getProperty(IPropertyBag, String) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_getProperty.htm\u0000204","Extensions.ToHostType(Type) Method\u0000html/M_Microsoft_ClearScript_Extensions_ToHostType.htm\u0000244","Extensions.ToRestrictedHostObject\u0026lt;T\u0026gt;(T, ScriptEngine) Method\u0000html/M_Microsoft_ClearScript_Extensions_ToRestrictedHostObject__1_1.htm\u0000325","HostFunctions.flags\u0026lt;T\u0026gt; Method\u0000html/M_Microsoft_ClearScript_HostFunctions_flags__1.htm\u0000371","HostFunctions.newObj Method\u0000html/M_Microsoft_ClearScript_HostFunctions_newObj.htm\u0000212","DocumentSettings.AddSystemDocument(String, DocumentCategory, String) Method\u0000html/M_Microsoft_ClearScript_DocumentSettings_AddSystemDocument_1.htm\u0000238","Extensions.ToRestrictedHostObject\u0026lt;T\u0026gt;(T) Method\u0000html/M_Microsoft_ClearScript_Extensions_ToRestrictedHostObject__1.htm\u0000288","ExtendedHostFunctions.type(Type) Method\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_type_2.htm\u0000215","ExtendedHostFunctions.newComObj Method\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_newComObj.htm\u0000354","HostFunctions.getProperty(IDynamicMetaObjectProvider, String) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_getProperty_1.htm\u0000206","Extensions.ToHostType(Type, ScriptEngine) Method\u0000html/M_Microsoft_ClearScript_Extensions_ToHostType_1.htm\u0000282","HostFunctions.isType\u0026lt;T\u0026gt; Method\u0000html/M_Microsoft_ClearScript_HostFunctions_isType__1.htm\u0000267","HostFunctions.newObj(IDynamicMetaObjectProvider, Object[]) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_newObj_1.htm\u0000220","HostFunctions.func(Int32, Object) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_func.htm\u0000272","HostFunctions.newObj(Object, Object[]) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_newObj_2.htm\u0000290","HostFunctions.asType\u0026lt;T\u0026gt; Method\u0000html/M_Microsoft_ClearScript_HostFunctions_asType__1.htm\u0000306","HostFunctions.removeElement Method\u0000html/M_Microsoft_ClearScript_HostFunctions_removeElement.htm\u0000220","HostFunctions.setProperty(IPropertyBag, String, Object) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_setProperty.htm\u0000245","HostFunctions.isNull Method\u0000html/M_Microsoft_ClearScript_HostFunctions_isNull.htm\u0000170","HostFunctions.newArr(Int32[]) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_newArr.htm\u0000202","Extensions.ToRestrictedHostObject(Object, Type) Method\u0000html/M_Microsoft_ClearScript_Extensions_ToRestrictedHostObject.htm\u0000298","ExtendedHostFunctions.type(String, Object[]) Method\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_type.htm\u0000408","HostFunctions.toByte Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toByte.htm\u0000304","HostFunctions.removeProperty(IPropertyBag, String) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_removeProperty.htm\u0000204","HostFunctions.isTypeObj(Object) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_isTypeObj.htm\u0000202","HostFunctions.newObj\u0026lt;T\u0026gt;(Object[]) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_newObj__1.htm\u0000352","HostFunctions.cast\u0026lt;T\u0026gt; Method\u0000html/M_Microsoft_ClearScript_HostFunctions_cast__1.htm\u0000251","HostFunctions.setProperty(IDynamicMetaObjectProvider, String, Object) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_setProperty_1.htm\u0000247","HostFunctions.func\u0026lt;T\u0026gt;(Int32, Object) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_func__1.htm\u0000470","HostFunctions.newArr\u0026lt;T\u0026gt;(Int32[]) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_newArr__1.htm\u0000295","ExtendedHostFunctions.typeLibEnums\u0026lt;T\u0026gt; Method\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_typeLibEnums__1.htm\u0000276","HostFunctions.toInt16 Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toInt16.htm\u0000305","HostFunctions.toChar Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toChar.htm\u0000304","HostFunctions.removeProperty(IDynamicMetaObjectProvider, String) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_removeProperty_1.htm\u0000206","HostFunctions Constructor\u0000html/M_Microsoft_ClearScript_HostFunctions__ctor.htm\u000090","HostFunctions.toSingle Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toSingle.htm\u0000304","HostFunctions.toUInt64 Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toUInt64.htm\u0000305","HostFunctions.getElement Method\u0000html/M_Microsoft_ClearScript_HostFunctions_getElement.htm\u0000220","HostTypeCollection.AddAssembly(String, Predicate\u0026lt;Type\u0026gt;) Method\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddAssembly_3.htm\u0000204","HostFunctions.newVar\u0026lt;T\u0026gt; Method\u0000html/M_Microsoft_ClearScript_HostFunctions_newVar__1.htm\u0000460","HostFunctions.del\u0026lt;T\u0026gt; Method\u0000html/M_Microsoft_ClearScript_HostFunctions_del__1.htm\u0000408","HostTypeCollection.AddAssembly(Assembly) Method\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddAssembly.htm\u0000135","HostFunctions.setElement Method\u0000html/M_Microsoft_ClearScript_HostFunctions_setElement.htm\u0000258","HostFunctions.toInt32 Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toInt32.htm\u0000305","HostFunctions.toDecimal Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toDecimal.htm\u0000304","HostFunctions.toStaticType Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toStaticType.htm\u0000188","HostTypeCollection.GetNamespaceNode Method\u0000html/M_Microsoft_ClearScript_HostTypeCollection_GetNamespaceNode.htm\u0000151","ExtendedHostFunctions.arrType\u0026lt;T\u0026gt; Method\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_arrType__1.htm\u0000204","HostTypeCollection.AddType(String, String, Type[]) Method\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddType.htm\u0000233","HostTypeCollection(Assembly[]) Constructor\u0000html/M_Microsoft_ClearScript_HostTypeCollection__ctor_3.htm\u0000159","HostTypeCollection.AddAssembly(Assembly, Predicate\u0026lt;Type\u0026gt;) Method\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddAssembly_1.htm\u0000194","HostTypeCollection Constructor\u0000html/M_Microsoft_ClearScript_HostTypeCollection__ctor.htm\u000094","IScriptEngine.AddCOMObject(String, HostItemFlags, Guid) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddCOMObject.htm\u0000247","HostFunctions.tryCatch Method\u0000html/M_Microsoft_ClearScript_HostFunctions_tryCatch.htm\u0000539","HostFunctions.toInt64 Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toInt64.htm\u0000305","HostFunctions.toDouble Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toDouble.htm\u0000304","HostTypeCollection(String[]) Constructor\u0000html/M_Microsoft_ClearScript_HostTypeCollection__ctor_4.htm\u0000169","HostTypeCollection.AddType(String, Type[]) Method\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddType_1.htm\u0000192","HostFunctions.toUInt16 Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toUInt16.htm\u0000305","HostTypeCollection.AddAssembly(String) Method\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddAssembly_2.htm\u0000145","DefaultDocumentLoader Constructor\u0000html/M_Microsoft_ClearScript_DefaultDocumentLoader__ctor.htm\u000091","ExtendedHostFunctions.comType Method\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_comType.htm\u0000349","ImmutableValueAttribute Constructor\u0000html/M_Microsoft_ClearScript_ImmutableValueAttribute__ctor.htm\u000091","HostTypeCollection.AddType(Type) Method\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddType_2.htm\u0000129","HostTypeCollection(Predicate\u0026lt;Type\u0026gt;, Assembly[]) Constructor\u0000html/M_Microsoft_ClearScript_HostTypeCollection__ctor_1.htm\u0000216","IScriptEngine.AddCOMObject(String, HostItemFlags, Guid, String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddCOMObject_1.htm\u0000288","IScriptEngine.AddCOMObject(String, Guid) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddCOMObject_4.htm\u0000209","HostFunctions.typeOf(Object) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_typeOf.htm\u0000300","HostFunctions.toSByte Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toSByte.htm\u0000304","IScriptEngine.AddCOMType(String, Guid) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddCOMType_4.htm\u0000209","IScriptEngine.AddCOMType(String, HostItemFlags, Guid) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddCOMType.htm\u0000247","HostFunctions.toUInt32 Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toUInt32.htm\u0000305","IScriptableObject.OnExposedToScriptCode Method\u0000html/M_Microsoft_ClearScript_IScriptableObject_OnExposedToScriptCode.htm\u0000187","IScriptEngine.AddCOMType(String, String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddCOMType_6.htm\u0000244","ExtendedHostFunctions.lib(HostTypeCollection, String[]) Method\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_lib.htm\u0000426","HostTypeCollection(Predicate\u0026lt;Type\u0026gt;, String[]) Constructor\u0000html/M_Microsoft_ClearScript_HostTypeCollection__ctor_2.htm\u0000226","IScriptEngine.AddCOMObject(String, Guid, String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddCOMObject_5.htm\u0000250","IScriptEngine.AddCOMObject(String, HostItemFlags, String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddCOMObject_2.htm\u0000282","HostFunctions.typeOf\u0026lt;T\u0026gt; Method\u0000html/M_Microsoft_ClearScript_HostFunctions_typeOf__1.htm\u0000276","IScriptEngine.AddCOMType(String, Guid, String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddCOMType_5.htm\u0000250","IScriptEngine.AddHostType(HostItemFlags, Type) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddHostType.htm\u0000259","HostFunctions.proc Method\u0000html/M_Microsoft_ClearScript_HostFunctions_proc.htm\u0000409","IScriptEngine.AddCOMType(String, HostItemFlags, Guid, String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddCOMType_1.htm\u0000288","IScriptEngine.AddHostType(String, HostItemFlags, Type) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddHostType_3.htm\u0000276","IScriptEngine.AddHostType(Type) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddHostType_7.htm\u0000221","IScriptEngine.ExecuteCommand Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_ExecuteCommand.htm\u0000183","IScriptEngine.Evaluate(String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_Evaluate_1.htm\u0000218","IScriptEngine.AddCOMType(String, String, String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddCOMType_7.htm\u0000285","IScriptEngine.AddCOMObject(String, String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddCOMObject_6.htm\u0000244","IScriptEngine.Interrupt Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_Interrupt.htm\u0000107","IScriptEngine.AddCOMObject(String, HostItemFlags, String, String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddCOMObject_3.htm\u0000323","IScriptEngine.Execute(String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_Execute_1.htm\u0000184","IScriptObject.GetProperty(Int32) Method\u0000html/M_Microsoft_ClearScript_IScriptObject_GetProperty.htm\u0000140","IScriptEngine.AddHostTypes Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddHostTypes.htm\u0000232","IScriptEngine.AddCOMType(String, HostItemFlags, String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddCOMType_2.htm\u0000282","IScriptEngine.ExecuteDocument(String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_ExecuteDocument.htm\u0000162","IScriptEngine.AddRestrictedHostObject\u0026lt;T\u0026gt;(String, HostItemFlags, T) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddRestrictedHostObject__1.htm\u0000281","IScriptEngine.AddHostType(String, String, String, Type[]) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddHostType_4.htm\u0000342","IScriptEngine.Invoke Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_Invoke.htm\u0000190","IScriptEngine.AddCOMObject(String, String, String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddCOMObject_7.htm\u0000285","IScriptObject.GetProperty(String, Object[]) Method\u0000html/M_Microsoft_ClearScript_IScriptObject_GetProperty_1.htm\u0000193","IScriptObject.InvokeMethod Method\u0000html/M_Microsoft_ClearScript_IScriptObject_InvokeMethod.htm\u0000180","IScriptEngine.Execute(String, Boolean, String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_Execute_2.htm\u0000296","IScriptEngine.ExecuteDocument(String, DocumentCategory) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_ExecuteDocument_1.htm\u0000199","IScriptEngine.Evaluate(String, Boolean, String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_Evaluate_2.htm\u0000529","IScriptEngine.AddHostObject(String, HostItemFlags, Object) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddHostObject.htm\u0000471","IScriptEngine.AddHostType(String, HostItemFlags, String, String, Type[]) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddHostType_1.htm\u0000380","IScriptObject.DeleteProperty(Int32) Method\u0000html/M_Microsoft_ClearScript_IScriptObject_DeleteProperty.htm\u0000139","IScriptEngine.AddCOMType(String, HostItemFlags, String, String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddCOMType_3.htm\u0000323","IScriptEngine.AddRestrictedHostObject\u0026lt;T\u0026gt;(String, T) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddRestrictedHostObject__1_1.htm\u0000245","IScriptObject.SetProperty(Int32, Object) Method\u0000html/M_Microsoft_ClearScript_IScriptObject_SetProperty.htm\u0000156","IScriptObject.Invoke Method\u0000html/M_Microsoft_ClearScript_IScriptObject_Invoke.htm\u0000180","IArrayBufferView.InvokeWithDirectAccess(Action\u0026lt;IntPtr\u0026gt;) Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBufferView_InvokeWithDirectAccess.htm\u0000201","IScriptEngine.AddHostType(String, String, Type[]) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddHostType_5.htm\u0000301","IScriptEngine.Execute(String, String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_Execute_3.htm\u0000239","IArrayBuffer.GetBytes Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBuffer_GetBytes.htm\u0000135","IScriptObject.DeleteProperty(String) Method\u0000html/M_Microsoft_ClearScript_IScriptObject_DeleteProperty_1.htm\u0000140","IScriptEngine.ExecuteDocument(String, DocumentCategory, DocumentContextCallback) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_ExecuteDocument_2.htm\u0000238","IScriptEngine.CollectGarbage Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_CollectGarbage.htm\u0000121","IScriptEngine.AddHostObject(String, Object) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddHostObject_1.htm\u0000188","IScriptEngine.Evaluate(String, String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_Evaluate_3.htm\u0000273","IScriptObject.InvokeAsFunction Method\u0000html/M_Microsoft_ClearScript_IScriptObject_InvokeAsFunction.htm\u0000152","IScriptObject.SetProperty(String, Object[]) Method\u0000html/M_Microsoft_ClearScript_IScriptObject_SetProperty_1.htm\u0000208","IScriptEngine.AddHostType(String, HostItemFlags, String, Type[]) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddHostType_2.htm\u0000339","IScriptEngine.AddHostType(String, Type) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddHostType_6.htm\u0000238","IArrayBufferView.InvokeWithDirectAccess\u0026lt;T\u0026gt;(Func\u0026lt;IntPtr, T\u0026gt;) Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBufferView_InvokeWithDirectAccess__1.htm\u0000249","IScriptEngine.GetStackTrace Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_GetStackTrace.htm\u0000140","PropertyBag.ClearNoCheck Method\u0000html/M_Microsoft_ClearScript_PropertyBag_ClearNoCheck.htm\u0000112","IArrayBuffer.InvokeWithDirectAccess(Action\u0026lt;IntPtr\u0026gt;) Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBuffer_InvokeWithDirectAccess.htm\u0000206","JavaScriptExtensions.ToPromise(Task) Method\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise.htm\u0000246","IScriptEngine.Evaluate(DocumentInfo, String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_Evaluate.htm\u0000225","IArrayBufferView.GetBytes Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBufferView_GetBytes.htm\u0000132","IScriptEngine.Execute(DocumentInfo, String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_Execute.htm\u0000190","PropertyBag(Boolean, IEqualityComparer\u0026lt;String\u0026gt;) Constructor\u0000html/M_Microsoft_ClearScript_PropertyBag__ctor_2.htm\u0000194","JavaScriptExtensions.ToPromise\u0026lt;T\u0026gt;(Task\u0026lt;T\u0026gt;) Method\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise__1.htm\u0000288","ScriptEngine.AddCOMObject(String, HostItemFlags, Guid) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject.htm\u0000287","IArrayBufferView.ReadBytes Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBufferView_ReadBytes.htm\u0000257","ScriptEngine.AddCOMType(String, HostItemFlags, Guid) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType.htm\u0000287","PropertyBag.ContainsKey Method\u0000html/M_Microsoft_ClearScript_PropertyBag_ContainsKey.htm\u0000172","IArrayBuffer.InvokeWithDirectAccess\u0026lt;T\u0026gt;(Func\u0026lt;IntPtr, T\u0026gt;) Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBuffer_InvokeWithDirectAccess__1.htm\u0000254","PropertyBag(IEqualityComparer\u0026lt;String\u0026gt;) Constructor\u0000html/M_Microsoft_ClearScript_PropertyBag__ctor_3.htm\u0000158","IScriptEngine.EvaluateDocument(String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_EvaluateDocument.htm\u0000197","JavaScriptExtensions.ToPromise(Task, ScriptEngine) Method\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise_1.htm\u0000283","ScriptEngine.AddRestrictedHostObject\u0026lt;T\u0026gt;(String, T) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddRestrictedHostObject__1_1.htm\u0000280","ScriptEngine.AddHostObject(String, HostItemFlags, Object) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostObject.htm\u0000511","JavaScriptExtensions.ToPromise\u0026lt;T\u0026gt;(Task\u0026lt;T\u0026gt;, ScriptEngine) Method\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise__1_1.htm\u0000324","ScriptEngine.AddHostType(String, HostItemFlags, String, String, Type[]) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_1.htm\u0000440","PropertyBag.Remove Method\u0000html/M_Microsoft_ClearScript_PropertyBag_Remove.htm\u0000165","IArrayBufferView.WriteBytes Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBufferView_WriteBytes.htm\u0000257","ScriptEngine.AddCOMType(String, HostItemFlags, Guid, String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_1.htm\u0000336","ScriptEngine.AddCOMObject(String, HostItemFlags, Guid, String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_1.htm\u0000336","ScriptEngineException.GetObjectData Method\u0000html/M_Microsoft_ClearScript_ScriptEngineException_GetObjectData.htm\u0000193","ScriptEngine.CollectGarbage Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_CollectGarbage.htm\u0000135","IScriptEngine.EvaluateDocument(String, DocumentCategory) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_EvaluateDocument_1.htm\u0000234","IArrayBuffer.ReadBytes Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBuffer_ReadBytes.htm\u0000256","JavaScriptExtensions.ToPromise(ValueTask) Method\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise_2.htm\u0000263","ScriptEngine.AddHostObject(String, Object) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostObject_1.htm\u0000220","PropertyBag.RemovePropertyNoCheck Method\u0000html/M_Microsoft_ClearScript_PropertyBag_RemovePropertyNoCheck.htm\u0000159","JavaScriptExtensions.ToPromise\u0026lt;T\u0026gt;(ValueTask\u0026lt;T\u0026gt;) Method\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise__1_2.htm\u0000306","ScriptEngine.Evaluate(DocumentInfo, String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Evaluate.htm\u0000257","ScriptEngineException.ToString Method\u0000html/M_Microsoft_ClearScript_ScriptEngineException_ToString.htm\u0000127","ScriptEngine.Dispose Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Dispose.htm\u0000119","ScriptEngine.AddHostType(String, HostItemFlags, String, Type[]) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_2.htm\u0000391","ScriptEngine.AddCOMObject(String, HostItemFlags, String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_2.htm\u0000322","ScriptEngine.AddCOMType(String, HostItemFlags, String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_2.htm\u0000322","IArrayBuffer.WriteBytes Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBuffer_WriteBytes.htm\u0000257","IScriptEngine.EvaluateDocument(String, DocumentCategory, DocumentContextCallback) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_EvaluateDocument_2.htm\u0000273","PropertyBag.SetPropertyNoCheck Method\u0000html/M_Microsoft_ClearScript_PropertyBag_SetPropertyNoCheck.htm\u0000170","JavaScriptExtensions.ToPromise(ValueTask, ScriptEngine) Method\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise_3.htm\u0000300","ScriptEngine.AddHostType(HostItemFlags, Type) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType.htm\u0000291","ScriptEngineException Constructor\u0000html/M_Microsoft_ClearScript_ScriptEngineException__ctor.htm\u000093","ScriptEngine.EvaluateDocument(String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_EvaluateDocument.htm\u0000221","ScriptEngine.Dispose(Boolean) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Dispose_1.htm\u0000202","JavaScriptExtensions.ToPromise\u0026lt;T\u0026gt;(ValueTask\u0026lt;T\u0026gt;, ScriptEngine) Method\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise__1_3.htm\u0000342","ScriptEngine.AddHostType(String, HostItemFlags, Type) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_3.htm\u0000316","ScriptEngine.GetStackTrace Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_GetStackTrace.htm\u0000152","ScriptEngine.ExecuteCommand Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_ExecuteCommand.htm\u0000208","ITypedArray\u0026lt;T\u0026gt;.Read Method\u0000html/M_Microsoft_ClearScript_JavaScript_ITypedArray_1_Read.htm\u0000252","ScriptEngineException(SerializationInfo, StreamingContext) Constructor\u0000html/M_Microsoft_ClearScript_ScriptEngineException__ctor_1.htm\u0000160","PropertyBag.TryGetValue Method\u0000html/M_Microsoft_ClearScript_PropertyBag_TryGetValue.htm\u0000225","ScriptEngine.AddHostTypes Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostTypes.htm\u0000261","ScriptEngine.AddCOMType(String, HostItemFlags, String, String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_3.htm\u0000371","ScriptEngine.AddCOMObject(String, HostItemFlags, String, String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_3.htm\u0000371","ScriptEngine(String, String) Constructor\u0000html/M_Microsoft_ClearScript_ScriptEngine__ctor_1.htm\u0000186","ScriptEngine.Interrupt Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Interrupt.htm\u0000119","ScriptEngine.EvaluateDocument(String, DocumentCategory) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_EvaluateDocument_1.htm\u0000266","ITypedArray\u0026lt;T\u0026gt;.ToArray Method\u0000html/M_Microsoft_ClearScript_JavaScript_ITypedArray_1_ToArray.htm\u0000128","PropertyBag Constructor\u0000html/M_Microsoft_ClearScript_PropertyBag__ctor.htm\u000098","ScriptEngineException(String) Constructor\u0000html/M_Microsoft_ClearScript_ScriptEngineException__ctor_2.htm\u0000124","ScriptEngine.ExecuteDocument(String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_ExecuteDocument.htm\u0000186","JavaScriptExtensions.ToTask Method\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToTask.htm\u0000254","ScriptMemberAttribute(ScriptAccess) Constructor\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_1.htm\u0000131","ScriptEngine.AddHostType(String, String, String, Type[]) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_4.htm\u0000394","ScriptEngine.AddCOMType(String, Guid) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_4.htm\u0000241","ScriptEngine.AddCOMObject(String, Guid) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_4.htm\u0000241","ScriptInterruptedException.GetObjectData Method\u0000html/M_Microsoft_ClearScript_ScriptInterruptedException_GetObjectData.htm\u0000185","NoDefaultScriptAccessAttribute Constructor\u0000html/M_Microsoft_ClearScript_NoDefaultScriptAccessAttribute__ctor.htm\u000093","ScriptEngineException(String, Exception) Constructor\u0000html/M_Microsoft_ClearScript_ScriptEngineException__ctor_3.htm\u0000163","PropertyBag(Boolean) Constructor\u0000html/M_Microsoft_ClearScript_PropertyBag__ctor_1.htm\u0000153","ScriptEngine.Invoke Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Invoke.htm\u0000226","ITypedArray\u0026lt;T\u0026gt;.Write Method\u0000html/M_Microsoft_ClearScript_JavaScript_ITypedArray_1_Write.htm\u0000252","ScriptMemberAttribute(ScriptAccess, ScriptMemberFlags) Constructor\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_2.htm\u0000168","ScriptEngine.EvaluateDocument(String, DocumentCategory, DocumentContextCallback) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_EvaluateDocument_2.htm\u0000313","NoScriptAccessAttribute Constructor\u0000html/M_Microsoft_ClearScript_NoScriptAccessAttribute__ctor.htm\u000092","ScriptInterruptedException.ToString Method\u0000html/M_Microsoft_ClearScript_ScriptInterruptedException_ToString.htm\u0000126","ScriptObject.DeleteProperty(String) Method\u0000html/M_Microsoft_ClearScript_ScriptObject_DeleteProperty_1.htm\u0000154","ScriptEngine.AddCOMType(String, Guid, String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_5.htm\u0000290","ScriptEngine.AddCOMObject(String, Guid, String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_5.htm\u0000290","V8Runtime.BeginCpuProfile(String) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_BeginCpuProfile.htm\u0000156","ScriptEngine(String) Constructor\u0000html/M_Microsoft_ClearScript_ScriptEngine__ctor.htm\u0000224","ScriptMemberAttribute(ScriptMemberFlags) Constructor\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_3.htm\u0000130","ScriptEngine.AddHostType(String, String, Type[]) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_5.htm\u0000345","ScriptObject.SetProperty(String, Object[]) Method\u0000html/M_Microsoft_ClearScript_ScriptObject_SetProperty_1.htm\u0000225","ScriptEngine.Evaluate(String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Evaluate_1.htm\u0000242","ScriptInterruptedException Constructor\u0000html/M_Microsoft_ClearScript_ScriptInterruptedException__ctor.htm\u000093","PropertyBag.Add Method\u0000html/M_Microsoft_ClearScript_PropertyBag_Add.htm\u0000182","ScriptObject.Dispose Method\u0000html/M_Microsoft_ClearScript_ScriptObject_Dispose.htm\u0000110","ScriptMemberAttribute(String) Constructor\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_4.htm\u0000134","V8Runtime.BeginCpuProfile(String, V8CpuProfileFlags) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_BeginCpuProfile_1.htm\u0000191","ScriptUsageAttribute Constructor\u0000html/M_Microsoft_ClearScript_ScriptUsageAttribute__ctor.htm\u000093","ScriptEngine.AddCOMType(String, String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_6.htm\u0000276","ScriptEngine.AddCOMObject(String, String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_6.htm\u0000276","ScriptEngine.AddHostType(String, Type) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_6.htm\u0000270","ScriptInterruptedException(SerializationInfo, StreamingContext) Constructor\u0000html/M_Microsoft_ClearScript_ScriptInterruptedException__ctor_1.htm\u0000160","V8Runtime.Compile(String) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_3.htm\u0000146","ScriptObject.GetProperty(Int32) Method\u0000html/M_Microsoft_ClearScript_ScriptObject_GetProperty.htm\u0000154","V8Runtime.CompileDocument(String, DocumentCategory, DocumentContextCallback, V8CacheKind, Byte[], Boolean) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_3.htm\u0000384","V8Runtime.CollectCpuProfileSample Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CollectCpuProfileSample.htm\u0000105","ScriptEngine.AddHostType(Type) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_7.htm\u0000245","ScriptEngine.AddCOMType(String, String, String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_7.htm\u0000325","ScriptEngine.AddCOMObject(String, String, String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_7.htm\u0000325","ScriptInterruptedException(String) Constructor\u0000html/M_Microsoft_ClearScript_ScriptInterruptedException__ctor_2.htm\u0000124","ScriptEngine.Evaluate(String, Boolean, String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Evaluate_2.htm\u0000569","ScriptMemberAttribute(String, ScriptAccess) Constructor\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_5.htm\u0000172","ScriptObject.GetProperty(String, Object[]) Method\u0000html/M_Microsoft_ClearScript_ScriptObject_GetProperty_1.htm\u0000210","V8Runtime.CollectGarbage Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CollectGarbage.htm\u0000127","V8Runtime Constructor\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor.htm\u000094","V8Runtime.Compile(String, V8CacheKind, Byte[], Boolean) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_4.htm\u0000308","V8Runtime.CompileDocument(String, DocumentCategory, DocumentContextCallback, V8CacheKind, Byte[]) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_4.htm\u0000350","ScriptInterruptedException(String, Exception) Constructor\u0000html/M_Microsoft_ClearScript_ScriptInterruptedException__ctor_3.htm\u0000163","V8Runtime.CreateScriptEngine(V8ScriptEngineFlags, Int32) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine_2.htm\u0000256","ScriptEngine.AddRestrictedHostObject\u0026lt;T\u0026gt;(String, HostItemFlags, T) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddRestrictedHostObject__1.htm\u0000324","ScriptMemberAttribute(String, ScriptAccess, ScriptMemberFlags) Constructor\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_6.htm\u0000210","ScriptObject.Invoke Method\u0000html/M_Microsoft_ClearScript_ScriptObject_Invoke.htm\u0000197","ScriptEngine.Evaluate(String, String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Evaluate_3.htm\u0000305","V8Runtime(V8RuntimeConstraints) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_1.htm\u0000129","V8Runtime.Compile(DocumentInfo, String) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile.htm\u0000186","ScriptMemberAttribute Constructor\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor.htm\u000093","V8Runtime(String) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_6.htm\u0000147","V8Runtime.CreateScriptEngine(String) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine_3.htm\u0000191","V8Runtime.Compile(String, V8CacheKind, Byte[]) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_5.htm\u0000277","ScriptMemberAttribute(String, ScriptMemberFlags) Constructor\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_7.htm\u0000171","V8Runtime(String, V8RuntimeFlags) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_10.htm\u0000182","V8Runtime.CompileDocument(String, DocumentCategory, V8CacheKind, Byte[], Boolean) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_5.htm\u0000345","V8ScriptEngine.CollectCpuProfileSample Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CollectCpuProfileSample.htm\u0000106","ScriptObject.InvokeAsFunction Method\u0000html/M_Microsoft_ClearScript_ScriptObject_InvokeAsFunction.htm\u0000181","ScriptEngine.ExecuteDocument(String, DocumentCategory) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_ExecuteDocument_1.htm\u0000231","ScriptEngine.Execute(DocumentInfo, String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Execute.htm\u0000222","V8Runtime.CompileDocument(String) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument.htm\u0000154","V8Runtime(String, V8RuntimeConstraints) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_7.htm\u0000182","ScriptObject.DeleteProperty(Int32) Method\u0000html/M_Microsoft_ClearScript_ScriptObject_DeleteProperty.htm\u0000153","V8Runtime.CreateScriptEngine(String, V8ScriptEngineFlags) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine_4.htm\u0000270","V8Runtime.Compile(String, String) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_6.htm\u0000202","V8Runtime(String, V8RuntimeFlags, Int32) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_11.htm\u0000222","V8ScriptEngine.CollectGarbage Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CollectGarbage.htm\u0000153","ScriptObject.InvokeMethod Method\u0000html/M_Microsoft_ClearScript_ScriptObject_InvokeMethod.htm\u0000197","V8Runtime.CompileDocument(String, DocumentCategory) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_1.htm\u0000191","ScriptUsageAttribute(ScriptAccess) Constructor\u0000html/M_Microsoft_ClearScript_ScriptUsageAttribute__ctor_1.htm\u0000131","V8Runtime.CompileDocument(String, DocumentCategory, V8CacheKind, Byte[]) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_6.htm\u0000311","ScriptEngine.ExecuteDocument(String, DocumentCategory, DocumentContextCallback) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_ExecuteDocument_2.htm\u0000278","V8ScriptEngine.Compile(String, V8CacheKind, Byte[]) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_5.htm\u0000277","V8ScriptEngine.CompileDocument(String, DocumentCategory, V8CacheKind, Byte[], Boolean) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_5.htm\u0000346","V8Runtime(V8RuntimeConstraints, V8RuntimeFlags) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_2.htm\u0000164","V8ScriptEngine.Compile(DocumentInfo, String) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile.htm\u0000185","ScriptObject.SetProperty(Int32, Object) Method\u0000html/M_Microsoft_ClearScript_ScriptObject_SetProperty.htm\u0000172","V8Runtime.CreateScriptEngine(String, V8ScriptEngineFlags, Int32) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine_5.htm\u0000310","StringDocument Constructor\u0000html/M_Microsoft_ClearScript_StringDocument__ctor.htm\u0000148","V8Runtime.Compile(String, String, V8CacheKind, Byte[], Boolean) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_7.htm\u0000366","V8Runtime.CompileDocument(String, DocumentCategory, DocumentContextCallback) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_2.htm\u0000230","V8ScriptEngine.Compile(String, String) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_6.htm\u0000201","ScriptEngine.Execute(String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Execute_1.htm\u0000208","V8ScriptEngine.CompileDocument(String) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument.htm\u0000155","V8Runtime.Dispose Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Dispose.htm\u0000118","V8Runtime.CompileDocument(String, V8CacheKind, Byte[], Boolean) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_7.htm\u0000308","V8Runtime(V8RuntimeConstraints, V8RuntimeFlags, Int32) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_3.htm\u0000204","Undefined.ToString Method\u0000html/M_Microsoft_ClearScript_Undefined_ToString.htm\u0000139","V8ScriptEngine.CompileDocument(String, DocumentCategory, V8CacheKind, Byte[]) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_6.htm\u0000312","V8ScriptEngine.ExecuteCommand Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_ExecuteCommand.htm\u0000231","V8ScriptEngine(String, V8ScriptEngineFlags, Int32) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_11.htm\u0000239","V8Runtime(V8RuntimeFlags) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_4.htm\u0000129","V8Runtime.EndCpuProfile Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_EndCpuProfile.htm\u0000158","V8ScriptEngine.CompileDocument(String, DocumentCategory) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_1.htm\u0000192","ScriptEngine.Execute(String, Boolean, String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Execute_2.htm\u0000336","V8CpuProfile.ToJson Method\u0000html/M_Microsoft_ClearScript_V8_V8CpuProfile_ToJson.htm\u0000128","V8ScriptEngine.GetRuntimeHeapInfo Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_GetRuntimeHeapInfo.htm\u0000121","V8ScriptEngine.Compile(String, String, V8CacheKind, Byte[], Boolean) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_7.htm\u0000365","V8Runtime.Compile(String, String, V8CacheKind, Byte[]) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_8.htm\u0000335","V8Runtime.CompileDocument(String, V8CacheKind, Byte[]) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_8.htm\u0000274","V8ScriptEngine.CompileDocument(String, V8CacheKind, Byte[], Boolean) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_7.htm\u0000309","V8ScriptEngine(V8RuntimeConstraints, V8ScriptEngineFlags) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_2.htm\u0000186","V8Runtime.GetHeapInfo Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_GetHeapInfo.htm\u0000111","V8Runtime(V8RuntimeFlags, Int32) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_5.htm\u0000168","V8Runtime.CreateScriptEngine Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine.htm\u0000138","V8CpuProfile.WriteJson Method\u0000html/M_Microsoft_ClearScript_V8_V8CpuProfile_WriteJson.htm\u0000146","V8ScriptEngine.GetStackTrace Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_GetStackTrace.htm\u0000165","V8Runtime(String, V8RuntimeConstraints, V8RuntimeFlags) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_8.htm\u0000218","ScriptEngine.Execute(String, String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Execute_3.htm\u0000271","V8Runtime.Compile(DocumentInfo, String, V8CacheKind, Byte[], Boolean) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_1.htm\u0000350","V8ScriptEngine.Compile(String, String, V8CacheKind, Byte[]) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_8.htm\u0000335","V8Runtime.WriteHeapSnapshot Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_WriteHeapSnapshot.htm\u0000145","V8RuntimeConstraints Constructor\u0000html/M_Microsoft_ClearScript_V8_V8RuntimeConstraints__ctor.htm\u000092","V8ScriptEngine.Interrupt Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Interrupt.htm\u0000133","V8ScriptEngine(V8RuntimeConstraints, V8ScriptEngineFlags, Int32) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_3.htm\u0000226","V8Runtime.CreateScriptEngine(V8ScriptEngineFlags) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine_1.htm\u0000217","V8ScriptEngine.CompileDocument(String, V8CacheKind, Byte[]) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_8.htm\u0000275","V8ScriptEngine(String, V8RuntimeConstraints, V8ScriptEngineFlags, Int32) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_9.htm\u0000279","ScriptEngine.Finalize Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Finalize.htm\u0000168","V8Runtime(String, V8RuntimeConstraints, V8RuntimeFlags, Int32) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_9.htm\u0000257","JScriptEngine(ISyncInvoker) Constructor\u0000html/M_Microsoft_ClearScript_Windows_Core_JScriptEngine__ctor.htm\u0000133","V8ScriptEngine.Dispose(Boolean) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Dispose.htm\u0000205","NullSyncInvoker.VerifyAccess Method\u0000html/M_Microsoft_ClearScript_Windows_Core_NullSyncInvoker_VerifyAccess.htm\u0000133","V8Runtime.Compile(DocumentInfo, String, V8CacheKind, Byte[]) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_2.htm\u0000319","V8ScriptEngine(V8ScriptEngineFlags) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_4.htm\u0000146","V8ScriptEngine.CompileDocument(String, DocumentCategory, DocumentContextCallback) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_2.htm\u0000231","V8ScriptEngine.WriteRuntimeHeapSnapshot Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_WriteRuntimeHeapSnapshot.htm\u0000151","V8Script.Dispose Method\u0000html/M_Microsoft_ClearScript_V8_V8Script_Dispose.htm\u0000162","WindowsScriptEngine.CollectGarbage Method\u0000html/M_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_CollectGarbage.htm\u0000154","V8ScriptEngine.BeginCpuProfile(String) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_BeginCpuProfile.htm\u0000158","JScriptEngine.ExecuteCommand Method\u0000html/M_Microsoft_ClearScript_Windows_JScriptEngine_ExecuteCommand.htm\u0000231","JScriptEngine(WindowsScriptEngineFlags, ISyncInvoker) Constructor\u0000html/M_Microsoft_ClearScript_Windows_Core_JScriptEngine__ctor_1.htm\u0000172","VBScriptEngine Constructor\u0000html/M_Microsoft_ClearScript_Windows_VBScriptEngine__ctor.htm\u000095","V8ScriptEngine.EndCpuProfile Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_EndCpuProfile.htm\u0000159","V8ScriptEngine.Compile(DocumentInfo, String, V8CacheKind, Byte[], Boolean) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_1.htm\u0000348","V8ScriptEngine Constructor\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor.htm\u0000110","V8ScriptEngine(V8ScriptEngineFlags, Int32) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_5.htm\u0000185","VBScriptEngine.ExecuteCommand Method\u0000html/M_Microsoft_ClearScript_Windows_Core_VBScriptEngine_ExecuteCommand.htm\u0000278","VoidResult.ToString Method\u0000html/M_Microsoft_ClearScript_VoidResult_ToString.htm\u0000140","JScriptEngine Constructor\u0000html/M_Microsoft_ClearScript_Windows_JScriptEngine__ctor.htm\u000095","WindowsScriptEngine.Dispose(Boolean) Method\u0000html/M_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_Dispose.htm\u0000210","VBScriptEngine(WindowsScriptEngineFlags) Constructor\u0000html/M_Microsoft_ClearScript_Windows_VBScriptEngine__ctor_1.htm\u0000132","V8ScriptEngine.CompileDocument(String, DocumentCategory, DocumentContextCallback, V8CacheKind, Byte[], Boolean) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_3.htm\u0000385","V8ScriptEngine.Evaluate(V8Script) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Evaluate.htm\u0000162","V8ScriptEngine(V8RuntimeConstraints) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_1.htm\u0000150","JScriptEngine(String, ISyncInvoker) Constructor\u0000html/M_Microsoft_ClearScript_Windows_Core_JScriptEngine__ctor_2.htm\u0000188","V8ScriptEngine.BeginCpuProfile(String, V8CpuProfileFlags) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_BeginCpuProfile_1.htm\u0000193","V8ScriptEngine(String) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_6.htm\u0000163","VBScriptEngine(ISyncInvoker) Constructor\u0000html/M_Microsoft_ClearScript_Windows_Core_VBScriptEngine__ctor.htm\u0000133","ISyncInvoker.CheckAccess Method\u0000html/M_Microsoft_ClearScript_Windows_Core_ISyncInvoker_CheckAccess.htm\u0000122","JScriptEngine(WindowsScriptEngineFlags) Constructor\u0000html/M_Microsoft_ClearScript_Windows_JScriptEngine__ctor_1.htm\u0000132","V8ScriptEngine.Compile(DocumentInfo, String, V8CacheKind, Byte[]) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_2.htm\u0000319","VBScriptEngine(String) Constructor\u0000html/M_Microsoft_ClearScript_Windows_VBScriptEngine__ctor_2.htm\u0000148","WindowsScriptEngine.GetStackTrace Method\u0000html/M_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_GetStackTrace.htm\u0000190","V8ScriptEngine.Execute(V8Script) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Execute.htm\u0000164","V8ScriptEngine.CancelAwaitDebugger Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CancelAwaitDebugger.htm\u0000117","V8ScriptEngine(String, V8ScriptEngineFlags) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_10.htm\u0000199","V8ScriptEngine(String, V8RuntimeConstraints) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_7.htm\u0000203","ISyncInvoker.Invoke(Action) Method\u0000html/M_Microsoft_ClearScript_Windows_Core_ISyncInvoker_Invoke.htm\u0000137","VBScriptEngine(WindowsScriptEngineFlags, ISyncInvoker) Constructor\u0000html/M_Microsoft_ClearScript_Windows_Core_VBScriptEngine__ctor_1.htm\u0000172","JScriptEngine(String, WindowsScriptEngineFlags, ISyncInvoker) Constructor\u0000html/M_Microsoft_ClearScript_Windows_Core_JScriptEngine__ctor_3.htm\u0000229","JScriptEngine(String) Constructor\u0000html/M_Microsoft_ClearScript_Windows_JScriptEngine__ctor_2.htm\u0000148","V8ScriptEngine.CompileDocument(String, DocumentCategory, DocumentContextCallback, V8CacheKind, Byte[]) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_4.htm\u0000351","V8ScriptEngine.Compile(String) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_3.htm\u0000145","VBScriptEngine(String, WindowsScriptEngineFlags) Constructor\u0000html/M_Microsoft_ClearScript_Windows_VBScriptEngine__ctor_3.htm\u0000185","Extensions.ToHostType Method\u0000html/Overload_Microsoft_ClearScript_Extensions_ToHostType.htm\u000085","V8ScriptEngine.CancelInterrupt Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CancelInterrupt.htm\u0000112","WindowsScriptEngine.Interrupt Method\u0000html/M_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_Interrupt.htm\u0000135","ISyncInvoker.Invoke\u0026lt;T\u0026gt;(Func\u0026lt;T\u0026gt;) Method\u0000html/M_Microsoft_ClearScript_Windows_Core_ISyncInvoker_Invoke__1.htm\u0000189","VBScriptEngine(String, ISyncInvoker) Constructor\u0000html/M_Microsoft_ClearScript_Windows_Core_VBScriptEngine__ctor_2.htm\u0000188","Microsoft.ClearScript.V8 Namespace\u0000html/N_Microsoft_ClearScript_V8.htm\u0000223","V8ScriptEngine(String, V8RuntimeConstraints, V8ScriptEngineFlags) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_8.htm\u0000240","IScriptObject.Item Property\u0000html/Overload_Microsoft_ClearScript_IScriptObject_Item.htm\u000068","JScriptEngine(String, WindowsScriptEngineFlags) Constructor\u0000html/M_Microsoft_ClearScript_Windows_JScriptEngine__ctor_3.htm\u0000185","IScriptEngine.AddHostType Method\u0000html/Overload_Microsoft_ClearScript_IScriptEngine_AddHostType.htm\u0000224","Extensions.ToRestrictedHostObject Method\u0000html/Overload_Microsoft_ClearScript_Extensions_ToRestrictedHostObject.htm\u0000172","WindowsScriptEngine.VerifyAccess Method\u0000html/M_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_VerifyAccess.htm\u0000109","JScriptEngine(String, String, String, WindowsScriptEngineFlags, ISyncInvoker) Constructor\u0000html/M_Microsoft_ClearScript_Windows_Core_JScriptEngine__ctor_4.htm\u0000345","V8ScriptEngine.Compile(String, V8CacheKind, Byte[], Boolean) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_4.htm\u0000307","ISyncInvoker.VerifyAccess Method\u0000html/M_Microsoft_ClearScript_Windows_Core_ISyncInvoker_VerifyAccess.htm\u0000102","VBScriptEngine(String, String, String, WindowsScriptEngineFlags) Constructor\u0000html/M_Microsoft_ClearScript_Windows_VBScriptEngine__ctor_4.htm\u0000302","IScriptObject.SetProperty Method\u0000html/Overload_Microsoft_ClearScript_IScriptObject_SetProperty.htm\u000070","IScriptEngine.AddRestrictedHostObject Method\u0000html/Overload_Microsoft_ClearScript_IScriptEngine_AddRestrictedHostObject.htm\u000085","HostFunctions.func Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_func.htm\u000081","Microsoft.ClearScript.Windows Namespace\u0000html/N_Microsoft_ClearScript_Windows.htm\u0000142","VBScriptEngine(String, WindowsScriptEngineFlags, ISyncInvoker) Constructor\u0000html/M_Microsoft_ClearScript_Windows_Core_VBScriptEngine__ctor_3.htm\u0000229","ScriptUsageAttribute Constructor\u0000html/Overload_Microsoft_ClearScript_ScriptUsageAttribute__ctor.htm\u000060","ScriptEngine.AddCOMType Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_AddCOMType.htm\u0000319","NullSyncInvoker.CheckAccess Method\u0000html/M_Microsoft_ClearScript_Windows_Core_NullSyncInvoker_CheckAccess.htm\u0000154","JScriptEngine(String, String, String, WindowsScriptEngineFlags) Constructor\u0000html/M_Microsoft_ClearScript_Windows_JScriptEngine__ctor_4.htm\u0000302","HostFunctions.getProperty Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_getProperty.htm\u000081","IScriptEngine.Evaluate Method\u0000html/Overload_Microsoft_ClearScript_IScriptEngine_Evaluate.htm\u000097","WindowsScriptEngine Constructor\u0000html/M_Microsoft_ClearScript_Windows_WindowsScriptEngine__ctor.htm\u0000284","Microsoft.ClearScript.Windows.Core Namespace\u0000html/N_Microsoft_ClearScript_Windows_Core.htm\u0000107","WindowsScriptEngine Constructor\u0000html/M_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine__ctor.htm\u0000324","V8Runtime.BeginCpuProfile Method\u0000html/Overload_Microsoft_ClearScript_V8_V8Runtime_BeginCpuProfile.htm\u000066","ScriptEngine.AddHostObject Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_AddHostObject.htm\u000072","IArrayBufferView.InvokeWithDirectAccess Method\u0000html/Overload_Microsoft_ClearScript_JavaScript_IArrayBufferView_InvokeWithDirectAccess.htm\u000091","HostFunctions.isTypeObj Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_isTypeObj.htm\u000095","IScriptEngine.EvaluateDocument Method\u0000html/Overload_Microsoft_ClearScript_IScriptEngine_EvaluateDocument.htm\u000084","Nothing.ToString Method\u0000html/M_Microsoft_ClearScript_Windows_Nothing_ToString.htm\u0000143","JScriptEngine.ExecuteCommand Method\u0000html/M_Microsoft_ClearScript_Windows_Core_JScriptEngine_ExecuteCommand.htm\u0000235","VBScriptEngine(String, String, String, WindowsScriptEngineFlags, ISyncInvoker) Constructor\u0000html/M_Microsoft_ClearScript_Windows_Core_VBScriptEngine__ctor_4.htm\u0000345","IHostWindow.EnableModeless Method\u0000html/M_Microsoft_ClearScript_Windows_IHostWindow_EnableModeless.htm\u0000126","ScriptEngine.AddHostType Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_AddHostType.htm\u0000224","IArrayBuffer.InvokeWithDirectAccess Method\u0000html/Overload_Microsoft_ClearScript_JavaScript_IArrayBuffer_InvokeWithDirectAccess.htm\u000094","V8Runtime.Compile Method\u0000html/Overload_Microsoft_ClearScript_V8_V8Runtime_Compile.htm\u0000233","HostFunctions.newArr Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_newArr.htm\u000072","IScriptEngine.Execute Method\u0000html/Overload_Microsoft_ClearScript_IScriptEngine_Execute.htm\u000097","WindowsScriptEngine.CheckAccess Method\u0000html/M_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_CheckAccess.htm\u0000130","IWindowsScriptObject.GetUnderlyingObject Method\u0000html/M_Microsoft_ClearScript_Windows_IWindowsScriptObject_GetUnderlyingObject.htm\u0000116","ScriptEngine.AddRestrictedHostObject Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_AddRestrictedHostObject.htm\u000085","HostFunctions.newObj Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_newObj.htm\u0000119","V8ScriptEngine.CompileDocument Method\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument.htm\u0000253","IScriptEngine.ExecuteDocument Method\u0000html/Overload_Microsoft_ClearScript_IScriptEngine_ExecuteDocument.htm\u000084","VBScriptEngine.ExecuteCommand Method\u0000html/M_Microsoft_ClearScript_Windows_VBScriptEngine_ExecuteCommand.htm\u0000274","DocumentCategory Properties\u0000html/Properties_T_Microsoft_ClearScript_DocumentCategory.htm\u000066","V8Runtime.CompileDocument Method\u0000html/Overload_Microsoft_ClearScript_V8_V8Runtime_CompileDocument.htm\u0000252","ScriptEngine.Dispose Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_Dispose.htm\u000073","Microsoft.ClearScript Namespace\u0000html/N_Microsoft_ClearScript.htm\u0000541","JavaScriptExtensions.ToPromise Method\u0000html/Overload_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise.htm\u0000245","HostFunctions.removeProperty Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_removeProperty.htm\u000075","V8ScriptEngine.Dispose Method\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_Dispose.htm\u000074","IScriptObject.DeleteProperty Method\u0000html/Overload_Microsoft_ClearScript_IScriptObject_DeleteProperty.htm\u000059","ITypedArray\u0026lt;T\u0026gt; Properties\u0000html/Properties_T_Microsoft_ClearScript_JavaScript_ITypedArray_1.htm\u0000217","DocumentInfo Properties\u0000html/Properties_T_Microsoft_ClearScript_DocumentInfo.htm\u000097","ScriptEngine.Evaluate Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_Evaluate.htm\u000097","V8Runtime.CreateScriptEngine Method\u0000html/Overload_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine.htm\u0000143","V8RuntimeConstraints Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8RuntimeConstraints.htm\u0000137","HostFunctions.setProperty Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_setProperty.htm\u000081","IScriptObject.GetProperty Method\u0000html/Overload_Microsoft_ClearScript_IScriptObject_GetProperty.htm\u000068","V8ScriptEngine.Evaluate Method\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_Evaluate.htm\u0000106","PropertyBag Constructor\u0000html/Overload_Microsoft_ClearScript_PropertyBag__ctor.htm\u000089","ModuleCategory Properties\u0000html/Properties_T_Microsoft_ClearScript_JavaScript_ModuleCategory.htm\u000065","DocumentLoader Properties\u0000html/Properties_T_Microsoft_ClearScript_DocumentLoader.htm\u000064","Microsoft.ClearScript.JavaScript Namespace\u0000html/N_Microsoft_ClearScript_JavaScript.htm\u0000136","ScriptEngine.EvaluateDocument Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_EvaluateDocument.htm\u000084","HostFunctions.typeOf Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_typeOf.htm\u000094","V8ScriptEngine.Execute Method\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_Execute.htm\u0000106","NoDefaultScriptAccessAttribute Properties\u0000html/Properties_T_Microsoft_ClearScript_NoDefaultScriptAccessAttribute.htm\u000087","V8RuntimeHeapInfo Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8RuntimeHeapInfo.htm\u0000113","NullSyncInvoker.Invoke(Action) Method\u0000html/M_Microsoft_ClearScript_Windows_Core_NullSyncInvoker_Invoke.htm\u0000174","ScriptEngineException Constructor\u0000html/Overload_Microsoft_ClearScript_ScriptEngineException__ctor.htm\u000089","V8Runtime Constructor\u0000html/Overload_Microsoft_ClearScript_V8_V8Runtime__ctor.htm\u0000265","DocumentSettings Properties\u0000html/Properties_T_Microsoft_ClearScript_DocumentSettings.htm\u0000118","DefaultScriptUsageAttribute Constructor\u0000html/Overload_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor.htm\u000062","ScriptEngine.Execute Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_Execute.htm\u000097","Document.Encoding Property\u0000html/P_Microsoft_ClearScript_Document_Encoding.htm\u0000143","HostTypeCollection.AddAssembly Method\u0000html/Overload_Microsoft_ClearScript_HostTypeCollection_AddAssembly.htm\u0000120","V8Script Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8Script.htm\u000068","NoScriptAccessAttribute Properties\u0000html/Properties_T_Microsoft_ClearScript_NoScriptAccessAttribute.htm\u000087","V8ScriptEngine.BeginCpuProfile Method\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_BeginCpuProfile.htm\u000067","HostSettings Properties\u0000html/Properties_T_Microsoft_ClearScript_HostSettings.htm\u000080","DocumentCategory.Script Property\u0000html/P_Microsoft_ClearScript_DocumentCategory_Script.htm\u0000121","ScriptEngine.ExecuteDocument Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_ExecuteDocument.htm\u000084","V8ScriptEngine Constructor\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine__ctor.htm\u0000278","HostTypeCollection.AddType Method\u0000html/Overload_Microsoft_ClearScript_HostTypeCollection_AddType.htm\u0000102","NullSyncInvoker.Invoke\u0026lt;T\u0026gt;(Func\u0026lt;T\u0026gt;) Method\u0000html/M_Microsoft_ClearScript_Windows_Core_NullSyncInvoker_Invoke__1.htm\u0000235","ScriptEngine.AddCOMObject Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_AddCOMObject.htm\u0000319","PropertyBag Properties\u0000html/Properties_T_Microsoft_ClearScript_PropertyBag.htm\u000091","Document.Info Property\u0000html/P_Microsoft_ClearScript_Document_Info.htm\u0000119","ScriptEngine Constructor\u0000html/Overload_Microsoft_ClearScript_ScriptEngine__ctor.htm\u000070","DocumentInfo Constructor\u0000html/Overload_Microsoft_ClearScript_DocumentInfo__ctor.htm\u000065","HostTypeCollection Properties\u0000html/Properties_T_Microsoft_ClearScript_HostTypeCollection.htm\u0000116","ISyncInvoker.Invoke Method\u0000html/Overload_Microsoft_ClearScript_Windows_Core_ISyncInvoker_Invoke.htm\u000076","IScriptEngineException.HResult Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_HResult.htm\u0000114","HostTypeCollection Constructor\u0000html/Overload_Microsoft_ClearScript_HostTypeCollection__ctor.htm\u0000144","V8ScriptEngine.Compile Method\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_Compile.htm\u0000233","ImmutableValueAttribute Properties\u0000html/Properties_T_Microsoft_ClearScript_ImmutableValueAttribute.htm\u000068","IScriptEngine.EnableAutoHostVariables Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_EnableAutoHostVariables.htm\u0000183","ScriptInterruptedException Constructor\u0000html/Overload_Microsoft_ClearScript_ScriptInterruptedException__ctor.htm\u000089","DocumentSettings.AddSystemDocument Method\u0000html/Overload_Microsoft_ClearScript_DocumentSettings_AddSystemDocument.htm\u0000113","HostSettings.AuxiliarySearchPath Property\u0000html/P_Microsoft_ClearScript_HostSettings_AuxiliarySearchPath.htm\u0000171","JScriptEngine Constructor\u0000html/Overload_Microsoft_ClearScript_Windows_Core_JScriptEngine__ctor.htm\u0000143","ScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_ScriptEngine.htm\u0000337","V8ScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8ScriptEngine.htm\u0000574","IScriptEngineException.InnerException Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_InnerException.htm\u0000127","ExtendedHostFunctions.lib Method\u0000html/Overload_Microsoft_ClearScript_ExtendedHostFunctions_lib.htm\u000077","IScriptObject.PropertyIndices Property\u0000html/P_Microsoft_ClearScript_IScriptObject_PropertyIndices.htm\u0000137","HostSettings.CustomAttributeLoader Property\u0000html/P_Microsoft_ClearScript_HostSettings_CustomAttributeLoader.htm\u0000142","IScriptEngine.AddCOMObject Method\u0000html/Overload_Microsoft_ClearScript_IScriptEngine_AddCOMObject.htm\u0000319","NullSyncInvoker.Invoke Method\u0000html/Overload_Microsoft_ClearScript_Windows_Core_NullSyncInvoker_Invoke.htm\u000077","ScriptMemberAttribute Constructor\u0000html/Overload_Microsoft_ClearScript_ScriptMemberAttribute__ctor.htm\u0000169","IPropertyBag Properties\u0000html/Properties_T_Microsoft_ClearScript_IPropertyBag.htm\u0000165","IScriptEngine.EnableNullResultWrapping Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_EnableNullResultWrapping.htm\u0000212","V8Settings Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8Settings.htm\u000062","ExtendedHostFunctions.type Method\u0000html/Overload_Microsoft_ClearScript_ExtendedHostFunctions_type.htm\u000084","IScriptEngineException.IsFatal Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_IsFatal.htm\u0000115","ScriptObject.DeleteProperty Method\u0000html/Overload_Microsoft_ClearScript_ScriptObject_DeleteProperty.htm\u000059","VBScriptEngine Constructor\u0000html/Overload_Microsoft_ClearScript_Windows_Core_VBScriptEngine__ctor.htm\u0000143","IScriptObject.PropertyNames Property\u0000html/P_Microsoft_ClearScript_IScriptObject_PropertyNames.htm\u0000139","HostSettings.UseAssemblyTable Property\u0000html/P_Microsoft_ClearScript_HostSettings_UseAssemblyTable.htm\u0000208","IScriptEngine.AddCOMType Method\u0000html/Overload_Microsoft_ClearScript_IScriptEngine_AddCOMType.htm\u0000319","ScriptEngineException Properties\u0000html/Properties_T_Microsoft_ClearScript_ScriptEngineException.htm\u0000314","DocumentInfo.Category Property\u0000html/P_Microsoft_ClearScript_DocumentInfo_Category.htm\u0000133","ScriptObject.GetProperty Method\u0000html/Overload_Microsoft_ClearScript_ScriptObject_GetProperty.htm\u000068","IScriptEngineException.Message Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_Message.htm\u0000110","WindowsScriptEngine.Dispose Method\u0000html/Overload_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_Dispose.htm\u000076","IScriptEngine.EnforceAnonymousTypeAccess Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_EnforceAnonymousTypeAccess.htm\u0000212","ScriptEngineException.ErrorDetails Property\u0000html/P_Microsoft_ClearScript_ScriptEngineException_ErrorDetails.htm\u0000137","IArrayBufferView.ArrayBuffer Property\u0000html/P_Microsoft_ClearScript_JavaScript_IArrayBufferView_ArrayBuffer.htm\u0000114","IScriptEngine.AddHostObject Method\u0000html/Overload_Microsoft_ClearScript_IScriptEngine_AddHostObject.htm\u000072","IScriptEngineException.EngineName Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_EngineName.htm\u0000116","IScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_IScriptEngine.htm\u0000321","ScriptObject.Item Property\u0000html/Overload_Microsoft_ClearScript_ScriptObject_Item.htm\u000068","ScriptInterruptedException Properties\u0000html/Properties_T_Microsoft_ClearScript_ScriptInterruptedException.htm\u0000153","IScriptEngineException.ScriptException Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_ScriptException.htm\u0000127","JScriptEngine Constructor\u0000html/Overload_Microsoft_ClearScript_Windows_JScriptEngine__ctor.htm\u0000125","IScriptEngine.ExposeHostObjectStaticMembers Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_ExposeHostObjectStaticMembers.htm\u0000137","IArrayBufferView.Offset Property\u0000html/P_Microsoft_ClearScript_JavaScript_IArrayBufferView_Offset.htm\u0000117","JScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_Windows_Core_JScriptEngine.htm\u0000503","ScriptEngineException.ExecutionStarted Property\u0000html/P_Microsoft_ClearScript_ScriptEngineException_ExecutionStarted.htm\u0000138","ScriptObject.SetProperty Method\u0000html/Overload_Microsoft_ClearScript_ScriptObject_SetProperty.htm\u000070","IScriptEngineException.ErrorDetails Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_ErrorDetails.htm\u0000119","DocumentInfo.ContextCallback Property\u0000html/P_Microsoft_ClearScript_DocumentInfo_ContextCallback.htm\u0000224","ScriptMemberAttribute Properties\u0000html/Properties_T_Microsoft_ClearScript_ScriptMemberAttribute.htm\u0000117","ScriptEngine.EnableAutoHostVariables Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_EnableAutoHostVariables.htm\u0000206","IScriptEngineException Properties\u0000html/Properties_T_Microsoft_ClearScript_IScriptEngineException.htm\u0000195","VBScriptEngine Constructor\u0000html/Overload_Microsoft_ClearScript_Windows_VBScriptEngine__ctor.htm\u0000125","IScriptEngineException.ScriptExceptionAsObject Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_ScriptExceptionAsObject.htm\u0000135","IScriptEngine.FileNameExtension Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_FileNameExtension.htm\u0000118","IArrayBufferView.Size Property\u0000html/P_Microsoft_ClearScript_JavaScript_IArrayBufferView_Size.htm\u0000114","Page Not Found\u0000html/PageNotFound.htm\u000066","IScriptEngineException.ExecutionStarted Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_ExecutionStarted.htm\u0000120","ScriptObject Properties\u0000html/Properties_T_Microsoft_ClearScript_ScriptObject.htm\u0000100","ScriptInterruptedException.IsFatal Property\u0000html/P_Microsoft_ClearScript_ScriptInterruptedException_IsFatal.htm\u0000133","ScriptEngineException.IsFatal Property\u0000html/P_Microsoft_ClearScript_ScriptEngineException_IsFatal.htm\u0000133","IScriptObject Properties\u0000html/Properties_T_Microsoft_ClearScript_IScriptObject.htm\u0000100","DocumentInfo.Flags Property\u0000html/P_Microsoft_ClearScript_DocumentInfo_Flags.htm\u0000152","DefaultDocumentLoader Properties\u0000html/Properties_T_Microsoft_ClearScript_DefaultDocumentLoader.htm\u000064","ScriptEngine.EnableNullResultWrapping Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_EnableNullResultWrapping.htm\u0000235","ScriptUsageAttribute Properties\u0000html/Properties_T_Microsoft_ClearScript_ScriptUsageAttribute.htm\u000080","IScriptEngine.AccessContext Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_AccessContext.htm\u0000193","IArrayBuffer.Size Property\u0000html/P_Microsoft_ClearScript_JavaScript_IArrayBuffer_Size.htm\u0000115","IScriptEngine.FormatCode Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_FormatCode.htm\u0000170","V8CpuProfile.Node.BailoutReason Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_BailoutReason.htm\u0000130","ScriptEngineException.ScriptException Property\u0000html/P_Microsoft_ClearScript_ScriptEngineException_ScriptException.htm\u0000145","ScriptInterruptedException.ScriptException Property\u0000html/P_Microsoft_ClearScript_ScriptInterruptedException_ScriptException.htm\u0000145","IArrayBuffer Properties\u0000html/Properties_T_Microsoft_ClearScript_JavaScript_IArrayBuffer.htm\u0000167","DefaultScriptUsageAttribute Properties\u0000html/Properties_T_Microsoft_ClearScript_DefaultScriptUsageAttribute.htm\u000080","StringDocument Properties\u0000html/Properties_T_Microsoft_ClearScript_StringDocument.htm\u000092","VBScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_Windows_Core_VBScriptEngine.htm\u0000503","IJavaScriptObject.Flags Property\u0000html/P_Microsoft_ClearScript_JavaScript_IJavaScriptObject_Flags.htm\u0000109","DocumentInfo.Name Property\u0000html/P_Microsoft_ClearScript_DocumentInfo_Name.htm\u0000145","IScriptEngine.AllowReflection Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_AllowReflection.htm\u0000197","V8CpuProfile.Node.ChildNodes Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_ChildNodes.htm\u0000167","V8CpuProfile Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8CpuProfile.htm\u000087","Document Properties\u0000html/Properties_T_Microsoft_ClearScript_Document.htm\u000073","ScriptEngineException.ScriptExceptionAsObject Property\u0000html/P_Microsoft_ClearScript_ScriptEngineException_ScriptExceptionAsObject.htm\u0000153","IScriptEngine.Global Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_Global.htm\u0000159","ScriptInterruptedException.ScriptExceptionAsObject Property\u0000html/P_Microsoft_ClearScript_ScriptInterruptedException_ScriptExceptionAsObject.htm\u0000153","IJavaScriptObject.Kind Property\u0000html/P_Microsoft_ClearScript_JavaScript_IJavaScriptObject_Kind.htm\u0000109","IArrayBufferView Properties\u0000html/Properties_T_Microsoft_ClearScript_JavaScript_IArrayBufferView.htm\u0000184","DocumentInfo.SourceMapUri Property\u0000html/P_Microsoft_ClearScript_DocumentInfo_SourceMapUri.htm\u0000140","IScriptEngine.ContinuationCallback Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_ContinuationCallback.htm\u0000172","V8CpuProfile.Node.ColumnNumber Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_ColumnNumber.htm\u0000141","IScriptEngine.Name Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_Name.htm\u0000114","Node Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8CpuProfile_Node.htm\u0000164","ITypedArray.Length Property\u0000html/P_Microsoft_ClearScript_JavaScript_ITypedArray_Length.htm\u0000112","ScriptMemberAttribute.Flags Property\u0000html/P_Microsoft_ClearScript_ScriptMemberAttribute_Flags.htm\u0000133","V8RuntimeConstraints.MaxArrayBufferAllocation Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeConstraints_MaxArrayBufferAllocation.htm\u0000186","ScriptEngine.AccessContext Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_AccessContext.htm\u0000216","DocumentInfo.Uri Property\u0000html/P_Microsoft_ClearScript_DocumentInfo_Uri.htm\u0000129","IDataView Properties\u0000html/Properties_T_Microsoft_ClearScript_JavaScript_IDataView.htm\u0000201","Sample Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8CpuProfile_Sample.htm\u000065","IScriptEngine.DefaultAccess Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_DefaultAccess.htm\u0000197","V8CpuProfile.Node.FunctionName Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_FunctionName.htm\u0000123","WindowsScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine.htm\u0000492","ModuleCategory.CommonJS Property\u0000html/P_Microsoft_ClearScript_JavaScript_ModuleCategory_CommonJS.htm\u0000124","IScriptEngine.NullExportValue Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_NullExportValue.htm\u0000205","ScriptMemberAttribute.Name Property\u0000html/P_Microsoft_ClearScript_ScriptMemberAttribute_Name.htm\u0000203","DocumentLoader.Default Property\u0000html/P_Microsoft_ClearScript_DocumentLoader_Default.htm\u0000119","IJavaScriptObject Properties\u0000html/Properties_T_Microsoft_ClearScript_JavaScript_IJavaScriptObject.htm\u0000146","IHostWindow Properties\u0000html/Properties_T_Microsoft_ClearScript_Windows_IHostWindow.htm\u000062","V8RuntimeConstraints.MaxExecutableSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeConstraints_MaxExecutableSize.htm\u0000282","ScriptEngine.AllowReflection Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_AllowReflection.htm\u0000220","V8Runtime Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8Runtime.htm\u0000168","V8CpuProfile.Node.HitCount Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitCount.htm\u0000144","IScriptEngine.DisableDynamicBinding Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_DisableDynamicBinding.htm\u0000172","ModuleCategory.Standard Property\u0000html/P_Microsoft_ClearScript_JavaScript_ModuleCategory_Standard.htm\u0000125","IScriptEngine.Script Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_Script.htm\u0000147","ScriptObject.Engine Property\u0000html/P_Microsoft_ClearScript_ScriptObject_Engine.htm\u0000126","DocumentLoader.MaxCacheSize Property\u0000html/P_Microsoft_ClearScript_DocumentLoader_MaxCacheSize.htm\u0000180","IWindowsScriptObject Properties\u0000html/Properties_T_Microsoft_ClearScript_Windows_IWindowsScriptObject.htm\u0000132","V8RuntimeConstraints.MaxNewSpaceSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeConstraints_MaxNewSpaceSize.htm\u0000193","V8Runtime.HeapSizeSampleInterval Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_HeapSizeSampleInterval.htm\u0000155","ITypedArray Properties\u0000html/Properties_T_Microsoft_ClearScript_JavaScript_ITypedArray.htm\u0000208","ScriptEngine.ContinuationCallback Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_ContinuationCallback.htm\u0000195","IScriptEngine.DisableExtensionMethods Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_DisableExtensionMethods.htm\u0000124","PropertyBag.Comparer Property\u0000html/P_Microsoft_ClearScript_PropertyBag_Comparer.htm\u0000146","V8CpuProfile.Node.HitLines Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitLines.htm\u0000171","ScriptObject.Item(Int32) Property\u0000html/P_Microsoft_ClearScript_ScriptObject_Item.htm\u0000209","ScriptEngine.EnforceAnonymousTypeAccess Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_EnforceAnonymousTypeAccess.htm\u0000235","DocumentSettings.AccessFlags Property\u0000html/P_Microsoft_ClearScript_DocumentSettings_AccessFlags.htm\u0000128","V8Script.DocumentInfo Property\u0000html/P_Microsoft_ClearScript_V8_V8Script_DocumentInfo.htm\u0000117","V8Runtime.HeapSizeViolationPolicy Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_HeapSizeViolationPolicy.htm\u0000142","ScriptEngine.Current Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_Current.htm\u0000174","V8RuntimeConstraints.MaxOldSpaceSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeConstraints_MaxOldSpaceSize.htm\u0000193","V8CpuProfile.Node.LineNumber Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_LineNumber.htm\u0000141","IScriptEngine.DisableFloatNarrowing Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_DisableFloatNarrowing.htm\u0000182","PropertyBag.Item Property\u0000html/P_Microsoft_ClearScript_PropertyBag_Item.htm\u0000209","ScriptEngine.ExposeHostObjectStaticMembers Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_ExposeHostObjectStaticMembers.htm\u0000160","ScriptObject.Item(String, Object[]) Property\u0000html/P_Microsoft_ClearScript_ScriptObject_Item_1.htm\u0000289","V8Script.Name Property\u0000html/P_Microsoft_ClearScript_V8_V8Script_Name.htm\u0000178","DocumentSettings.ContextCallback Property\u0000html/P_Microsoft_ClearScript_DocumentSettings_ContextCallback.htm\u0000225","V8CpuProfile.Node.NodeId Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_NodeId.htm\u0000146","ScriptEngine.FileNameExtension Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_FileNameExtension.htm\u0000131","IScriptEngine.DisableListIndexTypeRestriction Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_DisableListIndexTypeRestriction.htm\u0000189","PropertyBag.Keys Property\u0000html/P_Microsoft_ClearScript_PropertyBag_Keys.htm\u0000168","ScriptEngine.DefaultAccess Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_DefaultAccess.htm\u0000220","V8Runtime.MaxHeapSize Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_MaxHeapSize.htm\u0000284","V8RuntimeConstraints.MaxYoungSpaceSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeConstraints_MaxYoungSpaceSize.htm\u0000251","JScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_Windows_JScriptEngine.htm\u0000519","ScriptObject.PropertyIndices Property\u0000html/P_Microsoft_ClearScript_ScriptObject_PropertyIndices.htm\u0000150","DocumentSettings.FileNameExtensions Property\u0000html/P_Microsoft_ClearScript_DocumentSettings_FileNameExtensions.htm\u0000141","V8CpuProfile.Node.ScriptId Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_ScriptId.htm\u0000141","V8Settings.EnableTopLevelAwait Property\u0000html/P_Microsoft_ClearScript_V8_V8Settings_EnableTopLevelAwait.htm\u0000308","V8RuntimeHeapInfo.HeapSizeLimit Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_HeapSizeLimit.htm\u0000122","PropertyBag.Values Property\u0000html/P_Microsoft_ClearScript_PropertyBag_Values.htm\u0000168","ScriptEngine.FormatCode Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_FormatCode.htm\u0000193","ScriptEngine.DisableDynamicBinding Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_DisableDynamicBinding.htm\u0000195","V8Runtime.MaxStackUsage Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_MaxStackUsage.htm\u0000211","IScriptEngine.DisableTypeRestriction Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_DisableTypeRestriction.htm\u0000195","V8CpuProfile.Node.ScriptName Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_ScriptName.htm\u0000128","DocumentSettings.LoadCallback Property\u0000html/P_Microsoft_ClearScript_DocumentSettings_LoadCallback.htm\u0000142","ScriptObject.PropertyNames Property\u0000html/P_Microsoft_ClearScript_ScriptObject_PropertyNames.htm\u0000152","IScriptEngine.UndefinedImportValue Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_UndefinedImportValue.htm\u0000187","V8Settings.GlobalFlags Property\u0000html/P_Microsoft_ClearScript_V8_V8Settings_GlobalFlags.htm\u0000161","V8Runtime.Name Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_Name.htm\u0000120","IScriptEngine.DocumentSettings Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_DocumentSettings.htm\u0000131","ScriptEngineException.EngineName Property\u0000html/P_Microsoft_ClearScript_ScriptEngineException_EngineName.htm\u0000134","V8RuntimeHeapInfo.TotalAvailableSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_TotalAvailableSize.htm\u0000123","ScriptEngine.DisableExtensionMethods Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_DisableExtensionMethods.htm\u0000147","ScriptEngine.Global Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_Global.htm\u0000172","V8CpuProfile.RootNode Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_RootNode.htm\u0000128","DocumentSettings.Loader Property\u0000html/P_Microsoft_ClearScript_DocumentSettings_Loader.htm\u0000133","ScriptUsageAttribute.Access Property\u0000html/P_Microsoft_ClearScript_ScriptUsageAttribute_Access.htm\u0000117","VBScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_Windows_VBScriptEngine.htm\u0000519","IScriptEngine.UseReflectionBindFallback Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_UseReflectionBindFallback.htm\u0000200","V8RuntimeHeapInfo.TotalExternalSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_TotalExternalSize.htm\u0000123","JScriptEngine.FileNameExtension Property\u0000html/P_Microsoft_ClearScript_Windows_Core_JScriptEngine_FileNameExtension.htm\u0000157","V8ScriptEngine.CpuProfileSampleInterval Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_CpuProfileSampleInterval.htm\u0000166","ScriptEngine.Name Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_Name.htm\u0000132","DocumentSettings.SearchPath Property\u0000html/P_Microsoft_ClearScript_DocumentSettings_SearchPath.htm\u0000144","V8CpuProfile.Samples Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Samples.htm\u0000162","ScriptEngine.DisableFloatNarrowing Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_DisableFloatNarrowing.htm\u0000205","CustomAttributeLoader Class\u0000html/T_Microsoft_ClearScript_CustomAttributeLoader.htm\u0000235","StringDocument.Contents Property\u0000html/P_Microsoft_ClearScript_StringDocument_Contents.htm\u0000144","EventSource\u0026lt;T\u0026gt; Class\u0000html/T_Microsoft_ClearScript_EventSource_1.htm\u0000276","IScriptEngine.VoidResultValue Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_VoidResultValue.htm\u0000195","VBScriptEngine.FileNameExtension Property\u0000html/P_Microsoft_ClearScript_Windows_Core_VBScriptEngine_FileNameExtension.htm\u0000155","Document.Contents Property\u0000html/P_Microsoft_ClearScript_Document_Contents.htm\u0000124","V8CpuProfile.Sample.Node Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Sample_Node.htm\u0000129","V8ScriptEngine.EnableRuntimeInterruptPropagation Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_EnableRuntimeInterruptPropagation.htm\u0000205","ScriptEngine.NullExportValue Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_NullExportValue.htm\u0000228","ScriptEngine.DisableListIndexTypeRestriction Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_DisableListIndexTypeRestriction.htm\u0000212","StringDocument.Encoding Property\u0000html/P_Microsoft_ClearScript_StringDocument_Encoding.htm\u0000136","IScriptObject.Engine Property\u0000html/P_Microsoft_ClearScript_IScriptObject_Engine.htm\u0000113","V8RuntimeHeapInfo.TotalHeapSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_TotalHeapSize.htm\u0000122","WindowsScriptEngine.Global Property\u0000html/P_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_Global.htm\u0000186","WindowsScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_Windows_WindowsScriptEngine.htm\u0000514","V8CpuProfile.Sample.Timestamp Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Sample_Timestamp.htm\u0000147","V8ScriptEngine.FileNameExtension Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_FileNameExtension.htm\u0000153","ScriptEngine.Script Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_Script.htm\u0000160","StringDocument.Info Property\u0000html/P_Microsoft_ClearScript_StringDocument_Info.htm\u0000127","IScriptObject.Item(Int32) Property\u0000html/P_Microsoft_ClearScript_IScriptObject_Item.htm\u0000185","ScriptEngine.DisableTypeRestriction Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_DisableTypeRestriction.htm\u0000218","DefaultDocumentLoader Class\u0000html/T_Microsoft_ClearScript_DefaultDocumentLoader.htm\u0000341","WindowsScriptEngine.HostWindow Property\u0000html/P_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_HostWindow.htm\u0000151","V8RuntimeHeapInfo.TotalHeapSizeExecutable Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_TotalHeapSizeExecutable.htm\u0000124","V8CpuProfile.StartTimestamp Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_StartTimestamp.htm\u0000147","V8ScriptEngine.Global Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_Global.htm\u0000183","ScriptEngine.UndefinedImportValue Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_UndefinedImportValue.htm\u0000210","V8CpuProfile.EndTimestamp Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_EndTimestamp.htm\u0000147","IJavaScriptObject Interface\u0000html/T_Microsoft_ClearScript_JavaScript_IJavaScriptObject.htm\u0000398","ScriptEngine.DocumentSettings Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_DocumentSettings.htm\u0000154","IScriptObject.Item(String, Object[]) Property\u0000html/P_Microsoft_ClearScript_IScriptObject_Item_1.htm\u0000263","V8RuntimeHeapInfo.TotalPhysicalSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_TotalPhysicalSize.htm\u0000123","WindowsScriptEngine.Script Property\u0000html/P_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_Script.htm\u0000174","DefaultDocumentLoader.MaxCacheSize Property\u0000html/P_Microsoft_ClearScript_DefaultDocumentLoader_MaxCacheSize.htm\u0000185","V8RuntimeConstraints.HeapExpansionMultiplier Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeConstraints_HeapExpansionMultiplier.htm\u0000225","V8CpuProfile.Name Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Name.htm\u0000116","ScriptEngine.UseReflectionBindFallback Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_UseReflectionBindFallback.htm\u0000223","V8ScriptEngine.MaxRuntimeHeapSize Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_MaxRuntimeHeapSize.htm\u0000286","V8RuntimeHeapInfo.UsedHeapSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_UsedHeapSize.htm\u0000122","WindowsScriptEngine.SyncInvoker Property\u0000html/P_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_SyncInvoker.htm\u0000128","DefaultScriptUsageAttribute.Access Property\u0000html/P_Microsoft_ClearScript_DefaultScriptUsageAttribute_Access.htm\u0000117","ExtendedHostFunctions Class\u0000html/T_Microsoft_ClearScript_ExtendedHostFunctions.htm\u00001281","DefaultScriptUsageAttribute Class\u0000html/T_Microsoft_ClearScript_DefaultScriptUsageAttribute.htm\u0000506","V8Script Class\u0000html/T_Microsoft_ClearScript_V8_V8Script.htm\u0000276","ScriptEngine.VoidResultValue Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_VoidResultValue.htm\u0000218","V8ScriptEngine.MaxRuntimeStackUsage Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_MaxRuntimeStackUsage.htm\u0000216","IHostWindow.OwnerHandle Property\u0000html/P_Microsoft_ClearScript_Windows_IHostWindow_OwnerHandle.htm\u0000121","DocumentCategory.MaxCacheSize Property\u0000html/P_Microsoft_ClearScript_DocumentCategory_MaxCacheSize.htm\u0000191","V8Runtime.CpuProfileSampleInterval Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_CpuProfileSampleInterval.htm\u0000165","WindowsScriptEngineFlags Enumeration\u0000html/T_Microsoft_ClearScript_Windows_WindowsScriptEngineFlags.htm\u0000427","ScriptInterruptedException.EngineName Property\u0000html/P_Microsoft_ClearScript_ScriptInterruptedException_EngineName.htm\u0000134","Extensions Class\u0000html/T_Microsoft_ClearScript_Extensions.htm\u0000316","ITypedArray Interface\u0000html/T_Microsoft_ClearScript_JavaScript_ITypedArray.htm\u0000604","V8ScriptEngine.RuntimeHeapSizeSampleInterval Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_RuntimeHeapSizeSampleInterval.htm\u0000157","JScriptEngine.FileNameExtension Property\u0000html/P_Microsoft_ClearScript_Windows_JScriptEngine_FileNameExtension.htm\u0000153","Document Class\u0000html/T_Microsoft_ClearScript_Document.htm\u0000268","V8Runtime.DocumentSettings Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_DocumentSettings.htm\u0000137","ScriptInterruptedException.ErrorDetails Property\u0000html/P_Microsoft_ClearScript_ScriptInterruptedException_ErrorDetails.htm\u0000137","V8ScriptEngine.RuntimeHeapSizeViolationPolicy Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_RuntimeHeapSizeViolationPolicy.htm\u0000144","ScriptObject Class\u0000html/T_Microsoft_ClearScript_ScriptObject.htm\u0000968","VBScriptEngine.FileNameExtension Property\u0000html/P_Microsoft_ClearScript_Windows_VBScriptEngine_FileNameExtension.htm\u0000151","V8Runtime.EnableInterruptPropagation Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_EnableInterruptPropagation.htm\u0000203","DocumentAccessFlags Enumeration\u0000html/T_Microsoft_ClearScript_DocumentAccessFlags.htm\u0000214","V8Runtime.FormatCode Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_FormatCode.htm\u0000176","ScriptInterruptedException.ExecutionStarted Property\u0000html/P_Microsoft_ClearScript_ScriptInterruptedException_ExecutionStarted.htm\u0000138","V8ScriptEngine.Script Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_Script.htm\u0000171","WindowsScriptEngine.Dispatcher Property\u0000html/P_Microsoft_ClearScript_Windows_WindowsScriptEngine_Dispatcher.htm\u0000122","ScriptUsageAttribute Class\u0000html/T_Microsoft_ClearScript_ScriptUsageAttribute.htm\u0000560","ClearScript Library Reference\u0000html/R_Project_Reference.htm\u0000149","V8ScriptEngine.SuppressExtensionMethodEnumeration Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_SuppressExtensionMethodEnumeration.htm\u0000208","DocumentCategory Class\u0000html/T_Microsoft_ClearScript_DocumentCategory.htm\u0000244","StringDocument Class\u0000html/T_Microsoft_ClearScript_StringDocument.htm\u0000291","ITypedArray\u0026lt;T\u0026gt; Interface\u0000html/T_Microsoft_ClearScript_JavaScript_ITypedArray_1.htm\u0000753","ContinuationCallback Delegate\u0000html/T_Microsoft_ClearScript_ContinuationCallback.htm\u0000120","V8ScriptEngine Class\u0000html/T_Microsoft_ClearScript_V8_V8ScriptEngine.htm\u00003033","HostFunctions Class\u0000html/T_Microsoft_ClearScript_HostFunctions.htm\u0000951","V8ScriptEngine.SuppressInstanceMethodEnumeration Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_SuppressInstanceMethodEnumeration.htm\u0000189","Undefined Class\u0000html/T_Microsoft_ClearScript_Undefined.htm\u0000259","DocumentContextCallback Delegate\u0000html/T_Microsoft_ClearScript_DocumentContextCallback.htm\u0000183","JavaScriptExtensions Class\u0000html/T_Microsoft_ClearScript_JavaScript_JavaScriptExtensions.htm\u0000356","HostItemFlags Enumeration\u0000html/T_Microsoft_ClearScript_HostItemFlags.htm\u0000239","V8CacheKind Enumeration\u0000html/T_Microsoft_ClearScript_V8_V8CacheKind.htm\u0000182","DocumentFlags Enumeration\u0000html/T_Microsoft_ClearScript_DocumentFlags.htm\u0000204","JavaScriptObjectFlags Enumeration\u0000html/T_Microsoft_ClearScript_JavaScript_JavaScriptObjectFlags.htm\u0000171","V8ScriptEngineFlags Enumeration\u0000html/T_Microsoft_ClearScript_V8_V8ScriptEngineFlags.htm\u0000577","HostSettings Class\u0000html/T_Microsoft_ClearScript_HostSettings.htm\u0000156","V8CpuProfile Class\u0000html/T_Microsoft_ClearScript_V8_V8CpuProfile.htm\u0000281","JavaScriptObjectKind Enumeration\u0000html/T_Microsoft_ClearScript_JavaScript_JavaScriptObjectKind.htm\u0000190","V8Settings Class\u0000html/T_Microsoft_ClearScript_V8_V8Settings.htm\u0000140","DocumentInfo Structure\u0000html/T_Microsoft_ClearScript_DocumentInfo.htm\u0000311","V8CpuProfileFlags Enumeration\u0000html/T_Microsoft_ClearScript_V8_V8CpuProfileFlags.htm\u0000131","ModuleCategory Class\u0000html/T_Microsoft_ClearScript_JavaScript_ModuleCategory.htm\u0000142","DocumentLoadCallback Delegate\u0000html/T_Microsoft_ClearScript_DocumentLoadCallback.htm\u0000153","VoidResult Class\u0000html/T_Microsoft_ClearScript_VoidResult.htm\u0000284","HostTypeCollection Class\u0000html/T_Microsoft_ClearScript_HostTypeCollection.htm\u0000822","ISyncInvoker Interface\u0000html/T_Microsoft_ClearScript_Windows_Core_ISyncInvoker.htm\u0000168","DocumentLoader Class\u0000html/T_Microsoft_ClearScript_DocumentLoader.htm\u0000291","V8CpuProfile.Node Class\u0000html/T_Microsoft_ClearScript_V8_V8CpuProfile_Node.htm\u0000352","ImmutableValueAttribute Class\u0000html/T_Microsoft_ClearScript_ImmutableValueAttribute.htm\u0000451","DocumentSettings Class\u0000html/T_Microsoft_ClearScript_DocumentSettings.htm\u0000383","NoDefaultScriptAccessAttribute Class\u0000html/T_Microsoft_ClearScript_NoDefaultScriptAccessAttribute.htm\u0000552","V8CpuProfile.Node.HitLine Structure\u0000html/T_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitLine.htm\u0000258","IPropertyBag Interface\u0000html/T_Microsoft_ClearScript_IPropertyBag.htm\u0000724","DynamicHostObject Class\u0000html/T_Microsoft_ClearScript_DynamicHostObject.htm\u0000795","IScriptableObject Interface\u0000html/T_Microsoft_ClearScript_IScriptableObject.htm\u0000117","V8CpuProfile.Sample Class\u0000html/T_Microsoft_ClearScript_V8_V8CpuProfile_Sample.htm\u0000249","EventConnection Class\u0000html/T_Microsoft_ClearScript_EventConnection.htm\u0000247","NoScriptAccessAttribute Class\u0000html/T_Microsoft_ClearScript_NoScriptAccessAttribute.htm\u0000604","JScriptEngine Class\u0000html/T_Microsoft_ClearScript_Windows_Core_JScriptEngine.htm\u00002310","V8GlobalFlags Enumeration\u0000html/T_Microsoft_ClearScript_V8_V8GlobalFlags.htm\u0000189","EventConnection\u0026lt;T\u0026gt; Class\u0000html/T_Microsoft_ClearScript_EventConnection_1.htm\u0000289","NullSyncInvoker Class\u0000html/T_Microsoft_ClearScript_Windows_Core_NullSyncInvoker.htm\u0000330","PropertyBag Class\u0000html/T_Microsoft_ClearScript_PropertyBag.htm\u0000628","EventSource Class\u0000html/T_Microsoft_ClearScript_EventSource.htm\u0000240","ScriptAccess Enumeration\u0000html/T_Microsoft_ClearScript_ScriptAccess.htm\u0000193","IScriptEngine Interface\u0000html/T_Microsoft_ClearScript_IScriptEngine.htm\u00001487","V8Runtime Class\u0000html/T_Microsoft_ClearScript_V8_V8Runtime.htm\u00001189","IScriptEngineException Interface\u0000html/T_Microsoft_ClearScript_IScriptEngineException.htm\u0000245","IScriptObject Interface\u0000html/T_Microsoft_ClearScript_IScriptObject.htm\u0000286","V8RuntimeConstraints Class\u0000html/T_Microsoft_ClearScript_V8_V8RuntimeConstraints.htm\u0000331","V8RuntimeFlags Enumeration\u0000html/T_Microsoft_ClearScript_V8_V8RuntimeFlags.htm\u0000179","VBScriptEngine Class\u0000html/T_Microsoft_ClearScript_Windows_Core_VBScriptEngine.htm\u00002289","IArrayBuffer Interface\u0000html/T_Microsoft_ClearScript_JavaScript_IArrayBuffer.htm\u0000523","ScriptEngine Class\u0000html/T_Microsoft_ClearScript_ScriptEngine.htm\u00001700","V8RuntimeHeapInfo Class\u0000html/T_Microsoft_ClearScript_V8_V8RuntimeHeapInfo.htm\u0000287","IArrayBufferView Interface\u0000html/T_Microsoft_ClearScript_JavaScript_IArrayBufferView.htm\u0000537","V8RuntimeViolationPolicy Enumeration\u0000html/T_Microsoft_ClearScript_V8_V8RuntimeViolationPolicy.htm\u0000208","ScriptEngineException Class\u0000html/T_Microsoft_ClearScript_ScriptEngineException.htm\u0000683","IDataView Interface\u0000html/T_Microsoft_ClearScript_JavaScript_IDataView.htm\u0000591","WindowsScriptEngine Class\u0000html/T_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine.htm\u00002206","ScriptInterruptedException Class\u0000html/T_Microsoft_ClearScript_ScriptInterruptedException.htm\u0000343","IHostWindow Interface\u0000html/T_Microsoft_ClearScript_Windows_IHostWindow.htm\u0000135","ScriptMemberAttribute Class\u0000html/T_Microsoft_ClearScript_ScriptMemberAttribute.htm\u0000632","IWindowsScriptObject Interface\u0000html/T_Microsoft_ClearScript_Windows_IWindowsScriptObject.htm\u0000397","ScriptMemberFlags Enumeration\u0000html/T_Microsoft_ClearScript_ScriptMemberFlags.htm\u0000213","JScriptEngine Class\u0000html/T_Microsoft_ClearScript_Windows_JScriptEngine.htm\u00002336","Nothing Class\u0000html/T_Microsoft_ClearScript_Windows_Nothing.htm\u0000283","VBScriptEngine Class\u0000html/T_Microsoft_ClearScript_Windows_VBScriptEngine.htm\u00002315","WindowsScriptEngine Class\u0000html/T_Microsoft_ClearScript_Windows_WindowsScriptEngine.htm\u00002255"] \ No newline at end of file +["ClearScript Library - Redirect\u0000index.html\u000018","ScriptEngineException Events\u0000html/Events_T_Microsoft_ClearScript_ScriptEngineException.htm\u000072","Undefined Fields\u0000html/Fields_T_Microsoft_ClearScript_Undefined.htm\u000052","PropertyBag.PropertyChanged Event\u0000html/E_Microsoft_ClearScript_PropertyBag_PropertyChanged.htm\u0000154","VoidResult Fields\u0000html/Fields_T_Microsoft_ClearScript_VoidResult.htm\u000053","NullSyncInvoker Fields\u0000html/Fields_T_Microsoft_ClearScript_Windows_Core_NullSyncInvoker.htm\u000056","ValueRef\u0026lt;T\u0026gt; Fields\u0000html/Fields_T_Microsoft_ClearScript_ValueRef_1.htm\u000058","Undefined.Value Field\u0000html/F_Microsoft_ClearScript_Undefined_Value.htm\u000098","Nothing Fields\u0000html/Fields_T_Microsoft_ClearScript_Windows_Nothing.htm\u000053","HitLine Fields\u0000html/Fields_T_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitLine.htm\u000067","General Error\u0000html/GeneralError.htm\u000032","V8CpuProfile.Node.HitLine.HitCount Field\u0000html/F_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitLine_HitCount.htm\u0000126","V8CpuProfile.Node.HitLine.LineNumber Field\u0000html/F_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitLine_LineNumber.htm\u000099","ValueRef\u0026lt;T\u0026gt;.Value Field\u0000html/F_Microsoft_ClearScript_ValueRef_1_Value.htm\u000096","VoidResult.Value Field\u0000html/F_Microsoft_ClearScript_VoidResult_Value.htm\u000099","Nothing.Value Field\u0000html/F_Microsoft_ClearScript_Windows_Nothing_Value.htm\u0000102","NullSyncInvoker.Instance Field\u0000html/F_Microsoft_ClearScript_Windows_Core_NullSyncInvoker_Instance.htm\u0000106","Document Methods\u0000html/Methods_T_Microsoft_ClearScript_Document.htm\u0000152","CustomAttributeLoader Methods\u0000html/Methods_T_Microsoft_ClearScript_CustomAttributeLoader.htm\u0000168","DocumentCategory Methods\u0000html/Methods_T_Microsoft_ClearScript_DocumentCategory.htm\u0000153","DefaultScriptUsageAttribute Methods\u0000html/Methods_T_Microsoft_ClearScript_DefaultScriptUsageAttribute.htm\u0000216","DocumentInfo Methods\u0000html/Methods_T_Microsoft_ClearScript_DocumentInfo.htm\u0000154","DefaultDocumentLoader Methods\u0000html/Methods_T_Microsoft_ClearScript_DefaultDocumentLoader.htm\u0000237","DocumentLoader Methods\u0000html/Methods_T_Microsoft_ClearScript_DocumentLoader.htm\u0000188","DocumentSettings Methods\u0000html/Methods_T_Microsoft_ClearScript_DocumentSettings.htm\u0000226","EventConnection Methods\u0000html/Methods_T_Microsoft_ClearScript_EventConnection.htm\u0000165","EventConnection\u0026lt;T\u0026gt; Methods\u0000html/Methods_T_Microsoft_ClearScript_EventConnection_1.htm\u0000174","EventSource\u0026lt;T\u0026gt; Methods\u0000html/Methods_T_Microsoft_ClearScript_EventSource_1.htm\u0000169","IScriptableObject Methods\u0000html/Methods_T_Microsoft_ClearScript_IScriptableObject.htm\u000058","Extensions Methods\u0000html/Methods_T_Microsoft_ClearScript_Extensions.htm\u0000221","ImmutableValueAttribute Methods\u0000html/Methods_T_Microsoft_ClearScript_ImmutableValueAttribute.htm\u0000215","IScriptObject Methods\u0000html/Methods_T_Microsoft_ClearScript_IScriptObject.htm\u0000168","EventSource Methods\u0000html/Methods_T_Microsoft_ClearScript_EventSource.htm\u0000166","HostTypeCollection Methods\u0000html/Methods_T_Microsoft_ClearScript_HostTypeCollection.htm\u0000430","IArrayBuffer Methods\u0000html/Methods_T_Microsoft_ClearScript_JavaScript_IArrayBuffer.htm\u0000315","IDataView Methods\u0000html/Methods_T_Microsoft_ClearScript_JavaScript_IDataView.htm\u0000338","ITypedArray Methods\u0000html/Methods_T_Microsoft_ClearScript_JavaScript_ITypedArray.htm\u0000338","DynamicHostObject Methods\u0000html/Methods_T_Microsoft_ClearScript_DynamicHostObject.htm\u0000698","JavaScriptExtensions Methods\u0000html/Methods_T_Microsoft_ClearScript_JavaScript_JavaScriptExtensions.htm\u0000283","ScriptInterruptedException Methods\u0000html/Methods_T_Microsoft_ClearScript_ScriptInterruptedException.htm\u000069","NoScriptAccessAttribute Methods\u0000html/Methods_T_Microsoft_ClearScript_NoScriptAccessAttribute.htm\u0000216","IPropertyBag Methods\u0000html/Methods_T_Microsoft_ClearScript_IPropertyBag.htm\u0000296","IJavaScriptObject Methods\u0000html/Methods_T_Microsoft_ClearScript_JavaScript_IJavaScriptObject.htm\u0000224","IArrayBufferView Methods\u0000html/Methods_T_Microsoft_ClearScript_JavaScript_IArrayBufferView.htm\u0000309","NoDefaultScriptAccessAttribute Methods\u0000html/Methods_T_Microsoft_ClearScript_NoDefaultScriptAccessAttribute.htm\u0000217","ScriptMemberAttribute Methods\u0000html/Methods_T_Microsoft_ClearScript_ScriptMemberAttribute.htm\u0000215","HostFunctions Methods\u0000html/Methods_T_Microsoft_ClearScript_HostFunctions.htm\u0000847","PropertyBag Methods\u0000html/Methods_T_Microsoft_ClearScript_PropertyBag.htm\u0000235","IScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_IScriptEngine.htm\u00001148","ITypedArray\u0026lt;T\u0026gt; Methods\u0000html/Methods_T_Microsoft_ClearScript_JavaScript_ITypedArray_1.htm\u0000378","ScriptUsageAttribute Methods\u0000html/Methods_T_Microsoft_ClearScript_ScriptUsageAttribute.htm\u0000215","Undefined Methods\u0000html/Methods_T_Microsoft_ClearScript_Undefined.htm\u0000152","Sample Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8CpuProfile_Sample.htm\u0000155","Node Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8CpuProfile_Node.htm\u0000155","V8RuntimeConstraints Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8RuntimeConstraints.htm\u0000154","ExtendedHostFunctions Methods\u0000html/Methods_T_Microsoft_ClearScript_ExtendedHostFunctions.htm\u00001188","V8Script Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8Script.htm\u0000163","ValueRef\u0026lt;T\u0026gt; Methods\u0000html/Methods_T_Microsoft_ClearScript_ValueRef_1.htm\u0000156","ISyncInvoker Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_Core_ISyncInvoker.htm\u0000108","StringDocument Methods\u0000html/Methods_T_Microsoft_ClearScript_StringDocument.htm\u0000153","V8CpuProfile Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8CpuProfile.htm\u0000177","V8RuntimeHeapInfo Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8RuntimeHeapInfo.htm\u0000155","HitLine Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitLine.htm\u0000159","ScriptObject Methods\u0000html/Methods_T_Microsoft_ClearScript_ScriptObject.htm\u0000804","IHostWindow Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_IHostWindow.htm\u000054","ScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_ScriptEngine.htm\u00001267","NullSyncInvoker Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_Core_NullSyncInvoker.htm\u0000218","VoidResult Methods\u0000html/Methods_T_Microsoft_ClearScript_VoidResult.htm\u0000153","DefaultDocumentLoader Constructor\u0000html/M_Microsoft_ClearScript_DefaultDocumentLoader__ctor.htm\u000091","DefaultDocumentLoader.CacheDocument Method\u0000html/M_Microsoft_ClearScript_DefaultDocumentLoader_CacheDocument.htm\u0000217","DefaultDocumentLoader.GetCachedDocument Method\u0000html/M_Microsoft_ClearScript_DefaultDocumentLoader_GetCachedDocument.htm\u0000163","CustomAttributeLoader.LoadCustomAttributes\u0026lt;T\u0026gt; Method\u0000html/M_Microsoft_ClearScript_CustomAttributeLoader_LoadCustomAttributes__1.htm\u0000311","ScriptEngineException Methods\u0000html/Methods_T_Microsoft_ClearScript_ScriptEngineException.htm\u0000208","IWindowsScriptObject Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_IWindowsScriptObject.htm\u0000234","V8Runtime Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8Runtime.htm\u0000749","DefaultScriptUsageAttribute Constructor\u0000html/M_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor.htm\u000094","DefaultDocumentLoader.DiscardCachedDocuments Method\u0000html/M_Microsoft_ClearScript_DefaultDocumentLoader_DiscardCachedDocuments.htm\u0000109","CustomAttributeLoader Constructor\u0000html/M_Microsoft_ClearScript_CustomAttributeLoader__ctor.htm\u000091","DocumentInfo(Uri) Constructor\u0000html/M_Microsoft_ClearScript_DocumentInfo__ctor_1.htm\u0000124","DefaultScriptUsageAttribute(ScriptAccess) Constructor\u0000html/M_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor_1.htm\u0000132","DocumentLoader Constructor\u0000html/M_Microsoft_ClearScript_DocumentLoader__ctor.htm\u000090","DocumentInfo(String) Constructor\u0000html/M_Microsoft_ClearScript_DocumentInfo__ctor.htm\u0000124","DefaultDocumentLoader.LoadDocumentAsync Method\u0000html/M_Microsoft_ClearScript_DefaultDocumentLoader_LoadDocumentAsync.htm\u0000417","DocumentSettings.AddSystemDocument(String, String) Method\u0000html/M_Microsoft_ClearScript_DocumentSettings_AddSystemDocument_3.htm\u0000201","DocumentSettings.AddSystemDocument(String, DocumentCategory, String) Method\u0000html/M_Microsoft_ClearScript_DocumentSettings_AddSystemDocument_1.htm\u0000238","DocumentLoader.CacheDocument Method\u0000html/M_Microsoft_ClearScript_DocumentLoader_CacheDocument.htm\u0000215","DocumentLoader.LoadDocument Method\u0000html/M_Microsoft_ClearScript_DocumentLoader_LoadDocument.htm\u0000371","DocumentSettings.AddSystemDocument(String, Document) Method\u0000html/M_Microsoft_ClearScript_DocumentSettings_AddSystemDocument.htm\u0000211","DynamicHostObject Constructor\u0000html/M_Microsoft_ClearScript_DynamicHostObject__ctor.htm\u000091","DocumentSettings Constructor\u0000html/M_Microsoft_ClearScript_DocumentSettings__ctor.htm\u000090","ExtendedHostFunctions.arrType\u0026lt;T\u0026gt; Method\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_arrType__1.htm\u0000204","DocumentLoader.DiscardCachedDocuments Method\u0000html/M_Microsoft_ClearScript_DocumentLoader_DiscardCachedDocuments.htm\u0000107","VBScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_Core_VBScriptEngine.htm\u00001611","EventConnection.disconnect Method\u0000html/M_Microsoft_ClearScript_EventConnection_disconnect.htm\u000099","Document Constructor\u0000html/M_Microsoft_ClearScript_Document__ctor.htm\u000089","DocumentSettings.AddSystemDocument(String, DocumentCategory, String, DocumentContextCallback) Method\u0000html/M_Microsoft_ClearScript_DocumentSettings_AddSystemDocument_2.htm\u0000276","JScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_Core_JScriptEngine.htm\u00001611","JScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_JScriptEngine.htm\u00001610","VBScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_VBScriptEngine.htm\u00001610","DocumentLoader.LoadDocumentAsync Method\u0000html/M_Microsoft_ClearScript_DocumentLoader_LoadDocumentAsync.htm\u0000370","DocumentLoader.GetCachedDocument Method\u0000html/M_Microsoft_ClearScript_DocumentLoader_GetCachedDocument.htm\u0000161","ExtendedHostFunctions.lib(HostTypeCollection, String[]) Method\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_lib.htm\u0000426","V8ScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_V8_V8ScriptEngine.htm\u00002094","EventSource\u0026lt;T\u0026gt;.connect Method\u0000html/M_Microsoft_ClearScript_EventSource_1_connect.htm\u0000162","ExtendedHostFunctions.comType Method\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_comType.htm\u0000349","DynamicHostObject.HasMember Method\u0000html/M_Microsoft_ClearScript_DynamicHostObject_HasMember.htm\u0000198","ExtendedHostFunctions.type(Type) Method\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_type_2.htm\u0000215","ExtendedHostFunctions.typeLibEnums\u0026lt;T\u0026gt; Method\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_typeLibEnums__1.htm\u0000276","Nothing Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_Nothing.htm\u0000153","ValueRef Methods\u0000html/Methods_T_Microsoft_ClearScript_ValueRef.htm\u000056","Extensions.ToHostType(Type) Method\u0000html/M_Microsoft_ClearScript_Extensions_ToHostType.htm\u0000244","Extensions.ToRestrictedHostObject\u0026lt;T\u0026gt;(T) Method\u0000html/M_Microsoft_ClearScript_Extensions_ToRestrictedHostObject__1.htm\u0000288","EventSource.connect Method\u0000html/M_Microsoft_ClearScript_EventSource_connect.htm\u0000144","ExtendedHostFunctions Constructor\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions__ctor.htm\u000091","ExtendedHostFunctions.lib(String[]) Method\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_lib_1.htm\u0000353","HostFunctions.func(Int32, Object) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_func.htm\u0000272","HostFunctions.getProperty(IDynamicMetaObjectProvider, String) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_getProperty_1.htm\u0000206","HostFunctions.del\u0026lt;T\u0026gt; Method\u0000html/M_Microsoft_ClearScript_HostFunctions_del__1.htm\u0000408","Extensions.ToHostType(Type, ScriptEngine) Method\u0000html/M_Microsoft_ClearScript_Extensions_ToHostType_1.htm\u0000282","HostFunctions.isType\u0026lt;T\u0026gt; Method\u0000html/M_Microsoft_ClearScript_HostFunctions_isType__1.htm\u0000267","ExtendedHostFunctions.type(String, String, Object[]) Method\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_type_1.htm\u0000474","Extensions.ToRestrictedHostObject\u0026lt;T\u0026gt;(T, ScriptEngine) Method\u0000html/M_Microsoft_ClearScript_Extensions_ToRestrictedHostObject__1_1.htm\u0000325","HostFunctions.newArr\u0026lt;T\u0026gt;(Int32[]) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_newArr__1.htm\u0000295","HostFunctions.isNull Method\u0000html/M_Microsoft_ClearScript_HostFunctions_isNull.htm\u0000170","HostFunctions.newObj\u0026lt;T\u0026gt;(Object[]) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_newObj__1.htm\u0000352","ExtendedHostFunctions.newComObj Method\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_newComObj.htm\u0000354","HostFunctions.func\u0026lt;T\u0026gt;(Int32, Object) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_func__1.htm\u0000470","HostFunctions.newArr(Int32[]) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_newArr.htm\u0000202","HostFunctions.flags\u0026lt;T\u0026gt; Method\u0000html/M_Microsoft_ClearScript_HostFunctions_flags__1.htm\u0000371","Extensions.ToRestrictedHostObject(Object, Type) Method\u0000html/M_Microsoft_ClearScript_Extensions_ToRestrictedHostObject.htm\u0000298","HostFunctions.removeProperty(IPropertyBag, String) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_removeProperty.htm\u0000204","HostFunctions.newObj Method\u0000html/M_Microsoft_ClearScript_HostFunctions_newObj.htm\u0000212","HostFunctions.asType\u0026lt;T\u0026gt; Method\u0000html/M_Microsoft_ClearScript_HostFunctions_asType__1.htm\u0000306","HostFunctions.isTypeObj(Object) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_isTypeObj.htm\u0000202","WindowsScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine.htm\u00001602","HostFunctions.getElement Method\u0000html/M_Microsoft_ClearScript_HostFunctions_getElement.htm\u0000220","HostFunctions.setProperty(IDynamicMetaObjectProvider, String, Object) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_setProperty_1.htm\u0000247","HostFunctions.newVar\u0026lt;T\u0026gt; Method\u0000html/M_Microsoft_ClearScript_HostFunctions_newVar__1.htm\u0000460","ExtendedHostFunctions.type(String, Object[]) Method\u0000html/M_Microsoft_ClearScript_ExtendedHostFunctions_type.htm\u0000408","HostFunctions.newObj(IDynamicMetaObjectProvider, Object[]) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_newObj_1.htm\u0000220","HostFunctions.removeProperty(IDynamicMetaObjectProvider, String) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_removeProperty_1.htm\u0000206","HostFunctions.toDouble Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toDouble.htm\u0000304","WindowsScriptEngine Methods\u0000html/Methods_T_Microsoft_ClearScript_Windows_WindowsScriptEngine.htm\u00001609","Extensions.ToRestrictedHostObject(Object, Type, ScriptEngine) Method\u0000html/M_Microsoft_ClearScript_Extensions_ToRestrictedHostObject_1.htm\u0000336","HostFunctions.isTypeObj\u0026lt;T\u0026gt; Method\u0000html/M_Microsoft_ClearScript_HostFunctions_isTypeObj__1.htm\u0000192","HostFunctions.cast\u0026lt;T\u0026gt; Method\u0000html/M_Microsoft_ClearScript_HostFunctions_cast__1.htm\u0000251","HostFunctions.getProperty(IPropertyBag, String) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_getProperty.htm\u0000204","HostFunctions.toStaticType Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toStaticType.htm\u0000188","HostTypeCollection.AddAssembly(Assembly) Method\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddAssembly.htm\u0000135","HostFunctions.toSByte Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toSByte.htm\u0000304","HostFunctions.newObj(Object, Object[]) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_newObj_2.htm\u0000290","HostTypeCollection Constructor\u0000html/M_Microsoft_ClearScript_HostTypeCollection__ctor.htm\u000094","HostFunctions.toByte Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toByte.htm\u0000304","HostFunctions.setElement Method\u0000html/M_Microsoft_ClearScript_HostFunctions_setElement.htm\u0000258","HostFunctions.toInt16 Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toInt16.htm\u0000305","HostTypeCollection.AddType(String, String, Type[]) Method\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddType.htm\u0000233","HostFunctions.proc Method\u0000html/M_Microsoft_ClearScript_HostFunctions_proc.htm\u0000409","HostTypeCollection(String[]) Constructor\u0000html/M_Microsoft_ClearScript_HostTypeCollection__ctor_4.htm\u0000169","HostFunctions.tryCatch Method\u0000html/M_Microsoft_ClearScript_HostFunctions_tryCatch.htm\u0000539","HostTypeCollection.AddAssembly(Assembly, Predicate\u0026lt;Type\u0026gt;) Method\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddAssembly_1.htm\u0000194","HostTypeCollection(Predicate\u0026lt;Type\u0026gt;, Assembly[]) Constructor\u0000html/M_Microsoft_ClearScript_HostTypeCollection__ctor_1.htm\u0000216","HostFunctions.toUInt16 Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toUInt16.htm\u0000305","HostFunctions.setProperty(IPropertyBag, String, Object) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_setProperty.htm\u0000245","IScriptEngine.AddCOMObject(String, HostItemFlags, Guid, String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddCOMObject_1.htm\u0000288","ImmutableValueAttribute Constructor\u0000html/M_Microsoft_ClearScript_ImmutableValueAttribute__ctor.htm\u000091","HostTypeCollection.AddType(String, Type[]) Method\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddType_1.htm\u0000192","HostFunctions.toSingle Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toSingle.htm\u0000304","HostFunctions.removeElement Method\u0000html/M_Microsoft_ClearScript_HostFunctions_removeElement.htm\u0000220","HostTypeCollection.AddAssembly(String) Method\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddAssembly_2.htm\u0000145","HostFunctions.toChar Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toChar.htm\u0000304","HostFunctions.toInt32 Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toInt32.htm\u0000305","HostTypeCollection.AddType(Type) Method\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddType_2.htm\u0000129","HostFunctions.typeOf(Object) Method\u0000html/M_Microsoft_ClearScript_HostFunctions_typeOf.htm\u0000300","HostTypeCollection(Predicate\u0026lt;Type\u0026gt;, String[]) Constructor\u0000html/M_Microsoft_ClearScript_HostTypeCollection__ctor_2.htm\u0000226","IScriptableObject.OnExposedToScriptCode Method\u0000html/M_Microsoft_ClearScript_IScriptableObject_OnExposedToScriptCode.htm\u0000187","IScriptEngine.AddCOMObject(String, Guid, String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddCOMObject_5.htm\u0000250","IScriptEngine.AddCOMObject(String, HostItemFlags, String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddCOMObject_2.htm\u0000282","HostFunctions.toUInt32 Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toUInt32.htm\u0000305","IScriptEngine.AddCOMType(String, HostItemFlags, Guid, String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddCOMType_1.htm\u0000288","IScriptEngine.AddCOMType(String, HostItemFlags, String, String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddCOMType_3.htm\u0000323","HostTypeCollection.AddAssembly(String, Predicate\u0026lt;Type\u0026gt;) Method\u0000html/M_Microsoft_ClearScript_HostTypeCollection_AddAssembly_3.htm\u0000204","HostTypeCollection.GetNamespaceNode Method\u0000html/M_Microsoft_ClearScript_HostTypeCollection_GetNamespaceNode.htm\u0000151","HostFunctions.toInt64 Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toInt64.htm\u0000305","HostFunctions.toDecimal Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toDecimal.htm\u0000304","HostTypeCollection(Assembly[]) Constructor\u0000html/M_Microsoft_ClearScript_HostTypeCollection__ctor_3.htm\u0000159","HostFunctions.typeOf\u0026lt;T\u0026gt; Method\u0000html/M_Microsoft_ClearScript_HostFunctions_typeOf__1.htm\u0000276","IScriptEngine.AddCOMObject(String, HostItemFlags, Guid) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddCOMObject.htm\u0000247","IScriptEngine.AddCOMObject(String, String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddCOMObject_6.htm\u0000244","IScriptEngine.AddCOMObject(String, HostItemFlags, String, String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddCOMObject_3.htm\u0000323","IScriptEngine.AddCOMType(String, HostItemFlags, String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddCOMType_2.htm\u0000282","IScriptEngine.AddCOMType(String, Guid) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddCOMType_4.htm\u0000209","HostFunctions.toUInt64 Method\u0000html/M_Microsoft_ClearScript_HostFunctions_toUInt64.htm\u0000305","IScriptEngine.EvaluateDocument(String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_EvaluateDocument.htm\u0000197","HostFunctions Constructor\u0000html/M_Microsoft_ClearScript_HostFunctions__ctor.htm\u000090","IScriptEngine.AddHostTypes Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddHostTypes.htm\u0000232","IScriptEngine.AddCOMType(String, String, String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddCOMType_7.htm\u0000285","IScriptEngine.AddRestrictedHostObject\u0026lt;T\u0026gt;(String, HostItemFlags, T) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddRestrictedHostObject__1.htm\u0000281","IScriptEngine.ExecuteDocument(String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_ExecuteDocument.htm\u0000162","IScriptEngine.AddHostType(String, String, String, Type[]) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddHostType_4.htm\u0000342","IScriptEngine.AddCOMObject(String, String, String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddCOMObject_7.htm\u0000285","IScriptEngine.AddCOMObject(String, Guid) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddCOMObject_4.htm\u0000209","IScriptEngine.Invoke Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_Invoke.htm\u0000190","IScriptObject.GetProperty(String, Object[]) Method\u0000html/M_Microsoft_ClearScript_IScriptObject_GetProperty_1.htm\u0000193","IScriptObject.SetProperty(Int32, Object) Method\u0000html/M_Microsoft_ClearScript_IScriptObject_SetProperty.htm\u0000156","IScriptEngine.AddCOMType(String, Guid, String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddCOMType_5.htm\u0000250","IScriptEngine.EvaluateDocument(String, DocumentCategory) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_EvaluateDocument_1.htm\u0000234","IScriptEngine.ExecuteDocument(String, DocumentCategory) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_ExecuteDocument_1.htm\u0000199","IScriptEngine.AddRestrictedHostObject\u0026lt;T\u0026gt;(String, T) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddRestrictedHostObject__1_1.htm\u0000245","IScriptEngine.AddHostType(String, String, Type[]) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddHostType_5.htm\u0000301","IScriptEngine.AddHostType(String, HostItemFlags, String, String, Type[]) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddHostType_1.htm\u0000380","IScriptObject.DeleteProperty(Int32) Method\u0000html/M_Microsoft_ClearScript_IScriptObject_DeleteProperty.htm\u0000139","IScriptObject.Invoke Method\u0000html/M_Microsoft_ClearScript_IScriptObject_Invoke.htm\u0000180","IArrayBufferView.InvokeWithDirectAccess\u0026lt;T\u0026gt;(Func\u0026lt;IntPtr, T\u0026gt;) Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBufferView_InvokeWithDirectAccess__1.htm\u0000249","IScriptEngine.AddCOMType(String, HostItemFlags, Guid) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddCOMType.htm\u0000247","IScriptObject.SetProperty(String, Object[]) Method\u0000html/M_Microsoft_ClearScript_IScriptObject_SetProperty_1.htm\u0000208","IScriptEngine.AddHostObject(String, HostItemFlags, Object) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddHostObject.htm\u0000471","IScriptEngine.AddCOMType(String, String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddCOMType_6.htm\u0000244","IScriptEngine.CollectGarbage Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_CollectGarbage.htm\u0000121","IScriptEngine.EvaluateDocument(String, DocumentCategory, DocumentContextCallback) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_EvaluateDocument_2.htm\u0000273","IScriptObject.DeleteProperty(String) Method\u0000html/M_Microsoft_ClearScript_IScriptObject_DeleteProperty_1.htm\u0000140","IScriptObject.InvokeAsFunction Method\u0000html/M_Microsoft_ClearScript_IScriptObject_InvokeAsFunction.htm\u0000152","IScriptEngine.AddHostType(String, Type) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddHostType_6.htm\u0000238","IScriptEngine.ExecuteDocument(String, DocumentCategory, DocumentContextCallback) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_ExecuteDocument_2.htm\u0000238","IArrayBufferView.GetBytes Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBufferView_GetBytes.htm\u0000132","IScriptEngine.AddHostObject(String, Object) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddHostObject_1.htm\u0000188","IScriptEngine.AddHostType(String, HostItemFlags, String, Type[]) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddHostType_2.htm\u0000339","IArrayBufferView.ReadBytes Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBufferView_ReadBytes.htm\u0000257","ITypedArray\u0026lt;T\u0026gt;.Read Method\u0000html/M_Microsoft_ClearScript_JavaScript_ITypedArray_1_Read.htm\u0000252","JavaScriptExtensions.ToEnumerable Method\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToEnumerable.htm\u0000276","IScriptEngine.Evaluate(DocumentInfo, String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_Evaluate.htm\u0000225","IScriptEngine.Evaluate(String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_Evaluate_1.htm\u0000218","IScriptObject.GetProperty(Int32) Method\u0000html/M_Microsoft_ClearScript_IScriptObject_GetProperty.htm\u0000140","IScriptEngine.Execute(String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_Execute_1.htm\u0000184","IScriptObject.InvokeMethod Method\u0000html/M_Microsoft_ClearScript_IScriptObject_InvokeMethod.htm\u0000180","IScriptEngine.AddHostType(Type) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddHostType_7.htm\u0000221","IArrayBufferView.InvokeWithDirectAccess(Action\u0026lt;IntPtr\u0026gt;) Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBufferView_InvokeWithDirectAccess.htm\u0000201","ITypedArray\u0026lt;T\u0026gt;.ToArray Method\u0000html/M_Microsoft_ClearScript_JavaScript_ITypedArray_1_ToArray.htm\u0000128","IScriptEngine.AddHostType(HostItemFlags, Type) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddHostType.htm\u0000259","IScriptEngine.AddHostType(String, HostItemFlags, Type) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_AddHostType_3.htm\u0000276","IArrayBufferView.WriteBytes Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBufferView_WriteBytes.htm\u0000257","JavaScriptExtensions.ToPromise(Task) Method\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise.htm\u0000246","JavaScriptExtensions.ToPromise(ValueTask, ScriptEngine) Method\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise_3.htm\u0000300","ScriptEngineException.ToString Method\u0000html/M_Microsoft_ClearScript_ScriptEngineException_ToString.htm\u0000127","PropertyBag(Boolean) Constructor\u0000html/M_Microsoft_ClearScript_PropertyBag__ctor_1.htm\u0000153","PropertyBag.Add Method\u0000html/M_Microsoft_ClearScript_PropertyBag_Add.htm\u0000182","JavaScriptExtensions.ToPromise\u0026lt;T\u0026gt;(ValueTask\u0026lt;T\u0026gt;, ScriptEngine) Method\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise__1_3.htm\u0000342","IScriptEngine.Execute(String, Boolean, String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_Execute_2.htm\u0000296","ScriptEngineException(String, Exception) Constructor\u0000html/M_Microsoft_ClearScript_ScriptEngineException__ctor_3.htm\u0000163","IArrayBuffer.GetBytes Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBuffer_GetBytes.htm\u0000135","ITypedArray\u0026lt;T\u0026gt;.Write Method\u0000html/M_Microsoft_ClearScript_JavaScript_ITypedArray_1_Write.htm\u0000252","IScriptEngine.Evaluate(String, Boolean, String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_Evaluate_2.htm\u0000529","ScriptEngineException Constructor\u0000html/M_Microsoft_ClearScript_ScriptEngineException__ctor.htm\u000093","PropertyBag.ClearNoCheck Method\u0000html/M_Microsoft_ClearScript_PropertyBag_ClearNoCheck.htm\u0000112","ScriptEngine.AddCOMObject(String, String, String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_7.htm\u0000325","JavaScriptExtensions.ToPromise(Task, ScriptEngine) Method\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise_1.htm\u0000283","PropertyBag(Boolean, IEqualityComparer\u0026lt;String\u0026gt;) Constructor\u0000html/M_Microsoft_ClearScript_PropertyBag__ctor_2.htm\u0000194","JavaScriptExtensions.ToPromise\u0026lt;T\u0026gt;(Task\u0026lt;T\u0026gt;) Method\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise__1.htm\u0000288","IScriptEngine.Execute(String, String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_Execute_3.htm\u0000239","IArrayBuffer.InvokeWithDirectAccess(Action\u0026lt;IntPtr\u0026gt;) Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBuffer_InvokeWithDirectAccess.htm\u0000206","JavaScriptExtensions.ToTask Method\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToTask.htm\u0000277","ScriptEngine.AddCOMObject(String, HostItemFlags, Guid) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject.htm\u0000287","ScriptEngineException(SerializationInfo, StreamingContext) Constructor\u0000html/M_Microsoft_ClearScript_ScriptEngineException__ctor_1.htm\u0000160","IScriptEngine.Evaluate(String, String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_Evaluate_3.htm\u0000273","PropertyBag.ContainsKey Method\u0000html/M_Microsoft_ClearScript_PropertyBag_ContainsKey.htm\u0000172","JavaScriptExtensions.ToAsyncEnumerable Method\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToAsyncEnumerable.htm\u0000281","PropertyBag(IEqualityComparer\u0026lt;String\u0026gt;) Constructor\u0000html/M_Microsoft_ClearScript_PropertyBag__ctor_3.htm\u0000158","JavaScriptExtensions.ToPromise(ValueTask) Method\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise_2.htm\u0000263","ScriptEngine.AddCOMType(String, HostItemFlags, Guid) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType.htm\u0000287","IScriptEngine.GetStackTrace Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_GetStackTrace.htm\u0000140","NoDefaultScriptAccessAttribute Constructor\u0000html/M_Microsoft_ClearScript_NoDefaultScriptAccessAttribute__ctor.htm\u000093","ScriptEngineException(String) Constructor\u0000html/M_Microsoft_ClearScript_ScriptEngineException__ctor_2.htm\u0000124","JavaScriptExtensions.ToPromise\u0026lt;T\u0026gt;(Task\u0026lt;T\u0026gt;, ScriptEngine) Method\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise__1_1.htm\u0000324","IArrayBuffer.InvokeWithDirectAccess\u0026lt;T\u0026gt;(Func\u0026lt;IntPtr, T\u0026gt;) Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBuffer_InvokeWithDirectAccess__1.htm\u0000254","IScriptEngine.Execute(DocumentInfo, String) Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_Execute.htm\u0000190","PropertyBag.Remove Method\u0000html/M_Microsoft_ClearScript_PropertyBag_Remove.htm\u0000165","IScriptEngine.Interrupt Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_Interrupt.htm\u0000107","NoScriptAccessAttribute Constructor\u0000html/M_Microsoft_ClearScript_NoScriptAccessAttribute__ctor.htm\u000092","ScriptEngine.AddCOMObject(String, HostItemFlags, Guid, String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_1.htm\u0000336","ScriptEngineException.GetObjectData Method\u0000html/M_Microsoft_ClearScript_ScriptEngineException_GetObjectData.htm\u0000193","ScriptEngine.AddCOMType(String, String, String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_7.htm\u0000325","ScriptEngine.Dispose(Boolean) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Dispose_1.htm\u0000202","ScriptEngine.AddCOMType(String, HostItemFlags, Guid, String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_1.htm\u0000336","ScriptEngine.AddHostType(String, String, String, Type[]) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_4.htm\u0000394","PropertyBag.RemovePropertyNoCheck Method\u0000html/M_Microsoft_ClearScript_PropertyBag_RemovePropertyNoCheck.htm\u0000159","IArrayBuffer.ReadBytes Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBuffer_ReadBytes.htm\u0000256","JavaScriptExtensions.ToPromise\u0026lt;T\u0026gt;(ValueTask\u0026lt;T\u0026gt;) Method\u0000html/M_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise__1_2.htm\u0000306","ScriptEngine.Finalize Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Finalize.htm\u0000168","ScriptEngine(String) Constructor\u0000html/M_Microsoft_ClearScript_ScriptEngine__ctor.htm\u0000224","ScriptEngine.Execute(DocumentInfo, String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Execute.htm\u0000222","ScriptMemberAttribute Constructor\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor.htm\u000093","ScriptEngine.AddCOMObject(String, HostItemFlags, String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_2.htm\u0000322","ScriptEngine.Evaluate(DocumentInfo, String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Evaluate.htm\u0000257","PropertyBag.SetPropertyNoCheck Method\u0000html/M_Microsoft_ClearScript_PropertyBag_SetPropertyNoCheck.htm\u0000170","ScriptMemberAttribute(ScriptAccess) Constructor\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_1.htm\u0000131","ScriptEngine.AddCOMType(String, HostItemFlags, String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_2.htm\u0000322","ScriptEngine.GetStackTrace Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_GetStackTrace.htm\u0000152","ScriptEngine(String, String) Constructor\u0000html/M_Microsoft_ClearScript_ScriptEngine__ctor_1.htm\u0000186","IArrayBuffer.WriteBytes Method\u0000html/M_Microsoft_ClearScript_JavaScript_IArrayBuffer_WriteBytes.htm\u0000257","ScriptEngine.AddHostType(String, String, Type[]) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_5.htm\u0000345","ScriptEngine.ExecuteCommand Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_ExecuteCommand.htm\u0000208","ScriptEngine.AddHostObject(String, HostItemFlags, Object) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostObject.htm\u0000511","ScriptObject.DeleteProperty(String) Method\u0000html/M_Microsoft_ClearScript_ScriptObject_DeleteProperty_1.htm\u0000154","ScriptEngine.AddCOMObject(String, HostItemFlags, String, String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_3.htm\u0000371","ScriptEngine.EvaluateDocument(String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_EvaluateDocument.htm\u0000221","ScriptEngine.Interrupt Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Interrupt.htm\u0000119","ScriptObject.Dispose Method\u0000html/M_Microsoft_ClearScript_ScriptObject_Dispose.htm\u0000110","ScriptMemberAttribute(ScriptAccess, ScriptMemberFlags) Constructor\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_2.htm\u0000168","ScriptUsageAttribute Constructor\u0000html/M_Microsoft_ClearScript_ScriptUsageAttribute__ctor.htm\u000093","PropertyBag.TryGetValue Method\u0000html/M_Microsoft_ClearScript_PropertyBag_TryGetValue.htm\u0000225","ScriptInterruptedException.GetObjectData Method\u0000html/M_Microsoft_ClearScript_ScriptInterruptedException_GetObjectData.htm\u0000185","ScriptEngine.ExecuteDocument(String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_ExecuteDocument.htm\u0000186","ScriptEngine.AddHostType(String, Type) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_6.htm\u0000270","ScriptEngine.AddHostObject(String, Object) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostObject_1.htm\u0000220","ScriptEngine.AddCOMType(String, HostItemFlags, String, String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_3.htm\u0000371","PropertyBag Constructor\u0000html/M_Microsoft_ClearScript_PropertyBag__ctor.htm\u000098","ScriptObject.GetProperty(Int32) Method\u0000html/M_Microsoft_ClearScript_ScriptObject_GetProperty.htm\u0000154","ScriptUsageAttribute(ScriptAccess) Constructor\u0000html/M_Microsoft_ClearScript_ScriptUsageAttribute__ctor_1.htm\u0000131","ScriptMemberAttribute(ScriptMemberFlags) Constructor\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_3.htm\u0000130","ScriptEngine.AddCOMObject(String, Guid) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_4.htm\u0000241","ScriptInterruptedException.ToString Method\u0000html/M_Microsoft_ClearScript_ScriptInterruptedException_ToString.htm\u0000126","ScriptEngine.EvaluateDocument(String, DocumentCategory) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_EvaluateDocument_1.htm\u0000266","ScriptEngine.Invoke Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Invoke.htm\u0000226","ScriptEngine.ExecuteDocument(String, DocumentCategory) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_ExecuteDocument_1.htm\u0000231","ScriptEngine.AddHostType(Type) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_7.htm\u0000245","ScriptEngine.AddHostType(HostItemFlags, Type) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType.htm\u0000291","StringDocument Constructor\u0000html/M_Microsoft_ClearScript_StringDocument__ctor.htm\u0000148","ScriptEngine.AddCOMType(String, Guid) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_4.htm\u0000241","V8Runtime.CollectGarbage Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CollectGarbage.htm\u0000127","ScriptInterruptedException Constructor\u0000html/M_Microsoft_ClearScript_ScriptInterruptedException__ctor.htm\u000093","ScriptMemberAttribute(String) Constructor\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_4.htm\u0000134","ScriptObject.GetProperty(String, Object[]) Method\u0000html/M_Microsoft_ClearScript_ScriptObject_GetProperty_1.htm\u0000210","V8Runtime.CompileDocument(String) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument.htm\u0000154","ScriptEngine.AddCOMObject(String, Guid, String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_5.htm\u0000290","Undefined.ToString Method\u0000html/M_Microsoft_ClearScript_Undefined_ToString.htm\u0000139","ScriptEngine.EvaluateDocument(String, DocumentCategory, DocumentContextCallback) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_EvaluateDocument_2.htm\u0000313","V8Runtime.Compile(DocumentInfo, String) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile.htm\u0000186","ScriptEngine.ExecuteDocument(String, DocumentCategory, DocumentContextCallback) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_ExecuteDocument_2.htm\u0000278","ScriptInterruptedException(SerializationInfo, StreamingContext) Constructor\u0000html/M_Microsoft_ClearScript_ScriptInterruptedException__ctor_1.htm\u0000160","ScriptEngine.AddHostTypes Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostTypes.htm\u0000261","ScriptMemberAttribute(String, ScriptAccess) Constructor\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_5.htm\u0000172","ScriptObject.Invoke Method\u0000html/M_Microsoft_ClearScript_ScriptObject_Invoke.htm\u0000197","ScriptEngine.AddCOMType(String, Guid, String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_5.htm\u0000290","V8Runtime.CompileDocument(String, DocumentCategory) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_1.htm\u0000191","ScriptEngine.AddRestrictedHostObject\u0026lt;T\u0026gt;(String, HostItemFlags, T) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddRestrictedHostObject__1.htm\u0000324","V8CpuProfile.ToJson Method\u0000html/M_Microsoft_ClearScript_V8_V8CpuProfile_ToJson.htm\u0000128","ScriptInterruptedException(String) Constructor\u0000html/M_Microsoft_ClearScript_ScriptInterruptedException__ctor_2.htm\u0000124","ScriptEngine.AddCOMObject(String, String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMObject_6.htm\u0000276","ScriptEngine.Evaluate(String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Evaluate_1.htm\u0000242","ScriptEngine.Execute(String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Execute_1.htm\u0000208","V8Runtime.CompileDocument(String, V8CacheKind, Byte[]) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_8.htm\u0000274","ScriptMemberAttribute(String, ScriptAccess, ScriptMemberFlags) Constructor\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_6.htm\u0000210","ScriptObject.InvokeAsFunction Method\u0000html/M_Microsoft_ClearScript_ScriptObject_InvokeAsFunction.htm\u0000181","ScriptEngine.AddCOMType(String, String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddCOMType_6.htm\u0000276","V8Runtime.CompileDocument(String, DocumentCategory, DocumentContextCallback) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_2.htm\u0000230","V8CpuProfile.WriteJson Method\u0000html/M_Microsoft_ClearScript_V8_V8CpuProfile_WriteJson.htm\u0000146","ScriptEngine.AddRestrictedHostObject\u0026lt;T\u0026gt;(String, T) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddRestrictedHostObject__1_1.htm\u0000280","ScriptEngine.AddHostType(String, HostItemFlags, String, String, Type[]) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_1.htm\u0000440","ScriptInterruptedException(String, Exception) Constructor\u0000html/M_Microsoft_ClearScript_ScriptInterruptedException__ctor_3.htm\u0000163","ScriptMemberAttribute(String, ScriptMemberFlags) Constructor\u0000html/M_Microsoft_ClearScript_ScriptMemberAttribute__ctor_7.htm\u0000171","ScriptObject.InvokeMethod Method\u0000html/M_Microsoft_ClearScript_ScriptObject_InvokeMethod.htm\u0000197","V8RuntimeConstraints Constructor\u0000html/M_Microsoft_ClearScript_V8_V8RuntimeConstraints__ctor.htm\u000092","V8Runtime.Compile(DocumentInfo, String, V8CacheKind, Byte[]) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_2.htm\u0000319","ScriptEngine.Execute(String, Boolean, String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Execute_2.htm\u0000336","V8Runtime.CreateScriptEngine(V8ScriptEngineFlags) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine_1.htm\u0000217","ScriptEngine.CollectGarbage Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_CollectGarbage.htm\u0000135","V8Runtime.Compile(DocumentInfo, String, V8CacheKind, Byte[], Boolean) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_1.htm\u0000350","V8Runtime.WriteHeapSnapshot Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_WriteHeapSnapshot.htm\u0000145","ScriptEngine.Evaluate(String, Boolean, String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Evaluate_2.htm\u0000569","ScriptObject.DeleteProperty(Int32) Method\u0000html/M_Microsoft_ClearScript_ScriptObject_DeleteProperty.htm\u0000153","V8Runtime.Compile(String) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_3.htm\u0000146","V8Runtime.BeginCpuProfile(String) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_BeginCpuProfile.htm\u0000156","V8Runtime.CompileDocument(String, DocumentCategory, DocumentContextCallback, V8CacheKind, Byte[], Boolean) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_3.htm\u0000384","ScriptEngine.Dispose Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Dispose.htm\u0000119","ScriptEngine.AddHostType(String, HostItemFlags, String, Type[]) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_2.htm\u0000391","V8Runtime Constructor\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor.htm\u000094","ScriptEngine.Execute(String, String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Execute_3.htm\u0000271","V8Runtime(V8RuntimeFlags, Int32) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_5.htm\u0000168","V8Runtime.CreateScriptEngine(V8ScriptEngineFlags, Int32) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine_2.htm\u0000256","V8ScriptEngine.CompileDocument(String) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument.htm\u0000155","V8Runtime(String, V8RuntimeConstraints, V8RuntimeFlags, Int32) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_9.htm\u0000257","V8Runtime.BeginCpuProfile(String, V8CpuProfileFlags) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_BeginCpuProfile_1.htm\u0000191","V8Runtime(V8RuntimeConstraints) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_1.htm\u0000129","V8Runtime(String) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_6.htm\u0000147","V8ScriptEngine.CompileDocument(String, DocumentCategory) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_1.htm\u0000192","V8Runtime.Compile(String, V8CacheKind, Byte[], Boolean) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_4.htm\u0000308","V8Runtime.CreateScriptEngine(String) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine_3.htm\u0000191","V8ScriptEngine.Dispose(Boolean) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Dispose.htm\u0000205","V8Runtime.CompileDocument(String, DocumentCategory, DocumentContextCallback, V8CacheKind, Byte[]) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_4.htm\u0000350","ScriptEngine.AddHostType(String, HostItemFlags, Type) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_AddHostType_3.htm\u0000316","V8ScriptEngine.EndCpuProfile Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_EndCpuProfile.htm\u0000159","V8Runtime.CollectCpuProfileSample Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CollectCpuProfileSample.htm\u0000105","V8ScriptEngine.Compile(DocumentInfo, String, V8CacheKind, Byte[], Boolean) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_1.htm\u0000348","V8ScriptEngine.BeginCpuProfile(String) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_BeginCpuProfile.htm\u0000158","V8Runtime(String, V8RuntimeFlags) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_10.htm\u0000182","V8Runtime(String, V8RuntimeConstraints) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_7.htm\u0000182","V8ScriptEngine.CompileDocument(String, DocumentCategory, DocumentContextCallback) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_2.htm\u0000231","V8ScriptEngine.Evaluate(V8Script) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Evaluate.htm\u0000162","V8ScriptEngine.Execute(V8Script) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Execute.htm\u0000164","V8Runtime.Compile(String, V8CacheKind, Byte[]) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_5.htm\u0000277","V8Runtime.CreateScriptEngine(String, V8ScriptEngineFlags) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine_4.htm\u0000270","V8ScriptEngine(String, V8ScriptEngineFlags) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_10.htm\u0000199","V8ScriptEngine(String, V8ScriptEngineFlags, Int32) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_11.htm\u0000239","V8Runtime(String, V8RuntimeFlags, Int32) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_11.htm\u0000222","V8ScriptEngine.BeginCpuProfile(String, V8CpuProfileFlags) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_BeginCpuProfile_1.htm\u0000193","V8Runtime.CompileDocument(String, DocumentCategory, V8CacheKind, Byte[], Boolean) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_5.htm\u0000345","V8Runtime(String, V8RuntimeConstraints, V8RuntimeFlags) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_8.htm\u0000218","V8ScriptEngine.Compile(DocumentInfo, String, V8CacheKind, Byte[]) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_2.htm\u0000319","V8Runtime.Compile(String, String) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_6.htm\u0000202","V8ScriptEngine(String, V8RuntimeConstraints, V8ScriptEngineFlags, Int32) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_9.htm\u0000279","V8Script.Dispose Method\u0000html/M_Microsoft_ClearScript_V8_V8Script_Dispose.htm\u0000162","V8ScriptEngine.ExecuteCommand Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_ExecuteCommand.htm\u0000231","V8ScriptEngine.CancelAwaitDebugger Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CancelAwaitDebugger.htm\u0000117","V8Runtime(V8RuntimeConstraints, V8RuntimeFlags) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_2.htm\u0000164","V8ScriptEngine(V8RuntimeConstraints, V8ScriptEngineFlags) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_2.htm\u0000186","V8ScriptEngine.CompileDocument(String, DocumentCategory, DocumentContextCallback, V8CacheKind, Byte[], Boolean) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_3.htm\u0000385","V8Runtime.CreateScriptEngine(String, V8ScriptEngineFlags, Int32) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine_5.htm\u0000310","V8ScriptEngine.Compile(String) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_3.htm\u0000145","VoidResult.ToString Method\u0000html/M_Microsoft_ClearScript_VoidResult_ToString.htm\u0000140","ISyncInvoker.VerifyAccess Method\u0000html/M_Microsoft_ClearScript_Windows_Core_ISyncInvoker_VerifyAccess.htm\u0000102","V8Runtime.CompileDocument(String, DocumentCategory, V8CacheKind, Byte[]) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_6.htm\u0000311","V8ScriptEngine.GetRuntimeHeapInfo Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_GetRuntimeHeapInfo.htm\u0000121","V8ScriptEngine.CancelInterrupt Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CancelInterrupt.htm\u0000112","V8Runtime.Dispose Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Dispose.htm\u0000118","ISyncInvoker.CheckAccess Method\u0000html/M_Microsoft_ClearScript_Windows_Core_ISyncInvoker_CheckAccess.htm\u0000122","ValueRef.Create\u0026lt;T\u0026gt; Method\u0000html/M_Microsoft_ClearScript_ValueRef_Create__1.htm\u0000257","V8Runtime(V8RuntimeConstraints, V8RuntimeFlags, Int32) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_3.htm\u0000204","V8Runtime.Compile(String, String, V8CacheKind, Byte[], Boolean) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_7.htm\u0000366","V8ScriptEngine(V8RuntimeConstraints, V8ScriptEngineFlags, Int32) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_3.htm\u0000226","V8ScriptEngine.Compile(String, V8CacheKind, Byte[], Boolean) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_4.htm\u0000307","V8ScriptEngine.CollectCpuProfileSample Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CollectCpuProfileSample.htm\u0000106","V8ScriptEngine.CompileDocument(String, DocumentCategory, DocumentContextCallback, V8CacheKind, Byte[]) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_4.htm\u0000351","V8ScriptEngine.GetStackTrace Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_GetStackTrace.htm\u0000165","JScriptEngine.ExecuteCommand Method\u0000html/M_Microsoft_ClearScript_Windows_Core_JScriptEngine_ExecuteCommand.htm\u0000235","ISyncInvoker.Invoke(Action) Method\u0000html/M_Microsoft_ClearScript_Windows_Core_ISyncInvoker_Invoke.htm\u0000137","JScriptEngine(ISyncInvoker) Constructor\u0000html/M_Microsoft_ClearScript_Windows_Core_JScriptEngine__ctor.htm\u0000133","V8Runtime(V8RuntimeFlags) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8Runtime__ctor_4.htm\u0000129","V8Runtime.EndCpuProfile Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_EndCpuProfile.htm\u0000158","V8ScriptEngine(V8ScriptEngineFlags) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_4.htm\u0000146","V8Runtime.CompileDocument(String, V8CacheKind, Byte[], Boolean) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CompileDocument_7.htm\u0000308","V8ScriptEngine.CollectGarbage Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CollectGarbage.htm\u0000153","V8Runtime.Compile(String, String, V8CacheKind, Byte[]) Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_Compile_8.htm\u0000335","V8ScriptEngine.Interrupt Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Interrupt.htm\u0000133","JScriptEngine(String, ISyncInvoker) Constructor\u0000html/M_Microsoft_ClearScript_Windows_Core_JScriptEngine__ctor_2.htm\u0000188","V8Runtime.GetHeapInfo Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_GetHeapInfo.htm\u0000111","ISyncInvoker.Invoke\u0026lt;T\u0026gt;(Func\u0026lt;T\u0026gt;) Method\u0000html/M_Microsoft_ClearScript_Windows_Core_ISyncInvoker_Invoke__1.htm\u0000189","V8ScriptEngine.Compile(String, V8CacheKind, Byte[]) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_5.htm\u0000277","JScriptEngine(WindowsScriptEngineFlags, ISyncInvoker) Constructor\u0000html/M_Microsoft_ClearScript_Windows_Core_JScriptEngine__ctor_1.htm\u0000172","V8ScriptEngine(V8ScriptEngineFlags, Int32) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_5.htm\u0000185","VBScriptEngine(String, ISyncInvoker) Constructor\u0000html/M_Microsoft_ClearScript_Windows_Core_VBScriptEngine__ctor_2.htm\u0000188","V8ScriptEngine.CompileDocument(String, DocumentCategory, V8CacheKind, Byte[], Boolean) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_5.htm\u0000346","JScriptEngine(String, String, String, WindowsScriptEngineFlags, ISyncInvoker) Constructor\u0000html/M_Microsoft_ClearScript_Windows_Core_JScriptEngine__ctor_4.htm\u0000345","V8Runtime.CreateScriptEngine Method\u0000html/M_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine.htm\u0000138","V8ScriptEngine.Compile(DocumentInfo, String) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile.htm\u0000185","V8ScriptEngine.WriteRuntimeHeapSnapshot Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_WriteRuntimeHeapSnapshot.htm\u0000151","VBScriptEngine Constructor\u0000html/M_Microsoft_ClearScript_Windows_VBScriptEngine__ctor.htm\u000095","JScriptEngine(String, WindowsScriptEngineFlags) Constructor\u0000html/M_Microsoft_ClearScript_Windows_JScriptEngine__ctor_3.htm\u0000185","V8ScriptEngine.Compile(String, String) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_6.htm\u0000201","JScriptEngine(String, WindowsScriptEngineFlags, ISyncInvoker) Constructor\u0000html/M_Microsoft_ClearScript_Windows_Core_JScriptEngine__ctor_3.htm\u0000229","VBScriptEngine(String) Constructor\u0000html/M_Microsoft_ClearScript_Windows_VBScriptEngine__ctor_2.htm\u0000148","HostFunctions.getProperty Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_getProperty.htm\u000081","HostFunctions.removeProperty Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_removeProperty.htm\u000075","HostFunctions.newArr Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_newArr.htm\u000072","HostFunctions.isTypeObj Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_isTypeObj.htm\u000095","VBScriptEngine(String, WindowsScriptEngineFlags) Constructor\u0000html/M_Microsoft_ClearScript_Windows_VBScriptEngine__ctor_3.htm\u0000185","HostFunctions.newObj Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_newObj.htm\u0000119","VBScriptEngine(WindowsScriptEngineFlags) Constructor\u0000html/M_Microsoft_ClearScript_Windows_VBScriptEngine__ctor_1.htm\u0000132","V8ScriptEngine.CompileDocument(String, DocumentCategory, V8CacheKind, Byte[]) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_6.htm\u0000312","HostFunctions.setProperty Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_setProperty.htm\u000081","HostTypeCollection.AddAssembly Method\u0000html/Overload_Microsoft_ClearScript_HostTypeCollection_AddAssembly.htm\u0000120","HostTypeCollection.AddType Method\u0000html/Overload_Microsoft_ClearScript_HostTypeCollection_AddType.htm\u0000102","IScriptEngine.AddHostObject Method\u0000html/Overload_Microsoft_ClearScript_IScriptEngine_AddHostObject.htm\u000072","JScriptEngine(String, String, String, WindowsScriptEngineFlags) Constructor\u0000html/M_Microsoft_ClearScript_Windows_JScriptEngine__ctor_4.htm\u0000302","HostTypeCollection Constructor\u0000html/Overload_Microsoft_ClearScript_HostTypeCollection__ctor.htm\u0000144","HostFunctions.typeOf Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_typeOf.htm\u000094","IScriptEngine.Execute Method\u0000html/Overload_Microsoft_ClearScript_IScriptEngine_Execute.htm\u000097","V8ScriptEngine.Compile(String, String, V8CacheKind, Byte[], Boolean) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_7.htm\u0000365","IScriptEngine.AddCOMObject Method\u0000html/Overload_Microsoft_ClearScript_IScriptEngine_AddCOMObject.htm\u0000319","IScriptEngine.AddCOMType Method\u0000html/Overload_Microsoft_ClearScript_IScriptEngine_AddCOMType.htm\u0000319","IScriptEngine.ExecuteDocument Method\u0000html/Overload_Microsoft_ClearScript_IScriptEngine_ExecuteDocument.htm\u000084","IScriptObject.DeleteProperty Method\u0000html/Overload_Microsoft_ClearScript_IScriptObject_DeleteProperty.htm\u000059","IScriptEngine.AddHostType Method\u0000html/Overload_Microsoft_ClearScript_IScriptEngine_AddHostType.htm\u0000224","VBScriptEngine(String, String, String, WindowsScriptEngineFlags) Constructor\u0000html/M_Microsoft_ClearScript_Windows_VBScriptEngine__ctor_4.htm\u0000302","IScriptObject.GetProperty Method\u0000html/Overload_Microsoft_ClearScript_IScriptObject_GetProperty.htm\u000068","V8ScriptEngine.CompileDocument(String, V8CacheKind, Byte[], Boolean) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_7.htm\u0000309","IScriptObject.Item Property\u0000html/Overload_Microsoft_ClearScript_IScriptObject_Item.htm\u000068","Nothing.ToString Method\u0000html/M_Microsoft_ClearScript_Windows_Nothing_ToString.htm\u0000143","ScriptEngineException Constructor\u0000html/Overload_Microsoft_ClearScript_ScriptEngineException__ctor.htm\u000089","IScriptEngine.AddRestrictedHostObject Method\u0000html/Overload_Microsoft_ClearScript_IScriptEngine_AddRestrictedHostObject.htm\u000085","ScriptEngine.Dispose Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_Dispose.htm\u000073","IScriptObject.SetProperty Method\u0000html/Overload_Microsoft_ClearScript_IScriptObject_SetProperty.htm\u000070","ScriptEngine.AddCOMType Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_AddCOMType.htm\u0000319","ScriptEngine.AddCOMObject Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_AddCOMObject.htm\u0000319","ScriptEngine.AddHostType Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_AddHostType.htm\u0000224","V8ScriptEngine.Compile(String, String, V8CacheKind, Byte[]) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_Compile_8.htm\u0000335","JavaScriptExtensions.ToPromise Method\u0000html/Overload_Microsoft_ClearScript_JavaScript_JavaScriptExtensions_ToPromise.htm\u0000245","ScriptEngine.EvaluateDocument Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_EvaluateDocument.htm\u000084","WindowsScriptEngine Constructor\u0000html/M_Microsoft_ClearScript_Windows_WindowsScriptEngine__ctor.htm\u0000284","IScriptEngine.Evaluate Method\u0000html/Overload_Microsoft_ClearScript_IScriptEngine_Evaluate.htm\u000097","ScriptEngine.Evaluate Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_Evaluate.htm\u000097","V8ScriptEngine.CompileDocument(String, V8CacheKind, Byte[]) Method\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument_8.htm\u0000275","VBScriptEngine.ExecuteCommand Method\u0000html/M_Microsoft_ClearScript_Windows_VBScriptEngine_ExecuteCommand.htm\u0000274","ScriptEngine.AddHostObject Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_AddHostObject.htm\u000072","IArrayBufferView.InvokeWithDirectAccess Method\u0000html/Overload_Microsoft_ClearScript_JavaScript_IArrayBufferView_InvokeWithDirectAccess.htm\u000091","ScriptEngine.ExecuteDocument Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_ExecuteDocument.htm\u000084","ScriptEngine.AddRestrictedHostObject Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_AddRestrictedHostObject.htm\u000085","Page Not Found\u0000html/PageNotFound.htm\u000066","ScriptEngine.Execute Method\u0000html/Overload_Microsoft_ClearScript_ScriptEngine_Execute.htm\u000097","PropertyBag Constructor\u0000html/Overload_Microsoft_ClearScript_PropertyBag__ctor.htm\u000089","ScriptInterruptedException Constructor\u0000html/Overload_Microsoft_ClearScript_ScriptInterruptedException__ctor.htm\u000089","IScriptEngine.EvaluateDocument Method\u0000html/Overload_Microsoft_ClearScript_IScriptEngine_EvaluateDocument.htm\u000084","V8ScriptEngine.Evaluate Method\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_Evaluate.htm\u0000106","HostSettings Properties\u0000html/Properties_T_Microsoft_ClearScript_HostSettings.htm\u000080","ImmutableValueAttribute Properties\u0000html/Properties_T_Microsoft_ClearScript_ImmutableValueAttribute.htm\u000068","DefaultDocumentLoader Properties\u0000html/Properties_T_Microsoft_ClearScript_DefaultDocumentLoader.htm\u000064","ScriptEngine Constructor\u0000html/Overload_Microsoft_ClearScript_ScriptEngine__ctor.htm\u000070","IScriptObject Properties\u0000html/Properties_T_Microsoft_ClearScript_IScriptObject.htm\u0000100","V8ScriptEngine.Execute Method\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_Execute.htm\u0000106","HostTypeCollection Properties\u0000html/Properties_T_Microsoft_ClearScript_HostTypeCollection.htm\u0000116","DefaultScriptUsageAttribute Properties\u0000html/Properties_T_Microsoft_ClearScript_DefaultScriptUsageAttribute.htm\u000080","IArrayBufferView Properties\u0000html/Properties_T_Microsoft_ClearScript_JavaScript_IArrayBufferView.htm\u0000184","HostTypeCollection Events\u0000html/Events_T_Microsoft_ClearScript_HostTypeCollection.htm\u000068","NoScriptAccessAttribute Properties\u0000html/Properties_T_Microsoft_ClearScript_NoScriptAccessAttribute.htm\u000087","PropertyBag Properties\u0000html/Properties_T_Microsoft_ClearScript_PropertyBag.htm\u000091","IScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_IScriptEngine.htm\u0000321","ITypedArray\u0026lt;T\u0026gt; Properties\u0000html/Properties_T_Microsoft_ClearScript_JavaScript_ITypedArray_1.htm\u0000217","IPropertyBag Properties\u0000html/Properties_T_Microsoft_ClearScript_IPropertyBag.htm\u0000165","IArrayBuffer Properties\u0000html/Properties_T_Microsoft_ClearScript_JavaScript_IArrayBuffer.htm\u0000167","Document Properties\u0000html/Properties_T_Microsoft_ClearScript_Document.htm\u000073","ScriptMemberAttribute Properties\u0000html/Properties_T_Microsoft_ClearScript_ScriptMemberAttribute.htm\u0000117","ScriptUsageAttribute Properties\u0000html/Properties_T_Microsoft_ClearScript_ScriptUsageAttribute.htm\u000080","StringDocument Properties\u0000html/Properties_T_Microsoft_ClearScript_StringDocument.htm\u000092","V8CpuProfile Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8CpuProfile.htm\u000087","Sample Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8CpuProfile_Sample.htm\u000065","ScriptEngineException Properties\u0000html/Properties_T_Microsoft_ClearScript_ScriptEngineException.htm\u0000314","DocumentCategory Properties\u0000html/Properties_T_Microsoft_ClearScript_DocumentCategory.htm\u000066","IDataView Properties\u0000html/Properties_T_Microsoft_ClearScript_JavaScript_IDataView.htm\u0000201","ScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_ScriptEngine.htm\u0000337","V8Script Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8Script.htm\u000068","Node Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8CpuProfile_Node.htm\u0000164","V8RuntimeConstraints Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8RuntimeConstraints.htm\u0000137","ScriptObject Properties\u0000html/Properties_T_Microsoft_ClearScript_ScriptObject.htm\u0000100","IScriptEngineException Properties\u0000html/Properties_T_Microsoft_ClearScript_IScriptEngineException.htm\u0000195","V8Settings Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8Settings.htm\u000062","DocumentInfo Properties\u0000html/Properties_T_Microsoft_ClearScript_DocumentInfo.htm\u000097","IHostWindow Properties\u0000html/Properties_T_Microsoft_ClearScript_Windows_IHostWindow.htm\u000062","ScriptInterruptedException Properties\u0000html/Properties_T_Microsoft_ClearScript_ScriptInterruptedException.htm\u0000153","V8Runtime Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8Runtime.htm\u0000168","IJavaScriptObject Properties\u0000html/Properties_T_Microsoft_ClearScript_JavaScript_IJavaScriptObject.htm\u0000146","V8RuntimeHeapInfo Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8RuntimeHeapInfo.htm\u0000113","IWindowsScriptObject Properties\u0000html/Properties_T_Microsoft_ClearScript_Windows_IWindowsScriptObject.htm\u0000132","DocumentLoader Properties\u0000html/Properties_T_Microsoft_ClearScript_DocumentLoader.htm\u000064","DocumentCategory.MaxCacheSize Property\u0000html/P_Microsoft_ClearScript_DocumentCategory_MaxCacheSize.htm\u0000191","DefaultDocumentLoader.MaxCacheSize Property\u0000html/P_Microsoft_ClearScript_DefaultDocumentLoader_MaxCacheSize.htm\u0000185","DocumentInfo.Category Property\u0000html/P_Microsoft_ClearScript_DocumentInfo_Category.htm\u0000133","DocumentLoader.Default Property\u0000html/P_Microsoft_ClearScript_DocumentLoader_Default.htm\u0000119","DocumentInfo.Flags Property\u0000html/P_Microsoft_ClearScript_DocumentInfo_Flags.htm\u0000152","DocumentSettings Properties\u0000html/Properties_T_Microsoft_ClearScript_DocumentSettings.htm\u0000135","DocumentCategory.Script Property\u0000html/P_Microsoft_ClearScript_DocumentCategory_Script.htm\u0000121","V8ScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_V8_V8ScriptEngine.htm\u0000574","DefaultScriptUsageAttribute.Access Property\u0000html/P_Microsoft_ClearScript_DefaultScriptUsageAttribute_Access.htm\u0000117","ITypedArray Properties\u0000html/Properties_T_Microsoft_ClearScript_JavaScript_ITypedArray.htm\u0000208","JScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_Windows_Core_JScriptEngine.htm\u0000503","DocumentSettings.ContextCallback Property\u0000html/P_Microsoft_ClearScript_DocumentSettings_ContextCallback.htm\u0000225","VBScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_Windows_Core_VBScriptEngine.htm\u0000503","DocumentInfo.ContextCallback Property\u0000html/P_Microsoft_ClearScript_DocumentInfo_ContextCallback.htm\u0000224","DocumentLoader.MaxCacheSize Property\u0000html/P_Microsoft_ClearScript_DocumentLoader_MaxCacheSize.htm\u0000180","DocumentInfo.Name Property\u0000html/P_Microsoft_ClearScript_DocumentInfo_Name.htm\u0000145","DocumentSettings.SearchPath Property\u0000html/P_Microsoft_ClearScript_DocumentSettings_SearchPath.htm\u0000144","IScriptEngineException.ErrorDetails Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_ErrorDetails.htm\u0000119","IScriptEngineException.HResult Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_HResult.htm\u0000114","IScriptEngineException.IsFatal Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_IsFatal.htm\u0000115","DocumentSettings.FileNameExtensions Property\u0000html/P_Microsoft_ClearScript_DocumentSettings_FileNameExtensions.htm\u0000141","IScriptEngine.AccessContext Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_AccessContext.htm\u0000193","IScriptEngine.DisableDynamicBinding Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_DisableDynamicBinding.htm\u0000172","JScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_Windows_JScriptEngine.htm\u0000519","IScriptEngine.DisableExtensionMethods Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_DisableExtensionMethods.htm\u0000124","DocumentSettings.AccessFlags Property\u0000html/P_Microsoft_ClearScript_DocumentSettings_AccessFlags.htm\u0000128","DocumentInfo.SourceMapUri Property\u0000html/P_Microsoft_ClearScript_DocumentInfo_SourceMapUri.htm\u0000140","Document.Contents Property\u0000html/P_Microsoft_ClearScript_Document_Contents.htm\u0000124","IScriptEngineException.Message Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_Message.htm\u0000110","IScriptEngineException.ExecutionStarted Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_ExecutionStarted.htm\u0000120","IScriptEngineException.InnerException Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_InnerException.htm\u0000127","DocumentSettings.LoadCallback Property\u0000html/P_Microsoft_ClearScript_DocumentSettings_LoadCallback.htm\u0000142","IScriptEngine.DisableListIndexTypeRestriction Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_DisableListIndexTypeRestriction.htm\u0000189","IScriptEngine.AllowReflection Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_AllowReflection.htm\u0000197","WindowsScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine.htm\u0000492","DocumentInfo.Uri Property\u0000html/P_Microsoft_ClearScript_DocumentInfo_Uri.htm\u0000129","DocumentSettings.AsyncLoadCallback Property\u0000html/P_Microsoft_ClearScript_DocumentSettings_AsyncLoadCallback.htm\u0000144","IScriptEngine.DisableFloatNarrowing Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_DisableFloatNarrowing.htm\u0000182","IScriptEngineException.ScriptException Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_ScriptException.htm\u0000127","Document.Encoding Property\u0000html/P_Microsoft_ClearScript_Document_Encoding.htm\u0000143","IScriptEngine.DocumentSettings Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_DocumentSettings.htm\u0000131","DocumentSettings.Loader Property\u0000html/P_Microsoft_ClearScript_DocumentSettings_Loader.htm\u0000133","IScriptEngine.EnableNullResultWrapping Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_EnableNullResultWrapping.htm\u0000212","IScriptEngine.ExposeHostObjectStaticMembers Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_ExposeHostObjectStaticMembers.htm\u0000137","IScriptEngine.DisableTypeRestriction Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_DisableTypeRestriction.htm\u0000195","IScriptEngine.ContinuationCallback Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_ContinuationCallback.htm\u0000172","IScriptEngine.FormatCode Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_FormatCode.htm\u0000170","IScriptEngine.Script Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_Script.htm\u0000147","IScriptObject.Engine Property\u0000html/P_Microsoft_ClearScript_IScriptObject_Engine.htm\u0000113","VBScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_Windows_VBScriptEngine.htm\u0000519","Document.Info Property\u0000html/P_Microsoft_ClearScript_Document_Info.htm\u0000119","IScriptEngineException.ScriptExceptionAsObject Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_ScriptExceptionAsObject.htm\u0000135","IScriptEngine.EnableAutoHostVariables Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_EnableAutoHostVariables.htm\u0000183","IScriptObject.Item(String, Object[]) Property\u0000html/P_Microsoft_ClearScript_IScriptObject_Item_1.htm\u0000263","IScriptEngine.EnforceAnonymousTypeAccess Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_EnforceAnonymousTypeAccess.htm\u0000212","IScriptEngine.FileNameExtension Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_FileNameExtension.htm\u0000118","IArrayBufferView.Offset Property\u0000html/P_Microsoft_ClearScript_JavaScript_IArrayBufferView_Offset.htm\u0000117","IScriptEngine.Global Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_Global.htm\u0000159","IScriptEngine.DefaultAccess Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_DefaultAccess.htm\u0000197","IScriptObject.Item(Int32) Property\u0000html/P_Microsoft_ClearScript_IScriptObject_Item.htm\u0000185","IArrayBuffer.Size Property\u0000html/P_Microsoft_ClearScript_JavaScript_IArrayBuffer_Size.htm\u0000115","IScriptEngine.UndefinedImportValue Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_UndefinedImportValue.htm\u0000187","HostSettings.AuxiliarySearchPath Property\u0000html/P_Microsoft_ClearScript_HostSettings_AuxiliarySearchPath.htm\u0000171","ModuleCategory.CommonJS Property\u0000html/P_Microsoft_ClearScript_JavaScript_ModuleCategory_CommonJS.htm\u0000124","IScriptObject.PropertyIndices Property\u0000html/P_Microsoft_ClearScript_IScriptObject_PropertyIndices.htm\u0000137","IArrayBufferView.Size Property\u0000html/P_Microsoft_ClearScript_JavaScript_IArrayBufferView_Size.htm\u0000114","ScriptEngineException.EngineName Property\u0000html/P_Microsoft_ClearScript_ScriptEngineException_EngineName.htm\u0000134","PropertyBag.Keys Property\u0000html/P_Microsoft_ClearScript_PropertyBag_Keys.htm\u0000168","IScriptEngine.Name Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_Name.htm\u0000114","IJavaScriptObject.Flags Property\u0000html/P_Microsoft_ClearScript_JavaScript_IJavaScriptObject_Flags.htm\u0000109","ScriptEngineException.ExecutionStarted Property\u0000html/P_Microsoft_ClearScript_ScriptEngineException_ExecutionStarted.htm\u0000138","HostSettings.CustomAttributeLoader Property\u0000html/P_Microsoft_ClearScript_HostSettings_CustomAttributeLoader.htm\u0000142","ModuleCategory.Standard Property\u0000html/P_Microsoft_ClearScript_JavaScript_ModuleCategory_Standard.htm\u0000125","IScriptEngine.UseReflectionBindFallback Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_UseReflectionBindFallback.htm\u0000200","ScriptEngine.DefaultAccess Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_DefaultAccess.htm\u0000220","WindowsScriptEngine Properties\u0000html/Properties_T_Microsoft_ClearScript_Windows_WindowsScriptEngine.htm\u0000514","IScriptObject.PropertyNames Property\u0000html/P_Microsoft_ClearScript_IScriptObject_PropertyNames.htm\u0000139","ScriptEngineException.ErrorDetails Property\u0000html/P_Microsoft_ClearScript_ScriptEngineException_ErrorDetails.htm\u0000137","IJavaScriptObject.Kind Property\u0000html/P_Microsoft_ClearScript_JavaScript_IJavaScriptObject_Kind.htm\u0000109","ScriptEngine.DisableListIndexTypeRestriction Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_DisableListIndexTypeRestriction.htm\u0000212","PropertyBag.Values Property\u0000html/P_Microsoft_ClearScript_PropertyBag_Values.htm\u0000168","ScriptEngineException.IsFatal Property\u0000html/P_Microsoft_ClearScript_ScriptEngineException_IsFatal.htm\u0000133","IScriptEngine.NullExportValue Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_NullExportValue.htm\u0000205","PropertyBag.Comparer Property\u0000html/P_Microsoft_ClearScript_PropertyBag_Comparer.htm\u0000146","IArrayBufferView.ArrayBuffer Property\u0000html/P_Microsoft_ClearScript_JavaScript_IArrayBufferView_ArrayBuffer.htm\u0000114","IScriptEngine.VoidResultValue Property\u0000html/P_Microsoft_ClearScript_IScriptEngine_VoidResultValue.htm\u0000195","HostSettings.UseAssemblyTable Property\u0000html/P_Microsoft_ClearScript_HostSettings_UseAssemblyTable.htm\u0000208","ScriptEngine.DisableDynamicBinding Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_DisableDynamicBinding.htm\u0000195","ScriptEngine.DocumentSettings Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_DocumentSettings.htm\u0000154","ITypedArray.Length Property\u0000html/P_Microsoft_ClearScript_JavaScript_ITypedArray_Length.htm\u0000112","ScriptEngine.ExposeHostObjectStaticMembers Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_ExposeHostObjectStaticMembers.htm\u0000160","ScriptEngine.Name Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_Name.htm\u0000132","ScriptEngineException.ScriptException Property\u0000html/P_Microsoft_ClearScript_ScriptEngineException_ScriptException.htm\u0000145","ScriptEngine.DisableTypeRestriction Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_DisableTypeRestriction.htm\u0000218","ScriptEngine.UseReflectionBindFallback Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_UseReflectionBindFallback.htm\u0000223","IScriptEngineException.EngineName Property\u0000html/P_Microsoft_ClearScript_IScriptEngineException_EngineName.htm\u0000116","ScriptMemberAttribute.Flags Property\u0000html/P_Microsoft_ClearScript_ScriptMemberAttribute_Flags.htm\u0000133","ScriptInterruptedException.ExecutionStarted Property\u0000html/P_Microsoft_ClearScript_ScriptInterruptedException_ExecutionStarted.htm\u0000138","PropertyBag.Item Property\u0000html/P_Microsoft_ClearScript_PropertyBag_Item.htm\u0000209","ScriptEngine.DisableExtensionMethods Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_DisableExtensionMethods.htm\u0000147","ScriptEngine.FileNameExtension Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_FileNameExtension.htm\u0000131","ScriptEngine.EnableAutoHostVariables Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_EnableAutoHostVariables.htm\u0000206","ScriptEngineException.ScriptExceptionAsObject Property\u0000html/P_Microsoft_ClearScript_ScriptEngineException_ScriptExceptionAsObject.htm\u0000153","ScriptObject.Item(String, Object[]) Property\u0000html/P_Microsoft_ClearScript_ScriptObject_Item_1.htm\u0000281","ScriptEngine.NullExportValue Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_NullExportValue.htm\u0000228","V8CpuProfile.Name Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Name.htm\u0000116","StringDocument.Contents Property\u0000html/P_Microsoft_ClearScript_StringDocument_Contents.htm\u0000144","ScriptInterruptedException.IsFatal Property\u0000html/P_Microsoft_ClearScript_ScriptInterruptedException_IsFatal.htm\u0000133","ScriptEngine.VoidResultValue Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_VoidResultValue.htm\u0000218","V8CpuProfile.Node.NodeId Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_NodeId.htm\u0000146","ScriptMemberAttribute.Name Property\u0000html/P_Microsoft_ClearScript_ScriptMemberAttribute_Name.htm\u0000203","ScriptEngine.DisableFloatNarrowing Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_DisableFloatNarrowing.htm\u0000205","ScriptEngine.FormatCode Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_FormatCode.htm\u0000193","V8CpuProfile.Node.BailoutReason Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_BailoutReason.htm\u0000130","ScriptObject.PropertyIndices Property\u0000html/P_Microsoft_ClearScript_ScriptObject_PropertyIndices.htm\u0000150","ScriptEngine.EnableNullResultWrapping Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_EnableNullResultWrapping.htm\u0000235","ScriptEngine.Script Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_Script.htm\u0000160","StringDocument.Encoding Property\u0000html/P_Microsoft_ClearScript_StringDocument_Encoding.htm\u0000136","ScriptEngine.AccessContext Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_AccessContext.htm\u0000216","V8CpuProfile.Node.ScriptId Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_ScriptId.htm\u0000141","ScriptInterruptedException.EngineName Property\u0000html/P_Microsoft_ClearScript_ScriptInterruptedException_EngineName.htm\u0000134","ScriptObject.Engine Property\u0000html/P_Microsoft_ClearScript_ScriptObject_Engine.htm\u0000126","ScriptInterruptedException.ScriptException Property\u0000html/P_Microsoft_ClearScript_ScriptInterruptedException_ScriptException.htm\u0000145","V8CpuProfile.Samples Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Samples.htm\u0000162","ScriptEngine.Global Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_Global.htm\u0000172","StringDocument.Info Property\u0000html/P_Microsoft_ClearScript_StringDocument_Info.htm\u0000127","ScriptObject.PropertyNames Property\u0000html/P_Microsoft_ClearScript_ScriptObject_PropertyNames.htm\u0000152","V8CpuProfile.Node.ChildNodes Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_ChildNodes.htm\u0000167","V8CpuProfile.Node.ScriptName Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_ScriptName.htm\u0000128","ScriptEngine.UndefinedImportValue Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_UndefinedImportValue.htm\u0000210","ScriptInterruptedException.ErrorDetails Property\u0000html/P_Microsoft_ClearScript_ScriptInterruptedException_ErrorDetails.htm\u0000137","ScriptEngine.EnforceAnonymousTypeAccess Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_EnforceAnonymousTypeAccess.htm\u0000235","ScriptInterruptedException.ScriptExceptionAsObject Property\u0000html/P_Microsoft_ClearScript_ScriptInterruptedException_ScriptExceptionAsObject.htm\u0000153","ScriptEngine.AllowReflection Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_AllowReflection.htm\u0000220","ScriptObject.Item(Int32) Property\u0000html/P_Microsoft_ClearScript_ScriptObject_Item.htm\u0000201","V8CpuProfile.Sample.Node Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Sample_Node.htm\u0000129","V8RuntimeConstraints.HeapExpansionMultiplier Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeConstraints_HeapExpansionMultiplier.htm\u0000225","ScriptUsageAttribute.Access Property\u0000html/P_Microsoft_ClearScript_ScriptUsageAttribute_Access.htm\u0000117","V8CpuProfile.EndTimestamp Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_EndTimestamp.htm\u0000147","V8CpuProfile.Node.ColumnNumber Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_ColumnNumber.htm\u0000141","V8RuntimeHeapInfo.TotalExternalSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_TotalExternalSize.htm\u0000123","V8RuntimeConstraints.MaxOldSpaceSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeConstraints_MaxOldSpaceSize.htm\u0000193","V8Runtime.FormatCode Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_FormatCode.htm\u0000176","V8CpuProfile.RootNode Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_RootNode.htm\u0000128","V8Runtime.MaxStackUsage Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_MaxStackUsage.htm\u0000211","V8ScriptEngine.RuntimeHeapSizeSampleInterval Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_RuntimeHeapSizeSampleInterval.htm\u0000157","ScriptEngine.ContinuationCallback Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_ContinuationCallback.htm\u0000195","V8CpuProfile.Sample.Timestamp Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Sample_Timestamp.htm\u0000147","V8CpuProfile.Node.FunctionName Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_FunctionName.htm\u0000123","V8Settings.GlobalFlags Property\u0000html/P_Microsoft_ClearScript_V8_V8Settings_GlobalFlags.htm\u0000161","V8RuntimeConstraints.MaxArrayBufferAllocation Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeConstraints_MaxArrayBufferAllocation.htm\u0000186","V8RuntimeHeapInfo.TotalHeapSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_TotalHeapSize.htm\u0000122","JScriptEngine.FileNameExtension Property\u0000html/P_Microsoft_ClearScript_Windows_JScriptEngine_FileNameExtension.htm\u0000153","V8Runtime.HeapSizeSampleInterval Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_HeapSizeSampleInterval.htm\u0000155","V8Runtime.Name Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_Name.htm\u0000120","V8RuntimeConstraints.MaxYoungSpaceSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeConstraints_MaxYoungSpaceSize.htm\u0000251","V8ScriptEngine.RuntimeHeapSizeViolationPolicy Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_RuntimeHeapSizeViolationPolicy.htm\u0000144","ScriptEngine.Current Property\u0000html/P_Microsoft_ClearScript_ScriptEngine_Current.htm\u0000174","V8CpuProfile.StartTimestamp Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_StartTimestamp.htm\u0000147","AsyncDocumentLoadCallback Delegate\u0000html/T_Microsoft_ClearScript_AsyncDocumentLoadCallback.htm\u0000221","V8CpuProfile.Node.HitCount Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitCount.htm\u0000144","V8RuntimeHeapInfo.TotalHeapSizeExecutable Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_TotalHeapSizeExecutable.htm\u0000124","JScriptEngine.FileNameExtension Property\u0000html/P_Microsoft_ClearScript_Windows_Core_JScriptEngine_FileNameExtension.htm\u0000157","VBScriptEngine.FileNameExtension Property\u0000html/P_Microsoft_ClearScript_Windows_VBScriptEngine_FileNameExtension.htm\u0000151","V8RuntimeConstraints.MaxExecutableSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeConstraints_MaxExecutableSize.htm\u0000282","V8Runtime.HeapSizeViolationPolicy Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_HeapSizeViolationPolicy.htm\u0000142","V8RuntimeHeapInfo.HeapSizeLimit Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_HeapSizeLimit.htm\u0000122","V8ScriptEngine.CpuProfileSampleInterval Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_CpuProfileSampleInterval.htm\u0000166","ContinuationCallback Delegate\u0000html/T_Microsoft_ClearScript_ContinuationCallback.htm\u0000120","V8ScriptEngine.Script Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_Script.htm\u0000171","V8RuntimeHeapInfo.TotalPhysicalSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_TotalPhysicalSize.htm\u0000123","V8CpuProfile.Node.HitLines Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitLines.htm\u0000171","WindowsScriptEngine.Dispatcher Property\u0000html/P_Microsoft_ClearScript_Windows_WindowsScriptEngine_Dispatcher.htm\u0000122","VBScriptEngine.FileNameExtension Property\u0000html/P_Microsoft_ClearScript_Windows_Core_VBScriptEngine_FileNameExtension.htm\u0000155","V8RuntimeHeapInfo.TotalAvailableSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_TotalAvailableSize.htm\u0000123","V8RuntimeConstraints.MaxNewSpaceSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeConstraints_MaxNewSpaceSize.htm\u0000193","DocumentLoader Class\u0000html/T_Microsoft_ClearScript_DocumentLoader.htm\u0000291","V8ScriptEngine.EnableRuntimeInterruptPropagation Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_EnableRuntimeInterruptPropagation.htm\u0000205","V8Runtime.MaxHeapSize Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_MaxHeapSize.htm\u0000284","V8RuntimeHeapInfo.UsedHeapSize Property\u0000html/P_Microsoft_ClearScript_V8_V8RuntimeHeapInfo_UsedHeapSize.htm\u0000122","V8ScriptEngine.SuppressExtensionMethodEnumeration Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_SuppressExtensionMethodEnumeration.htm\u0000208","ClearScript Library Reference\u0000html/R_Project_Reference.htm\u0000149","V8CpuProfile.Node.LineNumber Property\u0000html/P_Microsoft_ClearScript_V8_V8CpuProfile_Node_LineNumber.htm\u0000141","DefaultScriptUsageAttribute Class\u0000html/T_Microsoft_ClearScript_DefaultScriptUsageAttribute.htm\u0000506","CustomAttributeLoader Class\u0000html/T_Microsoft_ClearScript_CustomAttributeLoader.htm\u0000235","WindowsScriptEngine.Global Property\u0000html/P_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_Global.htm\u0000186","V8ScriptEngine.FileNameExtension Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_FileNameExtension.htm\u0000153","V8Runtime.CpuProfileSampleInterval Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_CpuProfileSampleInterval.htm\u0000165","Extensions Class\u0000html/T_Microsoft_ClearScript_Extensions.htm\u0000316","V8ScriptEngine.SuppressInstanceMethodEnumeration Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_SuppressInstanceMethodEnumeration.htm\u0000189","EventConnection\u0026lt;T\u0026gt; Class\u0000html/T_Microsoft_ClearScript_EventConnection_1.htm\u0000289","WindowsScriptEngine.HostWindow Property\u0000html/P_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_HostWindow.htm\u0000151","V8Runtime.DocumentSettings Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_DocumentSettings.htm\u0000137","V8ScriptEngine.Global Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_Global.htm\u0000183","DocumentSettings Class\u0000html/T_Microsoft_ClearScript_DocumentSettings.htm\u0000400","V8Script.DocumentInfo Property\u0000html/P_Microsoft_ClearScript_V8_V8Script_DocumentInfo.htm\u0000117","Document Class\u0000html/T_Microsoft_ClearScript_Document.htm\u0000268","DefaultDocumentLoader Class\u0000html/T_Microsoft_ClearScript_DefaultDocumentLoader.htm\u0000341","WindowsScriptEngine.Script Property\u0000html/P_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_Script.htm\u0000174","IArrayBufferView Interface\u0000html/T_Microsoft_ClearScript_JavaScript_IArrayBufferView.htm\u0000537","EventSource Class\u0000html/T_Microsoft_ClearScript_EventSource.htm\u0000240","V8Script.Name Property\u0000html/P_Microsoft_ClearScript_V8_V8Script_Name.htm\u0000178","V8Runtime.EnableInterruptPropagation Property\u0000html/P_Microsoft_ClearScript_V8_V8Runtime_EnableInterruptPropagation.htm\u0000203","V8ScriptEngine.MaxRuntimeHeapSize Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_MaxRuntimeHeapSize.htm\u0000286","DocumentAccessFlags Enumeration\u0000html/T_Microsoft_ClearScript_DocumentAccessFlags.htm\u0000226","HostTypeCollection Class\u0000html/T_Microsoft_ClearScript_HostTypeCollection.htm\u0000822","WindowsScriptEngine.SyncInvoker Property\u0000html/P_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_SyncInvoker.htm\u0000128","ITypedArray\u0026lt;T\u0026gt; Interface\u0000html/T_Microsoft_ClearScript_JavaScript_ITypedArray_1.htm\u0000753","StringDocument Class\u0000html/T_Microsoft_ClearScript_StringDocument.htm\u0000291","V8Settings.EnableTopLevelAwait Property\u0000html/P_Microsoft_ClearScript_V8_V8Settings_EnableTopLevelAwait.htm\u0000308","EventSource\u0026lt;T\u0026gt; Class\u0000html/T_Microsoft_ClearScript_EventSource_1.htm\u0000276","V8GlobalFlags Enumeration\u0000html/T_Microsoft_ClearScript_V8_V8GlobalFlags.htm\u0000189","IHostWindow.OwnerHandle Property\u0000html/P_Microsoft_ClearScript_Windows_IHostWindow_OwnerHandle.htm\u0000121","V8ScriptEngine.MaxRuntimeStackUsage Property\u0000html/P_Microsoft_ClearScript_V8_V8ScriptEngine_MaxRuntimeStackUsage.htm\u0000216","DocumentCategory Class\u0000html/T_Microsoft_ClearScript_DocumentCategory.htm\u0000244","IDataView Interface\u0000html/T_Microsoft_ClearScript_JavaScript_IDataView.htm\u0000591","ImmutableValueAttribute Class\u0000html/T_Microsoft_ClearScript_ImmutableValueAttribute.htm\u0000451","Undefined Class\u0000html/T_Microsoft_ClearScript_Undefined.htm\u0000259","DynamicHostObject Class\u0000html/T_Microsoft_ClearScript_DynamicHostObject.htm\u0000795","HostFunctions Class\u0000html/T_Microsoft_ClearScript_HostFunctions.htm\u0000951","DocumentContextCallback Delegate\u0000html/T_Microsoft_ClearScript_DocumentContextCallback.htm\u0000183","JavaScriptExtensions Class\u0000html/T_Microsoft_ClearScript_JavaScript_JavaScriptExtensions.htm\u0000379","WindowsScriptEngineFlags Enumeration\u0000html/T_Microsoft_ClearScript_Windows_WindowsScriptEngineFlags.htm\u0000427","V8CacheKind Enumeration\u0000html/T_Microsoft_ClearScript_V8_V8CacheKind.htm\u0000182","V8ScriptEngineFlags Enumeration\u0000html/T_Microsoft_ClearScript_V8_V8ScriptEngineFlags.htm\u0000577","IScriptEngine.ExecuteCommand Method\u0000html/M_Microsoft_ClearScript_IScriptEngine_ExecuteCommand.htm\u0000183","DocumentFlags Enumeration\u0000html/T_Microsoft_ClearScript_DocumentFlags.htm\u0000204","HostItemFlags Enumeration\u0000html/T_Microsoft_ClearScript_HostItemFlags.htm\u0000239","JavaScriptObjectFlags Enumeration\u0000html/T_Microsoft_ClearScript_JavaScript_JavaScriptObjectFlags.htm\u0000171","EventConnection Class\u0000html/T_Microsoft_ClearScript_EventConnection.htm\u0000247","IJavaScriptObject Interface\u0000html/T_Microsoft_ClearScript_JavaScript_IJavaScriptObject.htm\u0000398","IArrayBuffer.InvokeWithDirectAccess Method\u0000html/Overload_Microsoft_ClearScript_JavaScript_IArrayBuffer_InvokeWithDirectAccess.htm\u000094","WindowsScriptEngine.VerifyAccess Method\u0000html/M_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_VerifyAccess.htm\u0000109","ClearScript Library - Search\u0000search.html\u000011","V8Settings Class\u0000html/T_Microsoft_ClearScript_V8_V8Settings.htm\u0000140","V8ScriptEngine Constructor\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor.htm\u0000110","PropertyBag Events\u0000html/Events_T_Microsoft_ClearScript_PropertyBag.htm\u000061","ScriptObject.SetProperty(Int32, Object) Method\u0000html/M_Microsoft_ClearScript_ScriptObject_SetProperty.htm\u0000172","V8CpuProfile Class\u0000html/T_Microsoft_ClearScript_V8_V8CpuProfile.htm\u0000281","DocumentInfo Structure\u0000html/T_Microsoft_ClearScript_DocumentInfo.htm\u0000311","ValueRef Class\u0000html/T_Microsoft_ClearScript_ValueRef.htm\u0000133","HostSettings Class\u0000html/T_Microsoft_ClearScript_HostSettings.htm\u0000156","V8Runtime Class\u0000html/T_Microsoft_ClearScript_V8_V8Runtime.htm\u00001189","WindowsScriptEngine Constructor\u0000html/M_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine__ctor.htm\u0000324","V8ScriptEngine(V8RuntimeConstraints) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_1.htm\u0000150","V8CpuProfileFlags Enumeration\u0000html/T_Microsoft_ClearScript_V8_V8CpuProfileFlags.htm\u0000131","ModuleCategory Properties\u0000html/Properties_T_Microsoft_ClearScript_JavaScript_ModuleCategory.htm\u000065","ScriptObject.SetProperty(String, Object[]) Method\u0000html/M_Microsoft_ClearScript_ScriptObject_SetProperty_1.htm\u0000225","IPropertyBag Interface\u0000html/T_Microsoft_ClearScript_IPropertyBag.htm\u0000724","ScriptMemberAttribute Constructor\u0000html/Overload_Microsoft_ClearScript_ScriptMemberAttribute__ctor.htm\u0000169","DocumentLoadCallback Delegate\u0000html/T_Microsoft_ClearScript_DocumentLoadCallback.htm\u0000153","ExtendedHostFunctions Class\u0000html/T_Microsoft_ClearScript_ExtendedHostFunctions.htm\u00001281","IHostWindow.EnableModeless Method\u0000html/M_Microsoft_ClearScript_Windows_IHostWindow_EnableModeless.htm\u0000126","ScriptEngine.Evaluate(String, String) Method\u0000html/M_Microsoft_ClearScript_ScriptEngine_Evaluate_3.htm\u0000305","ITypedArray Interface\u0000html/T_Microsoft_ClearScript_JavaScript_ITypedArray.htm\u0000604","NoDefaultScriptAccessAttribute Properties\u0000html/Properties_T_Microsoft_ClearScript_NoDefaultScriptAccessAttribute.htm\u000087","ScriptObject.DeleteProperty Method\u0000html/Overload_Microsoft_ClearScript_ScriptObject_DeleteProperty.htm\u000059","VBScriptEngine(String, WindowsScriptEngineFlags, ISyncInvoker) Constructor\u0000html/M_Microsoft_ClearScript_Windows_Core_VBScriptEngine__ctor_3.htm\u0000229","IScriptableObject Interface\u0000html/T_Microsoft_ClearScript_IScriptableObject.htm\u0000117","ValueRef\u0026lt;T\u0026gt; Class\u0000html/T_Microsoft_ClearScript_ValueRef_1.htm\u0000312","V8ScriptEngine(String) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_6.htm\u0000163","DefaultScriptUsageAttribute Constructor\u0000html/Overload_Microsoft_ClearScript_DefaultScriptUsageAttribute__ctor.htm\u000062","ScriptObject.GetProperty Method\u0000html/Overload_Microsoft_ClearScript_ScriptObject_GetProperty.htm\u000068","IWindowsScriptObject.GetUnderlyingObject Method\u0000html/M_Microsoft_ClearScript_Windows_IWindowsScriptObject_GetUnderlyingObject.htm\u0000116","V8RuntimeConstraints Class\u0000html/T_Microsoft_ClearScript_V8_V8RuntimeConstraints.htm\u0000331","V8CpuProfile.Node Class\u0000html/T_Microsoft_ClearScript_V8_V8CpuProfile_Node.htm\u0000352","JavaScriptObjectKind Enumeration\u0000html/T_Microsoft_ClearScript_JavaScript_JavaScriptObjectKind.htm\u0000190","DocumentInfo Constructor\u0000html/Overload_Microsoft_ClearScript_DocumentInfo__ctor.htm\u000065","NullSyncInvoker.CheckAccess Method\u0000html/M_Microsoft_ClearScript_Windows_Core_NullSyncInvoker_CheckAccess.htm\u0000154","ScriptObject.Item Property\u0000html/Overload_Microsoft_ClearScript_ScriptObject_Item.htm\u000068","VBScriptEngine(String, String, String, WindowsScriptEngineFlags, ISyncInvoker) Constructor\u0000html/M_Microsoft_ClearScript_Windows_Core_VBScriptEngine__ctor_4.htm\u0000345","V8ScriptEngine(String, V8RuntimeConstraints) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_7.htm\u0000203","VoidResult Class\u0000html/T_Microsoft_ClearScript_VoidResult.htm\u0000284","DocumentSettings.AddSystemDocument Method\u0000html/Overload_Microsoft_ClearScript_DocumentSettings_AddSystemDocument.htm\u0000113","V8RuntimeFlags Enumeration\u0000html/T_Microsoft_ClearScript_V8_V8RuntimeFlags.htm\u0000179","ScriptObject.SetProperty Method\u0000html/Overload_Microsoft_ClearScript_ScriptObject_SetProperty.htm\u000070","JScriptEngine.ExecuteCommand Method\u0000html/M_Microsoft_ClearScript_Windows_JScriptEngine_ExecuteCommand.htm\u0000231","ModuleCategory Class\u0000html/T_Microsoft_ClearScript_JavaScript_ModuleCategory.htm\u0000142","VBScriptEngine Class\u0000html/T_Microsoft_ClearScript_Windows_Core_VBScriptEngine.htm\u00002289","NullSyncInvoker.Invoke(Action) Method\u0000html/M_Microsoft_ClearScript_Windows_Core_NullSyncInvoker_Invoke.htm\u0000174","V8CpuProfile.Node.HitLine Structure\u0000html/T_Microsoft_ClearScript_V8_V8CpuProfile_Node_HitLine.htm\u0000258","ExtendedHostFunctions.lib Method\u0000html/Overload_Microsoft_ClearScript_ExtendedHostFunctions_lib.htm\u000077","WindowsScriptEngine.CheckAccess Method\u0000html/M_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_CheckAccess.htm\u0000130","ScriptUsageAttribute Constructor\u0000html/Overload_Microsoft_ClearScript_ScriptUsageAttribute__ctor.htm\u000060","JScriptEngine Constructor\u0000html/M_Microsoft_ClearScript_Windows_JScriptEngine__ctor.htm\u000095","ISyncInvoker Interface\u0000html/T_Microsoft_ClearScript_Windows_Core_ISyncInvoker.htm\u0000168","V8ScriptEngine(String, V8RuntimeConstraints, V8ScriptEngineFlags) Constructor\u0000html/M_Microsoft_ClearScript_V8_V8ScriptEngine__ctor_8.htm\u0000240","V8Runtime.BeginCpuProfile Method\u0000html/Overload_Microsoft_ClearScript_V8_V8Runtime_BeginCpuProfile.htm\u000066","NullSyncInvoker.Invoke\u0026lt;T\u0026gt;(Func\u0026lt;T\u0026gt;) Method\u0000html/M_Microsoft_ClearScript_Windows_Core_NullSyncInvoker_Invoke__1.htm\u0000235","ExtendedHostFunctions.type Method\u0000html/Overload_Microsoft_ClearScript_ExtendedHostFunctions_type.htm\u000084","WindowsScriptEngine.CollectGarbage Method\u0000html/M_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_CollectGarbage.htm\u0000154","JScriptEngine(WindowsScriptEngineFlags) Constructor\u0000html/M_Microsoft_ClearScript_Windows_JScriptEngine__ctor_1.htm\u0000132","V8RuntimeHeapInfo Class\u0000html/T_Microsoft_ClearScript_V8_V8RuntimeHeapInfo.htm\u0000287","V8CpuProfile.Sample Class\u0000html/T_Microsoft_ClearScript_V8_V8CpuProfile_Sample.htm\u0000249","V8ScriptEngine Constructor\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine__ctor.htm\u0000278","Extensions.ToHostType Method\u0000html/Overload_Microsoft_ClearScript_Extensions_ToHostType.htm\u000085","NullSyncInvoker.VerifyAccess Method\u0000html/M_Microsoft_ClearScript_Windows_Core_NullSyncInvoker_VerifyAccess.htm\u0000133","V8Runtime.Compile Method\u0000html/Overload_Microsoft_ClearScript_V8_V8Runtime_Compile.htm\u0000233","JScriptEngine(String) Constructor\u0000html/M_Microsoft_ClearScript_Windows_JScriptEngine__ctor_2.htm\u0000148","ISyncInvoker.Invoke Method\u0000html/Overload_Microsoft_ClearScript_Windows_Core_ISyncInvoker_Invoke.htm\u000076","Microsoft.ClearScript Namespace\u0000html/N_Microsoft_ClearScript.htm\u0000574","WindowsScriptEngine.Dispose(Boolean) Method\u0000html/M_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_Dispose.htm\u0000210","V8RuntimeViolationPolicy Enumeration\u0000html/T_Microsoft_ClearScript_V8_V8RuntimeViolationPolicy.htm\u0000208","Extensions.ToRestrictedHostObject Method\u0000html/Overload_Microsoft_ClearScript_Extensions_ToRestrictedHostObject.htm\u0000172","NoDefaultScriptAccessAttribute Class\u0000html/T_Microsoft_ClearScript_NoDefaultScriptAccessAttribute.htm\u0000552","JScriptEngine Constructor\u0000html/Overload_Microsoft_ClearScript_Windows_Core_JScriptEngine__ctor.htm\u0000143","IScriptEngine Interface\u0000html/T_Microsoft_ClearScript_IScriptEngine.htm\u00001487","VBScriptEngine.ExecuteCommand Method\u0000html/M_Microsoft_ClearScript_Windows_Core_VBScriptEngine_ExecuteCommand.htm\u0000278","Microsoft.ClearScript.JavaScript Namespace\u0000html/N_Microsoft_ClearScript_JavaScript.htm\u0000136","HostFunctions.func Method\u0000html/Overload_Microsoft_ClearScript_HostFunctions_func.htm\u000081","V8Runtime.CompileDocument Method\u0000html/Overload_Microsoft_ClearScript_V8_V8Runtime_CompileDocument.htm\u0000252","WindowsScriptEngine.GetStackTrace Method\u0000html/M_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_GetStackTrace.htm\u0000190","NullSyncInvoker.Invoke Method\u0000html/Overload_Microsoft_ClearScript_Windows_Core_NullSyncInvoker_Invoke.htm\u000077","VBScriptEngine(ISyncInvoker) Constructor\u0000html/M_Microsoft_ClearScript_Windows_Core_VBScriptEngine__ctor.htm\u0000133","V8Runtime.CreateScriptEngine Method\u0000html/Overload_Microsoft_ClearScript_V8_V8Runtime_CreateScriptEngine.htm\u0000143","V8Script Class\u0000html/T_Microsoft_ClearScript_V8_V8Script.htm\u0000276","WindowsScriptEngine.Interrupt Method\u0000html/M_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_Interrupt.htm\u0000135","Microsoft.ClearScript.V8 Namespace\u0000html/N_Microsoft_ClearScript_V8.htm\u0000223","VBScriptEngine Constructor\u0000html/Overload_Microsoft_ClearScript_Windows_Core_VBScriptEngine__ctor.htm\u0000143","IScriptEngineException Interface\u0000html/T_Microsoft_ClearScript_IScriptEngineException.htm\u0000245","VBScriptEngine(WindowsScriptEngineFlags, ISyncInvoker) Constructor\u0000html/M_Microsoft_ClearScript_Windows_Core_VBScriptEngine__ctor_1.htm\u0000172","WindowsScriptEngine.Dispose Method\u0000html/Overload_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine_Dispose.htm\u000076","Microsoft.ClearScript.Windows Namespace\u0000html/N_Microsoft_ClearScript_Windows.htm\u0000142","V8Runtime Constructor\u0000html/Overload_Microsoft_ClearScript_V8_V8Runtime__ctor.htm\u0000265","NoScriptAccessAttribute Class\u0000html/T_Microsoft_ClearScript_NoScriptAccessAttribute.htm\u0000604","JScriptEngine Constructor\u0000html/Overload_Microsoft_ClearScript_Windows_JScriptEngine__ctor.htm\u0000125","Microsoft.ClearScript.Windows.Core Namespace\u0000html/N_Microsoft_ClearScript_Windows_Core.htm\u0000107","V8ScriptEngine.BeginCpuProfile Method\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_BeginCpuProfile.htm\u000067","IScriptObject Interface\u0000html/T_Microsoft_ClearScript_IScriptObject.htm\u0000286","VBScriptEngine Constructor\u0000html/Overload_Microsoft_ClearScript_Windows_VBScriptEngine__ctor.htm\u0000125","WindowsScriptEngine Class\u0000html/T_Microsoft_ClearScript_Windows_Core_WindowsScriptEngine.htm\u00002206","V8ScriptEngine.Compile Method\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_Compile.htm\u0000233","IHostWindow Interface\u0000html/T_Microsoft_ClearScript_Windows_IHostWindow.htm\u0000135","PropertyBag Class\u0000html/T_Microsoft_ClearScript_PropertyBag.htm\u0000628","JScriptEngine Class\u0000html/T_Microsoft_ClearScript_Windows_Core_JScriptEngine.htm\u00002310","V8ScriptEngine.CompileDocument Method\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_CompileDocument.htm\u0000253","IArrayBuffer Interface\u0000html/T_Microsoft_ClearScript_JavaScript_IArrayBuffer.htm\u0000523","ScriptAccess Enumeration\u0000html/T_Microsoft_ClearScript_ScriptAccess.htm\u0000193","V8ScriptEngine.Dispose Method\u0000html/Overload_Microsoft_ClearScript_V8_V8ScriptEngine_Dispose.htm\u000074","IWindowsScriptObject Interface\u0000html/T_Microsoft_ClearScript_Windows_IWindowsScriptObject.htm\u0000397","NullSyncInvoker Class\u0000html/T_Microsoft_ClearScript_Windows_Core_NullSyncInvoker.htm\u0000330","V8ScriptEngine Class\u0000html/T_Microsoft_ClearScript_V8_V8ScriptEngine.htm\u00003033","ScriptEngine Class\u0000html/T_Microsoft_ClearScript_ScriptEngine.htm\u00001700","JScriptEngine Class\u0000html/T_Microsoft_ClearScript_Windows_JScriptEngine.htm\u00002336","Nothing Class\u0000html/T_Microsoft_ClearScript_Windows_Nothing.htm\u0000283","ScriptEngineException Class\u0000html/T_Microsoft_ClearScript_ScriptEngineException.htm\u0000683","ScriptInterruptedException Class\u0000html/T_Microsoft_ClearScript_ScriptInterruptedException.htm\u0000343","ScriptMemberAttribute Class\u0000html/T_Microsoft_ClearScript_ScriptMemberAttribute.htm\u0000632","ScriptMemberFlags Enumeration\u0000html/T_Microsoft_ClearScript_ScriptMemberFlags.htm\u0000213","VBScriptEngine Class\u0000html/T_Microsoft_ClearScript_Windows_VBScriptEngine.htm\u00002315","ScriptObject Class\u0000html/T_Microsoft_ClearScript_ScriptObject.htm\u0000968","ScriptUsageAttribute Class\u0000html/T_Microsoft_ClearScript_ScriptUsageAttribute.htm\u0000560","WindowsScriptEngine Class\u0000html/T_Microsoft_ClearScript_Windows_WindowsScriptEngine.htm\u00002255"] \ No newline at end of file diff --git a/docs/Reference/html/E_Microsoft_ClearScript_PropertyBag_PropertyChanged.htm b/docs/Reference/html/E_Microsoft_ClearScript_PropertyBag_PropertyChanged.htm index c810fcdf0..6407dd534 100644 --- a/docs/Reference/html/E_Microsoft_ClearScript_PropertyBag_PropertyChanged.htm +++ b/docs/Reference/html/E_Microsoft_ClearScript_PropertyBag_PropertyChanged.htm @@ -1,6 +1,6 @@ PropertyBag.PropertyChanged Event

PropertyBagPropertyChanged Event

Occurs when a property is added or replaced, or when the collection is cleared. -

Namespace: Microsoft.ClearScript
Assembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.3.7
Syntax
public event PropertyChangedEventHandler PropertyChanged

Namespace: Microsoft.ClearScript
Assembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.0
Syntax
public event PropertyChangedEventHandler PropertyChanged