@lansweeper/data-platform-outbound-grpc 0.1.104 → 0.1.105

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- {"file":[{"name":"google/protobuf/timestamp.proto","package":"google.protobuf","messageType":[{"name":"Timestamp","field":[{"name":"seconds","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"seconds"},{"name":"nanos","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"nanos"}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"TimestampProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/timestamppb","ccEnableArenas":true,"objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"sourceCodeInfo":{"location":[{"span":[30,0,146,1]},{"path":[12],"span":[30,0,18],"leadingDetachedComments":[" Protocol Buffers - Google's data interchange format\n Copyright 2008 Google Inc. All rights reserved.\n https://developers.google.com/protocol-buffers/\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"]},{"path":[2],"span":[32,0,24]},{"path":[8],"span":[34,0,59]},{"path":[8,37],"span":[34,0,59]},{"path":[8],"span":[35,0,31]},{"path":[8,31],"span":[35,0,31]},{"path":[8],"span":[36,0,73]},{"path":[8,11],"span":[36,0,73]},{"path":[8],"span":[37,0,44]},{"path":[8,1],"span":[37,0,44]},{"path":[8],"span":[38,0,47]},{"path":[8,8],"span":[38,0,47]},{"path":[8],"span":[39,0,34]},{"path":[8,10],"span":[39,0,34]},{"path":[8],"span":[40,0,33]},{"path":[8,36],"span":[40,0,33]},{"path":[4,0],"span":[135,0,146,1],"leadingComments":" A Timestamp represents a point in time independent of any time zone or local\n calendar, encoded as a count of seconds and fractions of seconds at\n nanosecond resolution. The count is relative to an epoch at UTC midnight on\n January 1, 1970, in the proleptic Gregorian calendar which extends the\n Gregorian calendar backwards to year one.\n\n All minutes are 60 seconds long. Leap seconds are \"smeared\" so that no leap\n second table is needed for interpretation, using a [24-hour linear\n smear](https://developers.google.com/time/smear).\n\n The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By\n restricting to that range, we ensure that we can convert to and from [RFC\n 3339](https://www.ietf.org/rfc/rfc3339.txt) date strings.\n\n # Examples\n\n Example 1: Compute Timestamp from POSIX `time()`.\n\n Timestamp timestamp;\n timestamp.set_seconds(time(NULL));\n timestamp.set_nanos(0);\n\n Example 2: Compute Timestamp from POSIX `gettimeofday()`.\n\n struct timeval tv;\n gettimeofday(&tv, NULL);\n\n Timestamp timestamp;\n timestamp.set_seconds(tv.tv_sec);\n timestamp.set_nanos(tv.tv_usec * 1000);\n\n Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`.\n\n FILETIME ft;\n GetSystemTimeAsFileTime(&ft);\n UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime;\n\n // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z\n // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.\n Timestamp timestamp;\n timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL));\n timestamp.set_nanos((INT32) ((ticks % 10000000) * 100));\n\n Example 4: Compute Timestamp from Java `System.currentTimeMillis()`.\n\n long millis = System.currentTimeMillis();\n\n Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)\n .setNanos((int) ((millis % 1000) * 1000000)).build();\n\n\n Example 5: Compute Timestamp from Java `Instant.now()`.\n\n Instant now = Instant.now();\n\n Timestamp timestamp =\n Timestamp.newBuilder().setSeconds(now.getEpochSecond())\n .setNanos(now.getNano()).build();\n\n\n Example 6: Compute Timestamp from current time in Python.\n\n timestamp = Timestamp()\n timestamp.GetCurrentTime()\n\n # JSON Mapping\n\n In JSON format, the Timestamp type is encoded as a string in the\n [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the\n format is \"{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z\"\n where {year} is always expressed using four digits while {month}, {day},\n {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional\n seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution),\n are optional. The \"Z\" suffix indicates the timezone (\"UTC\"); the timezone\n is required. A proto3 JSON serializer should always use UTC (as indicated by\n \"Z\") when printing the Timestamp type and a proto3 JSON parser should be\n able to accept both UTC and other timezones (as indicated by an offset).\n\n For example, \"2017-01-15T01:30:15.01Z\" encodes 15.01 seconds past\n 01:30 UTC on January 15, 2017.\n\n In JavaScript, one can convert a Date object to this format using the\n standard\n [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString)\n method. In Python, a standard `datetime.datetime` object can be converted\n to this format using\n [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with\n the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use\n the Joda Time's [`ISODateTimeFormat.dateTime()`](\n http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D\n ) to obtain a formatter capable of generating timestamps in this format.\n\n\n"},{"path":[4,0,1],"span":[135,8,17]},{"path":[4,0,2,0],"span":[139,2,20],"leadingComments":" Represents seconds of UTC time since Unix epoch\n 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to\n 9999-12-31T23:59:59Z inclusive.\n"},{"path":[4,0,2,0,5],"span":[139,2,7]},{"path":[4,0,2,0,1],"span":[139,8,15]},{"path":[4,0,2,0,3],"span":[139,18,19]},{"path":[4,0,2,1],"span":[145,2,18],"leadingComments":" Non-negative fractions of a second at nanosecond resolution. Negative\n second values with fractions must still have non-negative nanos values\n that count forward in time. Must be from 0 to 999,999,999\n inclusive.\n"},{"path":[4,0,2,1,5],"span":[145,2,7]},{"path":[4,0,2,1,1],"span":[145,8,13]},{"path":[4,0,2,1,3],"span":[145,16,17]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"google/protobuf/any.proto","package":"google.protobuf","messageType":[{"name":"Any","field":[{"name":"type_url","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"typeUrl"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"value"}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"AnyProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/anypb","objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"sourceCodeInfo":{"location":[{"span":[30,0,157,1]},{"path":[12],"span":[30,0,18],"leadingDetachedComments":[" Protocol Buffers - Google's data interchange format\n Copyright 2008 Google Inc. All rights reserved.\n https://developers.google.com/protocol-buffers/\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"]},{"path":[2],"span":[32,0,24]},{"path":[8],"span":[34,0,59]},{"path":[8,37],"span":[34,0,59]},{"path":[8],"span":[35,0,67]},{"path":[8,11],"span":[35,0,67]},{"path":[8],"span":[36,0,44]},{"path":[8,1],"span":[36,0,44]},{"path":[8],"span":[37,0,41]},{"path":[8,8],"span":[37,0,41]},{"path":[8],"span":[38,0,34]},{"path":[8,10],"span":[38,0,34]},{"path":[8],"span":[39,0,33]},{"path":[8,36],"span":[39,0,33]},{"path":[4,0],"span":[124,0,157,1],"leadingComments":" `Any` contains an arbitrary serialized protocol buffer message along with a\n URL that describes the type of the serialized message.\n\n Protobuf library provides support to pack/unpack Any values in the form\n of utility functions or additional generated methods of the Any type.\n\n Example 1: Pack and unpack a message in C++.\n\n Foo foo = ...;\n Any any;\n any.PackFrom(foo);\n ...\n if (any.UnpackTo(&foo)) {\n ...\n }\n\n Example 2: Pack and unpack a message in Java.\n\n Foo foo = ...;\n Any any = Any.pack(foo);\n ...\n if (any.is(Foo.class)) {\n foo = any.unpack(Foo.class);\n }\n\n Example 3: Pack and unpack a message in Python.\n\n foo = Foo(...)\n any = Any()\n any.Pack(foo)\n ...\n if any.Is(Foo.DESCRIPTOR):\n any.Unpack(foo)\n ...\n\n Example 4: Pack and unpack a message in Go\n\n foo := &pb.Foo{...}\n any, err := anypb.New(foo)\n if err != nil {\n ...\n }\n ...\n foo := &pb.Foo{}\n if err := any.UnmarshalTo(foo); err != nil {\n ...\n }\n\n The pack methods provided by protobuf library will by default use\n 'type.googleapis.com/full.type.name' as the type URL and the unpack\n methods only use the fully qualified type name after the last '/'\n in the type URL, for example \"foo.bar.com/x/y.z\" will yield type\n name \"y.z\".\n\n\n JSON\n ====\n The JSON representation of an `Any` value uses the regular\n representation of the deserialized, embedded message, with an\n additional field `@type` which contains the type URL. Example:\n\n package google.profile;\n message Person {\n string first_name = 1;\n string last_name = 2;\n }\n\n {\n \"@type\": \"type.googleapis.com/google.profile.Person\",\n \"firstName\": <string>,\n \"lastName\": <string>\n }\n\n If the embedded message type is well-known and has a custom JSON\n representation, that representation will be embedded adding a field\n `value` which holds the custom JSON in addition to the `@type`\n field. Example (for message [google.protobuf.Duration][]):\n\n {\n \"@type\": \"type.googleapis.com/google.protobuf.Duration\",\n \"value\": \"1.212s\"\n }\n\n"},{"path":[4,0,1],"span":[124,8,11]},{"path":[4,0,2,0],"span":[153,2,22],"leadingComments":" A URL/resource name that uniquely identifies the type of the serialized\n protocol buffer message. This string must contain at least\n one \"/\" character. The last segment of the URL's path must represent\n the fully qualified name of the type (as in\n `path/google.protobuf.Duration`). The name should be in a canonical form\n (e.g., leading \".\" is not accepted).\n\n In practice, teams usually precompile into the binary all types that they\n expect it to use in the context of Any. However, for URLs which use the\n scheme `http`, `https`, or no scheme, one can optionally set up a type\n server that maps type URLs to message definitions as follows:\n\n * If no scheme is provided, `https` is assumed.\n * An HTTP GET on the URL must yield a [google.protobuf.Type][]\n value in binary format, or produce an error.\n * Applications are allowed to cache lookup results based on the\n URL, or have them precompiled into a binary to avoid any\n lookup. Therefore, binary compatibility needs to be preserved\n on changes to types. (Use versioned type names to manage\n breaking changes.)\n\n Note: this functionality is not currently available in the official\n protobuf release, and it is not used for type URLs beginning with\n type.googleapis.com.\n\n Schemes other than `http`, `https` (or the empty scheme) might be\n used with implementation specific semantics.\n\n"},{"path":[4,0,2,0,5],"span":[153,2,8]},{"path":[4,0,2,0,1],"span":[153,9,17]},{"path":[4,0,2,0,3],"span":[153,20,21]},{"path":[4,0,2,1],"span":[156,2,18],"leadingComments":" Must be a valid serialized protocol buffer of the above specified type.\n"},{"path":[4,0,2,1,5],"span":[156,2,7]},{"path":[4,0,2,1,1],"span":[156,8,13]},{"path":[4,0,2,1,3],"span":[156,16,17]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"proto/outbound.proto","package":"com.lansweeper.dp.outbound.v1","dependency":["google/protobuf/timestamp.proto","google/protobuf/any.proto"],"messageType":[{"name":"GetEntityRequest","field":[{"name":"entity_path","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","jsonName":"entityPath"}]},{"name":"GetEntityResponse","field":[{"name":"success","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"success"},{"name":"error_description","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"errorDescription","proto3Optional":true},{"name":"entity","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","oneofIndex":1,"jsonName":"entity","proto3Optional":true},{"name":"related","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","jsonName":"related"}],"oneofDecl":[{"name":"_error_description"},{"name":"_entity"}]},{"name":"ListEntityRequest","field":[{"name":"filter","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","jsonName":"filter"}]},{"name":"ListEntityResponse","field":[{"name":"entity","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","jsonName":"entity"},{"name":"related","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","jsonName":"related"}]},{"name":"CatalogLookupRequest","field":[{"name":"brand_id","number":1,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"brandId"},{"name":"model_id","number":2,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"modelId"},{"name":"os_id","number":3,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"osId"},{"name":"sw_id","number":4,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"swId"},{"name":"monitor_id","number":5,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"monitorId"},{"name":"only_requested","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"onlyRequested","proto3Optional":true}],"oneofDecl":[{"name":"_only_requested"}]},{"name":"CatalogLookupResponse","field":[{"name":"brand","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","jsonName":"brand"},{"name":"model","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogModel","jsonName":"model"},{"name":"os","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogOs","jsonName":"os"},{"name":"sw","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogSoftware","jsonName":"sw"},{"name":"monitor","number":5,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogMonitor","jsonName":"monitor"},{"name":"success","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"success","proto3Optional":true},{"name":"error_description","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"errorDescription","proto3Optional":true}],"oneofDecl":[{"name":"_success"},{"name":"_error_description"}]},{"name":"GetIpLocationConfigRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"GetIpLocationConfigResponse","field":[{"name":"config","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.IpLocationConfig","jsonName":"config"}]},{"name":"SetIpLocationConfigRequest","field":[{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"config","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.IpLocationConfig","jsonName":"config"}]},{"name":"SetIpLocationConfigResponse","field":[{"name":"ok","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"ok"},{"name":"error_description","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"errorDescription"}]},{"name":"EntityPath","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"source_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"sourceId","proto3Optional":true},{"name":"source_type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"sourceType","proto3Optional":true},{"name":"entity_type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"entityType","proto3Optional":true},{"name":"entity_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"entityId","proto3Optional":true}],"oneofDecl":[{"name":"_source_id"},{"name":"_source_type"},{"name":"_entity_type"},{"name":"_entity_id"}]},{"name":"Entity","field":[{"name":"asset","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Asset","oneofIndex":0,"jsonName":"asset"}],"oneofDecl":[{"name":"entity"}]},{"name":"Asset","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","jsonName":"id"},{"name":"last_synced","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"lastSynced"},{"name":"first_seen","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"firstSeen"},{"name":"last_updated","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"lastUpdated"},{"name":"last_enriched","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"lastEnriched"},{"name":"last_synced_source_agent","number":39,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"lastSyncedSourceAgent","proto3Optional":true},{"name":"last_synced_source_name","number":49,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"lastSyncedSourceName","proto3Optional":true},{"name":"source_info","number":74,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SourceInfo","jsonName":"sourceInfo"},{"name":"unique_key","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"uniqueKey","proto3Optional":true},{"name":"scan_error","number":33,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ScanError","jsonName":"scanError"},{"name":"internet_ip","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.IpInfo","oneofIndex":3,"jsonName":"internetIp","proto3Optional":true},{"name":"tag","number":14,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Tag","jsonName":"tag"},{"name":"relation","number":20,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Relation","jsonName":"relation"},{"name":"correlation_fields","number":78,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CorrelationFields","oneofIndex":4,"jsonName":"correlationFields","proto3Optional":true},{"name":"reconciliation","number":79,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ReconciliationInfo","oneofIndex":5,"jsonName":"reconciliation","proto3Optional":true},{"name":"core","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CoreFields","jsonName":"core"},{"name":"hw","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.HardwareInfo","oneofIndex":6,"jsonName":"hw","proto3Optional":true},{"name":"os","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystem","oneofIndex":7,"jsonName":"os","proto3Optional":true},{"name":"monitor_inventory","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MonitorInventory","oneofIndex":8,"jsonName":"monitorInventory","proto3Optional":true},{"name":"network_interfaces","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetworkInterfaces","oneofIndex":9,"jsonName":"networkInterfaces","proto3Optional":true},{"name":"network_protocols","number":76,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetworkProtocols","oneofIndex":10,"jsonName":"networkProtocols","proto3Optional":true},{"name":"port_scan","number":77,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.PortScan","oneofIndex":11,"jsonName":"portScan","proto3Optional":true},{"name":"warranty_info","number":81,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WarrantyInfo","jsonName":"warrantyInfo"},{"name":"computer","number":75,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Computer","oneofIndex":12,"jsonName":"computer","proto3Optional":true},{"name":"ot_module","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OtModule","oneofIndex":13,"jsonName":"otModule","proto3Optional":true},{"name":"cloud","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CloudEntity","oneofIndex":14,"jsonName":"cloud","proto3Optional":true},{"name":"change_log","number":80,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.AssetChangeEvent","jsonName":"changeLog"}],"oneofDecl":[{"name":"_last_synced_source_agent"},{"name":"_last_synced_source_name"},{"name":"_unique_key"},{"name":"_internet_ip"},{"name":"_correlation_fields"},{"name":"_reconciliation"},{"name":"_hw"},{"name":"_os"},{"name":"_monitor_inventory"},{"name":"_network_interfaces"},{"name":"_network_protocols"},{"name":"_port_scan"},{"name":"_computer"},{"name":"_ot_module"},{"name":"_cloud"}],"reservedRange":[{"start":9,"end":10},{"start":26,"end":27},{"start":13,"end":14},{"start":37,"end":38},{"start":15,"end":16},{"start":18,"end":19},{"start":19,"end":20},{"start":21,"end":22},{"start":24,"end":25},{"start":25,"end":26},{"start":27,"end":28},{"start":30,"end":31},{"start":28,"end":29},{"start":29,"end":30},{"start":31,"end":32}]},{"name":"AssetChangeEvent","field":[{"name":"timestamp","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"timestamp"},{"name":"sw","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SoftwareChangeEvent","oneofIndex":0,"jsonName":"sw"},{"name":"os","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemChangeEvent","oneofIndex":0,"jsonName":"os"},{"name":"sql_server","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsSqlServerChangeEvent","oneofIndex":0,"jsonName":"sqlServer"}],"oneofDecl":[{"name":"event"}]},{"name":"WarrantyInfo","field":[{"name":"timestamp","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"timestamp"},{"name":"start_date","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":0,"jsonName":"startDate","proto3Optional":true},{"name":"end_date","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":1,"jsonName":"endDate","proto3Optional":true},{"name":"ship_date","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":2,"jsonName":"shipDate","proto3Optional":true},{"name":"service_type","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"serviceType","proto3Optional":true},{"name":"purchase_country","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"purchaseCountry","proto3Optional":true},{"name":"is_reliable","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isReliable"}],"oneofDecl":[{"name":"_start_date"},{"name":"_end_date"},{"name":"_ship_date"},{"name":"_service_type"},{"name":"_purchase_country"}]},{"name":"Computer","field":[{"name":"chassis","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Chassis","oneofIndex":0,"jsonName":"chassis","proto3Optional":true},{"name":"motherboard","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Motherboard","oneofIndex":1,"jsonName":"motherboard","proto3Optional":true},{"name":"processor","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Processor","jsonName":"processor"},{"name":"memory","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Memory","oneofIndex":2,"jsonName":"memory","proto3Optional":true},{"name":"graphics_card","number":5,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.GraphicsCard","jsonName":"graphicsCard"},{"name":"sound_card","number":6,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SoundCard","jsonName":"soundCard"},{"name":"keyboard","number":7,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Keyboard","jsonName":"keyboard"},{"name":"pointing_device","number":8,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.PointingDevice","jsonName":"pointingDevice"},{"name":"computer_bus","number":9,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerBus","jsonName":"computerBus"},{"name":"computer_infrared","number":10,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerInfrared","jsonName":"computerInfrared"},{"name":"parallel_port","number":11,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ParallelPort","jsonName":"parallelPort"},{"name":"serial_port","number":12,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SerialPort","jsonName":"serialPort"},{"name":"pcmcia","number":13,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.PcmciaController","jsonName":"pcmcia"},{"name":"port_connector","number":14,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.PortConnector","jsonName":"portConnector"},{"name":"scsi_controller","number":15,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ScsiController","jsonName":"scsiController"},{"name":"computer_battery","number":16,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerBattery","jsonName":"computerBattery"},{"name":"portable_battery","number":17,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.PortableBattery","jsonName":"portableBattery"},{"name":"optical_drive","number":18,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OpticalDrive","jsonName":"opticalDrive"},{"name":"hard_drive","number":19,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.HardDrive","jsonName":"hardDrive"},{"name":"drive_volume","number":20,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.DriveVolume","jsonName":"driveVolume"},{"name":"tpm","number":21,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.TrustedPlatformModule","jsonName":"tpm"},{"name":"usb_controller","number":22,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerConnectedUsbController","jsonName":"usbController"},{"name":"usb_device_info","number":23,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerConnectedUsbDeviceInfo","jsonName":"usbDeviceInfo"},{"name":"modem","number":24,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerConnectedModem","jsonName":"modem"},{"name":"printer","number":25,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerConnectedPrinter","jsonName":"printer"},{"name":"tape_drive","number":26,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerConnectedTapeDrive","jsonName":"tapeDrive"},{"name":"windows_floppy","number":33,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsFloppy","jsonName":"windowsFloppy"},{"name":"windows_desktop","number":27,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsDesktop","jsonName":"windowsDesktop"},{"name":"windows_desktop_monitor","number":32,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsDesktopMonitor","jsonName":"windowsDesktopMonitor"},{"name":"windows_display","number":28,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsDisplay","jsonName":"windowsDisplay"},{"name":"windows_display_controller","number":29,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsDisplayController","jsonName":"windowsDisplayController"},{"name":"windows_ide_controller","number":30,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsIdeController","jsonName":"windowsIdeController"},{"name":"windows_disk_partition","number":31,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsDiskPartition","jsonName":"windowsDiskPartition"},{"name":"bios","number":101,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Bios","oneofIndex":3,"jsonName":"bios","proto3Optional":true},{"name":"os_patch","number":102,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemPatch","jsonName":"osPatch"},{"name":"os_feature","number":103,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemFeature","jsonName":"osFeature"},{"name":"os_recovery","number":104,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemRecovery","oneofIndex":4,"jsonName":"osRecovery","proto3Optional":true},{"name":"os_service","number":105,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemService","jsonName":"osService"},{"name":"computer_system_product","number":106,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerSystemProduct","oneofIndex":5,"jsonName":"computerSystemProduct","proto3Optional":true},{"name":"page_file","number":107,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsPageFile","jsonName":"pageFile"},{"name":"computer_system","number":108,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsComputerSystem","oneofIndex":6,"jsonName":"computerSystem","proto3Optional":true},{"name":"software_inventory","number":201,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SoftwareInventory","oneofIndex":7,"jsonName":"softwareInventory","proto3Optional":true},{"name":"antivirus","number":202,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.AntivirusSoftware","jsonName":"antivirus"},{"name":"auto_run_command","number":203,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.AutoRunCommand","jsonName":"autoRunCommand"},{"name":"boot_config","number":204,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.BootConfig","oneofIndex":8,"jsonName":"bootConfig","proto3Optional":true},{"name":"driver","number":205,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Driver","jsonName":"driver"},{"name":"running_process","number":206,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.RunningProcess","jsonName":"runningProcess"},{"name":"shared_resource","number":207,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SharedResource","jsonName":"sharedResource"},{"name":"internet_explorer","number":208,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.InternetExplorer","oneofIndex":9,"jsonName":"internetExplorer","proto3Optional":true},{"name":"windows_sql_server","number":209,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsSqlServer","jsonName":"windowsSqlServer"},{"name":"windows_network_client","number":210,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsNetworkClient","jsonName":"windowsNetworkClient"},{"name":"network_volume","number":211,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetworkVolume","jsonName":"networkVolume"},{"name":"windows_cert","number":212,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsCertificate","jsonName":"windowsCert"},{"name":"windows_serial","number":213,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsSerial","jsonName":"windowsSerial"},{"name":"win_env","number":214,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsEnvironment","jsonName":"winEnv"},{"name":"windows_comapp_com","number":215,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsComApp","jsonName":"windowsComappCom"},{"name":"windows_comapp_dcom","number":216,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsComApp","jsonName":"windowsComappDcom"},{"name":"windows_comapp_component","number":217,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsComApp","jsonName":"windowsComappComponent"},{"name":"windows_sat","number":218,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsSat","jsonName":"windowsSat"},{"name":"windows_codec","number":219,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsCodec","jsonName":"windowsCodec"},{"name":"mac_accessibility","number":220,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerMacAccessibility","oneofIndex":10,"jsonName":"macAccessibility","proto3Optional":true},{"name":"mac_framework","number":221,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerMacOsFramework","jsonName":"macFramework"},{"name":"mac_preference_pane","number":222,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerMacPreferencePane","jsonName":"macPreferencePane"},{"name":"mac_regional_settings","number":224,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerMacRegionalSettings","oneofIndex":11,"jsonName":"macRegionalSettings","proto3Optional":true},{"name":"mac_install_history","number":225,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerMacInstallHistory","jsonName":"macInstallHistory"},{"name":"last_user","number":301,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.LastUser","oneofIndex":12,"jsonName":"lastUser","proto3Optional":true},{"name":"user","number":302,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.UserAccount","jsonName":"user"},{"name":"user_group","number":303,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.UserGroup","jsonName":"userGroup"},{"name":"user_in_group","number":304,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.UserInGroup","jsonName":"userInGroup"}],"oneofDecl":[{"name":"_chassis"},{"name":"_motherboard"},{"name":"_memory"},{"name":"_bios"},{"name":"_os_recovery"},{"name":"_computer_system_product"},{"name":"_computer_system"},{"name":"_software_inventory"},{"name":"_boot_config"},{"name":"_internet_explorer"},{"name":"_mac_accessibility"},{"name":"_mac_regional_settings"},{"name":"_last_user"}]},{"name":"Tag","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"value","proto3Optional":true}],"oneofDecl":[{"name":"_value"}]},{"name":"Relation","field":[{"name":"from","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","oneofIndex":0,"jsonName":"from","proto3Optional":true},{"name":"to","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","oneofIndex":1,"jsonName":"to","proto3Optional":true},{"name":"start","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"start"},{"name":"end","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":2,"jsonName":"end","proto3Optional":true},{"name":"name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"tag","number":6,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Tag","jsonName":"tag"}],"oneofDecl":[{"name":"_from"},{"name":"_to"},{"name":"_end"}]},{"name":"CorrelationFields","field":[{"name":"field","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CorrField","jsonName":"field"}]},{"name":"CorrField","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"value"}]},{"name":"ReconciliationInfo","field":[{"name":"correlation_time","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"correlationTime"},{"name":"state","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".com.lansweeper.dp.outbound.v1.ReconciliationInfo.EntryState","jsonName":"state"},{"name":"master_type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".com.lansweeper.dp.outbound.v1.ReconciliationInfo.MasterType","oneofIndex":0,"jsonName":"masterType","proto3Optional":true},{"name":"master","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","oneofIndex":1,"jsonName":"master","proto3Optional":true},{"name":"reference","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","oneofIndex":2,"jsonName":"reference","proto3Optional":true},{"name":"alias","number":6,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","jsonName":"alias"},{"name":"confidence","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"confidence","proto3Optional":true},{"name":"debug_string","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"debugString","proto3Optional":true}],"enumType":[{"name":"EntryState","value":[{"name":"GOLDEN","number":0},{"name":"ALIAS","number":1}]},{"name":"MasterType","value":[{"name":"ENGINE","number":0},{"name":"USER","number":1}]}],"oneofDecl":[{"name":"_master_type"},{"name":"_master"},{"name":"_reference"},{"name":"_confidence"},{"name":"_debug_string"}]},{"name":"CloudEntity","field":[{"name":"body","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Any","jsonName":"body"},{"name":"environment_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"environmentId"},{"name":"cloud_provider","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"cloudProvider"},{"name":"region_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"regionId","proto3Optional":true},{"name":"environment_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"environmentName"},{"name":"category","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"category"}],"oneofDecl":[{"name":"_region_id"}]},{"name":"OtModule","field":[{"name":"component_type","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"componentType","proto3Optional":true},{"name":"bus_config","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OtBusConfig","jsonName":"busConfig"},{"name":"is_main_module","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isMainModule"},{"name":"total_bus_count","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"totalBusCount"},{"name":"total_bus_size","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"totalBusSize"},{"name":"max_bus_level","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"maxBusLevel"},{"name":"part_number","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"partNumber","proto3Optional":true},{"name":"ext_info","number":5,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OtModuleExtInfo","jsonName":"extInfo"},{"name":"route_path","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"routePath","proto3Optional":true},{"name":"is_network_node","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isNetworkNode"},{"name":"scan_protocol","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"scanProtocol","proto3Optional":true},{"name":"scan_info","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OtScanInfo","oneofIndex":4,"jsonName":"scanInfo","proto3Optional":true},{"name":"fw_history","number":10,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OtFirmwareHistory","jsonName":"fwHistory"}],"oneofDecl":[{"name":"_component_type"},{"name":"_part_number"},{"name":"_route_path"},{"name":"_scan_protocol"},{"name":"_scan_info"}]},{"name":"OtBusConfig","field":[{"name":"number","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"number"},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"type","proto3Optional":true},{"name":"size","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"size"},{"name":"start_index","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"startIndex"},{"name":"position","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"position","proto3Optional":true},{"name":"width","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"width","proto3Optional":true},{"name":"is_main_module","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":4,"jsonName":"isMainModule","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_type"},{"name":"_position"},{"name":"_width"},{"name":"_is_main_module"}]},{"name":"OtModuleExtInfo","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"value"}]},{"name":"OtScanInfo","field":[{"name":"scan_target_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"scanTargetId","proto3Optional":true},{"name":"scan_target_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"scanTargetName","proto3Optional":true},{"name":"sensor_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"sensorId","proto3Optional":true},{"name":"sensor_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"sensorName","proto3Optional":true},{"name":"protocol_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"protocolId","proto3Optional":true},{"name":"protocol_name","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"protocolName","proto3Optional":true},{"name":"port","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":6,"jsonName":"port","proto3Optional":true},{"name":"network_protocol","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"networkProtocol","proto3Optional":true},{"name":"last_tried","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":8,"jsonName":"lastTried","proto3Optional":true},{"name":"last_scan","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":9,"jsonName":"lastScan","proto3Optional":true}],"oneofDecl":[{"name":"_scan_target_id"},{"name":"_scan_target_name"},{"name":"_sensor_id"},{"name":"_sensor_name"},{"name":"_protocol_id"},{"name":"_protocol_name"},{"name":"_port"},{"name":"_network_protocol"},{"name":"_last_tried"},{"name":"_last_scan"}]},{"name":"OtFirmwareHistory","field":[{"name":"firmware","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"firmware"},{"name":"from","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"from"},{"name":"until","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"until"}]},{"name":"AssetType","field":[{"name":"ls_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"lsName"},{"name":"ls_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"lsId"},{"name":"fing_type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"fingType","proto3Optional":true},{"name":"sub_type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"subType","proto3Optional":true}],"oneofDecl":[{"name":"_fing_type"},{"name":"_sub_type"}]},{"name":"SourceInfo","field":[{"name":"source_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"sourceId"},{"name":"source_type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"sourceType"},{"name":"source_agent","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"sourceAgent","proto3Optional":true},{"name":"source_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"sourceName","proto3Optional":true},{"name":"raw_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"rawId"},{"name":"last_synced","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"lastSynced"}],"oneofDecl":[{"name":"_source_agent"},{"name":"_source_name"}]},{"name":"ScanError","field":[{"name":"section","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"section"},{"name":"error","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"error"},{"name":"source","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"source","proto3Optional":true},{"name":"timestamp","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":1,"jsonName":"timestamp","proto3Optional":true},{"name":"duration","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"duration","proto3Optional":true}],"oneofDecl":[{"name":"_source"},{"name":"_timestamp"},{"name":"_duration"}]},{"name":"CoreFields","field":[{"name":"type","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.AssetType","jsonName":"type"},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"domain","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"domain","proto3Optional":true},{"name":"ip_address","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"ipAddress","proto3Optional":true},{"name":"serial","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"serial","proto3Optional":true},{"name":"mac","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"mac","proto3Optional":true},{"name":"mac_vendor","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"macVendor","proto3Optional":true},{"name":"sensor_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"sensorId","proto3Optional":true},{"name":"fqdn","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"fqdn","proto3Optional":true},{"name":"confidence","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"confidence"}],"oneofDecl":[{"name":"_domain"},{"name":"_ip_address"},{"name":"_serial"},{"name":"_mac"},{"name":"_mac_vendor"},{"name":"_sensor_id"},{"name":"_fqdn"}]},{"name":"LastUser","field":[{"name":"user_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"userName"},{"name":"user_type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"userType","proto3Optional":true},{"name":"upn","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"upn","proto3Optional":true},{"name":"sid","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"sid","proto3Optional":true}],"oneofDecl":[{"name":"_user_type"},{"name":"_upn"},{"name":"_sid"}]},{"name":"UserAccount","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"domain","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"domain","proto3Optional":true},{"name":"caption","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"caption","proto3Optional":true},{"name":"description","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"description","proto3Optional":true},{"name":"full_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"fullName","proto3Optional":true},{"name":"account_type","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":5,"jsonName":"accountType","proto3Optional":true},{"name":"sid","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"sid","proto3Optional":true},{"name":"sid_type","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":7,"jsonName":"sidType","proto3Optional":true},{"name":"local_account","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":8,"jsonName":"localAccount","proto3Optional":true},{"name":"disabled","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":9,"jsonName":"disabled","proto3Optional":true},{"name":"lockout","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":10,"jsonName":"lockout","proto3Optional":true},{"name":"password_changeable","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":11,"jsonName":"passwordChangeable","proto3Optional":true},{"name":"password_expires","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":12,"jsonName":"passwordExpires","proto3Optional":true},{"name":"password_required","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":13,"jsonName":"passwordRequired","proto3Optional":true},{"name":"status","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"status","proto3Optional":true},{"name":"user_id","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":15,"jsonName":"userId","proto3Optional":true},{"name":"group_id","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"groupId","proto3Optional":true},{"name":"home_directory","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"homeDirectory","proto3Optional":true},{"name":"login_shell","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"loginShell","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_domain"},{"name":"_caption"},{"name":"_description"},{"name":"_full_name"},{"name":"_account_type"},{"name":"_sid"},{"name":"_sid_type"},{"name":"_local_account"},{"name":"_disabled"},{"name":"_lockout"},{"name":"_password_changeable"},{"name":"_password_expires"},{"name":"_password_required"},{"name":"_status"},{"name":"_user_id"},{"name":"_group_id"},{"name":"_home_directory"},{"name":"_login_shell"}]},{"name":"UserGroup","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"description","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"description","proto3Optional":true},{"name":"domain","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"domain","proto3Optional":true},{"name":"sid","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"sid","proto3Optional":true},{"name":"local_account","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":5,"jsonName":"localAccount","proto3Optional":true},{"name":"group_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":6,"jsonName":"groupId","proto3Optional":true},{"name":"type","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"type","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_caption"},{"name":"_description"},{"name":"_domain"},{"name":"_sid"},{"name":"_local_account"},{"name":"_group_id"},{"name":"_type"}]},{"name":"UserInGroup","field":[{"name":"group_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"groupName","proto3Optional":true},{"name":"user_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"userName","proto3Optional":true},{"name":"user_domain_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"userDomainName","proto3Optional":true},{"name":"account_type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"accountType","proto3Optional":true},{"name":"is_admin_group","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":4,"jsonName":"isAdminGroup","proto3Optional":true}],"oneofDecl":[{"name":"_group_name"},{"name":"_user_name"},{"name":"_user_domain_name"},{"name":"_account_type"},{"name":"_is_admin_group"}]},{"name":"InternetExplorer","field":[{"name":"active_x","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.InternetExplorer.ActiveX","jsonName":"activeX"},{"name":"bar","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.InternetExplorer.BrowserObject","jsonName":"bar"},{"name":"browser_object","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.InternetExplorer.BrowserObject","jsonName":"browserObject"},{"name":"extension","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.InternetExplorer.Extension","jsonName":"extension"}],"nestedType":[{"name":"ActiveX","field":[{"name":"control","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"control","proto3Optional":true},{"name":"code_base","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"codeBase","proto3Optional":true},{"name":"info","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"info","proto3Optional":true},{"name":"osd","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"osd","proto3Optional":true}],"oneofDecl":[{"name":"_control"},{"name":"_code_base"},{"name":"_info"},{"name":"_osd"}]},{"name":"Extension","field":[{"name":"control","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"control","proto3Optional":true},{"name":"button_text","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"buttonText","proto3Optional":true},{"name":"cls_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"clsId","proto3Optional":true},{"name":"default_visible","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"defaultVisible","proto3Optional":true},{"name":"exec","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"exec","proto3Optional":true},{"name":"hot_icon","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"hotIcon","proto3Optional":true},{"name":"icon","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"icon","proto3Optional":true},{"name":"menu_text","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"menuText","proto3Optional":true},{"name":"tooltip","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"tooltip","proto3Optional":true}],"oneofDecl":[{"name":"_control"},{"name":"_button_text"},{"name":"_cls_id"},{"name":"_default_visible"},{"name":"_exec"},{"name":"_hot_icon"},{"name":"_icon"},{"name":"_menu_text"},{"name":"_tooltip"}]},{"name":"BrowserObject","field":[{"name":"control","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"control"}]},{"name":"BarInfo","field":[{"name":"control","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"control"}]}]},{"name":"WindowsSqlServer","field":[{"name":"is_clustered","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isClustered"},{"name":"sql_authentication_mode","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".com.lansweeper.dp.outbound.v1.WindowsSqlServer.SqlAuthenticationMode","jsonName":"sqlAuthenticationMode"},{"name":"databases","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SqlServerDatabase","jsonName":"databases"},{"name":"services","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SqlServerService","jsonName":"services"},{"name":"service_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"serviceName"},{"name":"display_version","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"displayVersion"},{"name":"version","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"version"},{"name":"sp_level","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"spLevel","proto3Optional":true},{"name":"sku_name","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"skuName","proto3Optional":true},{"name":"language","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"language","proto3Optional":true},{"name":"is_wow64","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":3,"jsonName":"isWow64","proto3Optional":true},{"name":"install_path","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"installPath","proto3Optional":true},{"name":"file_version","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"fileVersion","proto3Optional":true},{"name":"data_path","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"dataPath","proto3Optional":true},{"name":"cluster","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SqlServerCluster","oneofIndex":7,"jsonName":"cluster","proto3Optional":true},{"name":"instance_id","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"instanceId"},{"name":"instance_name","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"instanceName","proto3Optional":true}],"enumType":[{"name":"SqlAuthenticationMode","value":[{"name":"UNKNOWN_MODE","number":0},{"name":"WINDOWS","number":1},{"name":"MIXED","number":2}]}],"oneofDecl":[{"name":"_sp_level"},{"name":"_sku_name"},{"name":"_language"},{"name":"_is_wow64"},{"name":"_install_path"},{"name":"_file_version"},{"name":"_data_path"},{"name":"_cluster"},{"name":"_instance_name"}]},{"name":"SqlServerDatabase","field":[{"name":"data_files_size_kb","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"dataFilesSizeKb","proto3Optional":true},{"name":"log_files_size_kb","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"logFilesSizeKb","proto3Optional":true},{"name":"log_files_used_size_kb","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"logFilesUsedSizeKb","proto3Optional":true},{"name":"name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"name","proto3Optional":true}],"oneofDecl":[{"name":"_data_files_size_kb"},{"name":"_log_files_size_kb"},{"name":"_log_files_used_size_kb"},{"name":"_name"}]},{"name":"SqlServerService","field":[{"name":"state","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".com.lansweeper.dp.outbound.v1.SqlServerService.ServiceState","oneofIndex":0,"jsonName":"state","proto3Optional":true},{"name":"startup_type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".com.lansweeper.dp.outbound.v1.SqlServerService.ServiceStartupType","oneofIndex":1,"jsonName":"startupType","proto3Optional":true},{"name":"name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"name","proto3Optional":true},{"name":"instance_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"instanceId","proto3Optional":true}],"enumType":[{"name":"ServiceState","value":[{"name":"NO_SERVICE_STATE","number":0},{"name":"STOPPED","number":1},{"name":"START_PENDING","number":2},{"name":"STOP_PENDING","number":3},{"name":"RUNNING","number":4},{"name":"CONTINUE_PENDING","number":5},{"name":"PAUSE_PENDING","number":6},{"name":"PAUSED","number":7}]},{"name":"ServiceStartupType","value":[{"name":"NO_SERVICE_STARTUP_TYPE","number":0},{"name":"OTHER_STARTYP_TYPE","number":1},{"name":"AUTOMATIC","number":2},{"name":"MANUAL","number":3},{"name":"DISABLED","number":4}]}],"oneofDecl":[{"name":"_state"},{"name":"_startup_type"},{"name":"_name"},{"name":"_instance_id"}]},{"name":"SqlServerCluster","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"cluster_nodes","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SqlServerClusterNode","jsonName":"clusterNodes"}],"oneofDecl":[{"name":"_name"}]},{"name":"SqlServerClusterNode","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true}],"oneofDecl":[{"name":"_name"}]},{"name":"WindowsSqlServerChangeEvent","field":[{"name":"event_type","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".com.lansweeper.dp.outbound.v1.WindowsSqlServerChangeEvent.EventType","jsonName":"eventType"},{"name":"start","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"start"},{"name":"end","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":0,"jsonName":"end","proto3Optional":true},{"name":"windows_sql_server","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsSqlServer","jsonName":"windowsSqlServer"}],"enumType":[{"name":"EventType","value":[{"name":"INSTALL","number":0},{"name":"UNINSTALL","number":1},{"name":"UPDATE","number":2}]}],"oneofDecl":[{"name":"_end"}]},{"name":"HardwareInfo","field":[{"name":"type_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"typeId","proto3Optional":true},{"name":"make_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"makeId","proto3Optional":true},{"name":"model_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"modelId","proto3Optional":true},{"name":"family_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"familyId","proto3Optional":true},{"name":"is_family","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":4,"jsonName":"isFamily","proto3Optional":true},{"name":"serial","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"serial","proto3Optional":true},{"name":"type_name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"typeName","proto3Optional":true},{"name":"type_caption","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"typeCaption","proto3Optional":true},{"name":"type_group","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"typeGroup","proto3Optional":true},{"name":"make_name","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"makeName","proto3Optional":true},{"name":"model_name","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"modelName","proto3Optional":true},{"name":"family_name","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"familyName","proto3Optional":true},{"name":"cpe","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"cpe","proto3Optional":true},{"name":"rank","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":13,"jsonName":"rank","proto3Optional":true},{"name":"spec","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SpecHardwareInfo","oneofIndex":14,"jsonName":"spec","proto3Optional":true},{"name":"catalog_brand","number":50,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","oneofIndex":15,"jsonName":"catalogBrand","proto3Optional":true},{"name":"catalog_model","number":51,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogModel","oneofIndex":16,"jsonName":"catalogModel","proto3Optional":true},{"name":"catalog_family","number":52,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogModel","oneofIndex":17,"jsonName":"catalogFamily","proto3Optional":true}],"oneofDecl":[{"name":"_type_id"},{"name":"_make_id"},{"name":"_model_id"},{"name":"_family_id"},{"name":"_is_family"},{"name":"_serial"},{"name":"_type_name"},{"name":"_type_caption"},{"name":"_type_group"},{"name":"_make_name"},{"name":"_model_name"},{"name":"_family_name"},{"name":"_cpe"},{"name":"_rank"},{"name":"_spec"},{"name":"_catalog_brand"},{"name":"_catalog_model"},{"name":"_catalog_family"}]},{"name":"SpecHardwareInfo","field":[{"name":"architecture","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"architecture","proto3Optional":true},{"name":"model","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"model","proto3Optional":true},{"name":"manufacturer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"manufacturer","proto3Optional":true},{"name":"serial_number","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"serialNumber","proto3Optional":true},{"name":"system_sku","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"systemSku","proto3Optional":true},{"name":"uptime","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"uptime","proto3Optional":true},{"name":"bus_speed","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"busSpeed","proto3Optional":true},{"name":"boot_rom_version","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"bootRomVersion","proto3Optional":true},{"name":"smc_version_system","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"smcVersionSystem","proto3Optional":true}],"oneofDecl":[{"name":"_architecture"},{"name":"_model"},{"name":"_manufacturer"},{"name":"_serial_number"},{"name":"_system_sku"},{"name":"_uptime"},{"name":"_bus_speed"},{"name":"_boot_rom_version"},{"name":"_smc_version_system"}]},{"name":"OperatingSystem","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"id","proto3Optional":true},{"name":"make_id","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"makeId","proto3Optional":true},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"name","proto3Optional":true},{"name":"version","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"version","proto3Optional":true},{"name":"build","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"build","proto3Optional":true},{"name":"fw_version","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"fwVersion","proto3Optional":true},{"name":"cpe","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"cpe","proto3Optional":true},{"name":"fw_cpe","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"fwCpe","proto3Optional":true},{"name":"rank","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":9,"jsonName":"rank","proto3Optional":true},{"name":"windows","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsOperatingSystemInfo","oneofIndex":0,"jsonName":"windows"},{"name":"mac","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MacOperatingSystemInfo","oneofIndex":0,"jsonName":"mac"},{"name":"linux","number":34,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.LinuxOperatingSystemInfo","oneofIndex":0,"jsonName":"linux"}],"oneofDecl":[{"name":"spec"},{"name":"_id"},{"name":"_make_id"},{"name":"_name"},{"name":"_version"},{"name":"_build"},{"name":"_fw_version"},{"name":"_cpe"},{"name":"_fw_cpe"},{"name":"_rank"}]},{"name":"MacOperatingSystemInfo","field":[{"name":"kernel_caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"kernelCaption","proto3Optional":true},{"name":"system_version","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"systemVersion","proto3Optional":true},{"name":"boot_volume","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"bootVolume","proto3Optional":true},{"name":"boot_mode","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"bootMode","proto3Optional":true},{"name":"computer_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"computerName","proto3Optional":true},{"name":"user_name","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"userName","proto3Optional":true},{"name":"up_time","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"upTime","proto3Optional":true},{"name":"secure_virtual_memory","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"secureVirtualMemory","proto3Optional":true},{"name":"sixty_four_bit_kernel_and_exts","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"sixtyFourBitKernelAndExts","proto3Optional":true},{"name":"system_integrity","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"systemIntegrity","proto3Optional":true}],"oneofDecl":[{"name":"_kernel_caption"},{"name":"_system_version"},{"name":"_boot_volume"},{"name":"_boot_mode"},{"name":"_computer_name"},{"name":"_user_name"},{"name":"_up_time"},{"name":"_secure_virtual_memory"},{"name":"_sixty_four_bit_kernel_and_exts"},{"name":"_system_integrity"}]},{"name":"LinuxOperatingSystemInfo","field":[{"name":"kernel_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"kernelName","proto3Optional":true},{"name":"kernel_release","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"kernelRelease","proto3Optional":true},{"name":"kernel_version","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"kernelVersion","proto3Optional":true},{"name":"distribution","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"distribution","proto3Optional":true},{"name":"os_release","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"osRelease","proto3Optional":true}],"oneofDecl":[{"name":"_kernel_name"},{"name":"_kernel_release"},{"name":"_kernel_version"},{"name":"_distribution"},{"name":"_os_release"}]},{"name":"WindowsOperatingSystemInfo","field":[{"name":"version","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"version","proto3Optional":true},{"name":"service_pack","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":1,"jsonName":"servicePack","proto3Optional":true},{"name":"build","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"build","proto3Optional":true},{"name":"version_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"versionName","proto3Optional":true},{"name":"is_domain_controller","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":4,"jsonName":"isDomainController","proto3Optional":true},{"name":"part_of_domain","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":5,"jsonName":"partOfDomain","proto3Optional":true},{"name":"is_azure_ad_joined","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":6,"jsonName":"isAzureAdJoined","proto3Optional":true},{"name":"os_code","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"osCode","proto3Optional":true},{"name":"boot_device","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"bootDevice","proto3Optional":true},{"name":"build_number","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"buildNumber","proto3Optional":true},{"name":"build_type","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"buildType","proto3Optional":true},{"name":"caption","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"caption","proto3Optional":true},{"name":"code_set","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"codeSet","proto3Optional":true},{"name":"country_code","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"countryCode","proto3Optional":true},{"name":"csd_version","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"csdVersion","proto3Optional":true},{"name":"current_timezone","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":15,"jsonName":"currentTimezone","proto3Optional":true},{"name":"debug","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":16,"jsonName":"debug","proto3Optional":true},{"name":"description","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"description","proto3Optional":true},{"name":"foreground_application_boost","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":18,"jsonName":"foregroundApplicationBoost","proto3Optional":true},{"name":"install_date","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":19,"jsonName":"installDate","proto3Optional":true},{"name":"max_process_memory_size","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":20,"jsonName":"maxProcessMemorySize","proto3Optional":true},{"name":"number_of_licensed_users","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":21,"jsonName":"numberOfLicensedUsers","proto3Optional":true},{"name":"organization","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":22,"jsonName":"organization","proto3Optional":true},{"name":"os_language","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":23,"jsonName":"osLanguage","proto3Optional":true},{"name":"os_product_suite","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":24,"jsonName":"osProductSuite","proto3Optional":true},{"name":"os_type","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":25,"jsonName":"osType","proto3Optional":true},{"name":"plus_product_id","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":26,"jsonName":"plusProductId","proto3Optional":true},{"name":"plus_version_number","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":27,"jsonName":"plusVersionNumber","proto3Optional":true},{"name":"registered_user","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":28,"jsonName":"registeredUser","proto3Optional":true},{"name":"serial_number","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":29,"jsonName":"serialNumber","proto3Optional":true},{"name":"service_pack_major_version","number":34,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":30,"jsonName":"servicePackMajorVersion","proto3Optional":true},{"name":"service_pack_minor_version","number":35,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":31,"jsonName":"servicePackMinorVersion","proto3Optional":true},{"name":"size_stored_in_paging_files","number":36,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":32,"jsonName":"sizeStoredInPagingFiles","proto3Optional":true},{"name":"status","number":37,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":33,"jsonName":"status","proto3Optional":true},{"name":"system_device","number":38,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":34,"jsonName":"systemDevice","proto3Optional":true},{"name":"system_directory","number":39,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":35,"jsonName":"systemDirectory","proto3Optional":true},{"name":"total_virtual_memory_size","number":40,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":36,"jsonName":"totalVirtualMemorySize","proto3Optional":true},{"name":"total_visible_memory_size","number":41,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":37,"jsonName":"totalVisibleMemorySize","proto3Optional":true},{"name":"windows_directory","number":43,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":38,"jsonName":"windowsDirectory","proto3Optional":true},{"name":"total_swap_space_size","number":44,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":39,"jsonName":"totalSwapSpaceSize","proto3Optional":true},{"name":"large_system_cache","number":45,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":40,"jsonName":"largeSystemCache","proto3Optional":true},{"name":"other_type_description","number":46,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":41,"jsonName":"otherTypeDescription","proto3Optional":true},{"name":"product_type","number":47,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":42,"jsonName":"productType","proto3Optional":true},{"name":"suite_mask","number":48,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":43,"jsonName":"suiteMask","proto3Optional":true},{"name":"system_drive","number":49,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":44,"jsonName":"systemDrive","proto3Optional":true},{"name":"encryption_level","number":50,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":45,"jsonName":"encryptionLevel","proto3Optional":true},{"name":"data_execution_prevention32_bit_applications","number":51,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":46,"jsonName":"dataExecutionPrevention32BitApplications","proto3Optional":true},{"name":"is_data_execution_prevention_available","number":52,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":47,"jsonName":"isDataExecutionPreventionAvailable","proto3Optional":true},{"name":"data_execution_prevention_drivers","number":53,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":48,"jsonName":"dataExecutionPreventionDrivers","proto3Optional":true},{"name":"data_execution_prevention_support_policy","number":54,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":49,"jsonName":"dataExecutionPreventionSupportPolicy","proto3Optional":true}],"oneofDecl":[{"name":"_version"},{"name":"_service_pack"},{"name":"_build"},{"name":"_version_name"},{"name":"_is_domain_controller"},{"name":"_part_of_domain"},{"name":"_is_azure_ad_joined"},{"name":"_os_code"},{"name":"_boot_device"},{"name":"_build_number"},{"name":"_build_type"},{"name":"_caption"},{"name":"_code_set"},{"name":"_country_code"},{"name":"_csd_version"},{"name":"_current_timezone"},{"name":"_debug"},{"name":"_description"},{"name":"_foreground_application_boost"},{"name":"_install_date"},{"name":"_max_process_memory_size"},{"name":"_number_of_licensed_users"},{"name":"_organization"},{"name":"_os_language"},{"name":"_os_product_suite"},{"name":"_os_type"},{"name":"_plus_product_id"},{"name":"_plus_version_number"},{"name":"_registered_user"},{"name":"_serial_number"},{"name":"_service_pack_major_version"},{"name":"_service_pack_minor_version"},{"name":"_size_stored_in_paging_files"},{"name":"_status"},{"name":"_system_device"},{"name":"_system_directory"},{"name":"_total_virtual_memory_size"},{"name":"_total_visible_memory_size"},{"name":"_windows_directory"},{"name":"_total_swap_space_size"},{"name":"_large_system_cache"},{"name":"_other_type_description"},{"name":"_product_type"},{"name":"_suite_mask"},{"name":"_system_drive"},{"name":"_encryption_level"},{"name":"_data_execution_prevention32_bit_applications"},{"name":"_is_data_execution_prevention_available"},{"name":"_data_execution_prevention_drivers"},{"name":"_data_execution_prevention_support_policy"}]},{"name":"OperatingSystemChangeEvent","field":[{"name":"event_type","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemChangeEvent.EventType","jsonName":"eventType"},{"name":"start","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"start"},{"name":"end","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":0,"jsonName":"end","proto3Optional":true},{"name":"os","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystem","jsonName":"os"},{"name":"prev_os","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystem","oneofIndex":1,"jsonName":"prevOs","proto3Optional":true}],"enumType":[{"name":"EventType","value":[{"name":"INSTALL","number":0},{"name":"UNINSTALL","number":1},{"name":"UPDATE","number":2}]}],"oneofDecl":[{"name":"_end"},{"name":"_prev_os"}]},{"name":"OperatingSystemFeature","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"caption"}]},{"name":"OperatingSystemPatch","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"type","proto3Optional":true},{"name":"install_date","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":1,"jsonName":"installDate","proto3Optional":true},{"name":"install_by","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"installBy","proto3Optional":true},{"name":"comments","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"comments","proto3Optional":true},{"name":"windows_service_pack","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"windowsServicePack","proto3Optional":true}],"oneofDecl":[{"name":"_type"},{"name":"_install_date"},{"name":"_install_by"},{"name":"_comments"},{"name":"_windows_service_pack"}]},{"name":"NetworkInterfaces","field":[{"name":"timestamp","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"timestamp"},{"name":"interface","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetworkInterface","jsonName":"interface"}]},{"name":"NetworkInterface","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"type"},{"name":"sub_type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"subType"},{"name":"id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"id","proto3Optional":true},{"name":"mac","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"mac","proto3Optional":true},{"name":"dhcp_enabled","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"dhcpEnabled","proto3Optional":true},{"name":"dhcp_server_ip","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"dhcpServerIp","proto3Optional":true},{"name":"ip","number":8,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetIpAddress","jsonName":"ip"},{"name":"gateway_ip","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"gatewayIp","proto3Optional":true},{"name":"gateway_mac","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"gatewayMac","proto3Optional":true},{"name":"dns_server","number":11,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"dnsServer"},{"name":"dns_host_name","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"dnsHostName","proto3Optional":true},{"name":"dns_domain_suffix_search_order","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"dnsDomainSuffixSearchOrder","proto3Optional":true},{"name":"service_name","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"serviceName","proto3Optional":true},{"name":"database_path","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"databasePath","proto3Optional":true}],"oneofDecl":[{"name":"_id"},{"name":"_mac"},{"name":"_dhcp_enabled"},{"name":"_dhcp_server_ip"},{"name":"_gateway_ip"},{"name":"_gateway_mac"},{"name":"_dns_host_name"},{"name":"_dns_domain_suffix_search_order"},{"name":"_service_name"},{"name":"_database_path"}]},{"name":"NetIpAddress","field":[{"name":"ip","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ip"},{"name":"subnet","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"subnet"}]},{"name":"NetworkProtocols","field":[{"name":"protocol","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"protocol"}]},{"name":"PortScan","field":[{"name":"timestamp","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"timestamp"},{"name":"scanned_port","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ScannedPort","jsonName":"scannedPort"}]},{"name":"ScannedPort","field":[{"name":"protocol","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"protocol"},{"name":"port_number","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"portNumber"},{"name":"local_address","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"localAddress","proto3Optional":true},{"name":"process_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"processName","proto3Optional":true},{"name":"banner","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"banner","proto3Optional":true},{"name":"http_server","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.HttpServerInfo","oneofIndex":3,"jsonName":"httpServer","proto3Optional":true}],"oneofDecl":[{"name":"_local_address"},{"name":"_process_name"},{"name":"_banner"},{"name":"_http_server"}]},{"name":"HttpServerInfo","field":[{"name":"port","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"port"},{"name":"ssl","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"ssl","proto3Optional":true},{"name":"server","number":3,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"server"},{"name":"wwwauth","number":4,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"wwwauth"},{"name":"cookie","number":5,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"cookie"},{"name":"title","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"title","proto3Optional":true},{"name":"favicon_md5","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"faviconMd5","proto3Optional":true},{"name":"favicon","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","oneofIndex":3,"jsonName":"favicon","proto3Optional":true},{"name":"certificates","number":9,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.HttpCertificate","jsonName":"certificates"}],"oneofDecl":[{"name":"_ssl"},{"name":"_title"},{"name":"_favicon_md5"},{"name":"_favicon"}]},{"name":"HttpCertificate","field":[{"name":"thumbprint","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"thumbprint","proto3Optional":true},{"name":"serial_number","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"serialNumber","proto3Optional":true},{"name":"x509_issuer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"x509Issuer","proto3Optional":true},{"name":"x509_subject","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"x509Subject","proto3Optional":true},{"name":"effective_date","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":4,"jsonName":"effectiveDate","proto3Optional":true},{"name":"expiration_date","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":5,"jsonName":"expirationDate","proto3Optional":true},{"name":"errors","number":7,"label":"LABEL_REPEATED","type":"TYPE_ENUM","typeName":".com.lansweeper.dp.outbound.v1.HttpCertificate.SslPolicyErrors","jsonName":"errors"}],"enumType":[{"name":"SslPolicyErrors","value":[{"name":"SSL_REMOTE_CERTIFICATE_NOT_AVAILABLE","number":0},{"name":"SSL_REMOTE_CERTIFICATE_NAME_MISMATCH","number":1},{"name":"SSL_REMOTE_CERTIFICATE_CHAIN_ERRORS","number":2}]}],"oneofDecl":[{"name":"_thumbprint"},{"name":"_serial_number"},{"name":"_x509_issuer"},{"name":"_x509_subject"},{"name":"_effective_date"},{"name":"_expiration_date"}]},{"name":"Processor","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"address_sizes","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"addressSizes","proto3Optional":true},{"name":"address_width","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":1,"jsonName":"addressWidth","proto3Optional":true},{"name":"architecture","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"architecture","proto3Optional":true},{"name":"availability","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"availability","proto3Optional":true},{"name":"bogo_mips","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":4,"jsonName":"bogoMips","proto3Optional":true},{"name":"byte_order","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"byteOrder","proto3Optional":true},{"name":"caption","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"caption","proto3Optional":true},{"name":"current_clock_speed","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":7,"jsonName":"currentClockSpeed","proto3Optional":true},{"name":"data_width","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"dataWidth","proto3Optional":true},{"name":"device_id","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"deviceId","proto3Optional":true},{"name":"external_clock_mhz","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":10,"jsonName":"externalClockMhz","proto3Optional":true},{"name":"family","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":11,"jsonName":"family","proto3Optional":true},{"name":"hypervisor_vendor","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"hypervisorVendor","proto3Optional":true},{"name":"l1d_cache_size_kb","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":13,"jsonName":"l1dCacheSizeKb","proto3Optional":true},{"name":"l1i_cache_size_kb","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":14,"jsonName":"l1iCacheSizeKb","proto3Optional":true},{"name":"l2_cache_size_kb","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":15,"jsonName":"l2CacheSizeKb","proto3Optional":true},{"name":"l2_cache_speed_mhz","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"l2CacheSpeedMhz","proto3Optional":true},{"name":"l3_cache_size_kb","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":17,"jsonName":"l3CacheSizeKb","proto3Optional":true},{"name":"level","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":18,"jsonName":"level","proto3Optional":true},{"name":"logical_cores_count","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":19,"jsonName":"logicalCoresCount","proto3Optional":true},{"name":"manufacturer","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":20,"jsonName":"manufacturer","proto3Optional":true},{"name":"max_clock_speed_mhz","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":21,"jsonName":"maxClockSpeedMhz","proto3Optional":true},{"name":"min_clock_speed_mhz","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":22,"jsonName":"minClockSpeedMhz","proto3Optional":true},{"name":"model_number","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":23,"jsonName":"modelNumber","proto3Optional":true},{"name":"op_modes","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":24,"jsonName":"opModes","proto3Optional":true},{"name":"physical_cores_count","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":25,"jsonName":"physicalCoresCount","proto3Optional":true},{"name":"processor_id","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":26,"jsonName":"processorId","proto3Optional":true},{"name":"processor_type","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":27,"jsonName":"processorType","proto3Optional":true},{"name":"revision","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":28,"jsonName":"revision","proto3Optional":true},{"name":"socket_designation","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":29,"jsonName":"socketDesignation","proto3Optional":true},{"name":"sockets","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":30,"jsonName":"sockets","proto3Optional":true},{"name":"status","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":31,"jsonName":"status","proto3Optional":true},{"name":"stepping","number":34,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":32,"jsonName":"stepping","proto3Optional":true},{"name":"threads_per_physical_core_count","number":35,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":33,"jsonName":"threadsPerPhysicalCoreCount","proto3Optional":true},{"name":"unique_id","number":36,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":34,"jsonName":"uniqueId","proto3Optional":true},{"name":"upgrade_method","number":37,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":35,"jsonName":"upgradeMethod","proto3Optional":true},{"name":"version","number":38,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":36,"jsonName":"version","proto3Optional":true},{"name":"virtualization","number":39,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":37,"jsonName":"virtualization","proto3Optional":true},{"name":"voltage_capabilities","number":40,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":38,"jsonName":"voltageCapabilities","proto3Optional":true}],"oneofDecl":[{"name":"_address_sizes"},{"name":"_address_width"},{"name":"_architecture"},{"name":"_availability"},{"name":"_bogo_mips"},{"name":"_byte_order"},{"name":"_caption"},{"name":"_current_clock_speed"},{"name":"_data_width"},{"name":"_device_id"},{"name":"_external_clock_mhz"},{"name":"_family"},{"name":"_hypervisor_vendor"},{"name":"_l1d_cache_size_kb"},{"name":"_l1i_cache_size_kb"},{"name":"_l2_cache_size_kb"},{"name":"_l2_cache_speed_mhz"},{"name":"_l3_cache_size_kb"},{"name":"_level"},{"name":"_logical_cores_count"},{"name":"_manufacturer"},{"name":"_max_clock_speed_mhz"},{"name":"_min_clock_speed_mhz"},{"name":"_model_number"},{"name":"_op_modes"},{"name":"_physical_cores_count"},{"name":"_processor_id"},{"name":"_processor_type"},{"name":"_revision"},{"name":"_socket_designation"},{"name":"_sockets"},{"name":"_status"},{"name":"_stepping"},{"name":"_threads_per_physical_core_count"},{"name":"_unique_id"},{"name":"_upgrade_method"},{"name":"_version"},{"name":"_virtualization"},{"name":"_voltage_capabilities"}]},{"name":"Chassis","field":[{"name":"type","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","jsonName":"type"},{"name":"lock_present","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"lockPresent","proto3Optional":true},{"name":"manufacturer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"manufacturer","proto3Optional":true},{"name":"security_status","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"securityStatus","proto3Optional":true},{"name":"serial_number","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"serialNumber","proto3Optional":true},{"name":"asset_tag","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"assetTag","proto3Optional":true},{"name":"version","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"version","proto3Optional":true},{"name":"bootup_state","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":6,"jsonName":"bootupState","proto3Optional":true}],"oneofDecl":[{"name":"_lock_present"},{"name":"_manufacturer"},{"name":"_security_status"},{"name":"_serial_number"},{"name":"_asset_tag"},{"name":"_version"},{"name":"_bootup_state"}]},{"name":"HardDrive","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"compressed","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"compressed","proto3Optional":true},{"name":"description","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"description","proto3Optional":true},{"name":"device_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"deviceId","proto3Optional":true},{"name":"drive_type","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":4,"jsonName":"driveType","proto3Optional":true},{"name":"file_system","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"fileSystem","proto3Optional":true},{"name":"free_space","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":6,"jsonName":"freeSpace","proto3Optional":true},{"name":"size","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":7,"jsonName":"size","proto3Optional":true},{"name":"volume_name","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"volumeName","proto3Optional":true},{"name":"serial_number","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"serialNumber","proto3Optional":true},{"name":"mounted_on","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"mountedOn","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_compressed"},{"name":"_description"},{"name":"_device_id"},{"name":"_drive_type"},{"name":"_file_system"},{"name":"_free_space"},{"name":"_size"},{"name":"_volume_name"},{"name":"_serial_number"},{"name":"_mounted_on"}]},{"name":"DriveVolume","field":[{"name":"device_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"deviceId","proto3Optional":true},{"name":"path","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"path","proto3Optional":true},{"name":"label","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"label","proto3Optional":true},{"name":"name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"name","proto3Optional":true},{"name":"capacity","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":4,"jsonName":"capacity","proto3Optional":true},{"name":"block_size","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"blockSize","proto3Optional":true},{"name":"free_space","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":6,"jsonName":"freeSpace","proto3Optional":true},{"name":"drive_type","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":7,"jsonName":"driveType","proto3Optional":true},{"name":"protection_status","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":8,"jsonName":"protectionStatus","proto3Optional":true},{"name":"error_description","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"errorDescription","proto3Optional":true},{"name":"error_methodology","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"errorMethodology","proto3Optional":true},{"name":"file_system","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"fileSystem","proto3Optional":true},{"name":"auto_mount","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":12,"jsonName":"autoMount","proto3Optional":true},{"name":"compressed","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":13,"jsonName":"compressed","proto3Optional":true},{"name":"dirty_bit_set","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":14,"jsonName":"dirtyBitSet","proto3Optional":true},{"name":"error_cleared","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":15,"jsonName":"errorCleared","proto3Optional":true},{"name":"indexing_enabled","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":16,"jsonName":"indexingEnabled","proto3Optional":true},{"name":"page_file_present","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":17,"jsonName":"pageFilePresent","proto3Optional":true},{"name":"supports_disk_quotas","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":18,"jsonName":"supportsDiskQuotas","proto3Optional":true},{"name":"supports_file_based_compression","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":19,"jsonName":"supportsFileBasedCompression","proto3Optional":true},{"name":"mounted","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":20,"jsonName":"mounted","proto3Optional":true},{"name":"mount_point","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":21,"jsonName":"mountPoint","proto3Optional":true}],"oneofDecl":[{"name":"_device_id"},{"name":"_path"},{"name":"_label"},{"name":"_name"},{"name":"_capacity"},{"name":"_block_size"},{"name":"_free_space"},{"name":"_drive_type"},{"name":"_protection_status"},{"name":"_error_description"},{"name":"_error_methodology"},{"name":"_file_system"},{"name":"_auto_mount"},{"name":"_compressed"},{"name":"_dirty_bit_set"},{"name":"_error_cleared"},{"name":"_indexing_enabled"},{"name":"_page_file_present"},{"name":"_supports_disk_quotas"},{"name":"_supports_file_based_compression"},{"name":"_mounted"},{"name":"_mount_point"}]},{"name":"NetworkVolume","field":[{"name":"win_mapped_drive","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsMappedDrive","oneofIndex":0,"jsonName":"winMappedDrive"},{"name":"mac_volume","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MacNetworkVolume","oneofIndex":0,"jsonName":"macVolume"},{"name":"name","number":100,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"name","proto3Optional":true}],"oneofDecl":[{"name":"driver"},{"name":"_name"}]},{"name":"WindowsMappedDrive","field":[{"name":"drive_letter","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"driveLetter"},{"name":"user_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"userName","proto3Optional":true},{"name":"user_domain","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"userDomain","proto3Optional":true},{"name":"remote_path","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"remotePath","proto3Optional":true}],"oneofDecl":[{"name":"_user_name"},{"name":"_user_domain"},{"name":"_remote_path"}]},{"name":"MacNetworkVolume","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"auto_mounted","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"autoMounted","proto3Optional":true},{"name":"fsmt_non_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"fsmtNonName","proto3Optional":true},{"name":"fs_type_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"fsTypeName","proto3Optional":true},{"name":"mnt_from_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"mntFromName","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_auto_mounted"},{"name":"_fsmt_non_name"},{"name":"_fs_type_name"},{"name":"_mnt_from_name"}]},{"name":"Keyboard","field":[{"name":"config_manager_error_code","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":0,"jsonName":"configManagerErrorCode","proto3Optional":true},{"name":"config_manager_user_config","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"configManagerUserConfig","proto3Optional":true},{"name":"description","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"description","proto3Optional":true},{"name":"device_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"deviceId","proto3Optional":true},{"name":"layout","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"layout","proto3Optional":true},{"name":"number_of_function_keys","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":5,"jsonName":"numberOfFunctionKeys","proto3Optional":true}],"oneofDecl":[{"name":"_config_manager_error_code"},{"name":"_config_manager_user_config"},{"name":"_description"},{"name":"_device_id"},{"name":"_layout"},{"name":"_number_of_function_keys"}]},{"name":"ComputerBus","field":[{"name":"bus_num","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"busNum","proto3Optional":true},{"name":"bus_type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":1,"jsonName":"busType","proto3Optional":true},{"name":"device_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"deviceId","proto3Optional":true},{"name":"pnp_device_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"pnpDeviceId","proto3Optional":true}],"oneofDecl":[{"name":"_bus_num"},{"name":"_bus_type"},{"name":"_device_id"},{"name":"_pnp_device_id"}]},{"name":"ComputerInfrared","field":[{"name":"availability","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":0,"jsonName":"availability","proto3Optional":true},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"config_manager_error_code","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"configManagerErrorCode","proto3Optional":true},{"name":"config_manager_user_config","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":3,"jsonName":"configManagerUserConfig","proto3Optional":true},{"name":"device_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"deviceId","proto3Optional":true},{"name":"manufacturer","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"manufacturer","proto3Optional":true},{"name":"protocol_supported","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":6,"jsonName":"protocolSupported","proto3Optional":true}],"oneofDecl":[{"name":"_availability"},{"name":"_caption"},{"name":"_config_manager_error_code"},{"name":"_config_manager_user_config"},{"name":"_device_id"},{"name":"_manufacturer"},{"name":"_protocol_supported"}]},{"name":"PointingDevice","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"device_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"deviceId","proto3Optional":true},{"name":"device_interface","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"deviceInterface","proto3Optional":true},{"name":"double_speed_threshold","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"doubleSpeedThreshold","proto3Optional":true},{"name":"handedness","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":4,"jsonName":"handedness","proto3Optional":true},{"name":"inf_file_name","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"infFileName","proto3Optional":true},{"name":"inf_section","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"infSection","proto3Optional":true},{"name":"manufacturer","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"manufacturer","proto3Optional":true},{"name":"number_of_buttons","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"numberOfButtons","proto3Optional":true},{"name":"pointing_type","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":9,"jsonName":"pointingType","proto3Optional":true},{"name":"quad_speed_threshold","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":10,"jsonName":"quadSpeedThreshold","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_device_id"},{"name":"_device_interface"},{"name":"_double_speed_threshold"},{"name":"_handedness"},{"name":"_inf_file_name"},{"name":"_inf_section"},{"name":"_manufacturer"},{"name":"_number_of_buttons"},{"name":"_pointing_type"},{"name":"_quad_speed_threshold"}]},{"name":"AutoRunCommand","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"command","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"command","proto3Optional":true},{"name":"location","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"location","proto3Optional":true},{"name":"name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"name","proto3Optional":true},{"name":"user","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"user","proto3Optional":true},{"name":"user_sid","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"userSid","proto3Optional":true},{"name":"order_preference","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"orderPreference","proto3Optional":true},{"name":"provides","number":8,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"provides"},{"name":"required","number":9,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"required"},{"name":"uses","number":10,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"uses"},{"name":"enabled","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":7,"jsonName":"enabled","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_command"},{"name":"_location"},{"name":"_name"},{"name":"_user"},{"name":"_user_sid"},{"name":"_order_preference"},{"name":"_enabled"}]},{"name":"BootConfig","field":[{"name":"boot_directory","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"bootDirectory","proto3Optional":true},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"name","proto3Optional":true},{"name":"configuration_path","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"configurationPath","proto3Optional":true},{"name":"scratch_directory","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"scratchDirectory","proto3Optional":true},{"name":"temp_directory","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"tempDirectory","proto3Optional":true},{"name":"boot_volume","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"bootVolume","proto3Optional":true},{"name":"boot_mode","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"bootMode","proto3Optional":true}],"oneofDecl":[{"name":"_boot_directory"},{"name":"_caption"},{"name":"_name"},{"name":"_configuration_path"},{"name":"_scratch_directory"},{"name":"_temp_directory"},{"name":"_boot_volume"},{"name":"_boot_mode"}]},{"name":"SharedResource","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"name","proto3Optional":true},{"name":"path","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"path","proto3Optional":true},{"name":"type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":3,"jsonName":"type","proto3Optional":true},{"name":"shared_permission","number":5,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SharedPermission","jsonName":"sharedPermission"}],"oneofDecl":[{"name":"_caption"},{"name":"_name"},{"name":"_path"},{"name":"_type"}]},{"name":"SharedPermission","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"trustee","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"trustee","proto3Optional":true},{"name":"read_access","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"readAccess","proto3Optional":true},{"name":"write_access","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":3,"jsonName":"writeAccess","proto3Optional":true},{"name":"full_access","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":4,"jsonName":"fullAccess","proto3Optional":true},{"name":"deny_access","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"denyAccess","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_trustee"},{"name":"_read_access"},{"name":"_write_access"},{"name":"_full_access"},{"name":"_deny_access"}]},{"name":"RunningProcess","field":[{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"path","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"path","proto3Optional":true},{"name":"threads","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"threads","proto3Optional":true},{"name":"priority","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"priority","proto3Optional":true},{"name":"handle","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"handle","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_path"},{"name":"_threads"},{"name":"_priority"},{"name":"_handle"}]},{"name":"OperatingSystemService","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"pathname","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"pathname","proto3Optional":true},{"name":"start_mode","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"startMode","proto3Optional":true},{"name":"start_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"startName","proto3Optional":true},{"name":"state","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"state","proto3Optional":true},{"name":"started","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":6,"jsonName":"started","proto3Optional":true},{"name":"accept_pause","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":7,"jsonName":"acceptPause","proto3Optional":true},{"name":"accept_stop","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":8,"jsonName":"acceptStop","proto3Optional":true},{"name":"desktop_interact","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":9,"jsonName":"desktopInteract","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_caption"},{"name":"_pathname"},{"name":"_start_mode"},{"name":"_start_name"},{"name":"_state"},{"name":"_started"},{"name":"_accept_pause"},{"name":"_accept_stop"},{"name":"_desktop_interact"}]},{"name":"OperatingSystemRecovery","field":[{"name":"win","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsOsRecovery","oneofIndex":0,"jsonName":"win"}],"oneofDecl":[{"name":"os"}]},{"name":"WindowsOsRecovery","field":[{"name":"auto_reboot","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"autoReboot","proto3Optional":true},{"name":"debug_file_path","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"debugFilePath","proto3Optional":true},{"name":"kernel_dump_only","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"kernelDumpOnly","proto3Optional":true},{"name":"name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"name","proto3Optional":true},{"name":"overwrite_existing_debug_file","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":4,"jsonName":"overwriteExistingDebugFile","proto3Optional":true},{"name":"send_admin_alert","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":5,"jsonName":"sendAdminAlert","proto3Optional":true},{"name":"write_debug_info","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":6,"jsonName":"writeDebugInfo","proto3Optional":true},{"name":"write_to_system_log","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":7,"jsonName":"writeToSystemLog","proto3Optional":true},{"name":"debug_info_type","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":8,"jsonName":"debugInfoType","proto3Optional":true},{"name":"mini_dump_directory","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"miniDumpDirectory","proto3Optional":true}],"oneofDecl":[{"name":"_auto_reboot"},{"name":"_debug_file_path"},{"name":"_kernel_dump_only"},{"name":"_name"},{"name":"_overwrite_existing_debug_file"},{"name":"_send_admin_alert"},{"name":"_write_debug_info"},{"name":"_write_to_system_log"},{"name":"_debug_info_type"},{"name":"_mini_dump_directory"}]},{"name":"Driver","field":[{"name":"win_sys","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsSystemDriver","oneofIndex":0,"jsonName":"winSys"},{"name":"win_pnp","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsPnpSignedDriver","oneofIndex":0,"jsonName":"winPnp"},{"name":"win_printer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsPrinterDriver","oneofIndex":0,"jsonName":"winPrinter"},{"name":"mac_kernel_extension","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MacOsKernelExtension","oneofIndex":0,"jsonName":"macKernelExtension"},{"name":"name","number":100,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"name","proto3Optional":true},{"name":"description","number":101,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"description","proto3Optional":true}],"oneofDecl":[{"name":"driver"},{"name":"_name"},{"name":"_description"}]},{"name":"WindowsSystemDriver","field":[{"name":"accept_pause","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"acceptPause","proto3Optional":true},{"name":"accept_stop","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"acceptStop","proto3Optional":true},{"name":"desktop_interact","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"desktopInteract","proto3Optional":true},{"name":"error_control","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"errorControl","proto3Optional":true},{"name":"exit_code","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":4,"jsonName":"exitCode","proto3Optional":true},{"name":"path_name","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"pathName","proto3Optional":true},{"name":"service_specific_exit_code","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":6,"jsonName":"serviceSpecificExitCode","proto3Optional":true},{"name":"service_type","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"serviceType","proto3Optional":true},{"name":"started","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":8,"jsonName":"started","proto3Optional":true},{"name":"start_mode","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"startMode","proto3Optional":true},{"name":"start_name","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"startName","proto3Optional":true},{"name":"state","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"state","proto3Optional":true},{"name":"status","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"status","proto3Optional":true},{"name":"tag_id","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":13,"jsonName":"tagId","proto3Optional":true},{"name":"name","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"name","proto3Optional":true},{"name":"description","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"description","proto3Optional":true},{"name":"caption","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"caption","proto3Optional":true},{"name":"display_name","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"displayName","proto3Optional":true}],"oneofDecl":[{"name":"_accept_pause"},{"name":"_accept_stop"},{"name":"_desktop_interact"},{"name":"_error_control"},{"name":"_exit_code"},{"name":"_path_name"},{"name":"_service_specific_exit_code"},{"name":"_service_type"},{"name":"_started"},{"name":"_start_mode"},{"name":"_start_name"},{"name":"_state"},{"name":"_status"},{"name":"_tag_id"},{"name":"_name"},{"name":"_description"},{"name":"_caption"},{"name":"_display_name"}]},{"name":"WindowsPnpSignedDriver","field":[{"name":"compat_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"compatId","proto3Optional":true},{"name":"device_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"deviceId","proto3Optional":true},{"name":"dev_loader","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"devLoader","proto3Optional":true},{"name":"driver_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"driverName","proto3Optional":true},{"name":"friendly_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"friendlyName","proto3Optional":true},{"name":"driver_date","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"driverDate"},{"name":"driver_version","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"driverVersion","proto3Optional":true},{"name":"hardware_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"hardwareId","proto3Optional":true},{"name":"inf_name","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"infName","proto3Optional":true},{"name":"is_signed","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":8,"jsonName":"isSigned","proto3Optional":true},{"name":"location","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"location","proto3Optional":true},{"name":"pdo","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"pdo","proto3Optional":true},{"name":"manufacturer","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"manufacturer","proto3Optional":true},{"name":"device_name","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"deviceName","proto3Optional":true},{"name":"device_class","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"deviceClass","proto3Optional":true},{"name":"description","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"description","proto3Optional":true},{"name":"signer","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"signer","proto3Optional":true},{"name":"driver_provider_name","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"driverProviderName","proto3Optional":true}],"oneofDecl":[{"name":"_compat_id"},{"name":"_device_id"},{"name":"_dev_loader"},{"name":"_driver_name"},{"name":"_friendly_name"},{"name":"_driver_version"},{"name":"_hardware_id"},{"name":"_inf_name"},{"name":"_is_signed"},{"name":"_location"},{"name":"_pdo"},{"name":"_manufacturer"},{"name":"_device_name"},{"name":"_device_class"},{"name":"_description"},{"name":"_signer"},{"name":"_driver_provider_name"}]},{"name":"WindowsPrinterDriver","field":[{"name":"config_file","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"configFile","proto3Optional":true},{"name":"data_file","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"dataFile","proto3Optional":true},{"name":"default_data_type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"defaultDataType","proto3Optional":true},{"name":"driver_path","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"driverPath","proto3Optional":true},{"name":"file_path","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"filePath","proto3Optional":true},{"name":"help_file","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"helpFile","proto3Optional":true},{"name":"monitor_name","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"monitorName","proto3Optional":true},{"name":"oem_url","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"oemUrl","proto3Optional":true},{"name":"version","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"version","proto3Optional":true},{"name":"driver_version","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"driverVersion","proto3Optional":true},{"name":"driver_date","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"driverDate","proto3Optional":true},{"name":"hardware_id","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"hardwareId","proto3Optional":true},{"name":"inf_path","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"infPath","proto3Optional":true},{"name":"printer_environment","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"printerEnvironment","proto3Optional":true},{"name":"print_processor","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"printProcessor","proto3Optional":true},{"name":"name","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"name","proto3Optional":true},{"name":"provider","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"provider","proto3Optional":true},{"name":"supported_platform","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"supportedPlatform","proto3Optional":true},{"name":"manufacturer","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"manufacturer","proto3Optional":true}],"oneofDecl":[{"name":"_config_file"},{"name":"_data_file"},{"name":"_default_data_type"},{"name":"_driver_path"},{"name":"_file_path"},{"name":"_help_file"},{"name":"_monitor_name"},{"name":"_oem_url"},{"name":"_version"},{"name":"_driver_version"},{"name":"_driver_date"},{"name":"_hardware_id"},{"name":"_inf_path"},{"name":"_printer_environment"},{"name":"_print_processor"},{"name":"_name"},{"name":"_provider"},{"name":"_supported_platform"},{"name":"_manufacturer"}]},{"name":"MacOsKernelExtension","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"has64_bit_intel_code","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"has64BitIntelCode","proto3Optional":true},{"name":"architectures","number":3,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"architectures"},{"name":"bundle_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"bundleId","proto3Optional":true},{"name":"dependencies","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"dependencies","proto3Optional":true},{"name":"dependency_errors","number":6,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.KernelExtensionErrorType","jsonName":"dependencyErrors"},{"name":"info","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"info","proto3Optional":true},{"name":"last_modified","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":5,"jsonName":"lastModified","proto3Optional":true},{"name":"load_address","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"loadAddress","proto3Optional":true},{"name":"loadable","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"loadable","proto3Optional":true},{"name":"loaded","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"loaded","proto3Optional":true},{"name":"notarized","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"notarized","proto3Optional":true},{"name":"obtained_from","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"obtainedFrom","proto3Optional":true},{"name":"path_location","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"pathLocation","proto3Optional":true},{"name":"runtime_environment","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"runtimeEnvironment","proto3Optional":true},{"name":"signed_by","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"signedBy","proto3Optional":true},{"name":"signing_errors","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"signingErrors","proto3Optional":true},{"name":"validity_errors","number":18,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.KernelExtensionErrorType","jsonName":"validityErrors"},{"name":"version","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"version","proto3Optional":true},{"name":"version_kext","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"versionKext","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_has64_bit_intel_code"},{"name":"_bundle_id"},{"name":"_dependencies"},{"name":"_info"},{"name":"_last_modified"},{"name":"_load_address"},{"name":"_loadable"},{"name":"_loaded"},{"name":"_notarized"},{"name":"_obtained_from"},{"name":"_path_location"},{"name":"_runtime_environment"},{"name":"_signed_by"},{"name":"_signing_errors"},{"name":"_version"},{"name":"_version_kext"}]},{"name":"KernelExtensionErrorType","field":[{"name":"error_type","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"errorType","proto3Optional":true},{"name":"errors","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.KernelExtensionError","jsonName":"errors"}],"oneofDecl":[{"name":"_error_type"}]},{"name":"KernelExtensionError","field":[{"name":"error_description","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"errorDescription","proto3Optional":true},{"name":"values","number":2,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"values"}],"oneofDecl":[{"name":"_error_description"}]},{"name":"ComputerMacAccessibility","field":[{"name":"contrast","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"contrast","proto3Optional":true},{"name":"cursor_mag","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"cursorMag","proto3Optional":true},{"name":"display","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"display","proto3Optional":true},{"name":"flash_screen","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"flashScreen","proto3Optional":true},{"name":"keyboard_zoom","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"keyboardZoom","proto3Optional":true},{"name":"mouse_keys","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"mouseKeys","proto3Optional":true},{"name":"scroll_zoom","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"scrollZoom","proto3Optional":true},{"name":"slow_keys","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"slowKeys","proto3Optional":true},{"name":"sticky_keys","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"stickyKeys","proto3Optional":true},{"name":"voice_over","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"voiceOver","proto3Optional":true},{"name":"zoom_mode","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"zoomMode","proto3Optional":true}],"oneofDecl":[{"name":"_contrast"},{"name":"_cursor_mag"},{"name":"_display"},{"name":"_flash_screen"},{"name":"_keyboard_zoom"},{"name":"_mouse_keys"},{"name":"_scroll_zoom"},{"name":"_slow_keys"},{"name":"_sticky_keys"},{"name":"_voice_over"},{"name":"_zoom_mode"}]},{"name":"SoundCard","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"device_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"deviceId","proto3Optional":true},{"name":"manufacturer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"manufacturer","proto3Optional":true},{"name":"type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"type","proto3Optional":true},{"name":"subsystem_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"subsystemName","proto3Optional":true},{"name":"subsystem_manufacturer","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"subsystemManufacturer","proto3Optional":true},{"name":"parent","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"parent","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_device_id"},{"name":"_manufacturer"},{"name":"_type"},{"name":"_subsystem_name"},{"name":"_subsystem_manufacturer"},{"name":"_parent"}]},{"name":"GraphicsCard","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"color_planes_count","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":1,"jsonName":"colorPlanesCount","proto3Optional":true},{"name":"current_bits_per_pixel","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"currentBitsPerPixel","proto3Optional":true},{"name":"current_horizontal_resolution","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"currentHorizontalResolution","proto3Optional":true},{"name":"current_number_of_colors","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":4,"jsonName":"currentNumberOfColors","proto3Optional":true},{"name":"current_refresh_rate","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":5,"jsonName":"currentRefreshRate","proto3Optional":true},{"name":"current_scan_mode","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":6,"jsonName":"currentScanMode","proto3Optional":true},{"name":"current_vertical_resolution","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":7,"jsonName":"currentVerticalResolution","proto3Optional":true},{"name":"device_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"deviceId","proto3Optional":true},{"name":"device_specific_pens","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":9,"jsonName":"deviceSpecificPens","proto3Optional":true},{"name":"driver_version","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"driverVersion","proto3Optional":true},{"name":"inf_filename","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"infFilename","proto3Optional":true},{"name":"inf_section","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"infSection","proto3Optional":true},{"name":"installed_display_drivers","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"installedDisplayDrivers","proto3Optional":true},{"name":"is_monochrome","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":14,"jsonName":"isMonochrome","proto3Optional":true},{"name":"manufacturer","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"manufacturer","proto3Optional":true},{"name":"max_refresh_rate","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"maxRefreshRate","proto3Optional":true},{"name":"memory","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":17,"jsonName":"memory","proto3Optional":true},{"name":"memory_type","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":18,"jsonName":"memoryType","proto3Optional":true},{"name":"min_refresh_rate","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":19,"jsonName":"minRefreshRate","proto3Optional":true},{"name":"pci_type","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":20,"jsonName":"pciType","proto3Optional":true},{"name":"pnp_device_id","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":21,"jsonName":"pnpDeviceId","proto3Optional":true},{"name":"state","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":22,"jsonName":"state","proto3Optional":true},{"name":"subsystem_manufacturer","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":23,"jsonName":"subsystemManufacturer","proto3Optional":true},{"name":"subsystem_name","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":24,"jsonName":"subsystemName","proto3Optional":true},{"name":"video_architecture","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":25,"jsonName":"videoArchitecture","proto3Optional":true},{"name":"video_mode","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":26,"jsonName":"videoMode","proto3Optional":true},{"name":"video_processor","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":27,"jsonName":"videoProcessor","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_color_planes_count"},{"name":"_current_bits_per_pixel"},{"name":"_current_horizontal_resolution"},{"name":"_current_number_of_colors"},{"name":"_current_refresh_rate"},{"name":"_current_scan_mode"},{"name":"_current_vertical_resolution"},{"name":"_device_id"},{"name":"_device_specific_pens"},{"name":"_driver_version"},{"name":"_inf_filename"},{"name":"_inf_section"},{"name":"_installed_display_drivers"},{"name":"_is_monochrome"},{"name":"_manufacturer"},{"name":"_max_refresh_rate"},{"name":"_memory"},{"name":"_memory_type"},{"name":"_min_refresh_rate"},{"name":"_pci_type"},{"name":"_pnp_device_id"},{"name":"_state"},{"name":"_subsystem_manufacturer"},{"name":"_subsystem_name"},{"name":"_video_architecture"},{"name":"_video_mode"},{"name":"_video_processor"}]},{"name":"Bios","field":[{"name":"win","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsBios","oneofIndex":0,"jsonName":"win"},{"name":"linux","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.LinuxBios","oneofIndex":0,"jsonName":"linux"},{"name":"manufacturer","number":100,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"manufacturer","proto3Optional":true},{"name":"version","number":101,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"version","proto3Optional":true},{"name":"release_date","number":102,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":3,"jsonName":"releaseDate","proto3Optional":true}],"oneofDecl":[{"name":"spec"},{"name":"_manufacturer"},{"name":"_version"},{"name":"_release_date"}]},{"name":"WindowsBios","field":[{"name":"bios_characteristics","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","jsonName":"biosCharacteristics"},{"name":"caption","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"current_language","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"currentLanguage","proto3Optional":true},{"name":"installable_languages","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"installableLanguages","proto3Optional":true},{"name":"manufacturer","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"manufacturer","proto3Optional":true},{"name":"name","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"name","proto3Optional":true},{"name":"primary_bios","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":5,"jsonName":"primaryBios","proto3Optional":true},{"name":"release_date","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":6,"jsonName":"releaseDate","proto3Optional":true},{"name":"serial_number","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"serialNumber","proto3Optional":true},{"name":"smbios_bios_version","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"smbiosBiosVersion","proto3Optional":true},{"name":"smbios_major_version","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":9,"jsonName":"smbiosMajorVersion","proto3Optional":true},{"name":"smbios_minor_version","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":10,"jsonName":"smbiosMinorVersion","proto3Optional":true},{"name":"smbios_present","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":11,"jsonName":"smbiosPresent","proto3Optional":true},{"name":"software_element_id","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"softwareElementId","proto3Optional":true},{"name":"software_element_state","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":13,"jsonName":"softwareElementState","proto3Optional":true},{"name":"status","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"status","proto3Optional":true},{"name":"target_operating_system","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":15,"jsonName":"targetOperatingSystem","proto3Optional":true},{"name":"version","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"version","proto3Optional":true},{"name":"bios_version","number":20,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"biosVersion"}],"oneofDecl":[{"name":"_caption"},{"name":"_current_language"},{"name":"_installable_languages"},{"name":"_manufacturer"},{"name":"_name"},{"name":"_primary_bios"},{"name":"_release_date"},{"name":"_serial_number"},{"name":"_smbios_bios_version"},{"name":"_smbios_major_version"},{"name":"_smbios_minor_version"},{"name":"_smbios_present"},{"name":"_software_element_id"},{"name":"_software_element_state"},{"name":"_status"},{"name":"_target_operating_system"},{"name":"_version"}]},{"name":"LinuxBios","field":[{"name":"version","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"version","proto3Optional":true},{"name":"address","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"address","proto3Optional":true},{"name":"vendor","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"vendor","proto3Optional":true},{"name":"runtime_size","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"runtimeSize","proto3Optional":true},{"name":"rom_size","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":4,"jsonName":"romSize","proto3Optional":true},{"name":"release_date","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":5,"jsonName":"releaseDate","proto3Optional":true}],"oneofDecl":[{"name":"_version"},{"name":"_address"},{"name":"_vendor"},{"name":"_runtime_size"},{"name":"_rom_size"},{"name":"_release_date"}]},{"name":"ComputerBattery","field":[{"name":"win_battery","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsComputerBattery","oneofIndex":0,"jsonName":"winBattery"},{"name":"win_portable","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsPortableBattery","oneofIndex":0,"jsonName":"winPortable"},{"name":"mac_battery","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MacComputerBattery","oneofIndex":0,"jsonName":"macBattery"}],"oneofDecl":[{"name":"spec"}]},{"name":"WindowsComputerBattery","field":[{"name":"availability","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":0,"jsonName":"availability","proto3Optional":true},{"name":"battery_status","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":1,"jsonName":"batteryStatus","proto3Optional":true},{"name":"chemistry","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"chemistry","proto3Optional":true},{"name":"design_capacity","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":3,"jsonName":"designCapacity","proto3Optional":true},{"name":"device_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"deviceId","proto3Optional":true},{"name":"name","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"name","proto3Optional":true},{"name":"power_management_capabilities","number":7,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","jsonName":"powerManagementCapabilities"},{"name":"power_management_supported","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":6,"jsonName":"powerManagementSupported","proto3Optional":true},{"name":"smart_battery_version","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"smartBatteryVersion","proto3Optional":true},{"name":"status","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"status","proto3Optional":true}],"oneofDecl":[{"name":"_availability"},{"name":"_battery_status"},{"name":"_chemistry"},{"name":"_design_capacity"},{"name":"_device_id"},{"name":"_name"},{"name":"_power_management_supported"},{"name":"_smart_battery_version"},{"name":"_status"}]},{"name":"WindowsPortableBattery","field":[{"name":"capacity_multiplier","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"capacityMultiplier","proto3Optional":true},{"name":"chemistry","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":1,"jsonName":"chemistry","proto3Optional":true},{"name":"design_capacity","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"designCapacity","proto3Optional":true},{"name":"design_voltage","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"designVoltage","proto3Optional":true},{"name":"device_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"deviceId","proto3Optional":true},{"name":"location","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"location","proto3Optional":true},{"name":"manufacture_date","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"manufactureDate","proto3Optional":true},{"name":"manufacturer","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"manufacturer","proto3Optional":true},{"name":"max_battery_error","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"maxBatteryError","proto3Optional":true},{"name":"name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"name","proto3Optional":true},{"name":"smart_battery_version","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"smartBatteryVersion","proto3Optional":true}],"oneofDecl":[{"name":"_capacity_multiplier"},{"name":"_chemistry"},{"name":"_design_capacity"},{"name":"_design_voltage"},{"name":"_device_id"},{"name":"_location"},{"name":"_manufacture_date"},{"name":"_manufacturer"},{"name":"_max_battery_error"},{"name":"_name"},{"name":"_smart_battery_version"}]},{"name":"MacComputerBattery","field":[{"name":"disk_sleep_timer","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"diskSleepTimer","proto3Optional":true},{"name":"display_sleep_timer","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":1,"jsonName":"displaySleepTimer","proto3Optional":true},{"name":"hibernate_mode","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"hibernateMode","proto3Optional":true},{"name":"prioritize_network_reachability_over_sleep","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"prioritizeNetworkReachabilityOverSleep","proto3Optional":true},{"name":"sleep_on_power_button","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":4,"jsonName":"sleepOnPowerButton","proto3Optional":true},{"name":"system_sleep_timer","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":5,"jsonName":"systemSleepTimer","proto3Optional":true},{"name":"wake_on_lan","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":6,"jsonName":"wakeOnLan","proto3Optional":true},{"name":"current_power_source","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":7,"jsonName":"currentPowerSource","proto3Optional":true},{"name":"high_power_mode","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"highPowerMode","proto3Optional":true},{"name":"low_power_mode","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":9,"jsonName":"lowPowerMode","proto3Optional":true},{"name":"reduce_brightness","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":10,"jsonName":"reduceBrightness","proto3Optional":true},{"name":"is_at_warn_level","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":11,"jsonName":"isAtWarnLevel","proto3Optional":true},{"name":"is_fully_charged","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":12,"jsonName":"isFullyCharged","proto3Optional":true},{"name":"is_charging","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":13,"jsonName":"isCharging","proto3Optional":true},{"name":"state_of_charge","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":14,"jsonName":"stateOfCharge","proto3Optional":true},{"name":"cycle_count","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":15,"jsonName":"cycleCount","proto3Optional":true},{"name":"health_status","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"healthStatus","proto3Optional":true},{"name":"health_status_maximum_capacity","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"healthStatusMaximumCapacity","proto3Optional":true},{"name":"pcb_lot_code","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"pcbLotCode","proto3Optional":true},{"name":"pack_lot_code","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":19,"jsonName":"packLotCode","proto3Optional":true},{"name":"cell_revision","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":20,"jsonName":"cellRevision","proto3Optional":true},{"name":"device_name","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":21,"jsonName":"deviceName","proto3Optional":true},{"name":"firmware_version","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":22,"jsonName":"firmwareVersion","proto3Optional":true},{"name":"hardware_revision","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":23,"jsonName":"hardwareRevision","proto3Optional":true},{"name":"serial_number","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":24,"jsonName":"serialNumber","proto3Optional":true},{"name":"battery_charger_connected","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":25,"jsonName":"batteryChargerConnected","proto3Optional":true},{"name":"battery_is_charging","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":26,"jsonName":"batteryIsCharging","proto3Optional":true}],"oneofDecl":[{"name":"_disk_sleep_timer"},{"name":"_display_sleep_timer"},{"name":"_hibernate_mode"},{"name":"_prioritize_network_reachability_over_sleep"},{"name":"_sleep_on_power_button"},{"name":"_system_sleep_timer"},{"name":"_wake_on_lan"},{"name":"_current_power_source"},{"name":"_high_power_mode"},{"name":"_low_power_mode"},{"name":"_reduce_brightness"},{"name":"_is_at_warn_level"},{"name":"_is_fully_charged"},{"name":"_is_charging"},{"name":"_state_of_charge"},{"name":"_cycle_count"},{"name":"_health_status"},{"name":"_health_status_maximum_capacity"},{"name":"_pcb_lot_code"},{"name":"_pack_lot_code"},{"name":"_cell_revision"},{"name":"_device_name"},{"name":"_firmware_version"},{"name":"_hardware_revision"},{"name":"_serial_number"},{"name":"_battery_charger_connected"},{"name":"_battery_is_charging"}]},{"name":"OpticalDrive","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"status","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"status","proto3Optional":true},{"name":"bus","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"bus","proto3Optional":true},{"name":"capabilities","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","jsonName":"capabilities"},{"name":"cache_size","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"cacheSize","proto3Optional":true},{"name":"burn_support","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"burnSupport","proto3Optional":true},{"name":"cd_write","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"cdWrite","proto3Optional":true},{"name":"dvd_write","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"dvdWrite","proto3Optional":true},{"name":"read_dvd","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"readDvd","proto3Optional":true},{"name":"drive_path","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"drivePath","proto3Optional":true},{"name":"firmware_version","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"firmwareVersion","proto3Optional":true},{"name":"connection","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"connection","proto3Optional":true},{"name":"is_underrun_protection_enabled","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"isUnderrunProtectionEnabled","proto3Optional":true},{"name":"manufacturer","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"manufacturer","proto3Optional":true},{"name":"mount_point","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"mountPoint","proto3Optional":true},{"name":"write_strategies","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"writeStrategies","proto3Optional":true},{"name":"scsi_bus","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":15,"jsonName":"scsiBus","proto3Optional":true},{"name":"scsi_logical_unit","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"scsiLogicalUnit","proto3Optional":true},{"name":"scsi_port","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":17,"jsonName":"scsiPort","proto3Optional":true},{"name":"scsi_target_id","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":18,"jsonName":"scsiTargetId","proto3Optional":true},{"name":"media_burn_information","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":19,"jsonName":"mediaBurnInformation","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_status"},{"name":"_bus"},{"name":"_cache_size"},{"name":"_burn_support"},{"name":"_cd_write"},{"name":"_dvd_write"},{"name":"_read_dvd"},{"name":"_drive_path"},{"name":"_firmware_version"},{"name":"_connection"},{"name":"_is_underrun_protection_enabled"},{"name":"_manufacturer"},{"name":"_mount_point"},{"name":"_write_strategies"},{"name":"_scsi_bus"},{"name":"_scsi_logical_unit"},{"name":"_scsi_port"},{"name":"_scsi_target_id"},{"name":"_media_burn_information"}]},{"name":"Motherboard","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"config_options","number":2,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"configOptions"},{"name":"is_hosting_board","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"isHostingBoard","proto3Optional":true},{"name":"is_powered_on","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"isPoweredOn","proto3Optional":true},{"name":"location","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"location","proto3Optional":true},{"name":"manufacturer","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"manufacturer","proto3Optional":true},{"name":"serial_number","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"serialNumber","proto3Optional":true},{"name":"tag","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"tag","proto3Optional":true},{"name":"type","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"type","proto3Optional":true},{"name":"version","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"version","proto3Optional":true},{"name":"device","number":12,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MotherboardDevice","jsonName":"device"}],"oneofDecl":[{"name":"_is_hosting_board"},{"name":"_is_powered_on"},{"name":"_location"},{"name":"_manufacturer"},{"name":"_serial_number"},{"name":"_tag"},{"name":"_type"},{"name":"_version"}]},{"name":"MotherboardDevice","field":[{"name":"description","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"description","proto3Optional":true},{"name":"enabled","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"enabled","proto3Optional":true},{"name":"tag","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"tag","proto3Optional":true},{"name":"type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":3,"jsonName":"type","proto3Optional":true}],"oneofDecl":[{"name":"_description"},{"name":"_enabled"},{"name":"_tag"},{"name":"_type"}]},{"name":"Memory","field":[{"name":"installed_size","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"installedSize"},{"name":"physical_memory","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.PhysicalMemory","jsonName":"physicalMemory"},{"name":"memory_array","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MemoryArray","jsonName":"memoryArray"}]},{"name":"PhysicalMemory","field":[{"name":"size","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"size","proto3Optional":true},{"name":"bank_locator","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"bankLocator","proto3Optional":true},{"name":"configured_clock_speed","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"configuredClockSpeed","proto3Optional":true},{"name":"configured_voltage","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"configuredVoltage","proto3Optional":true},{"name":"data_width","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":4,"jsonName":"dataWidth","proto3Optional":true},{"name":"device_locator","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"deviceLocator","proto3Optional":true},{"name":"form_factor","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":6,"jsonName":"formFactor","proto3Optional":true},{"name":"interleave_data_depth","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":7,"jsonName":"interleaveDataDepth","proto3Optional":true},{"name":"interleave_position","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":8,"jsonName":"interleavePosition","proto3Optional":true},{"name":"manufacturer","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"manufacturer","proto3Optional":true},{"name":"name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"name","proto3Optional":true},{"name":"part_number","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"partNumber","proto3Optional":true},{"name":"position_in_row","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":12,"jsonName":"positionInRow","proto3Optional":true},{"name":"serial_number","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"serialNumber","proto3Optional":true},{"name":"set","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"set","proto3Optional":true},{"name":"sku","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"sku","proto3Optional":true},{"name":"speed","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"speed","proto3Optional":true},{"name":"state","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"state","proto3Optional":true},{"name":"total_width","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":18,"jsonName":"totalWidth","proto3Optional":true},{"name":"type","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":19,"jsonName":"type","proto3Optional":true},{"name":"type_detail","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":20,"jsonName":"typeDetail","proto3Optional":true}],"oneofDecl":[{"name":"_size"},{"name":"_bank_locator"},{"name":"_configured_clock_speed"},{"name":"_configured_voltage"},{"name":"_data_width"},{"name":"_device_locator"},{"name":"_form_factor"},{"name":"_interleave_data_depth"},{"name":"_interleave_position"},{"name":"_manufacturer"},{"name":"_name"},{"name":"_part_number"},{"name":"_position_in_row"},{"name":"_serial_number"},{"name":"_set"},{"name":"_sku"},{"name":"_speed"},{"name":"_state"},{"name":"_total_width"},{"name":"_type"},{"name":"_type_detail"}]},{"name":"MemoryArray","field":[{"name":"max_capacity","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"maxCapacity","proto3Optional":true},{"name":"location","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":1,"jsonName":"location","proto3Optional":true},{"name":"memory_devices","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"memoryDevices","proto3Optional":true},{"name":"memory_error_correction","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":3,"jsonName":"memoryErrorCorrection","proto3Optional":true},{"name":"tag","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"tag","proto3Optional":true},{"name":"use","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":5,"jsonName":"use","proto3Optional":true}],"oneofDecl":[{"name":"_max_capacity"},{"name":"_location"},{"name":"_memory_devices"},{"name":"_memory_error_correction"},{"name":"_tag"},{"name":"_use"}]},{"name":"ParallelPort","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"availability","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":1,"jsonName":"availability","proto3Optional":true},{"name":"protocol_supported","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"protocolSupported","proto3Optional":true},{"name":"config_manager_error_code","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":3,"jsonName":"configManagerErrorCode","proto3Optional":true},{"name":"pnp_device_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"pnpDeviceId","proto3Optional":true},{"name":"config_manager_user_config","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":5,"jsonName":"configManagerUserConfig","proto3Optional":true},{"name":"os_auto_discovered","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":6,"jsonName":"osAutoDiscovered","proto3Optional":true},{"name":"power_management_supported","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":7,"jsonName":"powerManagementSupported","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_availability"},{"name":"_protocol_supported"},{"name":"_config_manager_error_code"},{"name":"_pnp_device_id"},{"name":"_config_manager_user_config"},{"name":"_os_auto_discovered"},{"name":"_power_management_supported"}]},{"name":"SerialPort","field":[{"name":"availability","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":0,"jsonName":"availability","proto3Optional":true},{"name":"binary","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"binary","proto3Optional":true},{"name":"caption","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"caption","proto3Optional":true},{"name":"device_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"deviceId","proto3Optional":true},{"name":"max_baud_rate","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":4,"jsonName":"maxBaudRate","proto3Optional":true},{"name":"maximum_input_buffer_size","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":5,"jsonName":"maximumInputBufferSize","proto3Optional":true},{"name":"maximum_output_buffer_size","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":6,"jsonName":"maximumOutputBufferSize","proto3Optional":true},{"name":"os_auto_discovered","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":7,"jsonName":"osAutoDiscovered","proto3Optional":true},{"name":"pnp_device_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"pnpDeviceId","proto3Optional":true},{"name":"provider_type","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"providerType","proto3Optional":true}],"oneofDecl":[{"name":"_availability"},{"name":"_binary"},{"name":"_caption"},{"name":"_device_id"},{"name":"_max_baud_rate"},{"name":"_maximum_input_buffer_size"},{"name":"_maximum_output_buffer_size"},{"name":"_os_auto_discovered"},{"name":"_pnp_device_id"},{"name":"_provider_type"}]},{"name":"PcmciaController","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"protocol_supported","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":1,"jsonName":"protocolSupported","proto3Optional":true},{"name":"config_manager_error_code","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"configManagerErrorCode","proto3Optional":true},{"name":"config_manager_user_config","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":3,"jsonName":"configManagerUserConfig","proto3Optional":true},{"name":"device_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"deviceId","proto3Optional":true},{"name":"manufacturer","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"manufacturer","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_protocol_supported"},{"name":"_config_manager_error_code"},{"name":"_config_manager_user_config"},{"name":"_device_id"},{"name":"_manufacturer"}]},{"name":"PortConnector","field":[{"name":"connector_type","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","jsonName":"connectorType"},{"name":"external_reference_designator","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"externalReferenceDesignator","proto3Optional":true},{"name":"internal_reference_designator","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"internalReferenceDesignator","proto3Optional":true},{"name":"port_type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"portType","proto3Optional":true},{"name":"tag","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"tag","proto3Optional":true}],"oneofDecl":[{"name":"_external_reference_designator"},{"name":"_internal_reference_designator"},{"name":"_port_type"},{"name":"_tag"}]},{"name":"ScsiController","field":[{"name":"availability","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":0,"jsonName":"availability","proto3Optional":true},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"device_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"deviceId","proto3Optional":true},{"name":"driver_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"driverName","proto3Optional":true},{"name":"manufacturer","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"manufacturer","proto3Optional":true},{"name":"protocol_supported","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":5,"jsonName":"protocolSupported","proto3Optional":true}],"oneofDecl":[{"name":"_availability"},{"name":"_caption"},{"name":"_device_id"},{"name":"_driver_name"},{"name":"_manufacturer"},{"name":"_protocol_supported"}]},{"name":"ComputerSystemProduct","field":[{"name":"identifying_number","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"identifyingNumber","proto3Optional":true},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"name","proto3Optional":true},{"name":"uuid","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"uuid","proto3Optional":true},{"name":"vendor","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"vendor","proto3Optional":true},{"name":"version","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"version","proto3Optional":true}],"oneofDecl":[{"name":"_identifying_number"},{"name":"_name"},{"name":"_uuid"},{"name":"_vendor"},{"name":"_version"}]},{"name":"WindowsComputerSystem","field":[{"name":"admin_password_status","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":0,"jsonName":"adminPasswordStatus","proto3Optional":true},{"name":"automatic_reset_boot_option","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"automaticResetBootOption","proto3Optional":true},{"name":"automatic_reset_capability","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"automaticResetCapability","proto3Optional":true},{"name":"boot_option_on_limit","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":3,"jsonName":"bootOptionOnLimit","proto3Optional":true},{"name":"boot_option_on_watch_dog","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":4,"jsonName":"bootOptionOnWatchDog","proto3Optional":true},{"name":"boot_rom_supported","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":5,"jsonName":"bootRomSupported","proto3Optional":true},{"name":"boot_up_state","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"bootUpState","proto3Optional":true},{"name":"chassis_boot_up_state","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":7,"jsonName":"chassisBootUpState","proto3Optional":true},{"name":"current_time_zone","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"currentTimeZone","proto3Optional":true},{"name":"daylight_in_effect","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":9,"jsonName":"daylightInEffect","proto3Optional":true},{"name":"description","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"description","proto3Optional":true},{"name":"domain","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"domain","proto3Optional":true},{"name":"domain_role","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":12,"jsonName":"domainRole","proto3Optional":true},{"name":"front_panel_reset_status","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":13,"jsonName":"frontPanelResetStatus","proto3Optional":true},{"name":"infrared_supported","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":14,"jsonName":"infraredSupported","proto3Optional":true},{"name":"keyboard_password_status","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":15,"jsonName":"keyboardPasswordStatus","proto3Optional":true},{"name":"manufacturer","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"manufacturer","proto3Optional":true},{"name":"name","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"name","proto3Optional":true},{"name":"model","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"model","proto3Optional":true},{"name":"network_server_mode_enabled","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":19,"jsonName":"networkServerModeEnabled","proto3Optional":true},{"name":"number_of_processors","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":20,"jsonName":"numberOfProcessors","proto3Optional":true},{"name":"pause_after_reset","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":21,"jsonName":"pauseAfterReset","proto3Optional":true},{"name":"power_on_password_status","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":22,"jsonName":"powerOnPasswordStatus","proto3Optional":true},{"name":"power_state","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":23,"jsonName":"powerState","proto3Optional":true},{"name":"power_supply_state","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":24,"jsonName":"powerSupplyState","proto3Optional":true},{"name":"primary_owner_name","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":25,"jsonName":"primaryOwnerName","proto3Optional":true},{"name":"reset_capability","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":26,"jsonName":"resetCapability","proto3Optional":true},{"name":"reset_count","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":27,"jsonName":"resetCount","proto3Optional":true},{"name":"reset_limit","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":28,"jsonName":"resetLimit","proto3Optional":true},{"name":"roles","number":31,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"roles"},{"name":"status","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":29,"jsonName":"status","proto3Optional":true},{"name":"system_startup_delay","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":30,"jsonName":"systemStartupDelay","proto3Optional":true},{"name":"system_startup_options","number":34,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"systemStartupOptions"},{"name":"system_type","number":36,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":31,"jsonName":"systemType","proto3Optional":true},{"name":"thermal_state","number":37,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":32,"jsonName":"thermalState","proto3Optional":true},{"name":"total_physical_memory","number":38,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":33,"jsonName":"totalPhysicalMemory","proto3Optional":true},{"name":"wakeup_type","number":39,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":34,"jsonName":"wakeupType","proto3Optional":true},{"name":"enable_daylight_savings_time","number":40,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":35,"jsonName":"enableDaylightSavingsTime","proto3Optional":true},{"name":"part_of_domain","number":41,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":36,"jsonName":"partOfDomain","proto3Optional":true},{"name":"number_of_logical_processors","number":42,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":37,"jsonName":"numberOfLogicalProcessors","proto3Optional":true}],"oneofDecl":[{"name":"_admin_password_status"},{"name":"_automatic_reset_boot_option"},{"name":"_automatic_reset_capability"},{"name":"_boot_option_on_limit"},{"name":"_boot_option_on_watch_dog"},{"name":"_boot_rom_supported"},{"name":"_boot_up_state"},{"name":"_chassis_boot_up_state"},{"name":"_current_time_zone"},{"name":"_daylight_in_effect"},{"name":"_description"},{"name":"_domain"},{"name":"_domain_role"},{"name":"_front_panel_reset_status"},{"name":"_infrared_supported"},{"name":"_keyboard_password_status"},{"name":"_manufacturer"},{"name":"_name"},{"name":"_model"},{"name":"_network_server_mode_enabled"},{"name":"_number_of_processors"},{"name":"_pause_after_reset"},{"name":"_power_on_password_status"},{"name":"_power_state"},{"name":"_power_supply_state"},{"name":"_primary_owner_name"},{"name":"_reset_capability"},{"name":"_reset_count"},{"name":"_reset_limit"},{"name":"_status"},{"name":"_system_startup_delay"},{"name":"_system_type"},{"name":"_thermal_state"},{"name":"_total_physical_memory"},{"name":"_wakeup_type"},{"name":"_enable_daylight_savings_time"},{"name":"_part_of_domain"},{"name":"_number_of_logical_processors"}]},{"name":"TrustedPlatformModule","field":[{"name":"is_initial_value_activated","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"isInitialValueActivated","proto3Optional":true},{"name":"is_initial_value_enabled","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"isInitialValueEnabled","proto3Optional":true},{"name":"is_initial_value_owned","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"isInitialValueOwned","proto3Optional":true},{"name":"spec_version","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"specVersion","proto3Optional":true},{"name":"manufacturer_version","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"manufacturerVersion","proto3Optional":true},{"name":"manufacturer_version_info","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"manufacturerVersionInfo","proto3Optional":true},{"name":"manufacturer_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"manufacturerId","proto3Optional":true},{"name":"manufacturer_version_full20","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"manufacturerVersionFull20","proto3Optional":true},{"name":"manufacturer_id_txt","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"manufacturerIdTxt","proto3Optional":true},{"name":"physical_presence_version_info","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"physicalPresenceVersionInfo","proto3Optional":true}],"oneofDecl":[{"name":"_is_initial_value_activated"},{"name":"_is_initial_value_enabled"},{"name":"_is_initial_value_owned"},{"name":"_spec_version"},{"name":"_manufacturer_version"},{"name":"_manufacturer_version_info"},{"name":"_manufacturer_id"},{"name":"_manufacturer_version_full20"},{"name":"_manufacturer_id_txt"},{"name":"_physical_presence_version_info"}]},{"name":"ComputerConnectedUsbController","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"device_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"deviceId","proto3Optional":true},{"name":"manufacturer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"manufacturer","proto3Optional":true},{"name":"protocol_supported","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":3,"jsonName":"protocolSupported","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_device_id"},{"name":"_manufacturer"},{"name":"_protocol_supported"}]},{"name":"ComputerConnectedUsbDeviceInfo","field":[{"name":"device_key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"deviceKey"},{"name":"device_value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"deviceValue"},{"name":"manufacturer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"manufacturer"}]},{"name":"ComputerConnectedModem","field":[{"name":"attached_to","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"attachedTo","proto3Optional":true},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"country_info","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"countryInfo","proto3Optional":true},{"name":"device_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"deviceId","proto3Optional":true},{"name":"device_type","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"deviceType","proto3Optional":true},{"name":"max_baud_rate_to_phone","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":5,"jsonName":"maxBaudRateToPhone","proto3Optional":true},{"name":"max_baud_rate_to_serial_port","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":6,"jsonName":"maxBaudRateToSerialPort","proto3Optional":true},{"name":"modem_inf_path","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"modemInfPath","proto3Optional":true},{"name":"modem_inf_section","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"modemInfSection","proto3Optional":true},{"name":"provider_name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"providerName","proto3Optional":true},{"name":"hw_version","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"hwVersion","proto3Optional":true},{"name":"interface_type","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"interfaceType","proto3Optional":true},{"name":"model","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"model","proto3Optional":true},{"name":"modulation","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"modulation","proto3Optional":true}],"oneofDecl":[{"name":"_attached_to"},{"name":"_caption"},{"name":"_country_info"},{"name":"_device_id"},{"name":"_device_type"},{"name":"_max_baud_rate_to_phone"},{"name":"_max_baud_rate_to_serial_port"},{"name":"_modem_inf_path"},{"name":"_modem_inf_section"},{"name":"_provider_name"},{"name":"_hw_version"},{"name":"_interface_type"},{"name":"_model"},{"name":"_modulation"}]},{"name":"ComputerConnectedPrinter","field":[{"name":"capability_descriptions","number":2,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"capabilityDescriptions"},{"name":"caption","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"device_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"deviceId","proto3Optional":true},{"name":"location","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"location","proto3Optional":true},{"name":"port_name","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"portName","proto3Optional":true},{"name":"print_job_data_type","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"printJobDataType","proto3Optional":true},{"name":"print_processor","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"printProcessor","proto3Optional":true},{"name":"share_name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"shareName","proto3Optional":true},{"name":"status","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"status","proto3Optional":true},{"name":"comment","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"comment","proto3Optional":true},{"name":"horizontal_resolution","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":9,"jsonName":"horizontalResolution","proto3Optional":true},{"name":"vertical_resolution","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":10,"jsonName":"verticalResolution","proto3Optional":true},{"name":"enable_bidi","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":11,"jsonName":"enableBidi","proto3Optional":true},{"name":"local","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":12,"jsonName":"local","proto3Optional":true},{"name":"network","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":13,"jsonName":"network","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_device_id"},{"name":"_location"},{"name":"_port_name"},{"name":"_print_job_data_type"},{"name":"_print_processor"},{"name":"_share_name"},{"name":"_status"},{"name":"_comment"},{"name":"_horizontal_resolution"},{"name":"_vertical_resolution"},{"name":"_enable_bidi"},{"name":"_local"},{"name":"_network"}]},{"name":"ComputerConnectedTapeDrive","field":[{"name":"availability","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":0,"jsonName":"availability","proto3Optional":true},{"name":"capabilities","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","jsonName":"capabilities"},{"name":"caption","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"compression","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"compression","proto3Optional":true},{"name":"default_block_size","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"defaultBlockSize","proto3Optional":true},{"name":"device_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"deviceId","proto3Optional":true},{"name":"manufacturer","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"manufacturer","proto3Optional":true},{"name":"max_block_size","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":6,"jsonName":"maxBlockSize","proto3Optional":true},{"name":"max_media_size","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":7,"jsonName":"maxMediaSize","proto3Optional":true},{"name":"max_partition_count","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"maxPartitionCount","proto3Optional":true},{"name":"media_type","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"mediaType","proto3Optional":true},{"name":"min_block_size","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":10,"jsonName":"minBlockSize","proto3Optional":true},{"name":"needs_cleaning","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":11,"jsonName":"needsCleaning","proto3Optional":true},{"name":"number_of_media_supported","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":12,"jsonName":"numberOfMediaSupported","proto3Optional":true},{"name":"padding","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":13,"jsonName":"padding","proto3Optional":true}],"oneofDecl":[{"name":"_availability"},{"name":"_caption"},{"name":"_compression"},{"name":"_default_block_size"},{"name":"_device_id"},{"name":"_manufacturer"},{"name":"_max_block_size"},{"name":"_max_media_size"},{"name":"_max_partition_count"},{"name":"_media_type"},{"name":"_min_block_size"},{"name":"_needs_cleaning"},{"name":"_number_of_media_supported"},{"name":"_padding"}]},{"name":"ComputerWindowsSerial","field":[{"name":"product_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"productName","proto3Optional":true},{"name":"product_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"productId","proto3Optional":true},{"name":"product_serial","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"productSerial","proto3Optional":true}],"oneofDecl":[{"name":"_product_name"},{"name":"_product_id"},{"name":"_product_serial"}]},{"name":"ComputerWindowsEnvironment","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"name","proto3Optional":true},{"name":"system_variable","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"systemVariable","proto3Optional":true},{"name":"user_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"userName","proto3Optional":true},{"name":"variable_value","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"variableValue","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_name"},{"name":"_system_variable"},{"name":"_user_name"},{"name":"_variable_value"}]},{"name":"ComputerWindowsComApp","field":[{"name":"app_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"appId","proto3Optional":true},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true}],"oneofDecl":[{"name":"_app_id"},{"name":"_caption"}]},{"name":"ComputerWindowsCodec","field":[{"name":"archive","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"archive","proto3Optional":true},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"compressed","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"compressed","proto3Optional":true},{"name":"compression_method","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"compressionMethod","proto3Optional":true},{"name":"description","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"description","proto3Optional":true},{"name":"drive","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"drive","proto3Optional":true},{"name":"encrypted","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":6,"jsonName":"encrypted","proto3Optional":true},{"name":"encryption_method","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"encryptionMethod","proto3Optional":true},{"name":"extension","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"extension","proto3Optional":true},{"name":"file_name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"fileName","proto3Optional":true},{"name":"file_size","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":10,"jsonName":"fileSize","proto3Optional":true},{"name":"file_type","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"fileType","proto3Optional":true},{"name":"fs_name","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"fsName","proto3Optional":true},{"name":"group","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"group","proto3Optional":true},{"name":"hidden","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":14,"jsonName":"hidden","proto3Optional":true},{"name":"install_date","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":15,"jsonName":"installDate","proto3Optional":true},{"name":"manufacturer","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"manufacturer","proto3Optional":true},{"name":"status","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"status","proto3Optional":true},{"name":"system","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":18,"jsonName":"system","proto3Optional":true},{"name":"version","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":19,"jsonName":"version","proto3Optional":true}],"oneofDecl":[{"name":"_archive"},{"name":"_caption"},{"name":"_compressed"},{"name":"_compression_method"},{"name":"_description"},{"name":"_drive"},{"name":"_encrypted"},{"name":"_encryption_method"},{"name":"_extension"},{"name":"_file_name"},{"name":"_file_size"},{"name":"_file_type"},{"name":"_fs_name"},{"name":"_group"},{"name":"_hidden"},{"name":"_install_date"},{"name":"_manufacturer"},{"name":"_status"},{"name":"_system"},{"name":"_version"}]},{"name":"ComputerWindowsSat","field":[{"name":"time_taken","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"timeTaken","proto3Optional":true},{"name":"win_spr_level","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":1,"jsonName":"winSprLevel","proto3Optional":true},{"name":"win_sat_assessment_state","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":2,"jsonName":"winSatAssessmentState","proto3Optional":true},{"name":"memory_score","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":3,"jsonName":"memoryScore","proto3Optional":true},{"name":"cpu_score","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":4,"jsonName":"cpuScore","proto3Optional":true},{"name":"disk_score","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":5,"jsonName":"diskScore","proto3Optional":true},{"name":"d3d_score","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":6,"jsonName":"d3dScore","proto3Optional":true},{"name":"graphics_score","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":7,"jsonName":"graphicsScore","proto3Optional":true}],"oneofDecl":[{"name":"_time_taken"},{"name":"_win_spr_level"},{"name":"_win_sat_assessment_state"},{"name":"_memory_score"},{"name":"_cpu_score"},{"name":"_disk_score"},{"name":"_d3d_score"},{"name":"_graphics_score"}]},{"name":"ComputerWindowsCertificate","field":[{"name":"enhanced_key_usage","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsCertificateEnhancedKeyUsage","jsonName":"enhancedKeyUsage"},{"name":"key_usage","number":2,"label":"LABEL_REPEATED","type":"TYPE_ENUM","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsCertificate.KeyUsageType","jsonName":"keyUsage"},{"name":"template","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"template"},{"name":"dns_name_list","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"dnsNameList"},{"name":"signature_algorithm","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"signatureAlgorithm","proto3Optional":true},{"name":"version","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"version"},{"name":"has_private_key","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"hasPrivateKey"},{"name":"is_archived","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isArchived"},{"name":"expiration_date","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"expirationDate"},{"name":"start_date","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"startDate"},{"name":"issuer_name","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"issuerName"},{"name":"issuer","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"issuer"},{"name":"subject_alternative_name","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"subjectAlternativeName"},{"name":"subject_name","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"subjectName"},{"name":"subject","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"subject"},{"name":"serial","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"serial"},{"name":"thumbprint","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"thumbprint"},{"name":"friendly_name","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"friendlyName"},{"name":"location","number":19,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsCertificateLocation","jsonName":"location"}],"enumType":[{"name":"KeyUsageType","value":[{"name":"DIGITAL_SIGNATURE","number":0},{"name":"NON_REPUDIATION","number":1},{"name":"KEY_ENCIPHERMENT","number":2},{"name":"DATA_ENCIPHERMENT","number":3},{"name":"KEY_AGREEMENT","number":4},{"name":"KEY_CERT_SIGN","number":5},{"name":"CRL_SIGN","number":6},{"name":"ENCIPHER_ONLY","number":7},{"name":"DECIPHER_ONLY","number":8}]}],"oneofDecl":[{"name":"_signature_algorithm"}]},{"name":"WindowsCertificateEnhancedKeyUsage","field":[{"name":"oid_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"oidName","proto3Optional":true},{"name":"oid_value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"oidValue","proto3Optional":true}],"oneofDecl":[{"name":"_oid_name"},{"name":"_oid_value"}]},{"name":"WindowsCertificateLocation","field":[{"name":"store","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"store"},{"name":"folder","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"folder"}]},{"name":"ComputerMacRegionalSettings","field":[{"name":"user_settings","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MacRegionalUserSettings","oneofIndex":0,"jsonName":"userSettings","proto3Optional":true},{"name":"system_settings","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MacRegionalSystemSettings","oneofIndex":1,"jsonName":"systemSettings","proto3Optional":true},{"name":"recovery_os_settings","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MacRegionalRecoveryOsSettings","oneofIndex":2,"jsonName":"recoveryOsSettings","proto3Optional":true}],"oneofDecl":[{"name":"_user_settings"},{"name":"_system_settings"},{"name":"_recovery_os_settings"}]},{"name":"MacRegionalUserSettings","field":[{"name":"linguistic_data_assets_requested","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"linguisticDataAssetsRequested"},{"name":"user_assistant_language","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"userAssistantLanguage","proto3Optional":true},{"name":"user_assistant_voice_language","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"userAssistantVoiceLanguage","proto3Optional":true},{"name":"user_calendar","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"userCalendar","proto3Optional":true},{"name":"user_country_code","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"userCountryCode","proto3Optional":true},{"name":"user_current_input_source","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"userCurrentInputSource","proto3Optional":true},{"name":"user_language_code","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"userLanguageCode","proto3Optional":true},{"name":"user_locale","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"userLocale","proto3Optional":true},{"name":"user_preferred_interface_languages","number":9,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"userPreferredInterfaceLanguages"},{"name":"user_temperature_unit","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"userTemperatureUnit","proto3Optional":true},{"name":"user_uses_metric_system","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"userUsesMetricSystem","proto3Optional":true}],"oneofDecl":[{"name":"_user_assistant_language"},{"name":"_user_assistant_voice_language"},{"name":"_user_calendar"},{"name":"_user_country_code"},{"name":"_user_current_input_source"},{"name":"_user_language_code"},{"name":"_user_locale"},{"name":"_user_temperature_unit"},{"name":"_user_uses_metric_system"}]},{"name":"MacRegionalSystemSettings","field":[{"name":"system_country","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"systemCountry","proto3Optional":true},{"name":"system_interface_languages","number":2,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"systemInterfaceLanguages"},{"name":"system_languages","number":3,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"systemLanguages"},{"name":"system_locale","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"systemLocale","proto3Optional":true},{"name":"system_text_direction","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"systemTextDirection","proto3Optional":true},{"name":"system_uses_metric_system","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"systemUsesMetricSystem","proto3Optional":true}],"oneofDecl":[{"name":"_system_country"},{"name":"_system_locale"},{"name":"_system_text_direction"},{"name":"_system_uses_metric_system"}]},{"name":"MacRegionalRecoveryOsSettings","field":[{"name":"boot_keyboard_code","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"bootKeyboardCode","proto3Optional":true},{"name":"boot_locale","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"bootLocale","proto3Optional":true}],"oneofDecl":[{"name":"_boot_keyboard_code"},{"name":"_boot_locale"}]},{"name":"ComputerWindowsPageFile","field":[{"name":"single","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsSinglePageFile","oneofIndex":0,"jsonName":"single"},{"name":"combined","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsPageFileCombinedData","oneofIndex":0,"jsonName":"combined"}],"oneofDecl":[{"name":"page_file"}]},{"name":"WindowsSinglePageFile","field":[{"name":"archive","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"archive","proto3Optional":true},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"creation_date","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":2,"jsonName":"creationDate","proto3Optional":true},{"name":"file_size","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":3,"jsonName":"fileSize","proto3Optional":true},{"name":"hidden","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":4,"jsonName":"hidden","proto3Optional":true},{"name":"initial_size","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":5,"jsonName":"initialSize","proto3Optional":true},{"name":"install_date","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":6,"jsonName":"installDate","proto3Optional":true},{"name":"last_accessed","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":7,"jsonName":"lastAccessed","proto3Optional":true},{"name":"last_modified","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":8,"jsonName":"lastModified","proto3Optional":true},{"name":"maximum_size","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":9,"jsonName":"maximumSize","proto3Optional":true},{"name":"name","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"name","proto3Optional":true},{"name":"path","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"path","proto3Optional":true},{"name":"readable","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":12,"jsonName":"readable","proto3Optional":true},{"name":"system","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":13,"jsonName":"system","proto3Optional":true},{"name":"writeable","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":14,"jsonName":"writeable","proto3Optional":true}],"oneofDecl":[{"name":"_archive"},{"name":"_caption"},{"name":"_creation_date"},{"name":"_file_size"},{"name":"_hidden"},{"name":"_initial_size"},{"name":"_install_date"},{"name":"_last_accessed"},{"name":"_last_modified"},{"name":"_maximum_size"},{"name":"_name"},{"name":"_path"},{"name":"_readable"},{"name":"_system"},{"name":"_writeable"}]},{"name":"WindowsPageFileCombinedData","field":[{"name":"page_file_usages","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsPageFileUsage","jsonName":"pageFileUsages"},{"name":"page_file_settings","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsPageFileSetting","jsonName":"pageFileSettings"}]},{"name":"WindowsPageFileSetting","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"description","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"description","proto3Optional":true},{"name":"initial_size","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":2,"jsonName":"initialSize","proto3Optional":true},{"name":"maximum_size","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":3,"jsonName":"maximumSize","proto3Optional":true},{"name":"name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"name","proto3Optional":true},{"name":"setting_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"settingId","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_description"},{"name":"_initial_size"},{"name":"_maximum_size"},{"name":"_name"},{"name":"_setting_id"}]},{"name":"WindowsPageFileUsage","field":[{"name":"allocated_base_size","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":0,"jsonName":"allocatedBaseSize","proto3Optional":true},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"current_usage","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":2,"jsonName":"currentUsage","proto3Optional":true},{"name":"description","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"description","proto3Optional":true},{"name":"install_date","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":4,"jsonName":"installDate","proto3Optional":true},{"name":"name","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"name","proto3Optional":true},{"name":"peak_usage","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":6,"jsonName":"peakUsage","proto3Optional":true},{"name":"status","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"status","proto3Optional":true},{"name":"temp_page_file","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":8,"jsonName":"tempPageFile","proto3Optional":true}],"oneofDecl":[{"name":"_allocated_base_size"},{"name":"_caption"},{"name":"_current_usage"},{"name":"_description"},{"name":"_install_date"},{"name":"_name"},{"name":"_peak_usage"},{"name":"_status"},{"name":"_temp_page_file"}]},{"name":"ComputerWindowsDesktop","field":[{"name":"border_width","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"borderWidth","proto3Optional":true},{"name":"cool_switch","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"coolSwitch","proto3Optional":true},{"name":"cursor_blink_rate","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"cursorBlinkRate","proto3Optional":true},{"name":"drag_full_windows","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":3,"jsonName":"dragFullWindows","proto3Optional":true},{"name":"grid_granularity","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":4,"jsonName":"gridGranularity","proto3Optional":true},{"name":"icon_spacing","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":5,"jsonName":"iconSpacing","proto3Optional":true},{"name":"icon_title_facename","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"iconTitleFacename","proto3Optional":true},{"name":"icon_title_size","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":7,"jsonName":"iconTitleSize","proto3Optional":true},{"name":"icon_title_wrap","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":8,"jsonName":"iconTitleWrap","proto3Optional":true},{"name":"name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"name","proto3Optional":true},{"name":"pattern","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"pattern","proto3Optional":true},{"name":"screensaver_active","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":11,"jsonName":"screensaverActive","proto3Optional":true},{"name":"screensaver_executable","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"screensaverExecutable","proto3Optional":true},{"name":"screensaver_secure","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":13,"jsonName":"screensaverSecure","proto3Optional":true},{"name":"screensavertimeout","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":14,"jsonName":"screensavertimeout","proto3Optional":true},{"name":"wallpaper","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"wallpaper","proto3Optional":true},{"name":"wallpaper_stretched","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":16,"jsonName":"wallpaperStretched","proto3Optional":true},{"name":"wallpaper_tiled","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":17,"jsonName":"wallpaperTiled","proto3Optional":true}],"oneofDecl":[{"name":"_border_width"},{"name":"_cool_switch"},{"name":"_cursor_blink_rate"},{"name":"_drag_full_windows"},{"name":"_grid_granularity"},{"name":"_icon_spacing"},{"name":"_icon_title_facename"},{"name":"_icon_title_size"},{"name":"_icon_title_wrap"},{"name":"_name"},{"name":"_pattern"},{"name":"_screensaver_active"},{"name":"_screensaver_executable"},{"name":"_screensaver_secure"},{"name":"_screensavertimeout"},{"name":"_wallpaper"},{"name":"_wallpaper_stretched"},{"name":"_wallpaper_tiled"}]},{"name":"ComputerWindowsDisplay","field":[{"name":"bits_per_pel","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"bitsPerPel","proto3Optional":true},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"device_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"deviceName","proto3Optional":true},{"name":"display_flags","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"displayFlags","proto3Optional":true},{"name":"display_frequency","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":4,"jsonName":"displayFrequency","proto3Optional":true},{"name":"driver_version","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"driverVersion","proto3Optional":true},{"name":"log_pixels","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":6,"jsonName":"logPixels","proto3Optional":true},{"name":"pels_height","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":7,"jsonName":"pelsHeight","proto3Optional":true},{"name":"pels_width","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"pelsWidth","proto3Optional":true},{"name":"specification_version","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":9,"jsonName":"specificationVersion","proto3Optional":true}],"oneofDecl":[{"name":"_bits_per_pel"},{"name":"_caption"},{"name":"_device_name"},{"name":"_display_flags"},{"name":"_display_frequency"},{"name":"_driver_version"},{"name":"_log_pixels"},{"name":"_pels_height"},{"name":"_pels_width"},{"name":"_specification_version"}]},{"name":"ComputerWindowsDesktopMonitor","field":[{"name":"availability","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":0,"jsonName":"availability","proto3Optional":true},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"device_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"deviceId","proto3Optional":true},{"name":"monitor_manufacturer","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"monitorManufacturer","proto3Optional":true},{"name":"pixels_per_x_logical_inch","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":4,"jsonName":"pixelsPerXLogicalInch","proto3Optional":true},{"name":"pixels_per_y_logical_inch","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":5,"jsonName":"pixelsPerYLogicalInch","proto3Optional":true},{"name":"pnp_device_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"pnpDeviceId","proto3Optional":true},{"name":"screen_height","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":7,"jsonName":"screenHeight","proto3Optional":true},{"name":"screen_width","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":8,"jsonName":"screenWidth","proto3Optional":true}],"oneofDecl":[{"name":"_availability"},{"name":"_caption"},{"name":"_device_id"},{"name":"_monitor_manufacturer"},{"name":"_pixels_per_x_logical_inch"},{"name":"_pixels_per_y_logical_inch"},{"name":"_pnp_device_id"},{"name":"_screen_height"},{"name":"_screen_width"}]},{"name":"ComputerMacPreferencePane","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"bundle_path_location","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"bundlePathLocation","proto3Optional":true},{"name":"identifier","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"identifier","proto3Optional":true},{"name":"is_visible","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":3,"jsonName":"isVisible","proto3Optional":true},{"name":"kind","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"kind","proto3Optional":true},{"name":"supported_by","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"supportedBy","proto3Optional":true},{"name":"version","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"version","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_bundle_path_location"},{"name":"_identifier"},{"name":"_is_visible"},{"name":"_kind"},{"name":"_supported_by"},{"name":"_version"}]},{"name":"ComputerWindowsDisplayController","field":[{"name":"bits_per_pixel","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"bitsPerPixel","proto3Optional":true},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"color_planes","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":2,"jsonName":"colorPlanes","proto3Optional":true},{"name":"device_entries_in_a_color_table","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":3,"jsonName":"deviceEntriesInAColorTable","proto3Optional":true},{"name":"device_specific_pens","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":4,"jsonName":"deviceSpecificPens","proto3Optional":true},{"name":"horizontal_resolution","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":5,"jsonName":"horizontalResolution","proto3Optional":true},{"name":"name","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"name","proto3Optional":true},{"name":"refresh_rate","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":7,"jsonName":"refreshRate","proto3Optional":true},{"name":"vertical_resolution","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":8,"jsonName":"verticalResolution","proto3Optional":true},{"name":"video_mode","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"videoMode","proto3Optional":true}],"oneofDecl":[{"name":"_bits_per_pixel"},{"name":"_caption"},{"name":"_color_planes"},{"name":"_device_entries_in_a_color_table"},{"name":"_device_specific_pens"},{"name":"_horizontal_resolution"},{"name":"_name"},{"name":"_refresh_rate"},{"name":"_vertical_resolution"},{"name":"_video_mode"}]},{"name":"ComputerWindowsNetworkClient","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"description","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"description","proto3Optional":true},{"name":"manufacturer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"manufacturer","proto3Optional":true},{"name":"name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"name","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_description"},{"name":"_manufacturer"},{"name":"_name"}]},{"name":"ComputerWindowsIdeController","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"device_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"deviceId","proto3Optional":true},{"name":"manufacturer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"manufacturer","proto3Optional":true},{"name":"protocol_supported","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":3,"jsonName":"protocolSupported","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_device_id"},{"name":"_manufacturer"},{"name":"_protocol_supported"}]},{"name":"ComputerWindowsDiskPartition","field":[{"name":"block_size","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"blockSize","proto3Optional":true},{"name":"bootable","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"bootable","proto3Optional":true},{"name":"boot_partition","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"bootPartition","proto3Optional":true},{"name":"device_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"deviceId","proto3Optional":true},{"name":"disk_index","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":4,"jsonName":"diskIndex","proto3Optional":true},{"name":"index","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":5,"jsonName":"index","proto3Optional":true},{"name":"number_of_blocks","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":6,"jsonName":"numberOfBlocks","proto3Optional":true},{"name":"primary_partition","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":7,"jsonName":"primaryPartition","proto3Optional":true},{"name":"size","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":8,"jsonName":"size","proto3Optional":true},{"name":"starting_offset","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":9,"jsonName":"startingOffset","proto3Optional":true},{"name":"type","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"type","proto3Optional":true}],"oneofDecl":[{"name":"_block_size"},{"name":"_bootable"},{"name":"_boot_partition"},{"name":"_device_id"},{"name":"_disk_index"},{"name":"_index"},{"name":"_number_of_blocks"},{"name":"_primary_partition"},{"name":"_size"},{"name":"_starting_offset"},{"name":"_type"}]},{"name":"ComputerWindowsFloppy","field":[{"name":"bytes_per_sector","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":0,"jsonName":"bytesPerSector","proto3Optional":true},{"name":"description","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"description","proto3Optional":true},{"name":"interface_type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"interfaceType","proto3Optional":true},{"name":"manufacturer","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"manufacturer","proto3Optional":true},{"name":"model","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"model","proto3Optional":true},{"name":"name","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"name","proto3Optional":true},{"name":"partitions","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":6,"jsonName":"partitions","proto3Optional":true},{"name":"pnp_device_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"pnpDeviceId","proto3Optional":true},{"name":"sectors_per_track","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":8,"jsonName":"sectorsPerTrack","proto3Optional":true},{"name":"size","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":9,"jsonName":"size","proto3Optional":true},{"name":"total_cylinders","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":10,"jsonName":"totalCylinders","proto3Optional":true},{"name":"total_heads","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":11,"jsonName":"totalHeads","proto3Optional":true},{"name":"total_sectors","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":12,"jsonName":"totalSectors","proto3Optional":true},{"name":"total_tracks","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":13,"jsonName":"totalTracks","proto3Optional":true},{"name":"tracks_per_cylinder","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":14,"jsonName":"tracksPerCylinder","proto3Optional":true},{"name":"device_id","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"deviceId","proto3Optional":true},{"name":"status","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"status","proto3Optional":true},{"name":"firmware_revision","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"firmwareRevision","proto3Optional":true},{"name":"serial_number","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"serialNumber","proto3Optional":true}],"oneofDecl":[{"name":"_bytes_per_sector"},{"name":"_description"},{"name":"_interface_type"},{"name":"_manufacturer"},{"name":"_model"},{"name":"_name"},{"name":"_partitions"},{"name":"_pnp_device_id"},{"name":"_sectors_per_track"},{"name":"_size"},{"name":"_total_cylinders"},{"name":"_total_heads"},{"name":"_total_sectors"},{"name":"_total_tracks"},{"name":"_tracks_per_cylinder"},{"name":"_device_id"},{"name":"_status"},{"name":"_firmware_revision"},{"name":"_serial_number"}]},{"name":"PortableBattery","field":[{"name":"capacity_multiplier","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"capacityMultiplier","proto3Optional":true},{"name":"chemistry","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":1,"jsonName":"chemistry","proto3Optional":true},{"name":"design_capacity","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"designCapacity","proto3Optional":true},{"name":"design_voltage","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"designVoltage","proto3Optional":true},{"name":"device_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"deviceId","proto3Optional":true},{"name":"location","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"location","proto3Optional":true},{"name":"manufacture_date","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"manufactureDate","proto3Optional":true},{"name":"manufacturer","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"manufacturer","proto3Optional":true},{"name":"max_battery_error","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"maxBatteryError","proto3Optional":true},{"name":"name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"name","proto3Optional":true},{"name":"smart_battery_version","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"smartBatteryVersion","proto3Optional":true}],"oneofDecl":[{"name":"_capacity_multiplier"},{"name":"_chemistry"},{"name":"_design_capacity"},{"name":"_design_voltage"},{"name":"_device_id"},{"name":"_location"},{"name":"_manufacture_date"},{"name":"_manufacturer"},{"name":"_max_battery_error"},{"name":"_name"},{"name":"_smart_battery_version"}]},{"name":"ComputerMacOsFramework","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"arch_kind","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"archKind","proto3Optional":true},{"name":"info","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"info","proto3Optional":true},{"name":"last_modified","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":3,"jsonName":"lastModified","proto3Optional":true},{"name":"obtained_from","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"obtainedFrom","proto3Optional":true},{"name":"path_location","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"pathLocation","proto3Optional":true},{"name":"private_framework","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"privateFramework","proto3Optional":true},{"name":"signed_by","number":8,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"signedBy"},{"name":"version","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"version","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_arch_kind"},{"name":"_info"},{"name":"_last_modified"},{"name":"_obtained_from"},{"name":"_path_location"},{"name":"_private_framework"},{"name":"_version"}]},{"name":"MappedValue","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"value"},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true}],"oneofDecl":[{"name":"_name"}]},{"name":"MonitorInventory","field":[{"name":"timestamp","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"timestamp"},{"name":"monitor","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Monitor","jsonName":"monitor"}]},{"name":"Monitor","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"id","proto3Optional":true},{"name":"make_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"makeId","proto3Optional":true},{"name":"make_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"makeName"},{"name":"model_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"modelName"},{"name":"serial_number","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"serialNumber","proto3Optional":true},{"name":"manufacturer_date","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"manufacturerDate"},{"name":"windows","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsMonitorInfo","oneofIndex":0,"jsonName":"windows"},{"name":"catalog_brand","number":50,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","oneofIndex":4,"jsonName":"catalogBrand","proto3Optional":true},{"name":"catalog_monitor","number":51,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogMonitor","oneofIndex":5,"jsonName":"catalogMonitor","proto3Optional":true}],"oneofDecl":[{"name":"spec"},{"name":"_id"},{"name":"_make_id"},{"name":"_serial_number"},{"name":"_catalog_brand"},{"name":"_catalog_monitor"}]},{"name":"WindowsMonitorInfo","field":[{"name":"model","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"model"},{"name":"pnp_device_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"pnpDeviceId","proto3Optional":true},{"name":"serial_number","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"serialNumber","proto3Optional":true},{"name":"serial_hex","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"serialHex","proto3Optional":true},{"name":"vesa_manufacturer","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"vesaManufacturer","proto3Optional":true},{"name":"key_manufacturer","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"keyManufacturer","proto3Optional":true},{"name":"manufacturer_date","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":5,"jsonName":"manufacturerDate","proto3Optional":true},{"name":"device_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"deviceId","proto3Optional":true}],"oneofDecl":[{"name":"_pnp_device_id"},{"name":"_serial_number"},{"name":"_serial_hex"},{"name":"_vesa_manufacturer"},{"name":"_key_manufacturer"},{"name":"_manufacturer_date"},{"name":"_device_id"}]},{"name":"AntivirusSoftware","field":[{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"guid","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"guid","proto3Optional":true},{"name":"enabled","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"enabled","proto3Optional":true},{"name":"up_to_date","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":3,"jsonName":"upToDate","proto3Optional":true},{"name":"software","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Software","oneofIndex":4,"jsonName":"software","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_guid"},{"name":"_enabled"},{"name":"_up_to_date"},{"name":"_software"}]},{"name":"IpInfo","field":[{"name":"address","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"address"},{"name":"hostname","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"hostname","proto3Optional":true},{"name":"timezone","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"timezone","proto3Optional":true},{"name":"continent_code","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"continentCode","proto3Optional":true},{"name":"country_code","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"countryCode","proto3Optional":true},{"name":"region_code","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"regionCode","proto3Optional":true},{"name":"country_city","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"countryCity","proto3Optional":true},{"name":"isp","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"isp","proto3Optional":true},{"name":"organization","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"organization","proto3Optional":true}],"oneofDecl":[{"name":"_hostname"},{"name":"_timezone"},{"name":"_continent_code"},{"name":"_country_code"},{"name":"_region_code"},{"name":"_country_city"},{"name":"_isp"},{"name":"_organization"}]},{"name":"SoftwareInventory","field":[{"name":"timestamp","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"timestamp"},{"name":"software","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Software","jsonName":"software"}],"reservedRange":[{"start":3,"end":4}]},{"name":"Software","field":[{"name":"rank","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"rank","proto3Optional":true},{"name":"type_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"typeId","proto3Optional":true},{"name":"cat_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"catId","proto3Optional":true},{"name":"make_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"makeId","proto3Optional":true},{"name":"sw_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":4,"jsonName":"swId","proto3Optional":true},{"name":"parent_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"parentId","proto3Optional":true},{"name":"type_name","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"typeName","proto3Optional":true},{"name":"cat_name","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"catName","proto3Optional":true},{"name":"make_name","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"makeName","proto3Optional":true},{"name":"name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"name","proto3Optional":true},{"name":"version","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"version","proto3Optional":true},{"name":"market_ver","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"marketVer","proto3Optional":true},{"name":"edition","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"edition","proto3Optional":true},{"name":"build","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"build","proto3Optional":true},{"name":"arch","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"arch","proto3Optional":true},{"name":"lang","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"lang","proto3Optional":true},{"name":"cpe","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"cpe","proto3Optional":true},{"name":"raw","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.RawSoftware","jsonName":"raw"},{"name":"raw_hash","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"rawHash","proto3Optional":true},{"name":"nre_hash","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"nreHash","proto3Optional":true},{"name":"catalog_brand","number":50,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","oneofIndex":19,"jsonName":"catalogBrand","proto3Optional":true},{"name":"catalog_software","number":51,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogSoftware","oneofIndex":20,"jsonName":"catalogSoftware","proto3Optional":true},{"name":"catalog_parent","number":52,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogSoftware","oneofIndex":21,"jsonName":"catalogParent","proto3Optional":true}],"oneofDecl":[{"name":"_rank"},{"name":"_type_id"},{"name":"_cat_id"},{"name":"_make_id"},{"name":"_sw_id"},{"name":"_parent_id"},{"name":"_type_name"},{"name":"_cat_name"},{"name":"_make_name"},{"name":"_name"},{"name":"_version"},{"name":"_market_ver"},{"name":"_edition"},{"name":"_build"},{"name":"_arch"},{"name":"_lang"},{"name":"_cpe"},{"name":"_raw_hash"},{"name":"_nre_hash"},{"name":"_catalog_brand"},{"name":"_catalog_software"},{"name":"_catalog_parent"}]},{"name":"RawSoftware","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"vendor","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"vendor","proto3Optional":true},{"name":"version","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"version","proto3Optional":true},{"name":"info","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"info","proto3Optional":true},{"name":"exe_path","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"exePath","proto3Optional":true},{"name":"arch","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"arch","proto3Optional":true},{"name":"install_date","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":5,"jsonName":"installDate","proto3Optional":true},{"name":"source_type","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"sourceType","proto3Optional":true},{"name":"sw_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"swId","proto3Optional":true},{"name":"is_current_user","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":8,"jsonName":"isCurrentUser","proto3Optional":true}],"oneofDecl":[{"name":"_vendor"},{"name":"_version"},{"name":"_info"},{"name":"_exe_path"},{"name":"_arch"},{"name":"_install_date"},{"name":"_source_type"},{"name":"_sw_id"},{"name":"_is_current_user"}]},{"name":"SoftwareChangeEvent","field":[{"name":"event_type","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".com.lansweeper.dp.outbound.v1.SoftwareChangeEvent.EventType","jsonName":"eventType"},{"name":"start","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"start"},{"name":"end","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":0,"jsonName":"end","proto3Optional":true},{"name":"software","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Software","jsonName":"software"},{"name":"prev_software","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Software","oneofIndex":1,"jsonName":"prevSoftware","proto3Optional":true}],"enumType":[{"name":"EventType","value":[{"name":"INSTALL","number":0},{"name":"UNINSTALL","number":1},{"name":"UPDATE","number":2}]}],"oneofDecl":[{"name":"_end"},{"name":"_prev_software"}]},{"name":"ComputerMacInstallHistory","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"install_date","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":1,"jsonName":"installDate","proto3Optional":true},{"name":"install_version","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"installVersion","proto3Optional":true},{"name":"package_source","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"packageSource","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_install_date"},{"name":"_install_version"},{"name":"_package_source"}]},{"name":"CatalogBrand","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"make_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"makeName"},{"name":"parent_id","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"parentId","proto3Optional":true},{"name":"last_update_time","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":1,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"country_code","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"countryCode","proto3Optional":true},{"name":"logo_image_url","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"logoImageUrl","proto3Optional":true},{"name":"banner_image_url","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"bannerImageUrl","proto3Optional":true},{"name":"wikipedia_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"wikipediaId","proto3Optional":true},{"name":"wikipedia_lang_code","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"wikipediaLangCode","proto3Optional":true},{"name":"website_url","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"websiteUrl","proto3Optional":true},{"name":"support_url","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"supportUrl","proto3Optional":true},{"name":"support_phone","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"supportPhone","proto3Optional":true},{"name":"facebook_account","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"facebookAccount","proto3Optional":true},{"name":"twitter_account","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"twitterAccount","proto3Optional":true},{"name":"warranty_url","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"warrantyUrl","proto3Optional":true},{"name":"warranty_direct_url","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"warrantyDirectUrl","proto3Optional":true},{"name":"community_url","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"communityUrl","proto3Optional":true},{"name":"linkedin_account","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"linkedinAccount","proto3Optional":true},{"name":"instagram_account","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"instagramAccount","proto3Optional":true},{"name":"youtube_account","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"youtubeAccount","proto3Optional":true},{"name":"pinterest_account","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"pinterestAccount","proto3Optional":true},{"name":"tiktok_account","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":19,"jsonName":"tiktokAccount","proto3Optional":true},{"name":"class_hardware","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":20,"jsonName":"classHardware","proto3Optional":true},{"name":"class_software","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":21,"jsonName":"classSoftware","proto3Optional":true},{"name":"class_consumer","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":22,"jsonName":"classConsumer","proto3Optional":true},{"name":"class_enterprise","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":23,"jsonName":"classEnterprise","proto3Optional":true},{"name":"class_industrial","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":24,"jsonName":"classIndustrial","proto3Optional":true},{"name":"class_individual","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":25,"jsonName":"classIndividual","proto3Optional":true},{"name":"match_score","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":26,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_parent_id"},{"name":"_last_update_time"},{"name":"_country_code"},{"name":"_logo_image_url"},{"name":"_banner_image_url"},{"name":"_wikipedia_id"},{"name":"_wikipedia_lang_code"},{"name":"_website_url"},{"name":"_support_url"},{"name":"_support_phone"},{"name":"_facebook_account"},{"name":"_twitter_account"},{"name":"_warranty_url"},{"name":"_warranty_direct_url"},{"name":"_community_url"},{"name":"_linkedin_account"},{"name":"_instagram_account"},{"name":"_youtube_account"},{"name":"_pinterest_account"},{"name":"_tiktok_account"},{"name":"_class_hardware"},{"name":"_class_software"},{"name":"_class_consumer"},{"name":"_class_enterprise"},{"name":"_class_industrial"},{"name":"_class_individual"},{"name":"_match_score"}]},{"name":"CatalogModel","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"make_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"makeId"},{"name":"device_model","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"deviceModel"},{"name":"device_type_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"deviceTypeId","proto3Optional":true},{"name":"device_model_code","number":6,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"deviceModelCode"},{"name":"family_id","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"familyId","proto3Optional":true},{"name":"is_family","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"isFamily","proto3Optional":true},{"name":"manual_url","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"manualUrl","proto3Optional":true},{"name":"faq_url","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"faqUrl","proto3Optional":true},{"name":"release_date","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":5,"jsonName":"releaseDate","proto3Optional":true},{"name":"disc_date","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":6,"jsonName":"discDate","proto3Optional":true},{"name":"eos_date","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":7,"jsonName":"eosDate","proto3Optional":true},{"name":"lifecyle_confidence","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"lifecyleConfidence","proto3Optional":true},{"name":"price_class","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"priceClass","proto3Optional":true},{"name":"product_class","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"productClass","proto3Optional":true},{"name":"sh_ifttt_handle","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"shIftttHandle","proto3Optional":true},{"name":"sh_google_ass_langs","number":18,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"shGoogleAssLangs"},{"name":"sh_alexa_langs","number":19,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"shAlexaLangs"},{"name":"sh_hass_handle","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"shHassHandle","proto3Optional":true},{"name":"sh_apple_home_kit","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":13,"jsonName":"shAppleHomeKit","proto3Optional":true},{"name":"sh_open_hab_handle","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"shOpenHabHandle","proto3Optional":true},{"name":"nist_cpe","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"nistCpe","proto3Optional":true},{"name":"popularity","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"popularity","proto3Optional":true},{"name":"last_update_time","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":17,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"match_score","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":18,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_device_type_id"},{"name":"_family_id"},{"name":"_is_family"},{"name":"_manual_url"},{"name":"_faq_url"},{"name":"_release_date"},{"name":"_disc_date"},{"name":"_eos_date"},{"name":"_lifecyle_confidence"},{"name":"_price_class"},{"name":"_product_class"},{"name":"_sh_ifttt_handle"},{"name":"_sh_hass_handle"},{"name":"_sh_apple_home_kit"},{"name":"_sh_open_hab_handle"},{"name":"_nist_cpe"},{"name":"_popularity"},{"name":"_last_update_time"},{"name":"_match_score"}]},{"name":"CatalogOs","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"os_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"osName"},{"name":"os_version","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"osVersion","proto3Optional":true},{"name":"os_build","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"osBuild","proto3Optional":true},{"name":"os_version_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"osVersionName","proto3Optional":true},{"name":"override_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"overrideId","proto3Optional":true},{"name":"make_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":4,"jsonName":"makeId","proto3Optional":true},{"name":"parent_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"parentId","proto3Optional":true},{"name":"release_date","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":6,"jsonName":"releaseDate","proto3Optional":true},{"name":"eol_date","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":7,"jsonName":"eolDate","proto3Optional":true},{"name":"eos_date","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":8,"jsonName":"eosDate","proto3Optional":true},{"name":"eosx_date","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":9,"jsonName":"eosxDate","proto3Optional":true},{"name":"lifecyle_confidence","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"lifecyleConfidence","proto3Optional":true},{"name":"logo_image_url","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"logoImageUrl","proto3Optional":true},{"name":"banner_image_url","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"bannerImageUrl","proto3Optional":true},{"name":"wikipedia_id","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"wikipediaId","proto3Optional":true},{"name":"wikipedia_lang_code","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"wikipediaLangCode","proto3Optional":true},{"name":"website_url","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"websiteUrl","proto3Optional":true},{"name":"support_url","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"supportUrl","proto3Optional":true},{"name":"support_phone","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"supportPhone","proto3Optional":true},{"name":"facebook_account","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"facebookAccount","proto3Optional":true},{"name":"twitter_account","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":19,"jsonName":"twitterAccount","proto3Optional":true},{"name":"nist_cpe","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":20,"jsonName":"nistCpe","proto3Optional":true},{"name":"last_update_time","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":21,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"match_score","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":22,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_os_version"},{"name":"_os_build"},{"name":"_os_version_name"},{"name":"_override_id"},{"name":"_make_id"},{"name":"_parent_id"},{"name":"_release_date"},{"name":"_eol_date"},{"name":"_eos_date"},{"name":"_eosx_date"},{"name":"_lifecyle_confidence"},{"name":"_logo_image_url"},{"name":"_banner_image_url"},{"name":"_wikipedia_id"},{"name":"_wikipedia_lang_code"},{"name":"_website_url"},{"name":"_support_url"},{"name":"_support_phone"},{"name":"_facebook_account"},{"name":"_twitter_account"},{"name":"_nist_cpe"},{"name":"_last_update_time"},{"name":"_match_score"}]},{"name":"CatalogSoftware","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"sw_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"swName"},{"name":"sw_version","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"swVersion","proto3Optional":true},{"name":"sw_market_ver","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"swMarketVer","proto3Optional":true},{"name":"sw_edition","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"swEdition","proto3Optional":true},{"name":"sw_lang","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"swLang","proto3Optional":true},{"name":"sw_build","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"swBuild","proto3Optional":true},{"name":"make_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"makeId","proto3Optional":true},{"name":"parent_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":6,"jsonName":"parentId","proto3Optional":true},{"name":"latest_id","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":7,"jsonName":"latestId","proto3Optional":true},{"name":"sw_type","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"swType","proto3Optional":true},{"name":"sw_category","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"swCategory","proto3Optional":true},{"name":"release_date","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":10,"jsonName":"releaseDate","proto3Optional":true},{"name":"eol_date","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":11,"jsonName":"eolDate","proto3Optional":true},{"name":"eos_date","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":12,"jsonName":"eosDate","proto3Optional":true},{"name":"eosx_date","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":13,"jsonName":"eosxDate","proto3Optional":true},{"name":"lifecyle_confidence","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"lifecyleConfidence","proto3Optional":true},{"name":"flag_latest","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":15,"jsonName":"flagLatest","proto3Optional":true},{"name":"flag_widespread","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":16,"jsonName":"flagWidespread","proto3Optional":true},{"name":"flag_deprecated","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":17,"jsonName":"flagDeprecated","proto3Optional":true},{"name":"last_update_time","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":18,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"match_score","number":100,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":19,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_sw_version"},{"name":"_sw_market_ver"},{"name":"_sw_edition"},{"name":"_sw_lang"},{"name":"_sw_build"},{"name":"_make_id"},{"name":"_parent_id"},{"name":"_latest_id"},{"name":"_sw_type"},{"name":"_sw_category"},{"name":"_release_date"},{"name":"_eol_date"},{"name":"_eos_date"},{"name":"_eosx_date"},{"name":"_lifecyle_confidence"},{"name":"_flag_latest"},{"name":"_flag_widespread"},{"name":"_flag_deprecated"},{"name":"_last_update_time"},{"name":"_match_score"}]},{"name":"CatalogMonitor","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"model","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"model"},{"name":"vendor_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"vendorId","proto3Optional":true},{"name":"make_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"makeId","proto3Optional":true},{"name":"family_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"familyId","proto3Optional":true},{"name":"is_family","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":3,"jsonName":"isFamily","proto3Optional":true},{"name":"official_page","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"officialPage","proto3Optional":true},{"name":"support_page","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"supportPage","proto3Optional":true},{"name":"size_inch","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":6,"jsonName":"sizeInch","proto3Optional":true},{"name":"max_resolution","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"maxResolution","proto3Optional":true},{"name":"aspect_ratio","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"aspectRatio","proto3Optional":true},{"name":"response_time_ms","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":9,"jsonName":"responseTimeMs","proto3Optional":true},{"name":"hd_type","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"hdType","proto3Optional":true},{"name":"display_tech","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"displayTech","proto3Optional":true},{"name":"refresh_rate","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":12,"jsonName":"refreshRate","proto3Optional":true},{"name":"panel","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"panel","proto3Optional":true},{"name":"height_cm","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":14,"jsonName":"heightCm","proto3Optional":true},{"name":"width_cm","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":15,"jsonName":"widthCm","proto3Optional":true},{"name":"diagonal_cm","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":16,"jsonName":"diagonalCm","proto3Optional":true},{"name":"usb_upstream","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"usbUpstream","proto3Optional":true},{"name":"nr_usb_upstream","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":18,"jsonName":"nrUsbUpstream","proto3Optional":true},{"name":"nr_usb_type_a_downstream","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":19,"jsonName":"nrUsbTypeADownstream","proto3Optional":true},{"name":"nr_hdmi","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":20,"jsonName":"nrHdmi","proto3Optional":true},{"name":"nr_vga","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":21,"jsonName":"nrVga","proto3Optional":true},{"name":"nr_dvi","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":22,"jsonName":"nrDvi","proto3Optional":true},{"name":"hdmi_version","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":23,"jsonName":"hdmiVersion","proto3Optional":true},{"name":"nr_display_ports","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":24,"jsonName":"nrDisplayPorts","proto3Optional":true},{"name":"display_port_version","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":25,"jsonName":"displayPortVersion","proto3Optional":true},{"name":"energy_class","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":26,"jsonName":"energyClass","proto3Optional":true},{"name":"sdr_per_1000_u","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":27,"jsonName":"sdrPer1000U","proto3Optional":true},{"name":"average_watt_usage","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":28,"jsonName":"averageWattUsage","proto3Optional":true},{"name":"max_watt_usage","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":29,"jsonName":"maxWattUsage","proto3Optional":true},{"name":"watt_usage_standby","number":34,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":30,"jsonName":"wattUsageStandby","proto3Optional":true},{"name":"watt_power_save","number":35,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":31,"jsonName":"wattPowerSave","proto3Optional":true},{"name":"ac_voltage","number":36,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":32,"jsonName":"acVoltage","proto3Optional":true},{"name":"ac_freq_hz","number":37,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":33,"jsonName":"acFreqHz","proto3Optional":true},{"name":"current_a","number":38,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":34,"jsonName":"currentA","proto3Optional":true},{"name":"feature_aio","number":39,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":35,"jsonName":"featureAio","proto3Optional":true},{"name":"feature_camera","number":40,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":36,"jsonName":"featureCamera","proto3Optional":true},{"name":"feature_speakers","number":41,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":37,"jsonName":"featureSpeakers","proto3Optional":true},{"name":"feature_hdmi","number":42,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":38,"jsonName":"featureHdmi","proto3Optional":true},{"name":"feature_eth","number":43,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":39,"jsonName":"featureEth","proto3Optional":true},{"name":"feature_portrait","number":44,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":40,"jsonName":"featurePortrait","proto3Optional":true},{"name":"feature_curved","number":45,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":41,"jsonName":"featureCurved","proto3Optional":true},{"name":"last_update_time","number":46,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":42,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"match_score","number":100,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":43,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_vendor_id"},{"name":"_make_id"},{"name":"_family_id"},{"name":"_is_family"},{"name":"_official_page"},{"name":"_support_page"},{"name":"_size_inch"},{"name":"_max_resolution"},{"name":"_aspect_ratio"},{"name":"_response_time_ms"},{"name":"_hd_type"},{"name":"_display_tech"},{"name":"_refresh_rate"},{"name":"_panel"},{"name":"_height_cm"},{"name":"_width_cm"},{"name":"_diagonal_cm"},{"name":"_usb_upstream"},{"name":"_nr_usb_upstream"},{"name":"_nr_usb_type_a_downstream"},{"name":"_nr_hdmi"},{"name":"_nr_vga"},{"name":"_nr_dvi"},{"name":"_hdmi_version"},{"name":"_nr_display_ports"},{"name":"_display_port_version"},{"name":"_energy_class"},{"name":"_sdr_per_1000_u"},{"name":"_average_watt_usage"},{"name":"_max_watt_usage"},{"name":"_watt_usage_standby"},{"name":"_watt_power_save"},{"name":"_ac_voltage"},{"name":"_ac_freq_hz"},{"name":"_current_a"},{"name":"_feature_aio"},{"name":"_feature_camera"},{"name":"_feature_speakers"},{"name":"_feature_hdmi"},{"name":"_feature_eth"},{"name":"_feature_portrait"},{"name":"_feature_curved"},{"name":"_last_update_time"},{"name":"_match_score"}]},{"name":"IpLocationConfig","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"local_ip_cidr","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"localIpCidr","proto3Optional":true},{"name":"local_ip_start","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"localIpStart","proto3Optional":true},{"name":"local_ip_end","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"localIpEnd","proto3Optional":true},{"name":"source_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"sourceId","proto3Optional":true},{"name":"internet_ip_cidr","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"internetIpCidr","proto3Optional":true},{"name":"internet_country_code","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"internetCountryCode","proto3Optional":true},{"name":"internet_country_city","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"internetCountryCity","proto3Optional":true}],"oneofDecl":[{"name":"_local_ip_cidr"},{"name":"_local_ip_start"},{"name":"_local_ip_end"},{"name":"_source_id"},{"name":"_internet_ip_cidr"},{"name":"_internet_country_code"},{"name":"_internet_country_city"}]}],"service":[{"name":"DataCoreOutboundService","method":[{"name":"GetEntity","inputType":".com.lansweeper.dp.outbound.v1.GetEntityRequest","outputType":".com.lansweeper.dp.outbound.v1.GetEntityResponse","options":{}},{"name":"ListEntities","inputType":".com.lansweeper.dp.outbound.v1.ListEntityRequest","outputType":".com.lansweeper.dp.outbound.v1.ListEntityResponse","options":{},"serverStreaming":true},{"name":"CatalogLookup","inputType":".com.lansweeper.dp.outbound.v1.CatalogLookupRequest","outputType":".com.lansweeper.dp.outbound.v1.CatalogLookupResponse","options":{}},{"name":"GetIpLocationConfig","inputType":".com.lansweeper.dp.outbound.v1.GetIpLocationConfigRequest","outputType":".com.lansweeper.dp.outbound.v1.GetIpLocationConfigResponse","options":{}},{"name":"SetIpLocationConfig","inputType":".com.lansweeper.dp.outbound.v1.SetIpLocationConfigRequest","outputType":".com.lansweeper.dp.outbound.v1.SetIpLocationConfigResponse","options":{}}]}],"options":{"javaMultipleFiles":true,"goPackage":"./generated-go"},"sourceCodeInfo":{"location":[{"span":[7,0,2804,1]},{"path":[12],"span":[7,0,18],"leadingComments":"\n Copyright Lansweeper (c)\n\n This files contains the Data Access API and the definition of outbound model\n\n N.B. This file has been documented using the specification available here: https://github.com/pseudomuto/protoc-gen-doc\n"},{"path":[2],"span":[8,0,38]},{"path":[8],"span":[10,0,37]},{"path":[8,11],"span":[10,0,37]},{"path":[8],"span":[11,0,34]},{"path":[8,10],"span":[11,0,34]},{"path":[3,0],"span":[13,0,41]},{"path":[3,1],"span":[14,0,35]},{"path":[6,0],"span":[23,0,52,1],"leadingComments":"\n GRPC Service. Currently supported operation:\n - Get Entity\n - Stream Entities\n","leadingDetachedComments":[" ----- Service Part ------\n"]},{"path":[6,0,1],"span":[23,8,31]},{"path":[6,0,2,0],"span":[30,2,65],"leadingComments":" Retrieve a single entity by site/inst-id/type/id\n","leadingDetachedComments":[" ----------------------------------------\n ACCESS API\n ----------------------------------------\n"]},{"path":[6,0,2,0,1],"span":[30,6,15]},{"path":[6,0,2,0,2],"span":[30,17,33]},{"path":[6,0,2,0,3],"span":[30,44,61]},{"path":[6,0,2,1],"span":[33,2,76],"leadingComments":" lists entities for a site or site/type\n"},{"path":[6,0,2,1,1],"span":[33,6,18]},{"path":[6,0,2,1,2],"span":[33,19,36]},{"path":[6,0,2,1,6],"span":[33,47,53]},{"path":[6,0,2,1,3],"span":[33,54,72]},{"path":[6,0,2,2],"span":[40,2,77],"leadingComments":" Retrieve a single entity by site/inst-id/type/id\n","leadingDetachedComments":[" ----------------------------------------\n ENRICHMENT API\n ----------------------------------------\n"]},{"path":[6,0,2,2,1],"span":[40,6,19]},{"path":[6,0,2,2,2],"span":[40,21,41]},{"path":[6,0,2,2,3],"span":[40,52,73]},{"path":[6,0,2,3],"span":[47,2,94],"leadingComments":" Get IP Location config (BY SITE)\n","leadingDetachedComments":[" ----------------------------------------\n CONFIG API\n ----------------------------------------\n"]},{"path":[6,0,2,3,1],"span":[47,6,25]},{"path":[6,0,2,3,2],"span":[47,26,52]},{"path":[6,0,2,3,3],"span":[47,63,90]},{"path":[6,0,2,4],"span":[50,2,94],"leadingComments":" Set IP Location Config far a Site\n"},{"path":[6,0,2,4,1],"span":[50,6,25]},{"path":[6,0,2,4,2],"span":[50,26,52]},{"path":[6,0,2,4,3],"span":[50,63,90]},{"path":[4,0],"span":[58,0,61,1],"leadingComments":"\n Retrieve an Entity through his path\n"},{"path":[4,0,1],"span":[58,8,24]},{"path":[4,0,2,0],"span":[59,2,29],"trailingComments":" bool send_related = 2; // send also related entities\n"},{"path":[4,0,2,0,6],"span":[59,2,12]},{"path":[4,0,2,0,1],"span":[59,13,24]},{"path":[4,0,2,0,3],"span":[59,27,28]},{"path":[4,1],"span":[63,0,69,1]},{"path":[4,1,1],"span":[63,8,25]},{"path":[4,1,2,0],"span":[64,2,19]},{"path":[4,1,2,0,5],"span":[64,2,6]},{"path":[4,1,2,0,1],"span":[64,7,14]},{"path":[4,1,2,0,3],"span":[64,17,18]},{"path":[4,1,2,1],"span":[65,2,40]},{"path":[4,1,2,1,4],"span":[65,2,10]},{"path":[4,1,2,1,5],"span":[65,11,17]},{"path":[4,1,2,1,1],"span":[65,18,35]},{"path":[4,1,2,1,3],"span":[65,38,39]},{"path":[4,1,2,2],"span":[67,2,29]},{"path":[4,1,2,2,4],"span":[67,2,10]},{"path":[4,1,2,2,6],"span":[67,11,17]},{"path":[4,1,2,2,1],"span":[67,18,24]},{"path":[4,1,2,2,3],"span":[67,27,28]},{"path":[4,1,2,3],"span":[68,2,30]},{"path":[4,1,2,3,4],"span":[68,2,10]},{"path":[4,1,2,3,6],"span":[68,11,17]},{"path":[4,1,2,3,1],"span":[68,18,25]},{"path":[4,1,2,3,3],"span":[68,28,29]},{"path":[4,2],"span":[71,0,73,1]},{"path":[4,2,1],"span":[71,8,25]},{"path":[4,2,2,0],"span":[72,2,24],"trailingComments":" minimum is for a site\n"},{"path":[4,2,2,0,6],"span":[72,2,12]},{"path":[4,2,2,0,1],"span":[72,13,19]},{"path":[4,2,2,0,3],"span":[72,22,23]},{"path":[4,3],"span":[75,0,78,1]},{"path":[4,3,1],"span":[75,8,26]},{"path":[4,3,2,0],"span":[76,2,20]},{"path":[4,3,2,0,6],"span":[76,2,8]},{"path":[4,3,2,0,1],"span":[76,9,15]},{"path":[4,3,2,0,3],"span":[76,18,19]},{"path":[4,3,2,1],"span":[77,2,30]},{"path":[4,3,2,1,4],"span":[77,2,10]},{"path":[4,3,2,1,6],"span":[77,11,17]},{"path":[4,3,2,1,1],"span":[77,18,25]},{"path":[4,3,2,1,3],"span":[77,28,29]},{"path":[4,4],"span":[80,0,88,1]},{"path":[4,4,1],"span":[80,8,28]},{"path":[4,4,2,0],"span":[81,2,30]},{"path":[4,4,2,0,4],"span":[81,2,10]},{"path":[4,4,2,0,5],"span":[81,11,16]},{"path":[4,4,2,0,1],"span":[81,17,25]},{"path":[4,4,2,0,3],"span":[81,28,29]},{"path":[4,4,2,1],"span":[82,2,30]},{"path":[4,4,2,1,4],"span":[82,2,10]},{"path":[4,4,2,1,5],"span":[82,11,16]},{"path":[4,4,2,1,1],"span":[82,17,25]},{"path":[4,4,2,1,3],"span":[82,28,29]},{"path":[4,4,2,2],"span":[83,2,27]},{"path":[4,4,2,2,4],"span":[83,2,10]},{"path":[4,4,2,2,5],"span":[83,11,16]},{"path":[4,4,2,2,1],"span":[83,17,22]},{"path":[4,4,2,2,3],"span":[83,25,26]},{"path":[4,4,2,3],"span":[84,2,27]},{"path":[4,4,2,3,4],"span":[84,2,10]},{"path":[4,4,2,3,5],"span":[84,11,16]},{"path":[4,4,2,3,1],"span":[84,17,22]},{"path":[4,4,2,3,3],"span":[84,25,26]},{"path":[4,4,2,4],"span":[85,2,32]},{"path":[4,4,2,4,4],"span":[85,2,10]},{"path":[4,4,2,4,5],"span":[85,11,16]},{"path":[4,4,2,4,1],"span":[85,17,27]},{"path":[4,4,2,4,3],"span":[85,30,31]},{"path":[4,4,2,5],"span":[87,2,36],"trailingComments":" false by default: to avoid to get full path\n"},{"path":[4,4,2,5,4],"span":[87,2,10]},{"path":[4,4,2,5,5],"span":[87,11,15]},{"path":[4,4,2,5,1],"span":[87,16,30]},{"path":[4,4,2,5,3],"span":[87,33,35]},{"path":[4,5],"span":[90,0,98,1]},{"path":[4,5,1],"span":[90,8,29]},{"path":[4,5,2,0],"span":[91,2,34]},{"path":[4,5,2,0,4],"span":[91,2,10]},{"path":[4,5,2,0,6],"span":[91,11,23]},{"path":[4,5,2,0,1],"span":[91,24,29]},{"path":[4,5,2,0,3],"span":[91,32,33]},{"path":[4,5,2,1],"span":[92,2,34]},{"path":[4,5,2,1,4],"span":[92,2,10]},{"path":[4,5,2,1,6],"span":[92,11,23]},{"path":[4,5,2,1,1],"span":[92,24,29]},{"path":[4,5,2,1,3],"span":[92,32,33]},{"path":[4,5,2,2],"span":[93,2,28]},{"path":[4,5,2,2,4],"span":[93,2,10]},{"path":[4,5,2,2,6],"span":[93,11,20]},{"path":[4,5,2,2,1],"span":[93,21,23]},{"path":[4,5,2,2,3],"span":[93,26,27]},{"path":[4,5,2,3],"span":[94,2,34]},{"path":[4,5,2,3,4],"span":[94,2,10]},{"path":[4,5,2,3,6],"span":[94,11,26]},{"path":[4,5,2,3,1],"span":[94,27,29]},{"path":[4,5,2,3,3],"span":[94,32,33]},{"path":[4,5,2,4],"span":[95,2,38]},{"path":[4,5,2,4,4],"span":[95,2,10]},{"path":[4,5,2,4,6],"span":[95,11,25]},{"path":[4,5,2,4,1],"span":[95,26,33]},{"path":[4,5,2,4,3],"span":[95,36,37]},{"path":[4,5,2,5],"span":[96,2,28]},{"path":[4,5,2,5,4],"span":[96,2,10]},{"path":[4,5,2,5,5],"span":[96,11,15]},{"path":[4,5,2,5,1],"span":[96,16,23]},{"path":[4,5,2,5,3],"span":[96,26,27]},{"path":[4,5,2,6],"span":[97,2,40]},{"path":[4,5,2,6,4],"span":[97,2,10]},{"path":[4,5,2,6,5],"span":[97,11,17]},{"path":[4,5,2,6,1],"span":[97,18,35]},{"path":[4,5,2,6,3],"span":[97,38,39]},{"path":[4,6],"span":[103,0,105,1],"leadingComments":"\n IP location management\n"},{"path":[4,6,1],"span":[103,8,34]},{"path":[4,6,2,0],"span":[104,2,21]},{"path":[4,6,2,0,5],"span":[104,2,8]},{"path":[4,6,2,0,1],"span":[104,9,16]},{"path":[4,6,2,0,3],"span":[104,19,20]},{"path":[4,7],"span":[107,0,109,1]},{"path":[4,7,1],"span":[107,8,35]},{"path":[4,7,2,0],"span":[108,2,39]},{"path":[4,7,2,0,4],"span":[108,2,10]},{"path":[4,7,2,0,6],"span":[108,11,27]},{"path":[4,7,2,0,1],"span":[108,28,34]},{"path":[4,7,2,0,3],"span":[108,37,38]},{"path":[4,8],"span":[111,0,114,1]},{"path":[4,8,1],"span":[111,8,34]},{"path":[4,8,2,0],"span":[112,2,21]},{"path":[4,8,2,0,5],"span":[112,2,8]},{"path":[4,8,2,0,1],"span":[112,9,16]},{"path":[4,8,2,0,3],"span":[112,19,20]},{"path":[4,8,2,1],"span":[113,2,39]},{"path":[4,8,2,1,4],"span":[113,2,10]},{"path":[4,8,2,1,6],"span":[113,11,27]},{"path":[4,8,2,1,1],"span":[113,28,34]},{"path":[4,8,2,1,3],"span":[113,37,38]},{"path":[4,9],"span":[116,0,119,1]},{"path":[4,9,1],"span":[116,8,35]},{"path":[4,9,2,0],"span":[117,2,14]},{"path":[4,9,2,0,5],"span":[117,2,6]},{"path":[4,9,2,0,1],"span":[117,7,9]},{"path":[4,9,2,0,3],"span":[117,12,13]},{"path":[4,9,2,1],"span":[118,2,31]},{"path":[4,9,2,1,5],"span":[118,2,8]},{"path":[4,9,2,1,1],"span":[118,9,26]},{"path":[4,9,2,1,3],"span":[118,29,30]},{"path":[4,10],"span":[123,0,129,1],"leadingDetachedComments":[" ----- Data Part ------\n"]},{"path":[4,10,1],"span":[123,8,18]},{"path":[4,10,2,0],"span":[124,2,21]},{"path":[4,10,2,0,5],"span":[124,2,8]},{"path":[4,10,2,0,1],"span":[124,9,16]},{"path":[4,10,2,0,3],"span":[124,19,20]},{"path":[4,10,2,1],"span":[125,2,32]},{"path":[4,10,2,1,4],"span":[125,2,10]},{"path":[4,10,2,1,5],"span":[125,11,17]},{"path":[4,10,2,1,1],"span":[125,18,27]},{"path":[4,10,2,1,3],"span":[125,30,31]},{"path":[4,10,2,2],"span":[126,2,34],"trailingComments":" IT, OT, CDK, 3rdParty\n"},{"path":[4,10,2,2,4],"span":[126,2,10]},{"path":[4,10,2,2,5],"span":[126,11,17]},{"path":[4,10,2,2,1],"span":[126,18,29]},{"path":[4,10,2,2,3],"span":[126,32,33]},{"path":[4,10,2,3],"span":[127,2,34],"trailingComments":" \"asset\" \"user\" etc\n"},{"path":[4,10,2,3,4],"span":[127,2,10]},{"path":[4,10,2,3,5],"span":[127,11,17]},{"path":[4,10,2,3,1],"span":[127,18,29]},{"path":[4,10,2,3,3],"span":[127,32,33]},{"path":[4,10,2,4],"span":[128,2,32]},{"path":[4,10,2,4,4],"span":[128,2,10]},{"path":[4,10,2,4,5],"span":[128,11,17]},{"path":[4,10,2,4,1],"span":[128,18,27]},{"path":[4,10,2,4,3],"span":[128,30,31]},{"path":[4,11],"span":[132,0,138,1],"leadingComments":" Main Entity object: variant "},{"path":[4,11,1],"span":[132,8,14]},{"path":[4,11,8,0],"span":[133,2,137,3]},{"path":[4,11,8,0,1],"span":[133,8,14]},{"path":[4,11,2,0],"span":[134,4,20],"trailingComments":" User user = 2;\n Other ...\n"},{"path":[4,11,2,0,6],"span":[134,4,9]},{"path":[4,11,2,0,1],"span":[134,10,15]},{"path":[4,11,2,0,3],"span":[134,18,19]},{"path":[4,12],"span":[143,0,202,1],"leadingComments":" Asset object: IT/OT/CDR "},{"path":[4,12,1],"span":[143,8,13]},{"path":[4,12,2,0],"span":[145,2,20]},{"path":[4,12,2,0,6],"span":[145,2,12]},{"path":[4,12,2,0,1],"span":[145,13,15]},{"path":[4,12,2,0,3],"span":[145,18,19]},{"path":[4,12,2,1],"span":[147,2,44]},{"path":[4,12,2,1,6],"span":[147,2,27]},{"path":[4,12,2,1,1],"span":[147,28,39]},{"path":[4,12,2,1,3],"span":[147,42,43]},{"path":[4,12,2,2],"span":[148,2,43]},{"path":[4,12,2,2,6],"span":[148,2,27]},{"path":[4,12,2,2,1],"span":[148,28,38]},{"path":[4,12,2,2,3],"span":[148,41,42]},{"path":[4,12,2,3],"span":[149,2,45]},{"path":[4,12,2,3,6],"span":[149,2,27]},{"path":[4,12,2,3,1],"span":[149,28,40]},{"path":[4,12,2,3,3],"span":[149,43,44]},{"path":[4,12,2,4],"span":[150,2,46]},{"path":[4,12,2,4,6],"span":[150,2,27]},{"path":[4,12,2,4,1],"span":[150,28,41]},{"path":[4,12,2,4,3],"span":[150,44,45]},{"path":[4,12,2,5],"span":[152,2,48],"trailingComments":" last synced source agent name and version\n"},{"path":[4,12,2,5,4],"span":[152,2,10]},{"path":[4,12,2,5,5],"span":[152,11,17]},{"path":[4,12,2,5,1],"span":[152,18,42]},{"path":[4,12,2,5,3],"span":[152,45,47]},{"path":[4,12,2,6],"span":[153,2,47],"trailingComments":" last synced source name\n"},{"path":[4,12,2,6,4],"span":[153,2,10]},{"path":[4,12,2,6,5],"span":[153,11,17]},{"path":[4,12,2,6,1],"span":[153,18,41]},{"path":[4,12,2,6,3],"span":[153,44,46]},{"path":[4,12,2,7],"span":[160,2,39],"leadingComments":"\n Every source that contributed sending a scan for this asset is listed here.\n The source_info is a actually a map by source type/id, keeping history of scans.\n If the asset was discovered by a single sources, it's redudant with info already in main asset msg.\n"},{"path":[4,12,2,7,4],"span":[160,2,10]},{"path":[4,12,2,7,6],"span":[160,11,21]},{"path":[4,12,2,7,1],"span":[160,22,33]},{"path":[4,12,2,7,3],"span":[160,36,38]},{"path":[4,12,2,8],"span":[168,2,34],"leadingComments":"\n This is unique and source of UUID asset_id. Kept also in verbose key format for debug/future use.\n The key is not globally unique across sites, but it's made up with strongest attributes of the asset.\n Like e.g.: brand/model/serial of a Windows PC.\n Like e.g.: MAC address of CDR devices (if present).\n"},{"path":[4,12,2,8,4],"span":[168,2,10]},{"path":[4,12,2,8,5],"span":[168,11,17]},{"path":[4,12,2,8,1],"span":[168,18,28]},{"path":[4,12,2,8,3],"span":[168,31,33]},{"path":[4,12,2,9],"span":[170,2,37]},{"path":[4,12,2,9,4],"span":[170,2,10]},{"path":[4,12,2,9,6],"span":[170,11,20]},{"path":[4,12,2,9,1],"span":[170,21,31]},{"path":[4,12,2,9,3],"span":[170,34,36]},{"path":[4,12,2,10],"span":[172,2,35],"trailingComments":" Internet IP and related geo-location info, when available\n"},{"path":[4,12,2,10,4],"span":[172,2,10]},{"path":[4,12,2,10,6],"span":[172,11,17]},{"path":[4,12,2,10,1],"span":[172,18,29]},{"path":[4,12,2,10,3],"span":[172,32,34]},{"path":[4,12,2,11],"span":[174,2,24]},{"path":[4,12,2,11,4],"span":[174,2,10]},{"path":[4,12,2,11,6],"span":[174,11,14]},{"path":[4,12,2,11,1],"span":[174,15,18]},{"path":[4,12,2,11,3],"span":[174,21,23]},{"path":[4,12,2,12],"span":[175,2,34],"trailingComments":" e.g. relations to and from OT parent module to sub-modules\n"},{"path":[4,12,2,12,4],"span":[175,2,10]},{"path":[4,12,2,12,6],"span":[175,11,19]},{"path":[4,12,2,12,1],"span":[175,20,28]},{"path":[4,12,2,12,3],"span":[175,31,33]},{"path":[4,12,2,13],"span":[177,2,53],"trailingComments":" correlation fields needed and used by reconciliation engine\n"},{"path":[4,12,2,13,4],"span":[177,2,10]},{"path":[4,12,2,13,6],"span":[177,11,28]},{"path":[4,12,2,13,1],"span":[177,29,47]},{"path":[4,12,2,13,3],"span":[177,50,52]},{"path":[4,12,2,14],"span":[178,2,50]},{"path":[4,12,2,14,4],"span":[178,2,10]},{"path":[4,12,2,14,6],"span":[178,11,29]},{"path":[4,12,2,14,1],"span":[178,30,44]},{"path":[4,12,2,14,3],"span":[178,47,49]},{"path":[4,12,2,15],"span":[180,2,22]},{"path":[4,12,2,15,6],"span":[180,2,12]},{"path":[4,12,2,15,1],"span":[180,13,17]},{"path":[4,12,2,15,3],"span":[180,20,21]},{"path":[4,12,2,16],"span":[182,2,31]},{"path":[4,12,2,16,4],"span":[182,2,10]},{"path":[4,12,2,16,6],"span":[182,11,23]},{"path":[4,12,2,16,1],"span":[182,24,26]},{"path":[4,12,2,16,3],"span":[182,29,30]},{"path":[4,12,2,17],"span":[183,2,34]},{"path":[4,12,2,17,4],"span":[183,2,10]},{"path":[4,12,2,17,6],"span":[183,11,26]},{"path":[4,12,2,17,1],"span":[183,27,29]},{"path":[4,12,2,17,3],"span":[183,32,33]},{"path":[4,12,2,18],"span":[185,2,51]},{"path":[4,12,2,18,4],"span":[185,2,10]},{"path":[4,12,2,18,6],"span":[185,11,27]},{"path":[4,12,2,18,1],"span":[185,28,45]},{"path":[4,12,2,18,3],"span":[185,48,50]},{"path":[4,12,2,19],"span":[186,2,53]},{"path":[4,12,2,19,4],"span":[186,2,10]},{"path":[4,12,2,19,6],"span":[186,11,28]},{"path":[4,12,2,19,1],"span":[186,29,47]},{"path":[4,12,2,19,3],"span":[186,50,52]},{"path":[4,12,2,20],"span":[187,2,51]},{"path":[4,12,2,20,4],"span":[187,2,10]},{"path":[4,12,2,20,6],"span":[187,11,27]},{"path":[4,12,2,20,1],"span":[187,28,45]},{"path":[4,12,2,20,3],"span":[187,48,50]},{"path":[4,12,2,21],"span":[188,2,35]},{"path":[4,12,2,21,4],"span":[188,2,10]},{"path":[4,12,2,21,6],"span":[188,11,19]},{"path":[4,12,2,21,1],"span":[188,20,29]},{"path":[4,12,2,21,3],"span":[188,32,34]},{"path":[4,12,2,22],"span":[190,2,43]},{"path":[4,12,2,22,4],"span":[190,2,10]},{"path":[4,12,2,22,6],"span":[190,11,23]},{"path":[4,12,2,22,1],"span":[190,24,37]},{"path":[4,12,2,22,3],"span":[190,40,42]},{"path":[4,12,9],"span":[193,2,69],"leadingComments":" list of deprecated fields, now moved to computer message\n"},{"path":[4,12,9,0],"span":[193,11,12]},{"path":[4,12,9,0,1],"span":[193,11,12]},{"path":[4,12,9,1],"span":[193,14,16]},{"path":[4,12,9,1,1],"span":[193,14,16]},{"path":[4,12,9,2],"span":[193,18,20]},{"path":[4,12,9,2,1],"span":[193,18,20]},{"path":[4,12,9,3],"span":[193,22,24]},{"path":[4,12,9,3,1],"span":[193,22,24]},{"path":[4,12,9,4],"span":[193,26,28]},{"path":[4,12,9,4,1],"span":[193,26,28]},{"path":[4,12,9,5],"span":[193,30,32]},{"path":[4,12,9,5,1],"span":[193,30,32]},{"path":[4,12,9,6],"span":[193,34,36]},{"path":[4,12,9,6,1],"span":[193,34,36]},{"path":[4,12,9,7],"span":[193,38,40]},{"path":[4,12,9,7,1],"span":[193,38,40]},{"path":[4,12,9,8],"span":[193,42,44]},{"path":[4,12,9,8,1],"span":[193,42,44]},{"path":[4,12,9,9],"span":[193,46,48]},{"path":[4,12,9,9,1],"span":[193,46,48]},{"path":[4,12,9,10],"span":[193,50,52]},{"path":[4,12,9,10,1],"span":[193,50,52]},{"path":[4,12,9,11],"span":[193,54,56]},{"path":[4,12,9,11,1],"span":[193,54,56]},{"path":[4,12,9,12],"span":[193,58,60]},{"path":[4,12,9,12,1],"span":[193,58,60]},{"path":[4,12,9,13],"span":[193,62,64]},{"path":[4,12,9,13,1],"span":[193,62,64]},{"path":[4,12,9,14],"span":[193,66,68]},{"path":[4,12,9,14,1],"span":[193,66,68]},{"path":[4,12,2,23],"span":[195,2,34]},{"path":[4,12,2,23,4],"span":[195,2,10]},{"path":[4,12,2,23,6],"span":[195,11,19]},{"path":[4,12,2,23,1],"span":[195,20,28]},{"path":[4,12,2,23,3],"span":[195,31,33]},{"path":[4,12,2,24],"span":[197,2,35],"trailingComments":" OT specific module info when asset type is 'OT'\n"},{"path":[4,12,2,24,4],"span":[197,2,10]},{"path":[4,12,2,24,6],"span":[197,11,19]},{"path":[4,12,2,24,1],"span":[197,20,29]},{"path":[4,12,2,24,3],"span":[197,32,34]},{"path":[4,12,2,25],"span":[199,2,34]},{"path":[4,12,2,25,4],"span":[199,2,10]},{"path":[4,12,2,25,6],"span":[199,11,22]},{"path":[4,12,2,25,1],"span":[199,23,28]},{"path":[4,12,2,25,3],"span":[199,31,33]},{"path":[4,12,2,26],"span":[201,2,44]},{"path":[4,12,2,26,4],"span":[201,2,10]},{"path":[4,12,2,26,6],"span":[201,11,27]},{"path":[4,12,2,26,1],"span":[201,28,38]},{"path":[4,12,2,26,3],"span":[201,41,43]},{"path":[4,13],"span":[208,0,215,1],"leadingComments":"\n Asset change event log.\n"},{"path":[4,13,1],"span":[208,8,24]},{"path":[4,13,2,0],"span":[209,2,42]},{"path":[4,13,2,0,6],"span":[209,2,27]},{"path":[4,13,2,0,1],"span":[209,28,37]},{"path":[4,13,2,0,3],"span":[209,40,41]},{"path":[4,13,8,0],"span":[210,2,214,3]},{"path":[4,13,8,0,1],"span":[210,8,13]},{"path":[4,13,2,1],"span":[211,4,31]},{"path":[4,13,2,1,6],"span":[211,4,23]},{"path":[4,13,2,1,1],"span":[211,24,26]},{"path":[4,13,2,1,3],"span":[211,29,30]},{"path":[4,13,2,2],"span":[212,4,38]},{"path":[4,13,2,2,6],"span":[212,4,30]},{"path":[4,13,2,2,1],"span":[212,31,33]},{"path":[4,13,2,2,3],"span":[212,36,37]},{"path":[4,13,2,3],"span":[213,4,47],"trailingComments":" specific to SQL server on Windows\n"},{"path":[4,13,2,3,6],"span":[213,4,31]},{"path":[4,13,2,3,1],"span":[213,32,42]},{"path":[4,13,2,3,3],"span":[213,45,46]},{"path":[4,14],"span":[220,0,230,1],"leadingComments":"\n Warranty information.\n"},{"path":[4,14,1],"span":[220,8,20]},{"path":[4,14,2,0],"span":[221,2,42]},{"path":[4,14,2,0,6],"span":[221,2,27]},{"path":[4,14,2,0,1],"span":[221,28,37]},{"path":[4,14,2,0,3],"span":[221,40,41]},{"path":[4,14,2,1],"span":[222,2,52]},{"path":[4,14,2,1,4],"span":[222,2,10]},{"path":[4,14,2,1,6],"span":[222,11,36]},{"path":[4,14,2,1,1],"span":[222,37,47]},{"path":[4,14,2,1,3],"span":[222,50,51]},{"path":[4,14,2,2],"span":[223,2,50]},{"path":[4,14,2,2,4],"span":[223,2,10]},{"path":[4,14,2,2,6],"span":[223,11,36]},{"path":[4,14,2,2,1],"span":[223,37,45]},{"path":[4,14,2,2,3],"span":[223,48,49]},{"path":[4,14,2,3],"span":[224,2,51]},{"path":[4,14,2,3,4],"span":[224,2,10]},{"path":[4,14,2,3,6],"span":[224,11,36]},{"path":[4,14,2,3,1],"span":[224,37,46]},{"path":[4,14,2,3,3],"span":[224,49,50]},{"path":[4,14,2,4],"span":[226,2,35]},{"path":[4,14,2,4,4],"span":[226,2,10]},{"path":[4,14,2,4,5],"span":[226,11,17]},{"path":[4,14,2,4,1],"span":[226,18,30]},{"path":[4,14,2,4,3],"span":[226,33,34]},{"path":[4,14,2,5],"span":[227,2,39]},{"path":[4,14,2,5,4],"span":[227,2,10]},{"path":[4,14,2,5,5],"span":[227,11,17]},{"path":[4,14,2,5,1],"span":[227,18,34]},{"path":[4,14,2,5,3],"span":[227,37,38]},{"path":[4,14,2,6],"span":[229,2,23],"trailingComments":" from is_silly\n"},{"path":[4,14,2,6,5],"span":[229,2,6]},{"path":[4,14,2,6,1],"span":[229,7,18]},{"path":[4,14,2,6,3],"span":[229,21,22]},{"path":[4,15],"span":[235,0,313,1],"leadingComments":"\n Computer message keeping all sections of asset.computer.\n"},{"path":[4,15,1],"span":[235,8,16]},{"path":[4,15,2,0],"span":[237,2,31],"leadingComments":" HW\n"},{"path":[4,15,2,0,4],"span":[237,2,10]},{"path":[4,15,2,0,6],"span":[237,11,18]},{"path":[4,15,2,0,1],"span":[237,19,26]},{"path":[4,15,2,0,3],"span":[237,29,30]},{"path":[4,15,2,1],"span":[238,2,39]},{"path":[4,15,2,1,4],"span":[238,2,10]},{"path":[4,15,2,1,6],"span":[238,11,22]},{"path":[4,15,2,1,1],"span":[238,23,34]},{"path":[4,15,2,1,3],"span":[238,37,38]},{"path":[4,15,2,2],"span":[239,2,35]},{"path":[4,15,2,2,4],"span":[239,2,10]},{"path":[4,15,2,2,6],"span":[239,11,20]},{"path":[4,15,2,2,1],"span":[239,21,30]},{"path":[4,15,2,2,3],"span":[239,33,34]},{"path":[4,15,2,3],"span":[240,2,29]},{"path":[4,15,2,3,4],"span":[240,2,10]},{"path":[4,15,2,3,6],"span":[240,11,17]},{"path":[4,15,2,3,1],"span":[240,18,24]},{"path":[4,15,2,3,3],"span":[240,27,28]},{"path":[4,15,2,4],"span":[241,2,42]},{"path":[4,15,2,4,4],"span":[241,2,10]},{"path":[4,15,2,4,6],"span":[241,11,23]},{"path":[4,15,2,4,1],"span":[241,24,37]},{"path":[4,15,2,4,3],"span":[241,40,41]},{"path":[4,15,2,5],"span":[242,2,36]},{"path":[4,15,2,5,4],"span":[242,2,10]},{"path":[4,15,2,5,6],"span":[242,11,20]},{"path":[4,15,2,5,1],"span":[242,21,31]},{"path":[4,15,2,5,3],"span":[242,34,35]},{"path":[4,15,2,6],"span":[243,2,33]},{"path":[4,15,2,6,4],"span":[243,2,10]},{"path":[4,15,2,6,6],"span":[243,11,19]},{"path":[4,15,2,6,1],"span":[243,20,28]},{"path":[4,15,2,6,3],"span":[243,31,32]},{"path":[4,15,2,7],"span":[244,2,46]},{"path":[4,15,2,7,4],"span":[244,2,10]},{"path":[4,15,2,7,6],"span":[244,11,25]},{"path":[4,15,2,7,1],"span":[244,26,41]},{"path":[4,15,2,7,3],"span":[244,44,45]},{"path":[4,15,2,8],"span":[245,2,40]},{"path":[4,15,2,8,4],"span":[245,2,10]},{"path":[4,15,2,8,6],"span":[245,11,22]},{"path":[4,15,2,8,1],"span":[245,23,35]},{"path":[4,15,2,8,3],"span":[245,38,39]},{"path":[4,15,2,9],"span":[246,2,51]},{"path":[4,15,2,9,4],"span":[246,2,10]},{"path":[4,15,2,9,6],"span":[246,11,27]},{"path":[4,15,2,9,1],"span":[246,28,45]},{"path":[4,15,2,9,3],"span":[246,48,50]},{"path":[4,15,2,10],"span":[247,2,43]},{"path":[4,15,2,10,4],"span":[247,2,10]},{"path":[4,15,2,10,6],"span":[247,11,23]},{"path":[4,15,2,10,1],"span":[247,24,37]},{"path":[4,15,2,10,3],"span":[247,40,42]},{"path":[4,15,2,11],"span":[248,2,39]},{"path":[4,15,2,11,4],"span":[248,2,10]},{"path":[4,15,2,11,6],"span":[248,11,21]},{"path":[4,15,2,11,1],"span":[248,22,33]},{"path":[4,15,2,11,3],"span":[248,36,38]},{"path":[4,15,2,12],"span":[249,2,40]},{"path":[4,15,2,12,4],"span":[249,2,10]},{"path":[4,15,2,12,6],"span":[249,11,27]},{"path":[4,15,2,12,1],"span":[249,28,34]},{"path":[4,15,2,12,3],"span":[249,37,39]},{"path":[4,15,2,13],"span":[250,2,45]},{"path":[4,15,2,13,4],"span":[250,2,10]},{"path":[4,15,2,13,6],"span":[250,11,24]},{"path":[4,15,2,13,1],"span":[250,25,39]},{"path":[4,15,2,13,3],"span":[250,42,44]},{"path":[4,15,2,14],"span":[251,2,47]},{"path":[4,15,2,14,4],"span":[251,2,10]},{"path":[4,15,2,14,6],"span":[251,11,25]},{"path":[4,15,2,14,1],"span":[251,26,41]},{"path":[4,15,2,14,3],"span":[251,44,46]},{"path":[4,15,2,15],"span":[252,2,49]},{"path":[4,15,2,15,4],"span":[252,2,10]},{"path":[4,15,2,15,6],"span":[252,11,26]},{"path":[4,15,2,15,1],"span":[252,27,43]},{"path":[4,15,2,15,3],"span":[252,46,48]},{"path":[4,15,2,16],"span":[253,2,49]},{"path":[4,15,2,16,4],"span":[253,2,10]},{"path":[4,15,2,16,6],"span":[253,11,26]},{"path":[4,15,2,16,1],"span":[253,27,43]},{"path":[4,15,2,16,3],"span":[253,46,48]},{"path":[4,15,2,17],"span":[254,2,43]},{"path":[4,15,2,17,4],"span":[254,2,10]},{"path":[4,15,2,17,6],"span":[254,11,23]},{"path":[4,15,2,17,1],"span":[254,24,37]},{"path":[4,15,2,17,3],"span":[254,40,42]},{"path":[4,15,2,18],"span":[255,2,37]},{"path":[4,15,2,18,4],"span":[255,2,10]},{"path":[4,15,2,18,6],"span":[255,11,20]},{"path":[4,15,2,18,1],"span":[255,21,31]},{"path":[4,15,2,18,3],"span":[255,34,36]},{"path":[4,15,2,19],"span":[256,2,41]},{"path":[4,15,2,19,4],"span":[256,2,10]},{"path":[4,15,2,19,6],"span":[256,11,22]},{"path":[4,15,2,19,1],"span":[256,23,35]},{"path":[4,15,2,19,3],"span":[256,38,40]},{"path":[4,15,2,20],"span":[257,2,42]},{"path":[4,15,2,20,4],"span":[257,2,10]},{"path":[4,15,2,20,6],"span":[257,11,32]},{"path":[4,15,2,20,1],"span":[257,33,36]},{"path":[4,15,2,20,3],"span":[257,39,41]},{"path":[4,15,2,21],"span":[258,2,62]},{"path":[4,15,2,21,4],"span":[258,2,10]},{"path":[4,15,2,21,6],"span":[258,11,41]},{"path":[4,15,2,21,1],"span":[258,42,56]},{"path":[4,15,2,21,3],"span":[258,59,61]},{"path":[4,15,2,22],"span":[259,2,63]},{"path":[4,15,2,22,4],"span":[259,2,10]},{"path":[4,15,2,22,6],"span":[259,11,41]},{"path":[4,15,2,22,1],"span":[259,42,57]},{"path":[4,15,2,22,3],"span":[259,60,62]},{"path":[4,15,2,23],"span":[260,2,45]},{"path":[4,15,2,23,4],"span":[260,2,10]},{"path":[4,15,2,23,6],"span":[260,11,33]},{"path":[4,15,2,23,1],"span":[260,34,39]},{"path":[4,15,2,23,3],"span":[260,42,44]},{"path":[4,15,2,24],"span":[261,2,49]},{"path":[4,15,2,24,4],"span":[261,2,10]},{"path":[4,15,2,24,6],"span":[261,11,35]},{"path":[4,15,2,24,1],"span":[261,36,43]},{"path":[4,15,2,24,3],"span":[261,46,48]},{"path":[4,15,2,25],"span":[262,2,54]},{"path":[4,15,2,25,4],"span":[262,2,10]},{"path":[4,15,2,25,6],"span":[262,11,37]},{"path":[4,15,2,25,1],"span":[262,38,48]},{"path":[4,15,2,25,3],"span":[262,51,53]},{"path":[4,15,2,26],"span":[263,2,53]},{"path":[4,15,2,26,4],"span":[263,2,10]},{"path":[4,15,2,26,6],"span":[263,11,32]},{"path":[4,15,2,26,1],"span":[263,33,47]},{"path":[4,15,2,26,3],"span":[263,50,52]},{"path":[4,15,2,27],"span":[264,2,55]},{"path":[4,15,2,27,4],"span":[264,2,10]},{"path":[4,15,2,27,6],"span":[264,11,33]},{"path":[4,15,2,27,1],"span":[264,34,49]},{"path":[4,15,2,27,3],"span":[264,52,54]},{"path":[4,15,2,28],"span":[265,2,70]},{"path":[4,15,2,28,4],"span":[265,2,10]},{"path":[4,15,2,28,6],"span":[265,11,40]},{"path":[4,15,2,28,1],"span":[265,41,64]},{"path":[4,15,2,28,3],"span":[265,67,69]},{"path":[4,15,2,29],"span":[266,2,55]},{"path":[4,15,2,29,4],"span":[266,2,10]},{"path":[4,15,2,29,6],"span":[266,11,33]},{"path":[4,15,2,29,1],"span":[266,34,49]},{"path":[4,15,2,29,3],"span":[266,52,54]},{"path":[4,15,2,30],"span":[267,2,76]},{"path":[4,15,2,30,4],"span":[267,2,10]},{"path":[4,15,2,30,6],"span":[267,11,43]},{"path":[4,15,2,30,1],"span":[267,44,70]},{"path":[4,15,2,30,3],"span":[267,73,75]},{"path":[4,15,2,31],"span":[268,2,68]},{"path":[4,15,2,31,4],"span":[268,2,10]},{"path":[4,15,2,31,6],"span":[268,11,39]},{"path":[4,15,2,31,1],"span":[268,40,62]},{"path":[4,15,2,31,3],"span":[268,65,67]},{"path":[4,15,2,32],"span":[269,2,68]},{"path":[4,15,2,32,4],"span":[269,2,10]},{"path":[4,15,2,32,6],"span":[269,11,39]},{"path":[4,15,2,32,1],"span":[269,40,62]},{"path":[4,15,2,32,3],"span":[269,65,67]},{"path":[4,15,2,33],"span":[273,2,27],"leadingComments":" OS\n"},{"path":[4,15,2,33,4],"span":[273,2,10]},{"path":[4,15,2,33,6],"span":[273,11,15]},{"path":[4,15,2,33,1],"span":[273,16,20]},{"path":[4,15,2,33,3],"span":[273,23,26]},{"path":[4,15,2,34],"span":[274,2,47]},{"path":[4,15,2,34,4],"span":[274,2,10]},{"path":[4,15,2,34,6],"span":[274,11,31]},{"path":[4,15,2,34,1],"span":[274,32,40]},{"path":[4,15,2,34,3],"span":[274,43,46]},{"path":[4,15,2,35],"span":[275,2,51]},{"path":[4,15,2,35,4],"span":[275,2,10]},{"path":[4,15,2,35,6],"span":[275,11,33]},{"path":[4,15,2,35,1],"span":[275,34,44]},{"path":[4,15,2,35,3],"span":[275,47,50]},{"path":[4,15,2,36],"span":[276,2,53]},{"path":[4,15,2,36,4],"span":[276,2,10]},{"path":[4,15,2,36,6],"span":[276,11,34]},{"path":[4,15,2,36,1],"span":[276,35,46]},{"path":[4,15,2,36,3],"span":[276,49,52]},{"path":[4,15,2,37],"span":[277,2,51]},{"path":[4,15,2,37,4],"span":[277,2,10]},{"path":[4,15,2,37,6],"span":[277,11,33]},{"path":[4,15,2,37,1],"span":[277,34,44]},{"path":[4,15,2,37,3],"span":[277,47,50]},{"path":[4,15,2,38],"span":[278,2,63]},{"path":[4,15,2,38,4],"span":[278,2,10]},{"path":[4,15,2,38,6],"span":[278,11,32]},{"path":[4,15,2,38,1],"span":[278,33,56]},{"path":[4,15,2,38,3],"span":[278,59,62]},{"path":[4,15,2,39],"span":[279,2,51]},{"path":[4,15,2,39,4],"span":[279,2,10]},{"path":[4,15,2,39,6],"span":[279,11,34]},{"path":[4,15,2,39,1],"span":[279,35,44]},{"path":[4,15,2,39,3],"span":[279,47,50]},{"path":[4,15,2,40],"span":[280,2,55]},{"path":[4,15,2,40,4],"span":[280,2,10]},{"path":[4,15,2,40,6],"span":[280,11,32]},{"path":[4,15,2,40,1],"span":[280,33,48]},{"path":[4,15,2,40,3],"span":[280,51,54]},{"path":[4,15,2,41],"span":[283,2,54],"leadingComments":" SW\n"},{"path":[4,15,2,41,4],"span":[283,2,10]},{"path":[4,15,2,41,6],"span":[283,11,28]},{"path":[4,15,2,41,1],"span":[283,29,47]},{"path":[4,15,2,41,3],"span":[283,50,53]},{"path":[4,15,2,42],"span":[284,2,45]},{"path":[4,15,2,42,4],"span":[284,2,10]},{"path":[4,15,2,42,6],"span":[284,11,28]},{"path":[4,15,2,42,1],"span":[284,29,38]},{"path":[4,15,2,42,3],"span":[284,41,44]},{"path":[4,15,2,43],"span":[285,2,49]},{"path":[4,15,2,43,4],"span":[285,2,10]},{"path":[4,15,2,43,6],"span":[285,11,25]},{"path":[4,15,2,43,1],"span":[285,26,42]},{"path":[4,15,2,43,3],"span":[285,45,48]},{"path":[4,15,2,44],"span":[286,2,40]},{"path":[4,15,2,44,4],"span":[286,2,10]},{"path":[4,15,2,44,6],"span":[286,11,21]},{"path":[4,15,2,44,1],"span":[286,22,33]},{"path":[4,15,2,44,3],"span":[286,36,39]},{"path":[4,15,2,45],"span":[287,2,31]},{"path":[4,15,2,45,4],"span":[287,2,10]},{"path":[4,15,2,45,6],"span":[287,11,17]},{"path":[4,15,2,45,1],"span":[287,18,24]},{"path":[4,15,2,45,3],"span":[287,27,30]},{"path":[4,15,2,46],"span":[288,2,48]},{"path":[4,15,2,46,4],"span":[288,2,10]},{"path":[4,15,2,46,6],"span":[288,11,25]},{"path":[4,15,2,46,1],"span":[288,26,41]},{"path":[4,15,2,46,3],"span":[288,44,47]},{"path":[4,15,2,47],"span":[289,2,48]},{"path":[4,15,2,47,4],"span":[289,2,10]},{"path":[4,15,2,47,6],"span":[289,11,25]},{"path":[4,15,2,47,1],"span":[289,26,41]},{"path":[4,15,2,47,3],"span":[289,44,47]},{"path":[4,15,2,48],"span":[290,2,52],"trailingComments":" specific to IE on Windows\n"},{"path":[4,15,2,48,4],"span":[290,2,10]},{"path":[4,15,2,48,6],"span":[290,11,27]},{"path":[4,15,2,48,1],"span":[290,28,45]},{"path":[4,15,2,48,3],"span":[290,48,51]},{"path":[4,15,2,49],"span":[291,2,53],"trailingComments":" specific to SQL server on Windows\n"},{"path":[4,15,2,49,4],"span":[291,2,10]},{"path":[4,15,2,49,6],"span":[291,11,27]},{"path":[4,15,2,49,1],"span":[291,28,46]},{"path":[4,15,2,49,3],"span":[291,49,52]},{"path":[4,15,2,50],"span":[292,2,69]},{"path":[4,15,2,50,4],"span":[292,2,10]},{"path":[4,15,2,50,6],"span":[292,11,39]},{"path":[4,15,2,50,1],"span":[292,40,62]},{"path":[4,15,2,50,3],"span":[292,65,68]},{"path":[4,15,2,51],"span":[293,2,46]},{"path":[4,15,2,51,4],"span":[293,2,10]},{"path":[4,15,2,51,6],"span":[293,11,24]},{"path":[4,15,2,51,1],"span":[293,25,39]},{"path":[4,15,2,51,3],"span":[293,42,45]},{"path":[4,15,2,52],"span":[294,2,57]},{"path":[4,15,2,52,4],"span":[294,2,10]},{"path":[4,15,2,52,6],"span":[294,11,37]},{"path":[4,15,2,52,1],"span":[294,38,50]},{"path":[4,15,2,52,3],"span":[294,53,56]},{"path":[4,15,2,53],"span":[295,2,54]},{"path":[4,15,2,53,4],"span":[295,2,10]},{"path":[4,15,2,53,6],"span":[295,11,32]},{"path":[4,15,2,53,1],"span":[295,33,47]},{"path":[4,15,2,53,3],"span":[295,50,53]},{"path":[4,15,2,54],"span":[296,2,52]},{"path":[4,15,2,54,4],"span":[296,2,10]},{"path":[4,15,2,54,6],"span":[296,11,37]},{"path":[4,15,2,54,1],"span":[296,38,45]},{"path":[4,15,2,54,3],"span":[296,48,51]},{"path":[4,15,2,55],"span":[297,2,58]},{"path":[4,15,2,55,4],"span":[297,2,10]},{"path":[4,15,2,55,6],"span":[297,11,32]},{"path":[4,15,2,55,1],"span":[297,33,51]},{"path":[4,15,2,55,3],"span":[297,54,57]},{"path":[4,15,2,56],"span":[298,2,59]},{"path":[4,15,2,56,4],"span":[298,2,10]},{"path":[4,15,2,56,6],"span":[298,11,32]},{"path":[4,15,2,56,1],"span":[298,33,52]},{"path":[4,15,2,56,3],"span":[298,55,58]},{"path":[4,15,2,57],"span":[299,2,64]},{"path":[4,15,2,57,4],"span":[299,2,10]},{"path":[4,15,2,57,6],"span":[299,11,32]},{"path":[4,15,2,57,1],"span":[299,33,57]},{"path":[4,15,2,57,3],"span":[299,60,63]},{"path":[4,15,2,58],"span":[300,2,48]},{"path":[4,15,2,58,4],"span":[300,2,10]},{"path":[4,15,2,58,6],"span":[300,11,29]},{"path":[4,15,2,58,1],"span":[300,30,41]},{"path":[4,15,2,58,3],"span":[300,44,47]},{"path":[4,15,2,59],"span":[301,2,52]},{"path":[4,15,2,59,4],"span":[301,2,10]},{"path":[4,15,2,59,6],"span":[301,11,31]},{"path":[4,15,2,59,1],"span":[301,32,45]},{"path":[4,15,2,59,3],"span":[301,48,51]},{"path":[4,15,2,60],"span":[302,2,60]},{"path":[4,15,2,60,4],"span":[302,2,10]},{"path":[4,15,2,60,6],"span":[302,11,35]},{"path":[4,15,2,60,1],"span":[302,36,53]},{"path":[4,15,2,60,3],"span":[302,56,59]},{"path":[4,15,2,61],"span":[303,2,54]},{"path":[4,15,2,61,4],"span":[303,2,10]},{"path":[4,15,2,61,6],"span":[303,11,33]},{"path":[4,15,2,61,1],"span":[303,34,47]},{"path":[4,15,2,61,3],"span":[303,50,53]},{"path":[4,15,2,62],"span":[304,2,63]},{"path":[4,15,2,62,4],"span":[304,2,10]},{"path":[4,15,2,62,6],"span":[304,11,36]},{"path":[4,15,2,62,1],"span":[304,37,56]},{"path":[4,15,2,62,3],"span":[304,59,62]},{"path":[4,15,2,63],"span":[305,2,67]},{"path":[4,15,2,63,4],"span":[305,2,10]},{"path":[4,15,2,63,6],"span":[305,11,38]},{"path":[4,15,2,63,1],"span":[305,39,60]},{"path":[4,15,2,63,3],"span":[305,63,66]},{"path":[4,15,2,64],"span":[306,2,63]},{"path":[4,15,2,64,4],"span":[306,2,10]},{"path":[4,15,2,64,6],"span":[306,11,36]},{"path":[4,15,2,64,1],"span":[306,37,56]},{"path":[4,15,2,64,3],"span":[306,59,62]},{"path":[4,15,2,65],"span":[309,2,36],"leadingComments":" USERS AND ACCOUNT\n","trailingComments":" i.e. computer current user\n"},{"path":[4,15,2,65,4],"span":[309,2,10]},{"path":[4,15,2,65,6],"span":[309,11,19]},{"path":[4,15,2,65,1],"span":[309,20,29]},{"path":[4,15,2,65,3],"span":[309,32,35]},{"path":[4,15,2,66],"span":[310,2,34]},{"path":[4,15,2,66,4],"span":[310,2,10]},{"path":[4,15,2,66,6],"span":[310,11,22]},{"path":[4,15,2,66,1],"span":[310,23,27]},{"path":[4,15,2,66,3],"span":[310,30,33]},{"path":[4,15,2,67],"span":[311,2,38]},{"path":[4,15,2,67,4],"span":[311,2,10]},{"path":[4,15,2,67,6],"span":[311,11,20]},{"path":[4,15,2,67,1],"span":[311,21,31]},{"path":[4,15,2,67,3],"span":[311,34,37]},{"path":[4,15,2,68],"span":[312,2,43]},{"path":[4,15,2,68,4],"span":[312,2,10]},{"path":[4,15,2,68,6],"span":[312,11,22]},{"path":[4,15,2,68,1],"span":[312,23,36]},{"path":[4,15,2,68,3],"span":[312,39,42]},{"path":[4,16],"span":[333,0,336,1],"leadingComments":"\n A key/value tag, also known as a key-value pair or simply a tag: a key and a corresponding value.\n It is used to associate metadata or additional information with an entity or data element.\n The key represents the identifier or name of the tag, while the value contains the associated data or information.\n The key serves as a unique label or reference that can be used to retrieve or manipulate the value associated with it.\n In this context, the key can be thought of as a variable name or a dictionary key, and the value can be any data type or object.\n\n Among other things we also use this to mark the Source.\n * E.g.: Source: LS/IT/CDR\n * E.g.: Source: LS/IT/Scan-WMI\n * E.g.: Source: LS/IT/Scan-MAC\n * E.g.: Source: LS/IT/Scan-Linux\n * E.g.: Source: LS/IT/OT (OT like this?)\n * E.g.: Source: LS/CDK (cloud discovery?)\n * E.g.: Source: LS/DataCore (reconciliation)\n"},{"path":[4,16,1],"span":[333,8,11]},{"path":[4,16,2,0],"span":[334,2,17]},{"path":[4,16,2,0,5],"span":[334,2,8]},{"path":[4,16,2,0,1],"span":[334,9,12]},{"path":[4,16,2,0,3],"span":[334,15,16]},{"path":[4,16,2,1],"span":[335,2,28]},{"path":[4,16,2,1,4],"span":[335,2,10]},{"path":[4,16,2,1,5],"span":[335,11,17]},{"path":[4,16,2,1,1],"span":[335,18,23]},{"path":[4,16,2,1,3],"span":[335,26,27]},{"path":[4,17],"span":[343,0,350,1],"leadingComments":"\n A relation between two entities refers to the connection, association, or interaction that exists between them.\n It signifies the way in which these entities are related or linked to each other based on certain characteristics,\n attributes, behaviors, dependencies, or roles they share.\n"},{"path":[4,17,1],"span":[343,8,16]},{"path":[4,17,2,0],"span":[344,2,31],"trailingComments":" if missing, 'self' assumed\n"},{"path":[4,17,2,0,4],"span":[344,2,10]},{"path":[4,17,2,0,6],"span":[344,11,21]},{"path":[4,17,2,0,1],"span":[344,22,26]},{"path":[4,17,2,0,3],"span":[344,29,30]},{"path":[4,17,2,1],"span":[345,2,29],"trailingComments":" if missing, 'self' assumed\n"},{"path":[4,17,2,1,4],"span":[345,2,10]},{"path":[4,17,2,1,6],"span":[345,11,21]},{"path":[4,17,2,1,1],"span":[345,22,24]},{"path":[4,17,2,1,3],"span":[345,27,28]},{"path":[4,17,2,2],"span":[346,2,38]},{"path":[4,17,2,2,6],"span":[346,2,27]},{"path":[4,17,2,2,1],"span":[346,28,33]},{"path":[4,17,2,2,3],"span":[346,36,37]},{"path":[4,17,2,3],"span":[347,2,45],"trailingComments":" if end is marked, it's over\n"},{"path":[4,17,2,3,4],"span":[347,2,10]},{"path":[4,17,2,3,6],"span":[347,11,36]},{"path":[4,17,2,3,1],"span":[347,37,40]},{"path":[4,17,2,3,3],"span":[347,43,44]},{"path":[4,17,2,4],"span":[348,2,18]},{"path":[4,17,2,4,5],"span":[348,2,8]},{"path":[4,17,2,4,1],"span":[348,9,13]},{"path":[4,17,2,4,3],"span":[348,16,17]},{"path":[4,17,2,5],"span":[349,2,23]},{"path":[4,17,2,5,4],"span":[349,2,10]},{"path":[4,17,2,5,6],"span":[349,11,14]},{"path":[4,17,2,5,1],"span":[349,15,18]},{"path":[4,17,2,5,3],"span":[349,21,22]},{"path":[4,18],"span":[355,0,359,1],"leadingComments":"\n Correlation fields used by reconciliation/correlation engine.\n"},{"path":[4,18,1],"span":[355,8,25]},{"path":[4,18,2,0],"span":[357,4,33],"leadingComments":" version or timestamp here...\n"},{"path":[4,18,2,0,4],"span":[357,4,12]},{"path":[4,18,2,0,6],"span":[357,13,22]},{"path":[4,18,2,0,1],"span":[357,23,28]},{"path":[4,18,2,0,3],"span":[357,31,32]},{"path":[4,19],"span":[361,0,364,1]},{"path":[4,19,1],"span":[361,8,17]},{"path":[4,19,2,0],"span":[362,4,19]},{"path":[4,19,2,0,5],"span":[362,4,10]},{"path":[4,19,2,0,1],"span":[362,11,14]},{"path":[4,19,2,0,3],"span":[362,17,18]},{"path":[4,19,2,1],"span":[363,4,30]},{"path":[4,19,2,1,4],"span":[363,4,12]},{"path":[4,19,2,1,5],"span":[363,13,19]},{"path":[4,19,2,1,1],"span":[363,20,25]},{"path":[4,19,2,1,3],"span":[363,28,29]},{"path":[4,20],"span":[369,0,392,1],"leadingComments":"\n ReconciliationInfo fields used by reconciliation/correlation engine.\n"},{"path":[4,20,1],"span":[369,8,26]},{"path":[4,20,4,0],"span":[370,3,373,4]},{"path":[4,20,4,0,1],"span":[370,8,18]},{"path":[4,20,4,0,2,0],"span":[371,5,16]},{"path":[4,20,4,0,2,0,1],"span":[371,5,11]},{"path":[4,20,4,0,2,0,2],"span":[371,14,15]},{"path":[4,20,4,0,2,1],"span":[372,5,15]},{"path":[4,20,4,0,2,1,1],"span":[372,5,10]},{"path":[4,20,4,0,2,1,2],"span":[372,13,14]},{"path":[4,20,4,1],"span":[375,2,378,3]},{"path":[4,20,4,1,1],"span":[375,7,17]},{"path":[4,20,4,1,2,0],"span":[376,4,15]},{"path":[4,20,4,1,2,0,1],"span":[376,4,10]},{"path":[4,20,4,1,2,0,2],"span":[376,13,14]},{"path":[4,20,4,1,2,1],"span":[377,4,13]},{"path":[4,20,4,1,2,1,1],"span":[377,4,8]},{"path":[4,20,4,1,2,1,2],"span":[377,11,12]},{"path":[4,20,2,0],"span":[380,2,49]},{"path":[4,20,2,0,6],"span":[380,2,27]},{"path":[4,20,2,0,1],"span":[380,28,44]},{"path":[4,20,2,0,3],"span":[380,47,48]},{"path":[4,20,2,1],"span":[381,2,23]},{"path":[4,20,2,1,6],"span":[381,2,12]},{"path":[4,20,2,1,1],"span":[381,13,18]},{"path":[4,20,2,1,3],"span":[381,21,22]},{"path":[4,20,2,2],"span":[382,2,38],"trailingComments":" NULL | ENGINE | USER\n"},{"path":[4,20,2,2,4],"span":[382,2,10]},{"path":[4,20,2,2,6],"span":[382,11,21]},{"path":[4,20,2,2,1],"span":[382,22,33]},{"path":[4,20,2,2,3],"span":[382,36,37]},{"path":[4,20,2,3],"span":[384,2,33],"trailingComments":" NULL if GOLDEN / Filled with ID of master if overriden\n"},{"path":[4,20,2,3,4],"span":[384,2,10]},{"path":[4,20,2,3,6],"span":[384,11,21]},{"path":[4,20,2,3,1],"span":[384,22,28]},{"path":[4,20,2,3,3],"span":[384,31,32]},{"path":[4,20,2,4],"span":[385,2,36],"trailingComments":" Filled by ENGINE with the Master ID chosen, if any: To preserve history of engine decisions vs user decisions.\n"},{"path":[4,20,2,4,4],"span":[385,2,10]},{"path":[4,20,2,4,6],"span":[385,11,21]},{"path":[4,20,2,4,1],"span":[385,22,31]},{"path":[4,20,2,4,3],"span":[385,34,35]},{"path":[4,20,2,5],"span":[386,2,32],"trailingComments":" Master is keeping a link to all aliases\n"},{"path":[4,20,2,5,4],"span":[386,2,10]},{"path":[4,20,2,5,6],"span":[386,11,21]},{"path":[4,20,2,5,1],"span":[386,22,27]},{"path":[4,20,2,5,3],"span":[386,30,31]},{"path":[4,20,2,6],"span":[388,2,32],"trailingComments":" Numeric value 0-100 of correlation confidence.\n"},{"path":[4,20,2,6,4],"span":[388,2,10]},{"path":[4,20,2,6,5],"span":[388,11,16]},{"path":[4,20,2,6,1],"span":[388,17,27]},{"path":[4,20,2,6,3],"span":[388,30,31]},{"path":[4,20,2,7],"span":[391,2,35],"leadingComments":" For future use of correlation leads that brought to merge.\n"},{"path":[4,20,2,7,4],"span":[391,2,10]},{"path":[4,20,2,7,5],"span":[391,11,17]},{"path":[4,20,2,7,1],"span":[391,18,30]},{"path":[4,20,2,7,3],"span":[391,33,34]},{"path":[4,21],"span":[403,0,410,1],"leadingComments":"\n Cloud entity coming from CDK scanner.\n This could be extended later on to become more than a carrier of opaque info.\n I.e. the any object contains objects as defined in discovery_cloud.proto\n Only objects needing to be mapped into common/core asset fields are handled\n the rest is fast-forwarded ahead to the chain to allow us to avoid useless\n early heavy mapping and post-pone it only where/when it's needed.\n"},{"path":[4,21,1],"span":[403,8,19]},{"path":[4,21,2,0],"span":[404,2,31]},{"path":[4,21,2,0,6],"span":[404,2,21]},{"path":[4,21,2,0,1],"span":[404,22,26]},{"path":[4,21,2,0,3],"span":[404,29,30]},{"path":[4,21,2,1],"span":[405,2,28]},{"path":[4,21,2,1,5],"span":[405,2,8]},{"path":[4,21,2,1,1],"span":[405,9,23]},{"path":[4,21,2,1,3],"span":[405,26,27]},{"path":[4,21,2,2],"span":[406,2,28]},{"path":[4,21,2,2,5],"span":[406,2,8]},{"path":[4,21,2,2,1],"span":[406,9,23]},{"path":[4,21,2,2,3],"span":[406,26,27]},{"path":[4,21,2,3],"span":[407,2,32]},{"path":[4,21,2,3,4],"span":[407,2,10]},{"path":[4,21,2,3,5],"span":[407,11,17]},{"path":[4,21,2,3,1],"span":[407,18,27]},{"path":[4,21,2,3,3],"span":[407,30,31]},{"path":[4,21,2,4],"span":[408,2,30]},{"path":[4,21,2,4,5],"span":[408,2,8]},{"path":[4,21,2,4,1],"span":[408,9,25]},{"path":[4,21,2,4,3],"span":[408,28,29]},{"path":[4,21,2,5],"span":[409,2,22]},{"path":[4,21,2,5,5],"span":[409,2,8]},{"path":[4,21,2,5,1],"span":[409,9,17]},{"path":[4,21,2,5,3],"span":[409,20,21]},{"path":[4,22],"span":[420,0,438,1],"leadingComments":"\n OT module/card specific info.\n Information about belonging rack and:\n - if it's main module, reference to all sub-modules\n - if it's sub-module, reference to parent main\n HW info: in HW standard section.\n OS info: in OS standard section.\n"},{"path":[4,22,1],"span":[420,8,16]},{"path":[4,22,2,0],"span":[421,2,37]},{"path":[4,22,2,0,4],"span":[421,2,10]},{"path":[4,22,2,0,5],"span":[421,11,17]},{"path":[4,22,2,0,1],"span":[421,18,32]},{"path":[4,22,2,0,3],"span":[421,35,36]},{"path":[4,22,2,1],"span":[422,2,38],"trailingComments":" a module can have one bus-config for each rack/bus it's part of\n"},{"path":[4,22,2,1,4],"span":[422,2,10]},{"path":[4,22,2,1,6],"span":[422,11,22]},{"path":[4,22,2,1,1],"span":[422,23,33]},{"path":[4,22,2,1,3],"span":[422,36,37]},{"path":[4,22,2,2],"span":[424,2,26]},{"path":[4,22,2,2,5],"span":[424,2,6]},{"path":[4,22,2,2,1],"span":[424,7,21]},{"path":[4,22,2,2,3],"span":[424,24,25]},{"path":[4,22,2,3],"span":[425,2,29],"trailingComments":" main module only: total buses including children\n"},{"path":[4,22,2,3,5],"span":[425,2,7]},{"path":[4,22,2,3,1],"span":[425,8,23]},{"path":[4,22,2,3,3],"span":[425,26,28]},{"path":[4,22,2,4],"span":[426,2,28],"trailingComments":" main module only: super total number of modules in all buses\n"},{"path":[4,22,2,4,5],"span":[426,2,7]},{"path":[4,22,2,4,1],"span":[426,8,22]},{"path":[4,22,2,4,3],"span":[426,25,27]},{"path":[4,22,2,5],"span":[427,2,27],"trailingComments":" main module only: max number of bus levels\n"},{"path":[4,22,2,5,5],"span":[427,2,7]},{"path":[4,22,2,5,1],"span":[427,8,21]},{"path":[4,22,2,5,3],"span":[427,24,26]},{"path":[4,22,2,6],"span":[429,2,34]},{"path":[4,22,2,6,4],"span":[429,2,10]},{"path":[4,22,2,6,5],"span":[429,11,17]},{"path":[4,22,2,6,1],"span":[429,18,29]},{"path":[4,22,2,6,3],"span":[429,32,33]},{"path":[4,22,2,7],"span":[430,2,40]},{"path":[4,22,2,7,4],"span":[430,2,10]},{"path":[4,22,2,7,6],"span":[430,11,26]},{"path":[4,22,2,7,1],"span":[430,27,35]},{"path":[4,22,2,7,3],"span":[430,38,39]},{"path":[4,22,2,8],"span":[432,2,33]},{"path":[4,22,2,8,4],"span":[432,2,10]},{"path":[4,22,2,8,5],"span":[432,11,17]},{"path":[4,22,2,8,1],"span":[432,18,28]},{"path":[4,22,2,8,3],"span":[432,31,32]},{"path":[4,22,2,9],"span":[434,2,27]},{"path":[4,22,2,9,5],"span":[434,2,6]},{"path":[4,22,2,9,1],"span":[434,7,22]},{"path":[4,22,2,9,3],"span":[434,25,26]},{"path":[4,22,2,10],"span":[435,2,36]},{"path":[4,22,2,10,4],"span":[435,2,10]},{"path":[4,22,2,10,5],"span":[435,11,17]},{"path":[4,22,2,10,1],"span":[435,18,31]},{"path":[4,22,2,10,3],"span":[435,34,35]},{"path":[4,22,2,11],"span":[436,2,36]},{"path":[4,22,2,11,4],"span":[436,2,10]},{"path":[4,22,2,11,6],"span":[436,11,21]},{"path":[4,22,2,11,1],"span":[436,22,31]},{"path":[4,22,2,11,3],"span":[436,34,35]},{"path":[4,22,2,12],"span":[437,2,45]},{"path":[4,22,2,12,4],"span":[437,2,10]},{"path":[4,22,2,12,6],"span":[437,11,28]},{"path":[4,22,2,12,1],"span":[437,29,39]},{"path":[4,22,2,12,3],"span":[437,42,44]},{"path":[4,23],"span":[441,0,450,1],"leadingComments":" Information about the OT rack the module is plugged into\n"},{"path":[4,23,1],"span":[441,8,19]},{"path":[4,23,2,0],"span":[442,2,19]},{"path":[4,23,2,0,5],"span":[442,2,7]},{"path":[4,23,2,0,1],"span":[442,8,14]},{"path":[4,23,2,0,3],"span":[442,17,18]},{"path":[4,23,2,1],"span":[443,2,27]},{"path":[4,23,2,1,4],"span":[443,2,10]},{"path":[4,23,2,1,5],"span":[443,11,17]},{"path":[4,23,2,1,1],"span":[443,18,22]},{"path":[4,23,2,1,3],"span":[443,25,26]},{"path":[4,23,2,2],"span":[444,2,27]},{"path":[4,23,2,2,4],"span":[444,2,10]},{"path":[4,23,2,2,5],"span":[444,11,17]},{"path":[4,23,2,2,1],"span":[444,18,22]},{"path":[4,23,2,2,3],"span":[444,25,26]},{"path":[4,23,2,3],"span":[445,2,17]},{"path":[4,23,2,3,5],"span":[445,2,7]},{"path":[4,23,2,3,1],"span":[445,8,12]},{"path":[4,23,2,3,3],"span":[445,15,16]},{"path":[4,23,2,4],"span":[446,2,24]},{"path":[4,23,2,4,5],"span":[446,2,7]},{"path":[4,23,2,4,1],"span":[446,8,19]},{"path":[4,23,2,4,3],"span":[446,22,23]},{"path":[4,23,2,5],"span":[447,2,30],"trailingComments":" the specific slot number for this module in the rack\n"},{"path":[4,23,2,5,4],"span":[447,2,10]},{"path":[4,23,2,5,5],"span":[447,11,16]},{"path":[4,23,2,5,1],"span":[447,17,25]},{"path":[4,23,2,5,3],"span":[447,28,29]},{"path":[4,23,2,6],"span":[448,2,27],"trailingComments":" the specific slot width for this module in the rack\n"},{"path":[4,23,2,6,4],"span":[448,2,10]},{"path":[4,23,2,6,5],"span":[448,11,16]},{"path":[4,23,2,6,1],"span":[448,17,22]},{"path":[4,23,2,6,3],"span":[448,25,26]},{"path":[4,23,2,7],"span":[449,2,35]},{"path":[4,23,2,7,4],"span":[449,2,10]},{"path":[4,23,2,7,5],"span":[449,11,15]},{"path":[4,23,2,7,1],"span":[449,16,30]},{"path":[4,23,2,7,3],"span":[449,33,34]},{"path":[4,24],"span":[452,0,455,1]},{"path":[4,24,1],"span":[452,8,23]},{"path":[4,24,2,0],"span":[453,2,17]},{"path":[4,24,2,0,5],"span":[453,2,8]},{"path":[4,24,2,0,1],"span":[453,9,12]},{"path":[4,24,2,0,3],"span":[453,15,16]},{"path":[4,24,2,1],"span":[454,2,19]},{"path":[4,24,2,1,5],"span":[454,2,8]},{"path":[4,24,2,1,1],"span":[454,9,14]},{"path":[4,24,2,1,3],"span":[454,17,18]},{"path":[4,25],"span":[458,0,469,1],"leadingComments":" Information about the Scan config and last run of OT scan\n"},{"path":[4,25,1],"span":[458,8,18]},{"path":[4,25,2,0],"span":[459,2,37]},{"path":[4,25,2,0,4],"span":[459,2,10]},{"path":[4,25,2,0,5],"span":[459,11,17]},{"path":[4,25,2,0,1],"span":[459,18,32]},{"path":[4,25,2,0,3],"span":[459,35,36]},{"path":[4,25,2,1],"span":[460,2,39]},{"path":[4,25,2,1,4],"span":[460,2,10]},{"path":[4,25,2,1,5],"span":[460,11,17]},{"path":[4,25,2,1,1],"span":[460,18,34]},{"path":[4,25,2,1,3],"span":[460,37,38]},{"path":[4,25,2,2],"span":[461,2,32]},{"path":[4,25,2,2,4],"span":[461,2,10]},{"path":[4,25,2,2,5],"span":[461,11,17]},{"path":[4,25,2,2,1],"span":[461,18,27]},{"path":[4,25,2,2,3],"span":[461,30,31]},{"path":[4,25,2,3],"span":[462,2,34]},{"path":[4,25,2,3,4],"span":[462,2,10]},{"path":[4,25,2,3,5],"span":[462,11,17]},{"path":[4,25,2,3,1],"span":[462,18,29]},{"path":[4,25,2,3,3],"span":[462,32,33]},{"path":[4,25,2,4],"span":[463,2,34]},{"path":[4,25,2,4,4],"span":[463,2,10]},{"path":[4,25,2,4,5],"span":[463,11,17]},{"path":[4,25,2,4,1],"span":[463,18,29]},{"path":[4,25,2,4,3],"span":[463,32,33]},{"path":[4,25,2,5],"span":[464,2,36]},{"path":[4,25,2,5,4],"span":[464,2,10]},{"path":[4,25,2,5,5],"span":[464,11,17]},{"path":[4,25,2,5,1],"span":[464,18,31]},{"path":[4,25,2,5,3],"span":[464,34,35]},{"path":[4,25,2,6],"span":[465,2,26]},{"path":[4,25,2,6,4],"span":[465,2,10]},{"path":[4,25,2,6,5],"span":[465,11,16]},{"path":[4,25,2,6,1],"span":[465,17,21]},{"path":[4,25,2,6,3],"span":[465,24,25]},{"path":[4,25,2,7],"span":[466,2,39]},{"path":[4,25,2,7,4],"span":[466,2,10]},{"path":[4,25,2,7,5],"span":[466,11,17]},{"path":[4,25,2,7,1],"span":[466,18,34]},{"path":[4,25,2,7,3],"span":[466,37,38]},{"path":[4,25,2,8],"span":[467,2,52]},{"path":[4,25,2,8,4],"span":[467,2,10]},{"path":[4,25,2,8,6],"span":[467,11,36]},{"path":[4,25,2,8,1],"span":[467,37,47]},{"path":[4,25,2,8,3],"span":[467,50,51]},{"path":[4,25,2,9],"span":[468,2,52]},{"path":[4,25,2,9,4],"span":[468,2,10]},{"path":[4,25,2,9,6],"span":[468,11,36]},{"path":[4,25,2,9,1],"span":[468,37,46]},{"path":[4,25,2,9,3],"span":[468,49,51]},{"path":[4,26],"span":[472,0,476,1],"leadingComments":" Information about OT firmware history\n"},{"path":[4,26,1],"span":[472,8,25]},{"path":[4,26,2,0],"span":[473,2,22]},{"path":[4,26,2,0,5],"span":[473,2,8]},{"path":[4,26,2,0,1],"span":[473,9,17]},{"path":[4,26,2,0,3],"span":[473,20,21]},{"path":[4,26,2,1],"span":[474,2,37]},{"path":[4,26,2,1,6],"span":[474,2,27]},{"path":[4,26,2,1,1],"span":[474,28,32]},{"path":[4,26,2,1,3],"span":[474,35,36]},{"path":[4,26,2,2],"span":[475,2,38]},{"path":[4,26,2,2,6],"span":[475,2,27]},{"path":[4,26,2,2,1],"span":[475,28,33]},{"path":[4,26,2,2,3],"span":[475,36,37]},{"path":[4,27],"span":[482,0,490,1],"leadingComments":"\n Asset Type enables customers to manage the settings for a\n category of information in a centralized, reusable way.\n"},{"path":[4,27,1],"span":[482,8,17]},{"path":[4,27,2,0],"span":[484,2,21],"leadingComments":" Lansweeper Asset Type. Full list available here: /lansweeperapis/packages/model/masterData/content/masterData.json\n"},{"path":[4,27,2,0,5],"span":[484,2,8]},{"path":[4,27,2,0,1],"span":[484,9,16]},{"path":[4,27,2,0,3],"span":[484,19,20]},{"path":[4,27,2,1],"span":[486,2,18],"leadingComments":" Lansweeper type ID\n"},{"path":[4,27,2,1,5],"span":[486,2,7]},{"path":[4,27,2,1,1],"span":[486,8,13]},{"path":[4,27,2,1,3],"span":[486,16,17]},{"path":[4,27,2,2],"span":[488,2,32],"leadingComments":" Fing Type\n"},{"path":[4,27,2,2,4],"span":[488,2,10]},{"path":[4,27,2,2,5],"span":[488,11,17]},{"path":[4,27,2,2,1],"span":[488,18,27]},{"path":[4,27,2,2,3],"span":[488,30,31]},{"path":[4,27,2,3],"span":[489,2,31],"trailingComments":" sub type for OT and CDK\n"},{"path":[4,27,2,3,4],"span":[489,2,10]},{"path":[4,27,2,3,5],"span":[489,11,17]},{"path":[4,27,2,3,1],"span":[489,18,26]},{"path":[4,27,2,3,3],"span":[489,29,30]},{"path":[4,28],"span":[497,0,505,1],"leadingComments":"\n Detailed Source information for each source (aka installation in legacy terms)\n that at least once contributed to sending a scan about this asset.\n"},{"path":[4,28,1],"span":[497,8,18]},{"path":[4,28,2,0],"span":[498,2,23],"trailingComments":" source id, like installation id of IT\n"},{"path":[4,28,2,0,5],"span":[498,2,8]},{"path":[4,28,2,0,1],"span":[498,9,18]},{"path":[4,28,2,0,3],"span":[498,21,22]},{"path":[4,28,2,1],"span":[499,2,25],"trailingComments":" source type like e.g. IT\n"},{"path":[4,28,2,1,5],"span":[499,2,8]},{"path":[4,28,2,1,1],"span":[499,9,20]},{"path":[4,28,2,1,3],"span":[499,23,24]},{"path":[4,28,2,2],"span":[500,2,35],"trailingComments":" source agent name and version\n"},{"path":[4,28,2,2,4],"span":[500,2,10]},{"path":[4,28,2,2,5],"span":[500,11,17]},{"path":[4,28,2,2,1],"span":[500,18,30]},{"path":[4,28,2,2,3],"span":[500,33,34]},{"path":[4,28,2,3],"span":[501,2,34],"trailingComments":" source name\n"},{"path":[4,28,2,3,4],"span":[501,2,10]},{"path":[4,28,2,3,5],"span":[501,11,17]},{"path":[4,28,2,3,1],"span":[501,18,29]},{"path":[4,28,2,3,3],"span":[501,32,33]},{"path":[4,28,2,4],"span":[502,2,20],"trailingComments":" entity/asset raw id for source\n"},{"path":[4,28,2,4,5],"span":[502,2,8]},{"path":[4,28,2,4,1],"span":[502,9,15]},{"path":[4,28,2,4,3],"span":[502,18,19]},{"path":[4,28,2,5],"span":[503,2,44],"trailingComments":" later here we could also have a summary of errors, if needed to keep history\n"},{"path":[4,28,2,5,6],"span":[503,2,27]},{"path":[4,28,2,5,1],"span":[503,28,39]},{"path":[4,28,2,5,3],"span":[503,42,43]},{"path":[4,29],"span":[510,0,516,1],"leadingComments":"\n Scan errors.\n"},{"path":[4,29,1],"span":[510,8,17]},{"path":[4,29,2,0],"span":[511,2,21],"trailingComments":" name of section\n"},{"path":[4,29,2,0,5],"span":[511,2,8]},{"path":[4,29,2,0,1],"span":[511,9,16]},{"path":[4,29,2,0,3],"span":[511,19,20]},{"path":[4,29,2,1],"span":[512,2,19],"trailingComments":" error descr\n"},{"path":[4,29,2,1,5],"span":[512,2,8]},{"path":[4,29,2,1,1],"span":[512,9,14]},{"path":[4,29,2,1,3],"span":[512,17,18]},{"path":[4,29,2,2],"span":[513,2,29],"trailingComments":" e.g. \"WMI\"\n"},{"path":[4,29,2,2,4],"span":[513,2,10]},{"path":[4,29,2,2,5],"span":[513,11,17]},{"path":[4,29,2,2,1],"span":[513,18,24]},{"path":[4,29,2,2,3],"span":[513,27,28]},{"path":[4,29,2,3],"span":[514,2,51]},{"path":[4,29,2,3,4],"span":[514,2,10]},{"path":[4,29,2,3,6],"span":[514,11,36]},{"path":[4,29,2,3,1],"span":[514,37,46]},{"path":[4,29,2,3,3],"span":[514,49,50]},{"path":[4,29,2,4],"span":[515,2,30]},{"path":[4,29,2,4,4],"span":[515,2,10]},{"path":[4,29,2,4,5],"span":[515,11,16]},{"path":[4,29,2,4,1],"span":[515,17,25]},{"path":[4,29,2,4,3],"span":[515,28,29]},{"path":[4,30],"span":[521,0,538,1],"leadingComments":"\n Core Fields for all Assets.\n"},{"path":[4,30,1],"span":[521,8,18]},{"path":[4,30,2,0],"span":[522,2,21]},{"path":[4,30,2,0,6],"span":[522,2,11]},{"path":[4,30,2,0,1],"span":[522,12,16]},{"path":[4,30,2,0,3],"span":[522,19,20]},{"path":[4,30,2,1],"span":[523,2,18]},{"path":[4,30,2,1,5],"span":[523,2,8]},{"path":[4,30,2,1,1],"span":[523,9,13]},{"path":[4,30,2,1,3],"span":[523,16,17]},{"path":[4,30,2,2],"span":[524,2,29]},{"path":[4,30,2,2,4],"span":[524,2,10]},{"path":[4,30,2,2,5],"span":[524,11,17]},{"path":[4,30,2,2,1],"span":[524,18,24]},{"path":[4,30,2,2,3],"span":[524,27,28]},{"path":[4,30,2,3],"span":[525,2,33]},{"path":[4,30,2,3,4],"span":[525,2,10]},{"path":[4,30,2,3,5],"span":[525,11,17]},{"path":[4,30,2,3,1],"span":[525,18,28]},{"path":[4,30,2,3,3],"span":[525,31,32]},{"path":[4,30,2,4],"span":[526,2,29]},{"path":[4,30,2,4,4],"span":[526,2,10]},{"path":[4,30,2,4,5],"span":[526,11,17]},{"path":[4,30,2,4,1],"span":[526,18,24]},{"path":[4,30,2,4,3],"span":[526,27,28]},{"path":[4,30,2,5],"span":[527,2,26]},{"path":[4,30,2,5,4],"span":[527,2,10]},{"path":[4,30,2,5,5],"span":[527,11,17]},{"path":[4,30,2,5,1],"span":[527,18,21]},{"path":[4,30,2,5,3],"span":[527,24,25]},{"path":[4,30,2,6],"span":[528,2,33]},{"path":[4,30,2,6,4],"span":[528,2,10]},{"path":[4,30,2,6,5],"span":[528,11,17]},{"path":[4,30,2,6,1],"span":[528,18,28]},{"path":[4,30,2,6,3],"span":[528,31,32]},{"path":[4,30,2,7],"span":[529,2,32]},{"path":[4,30,2,7,4],"span":[529,2,10]},{"path":[4,30,2,7,5],"span":[529,11,17]},{"path":[4,30,2,7,1],"span":[529,18,27]},{"path":[4,30,2,7,3],"span":[529,30,31]},{"path":[4,30,2,8],"span":[530,2,27]},{"path":[4,30,2,8,4],"span":[530,2,10]},{"path":[4,30,2,8,5],"span":[530,11,17]},{"path":[4,30,2,8,1],"span":[530,18,22]},{"path":[4,30,2,8,3],"span":[530,25,26]},{"path":[4,30,2,9],"span":[537,2,24],"leadingComments":"\n Asset confidence 1-100:\n - 100 is for credential-scan assets by LS internal scanners\n - <100 is for e.g. CDR or imported data from 3rd parties\n"},{"path":[4,30,2,9,5],"span":[537,2,7]},{"path":[4,30,2,9,1],"span":[537,8,18]},{"path":[4,30,2,9,3],"span":[537,21,23]},{"path":[4,31],"span":[540,0,545,1]},{"path":[4,31,1],"span":[540,8,16]},{"path":[4,31,2,0],"span":[541,4,25]},{"path":[4,31,2,0,5],"span":[541,4,10]},{"path":[4,31,2,0,1],"span":[541,11,20]},{"path":[4,31,2,0,3],"span":[541,23,24]},{"path":[4,31,2,1],"span":[542,4,34]},{"path":[4,31,2,1,4],"span":[542,4,12]},{"path":[4,31,2,1,5],"span":[542,13,19]},{"path":[4,31,2,1,1],"span":[542,20,29]},{"path":[4,31,2,1,3],"span":[542,32,33]},{"path":[4,31,2,2],"span":[543,4,28]},{"path":[4,31,2,2,4],"span":[543,4,12]},{"path":[4,31,2,2,5],"span":[543,13,19]},{"path":[4,31,2,2,1],"span":[543,20,23]},{"path":[4,31,2,2,3],"span":[543,26,27]},{"path":[4,31,2,3],"span":[544,4,28]},{"path":[4,31,2,3,4],"span":[544,4,12]},{"path":[4,31,2,3,5],"span":[544,13,19]},{"path":[4,31,2,3,1],"span":[544,20,23]},{"path":[4,31,2,3,3],"span":[544,26,27]},{"path":[4,32],"span":[550,0,577,1],"leadingComments":"\n User account: from Windows.WindowsUser and Unix.Users.\n"},{"path":[4,32,1],"span":[550,8,19]},{"path":[4,32,2,0],"span":[551,2,27],"trailingComments":" unix:user_name\n"},{"path":[4,32,2,0,4],"span":[551,2,10]},{"path":[4,32,2,0,5],"span":[551,11,17]},{"path":[4,32,2,0,1],"span":[551,18,22]},{"path":[4,32,2,0,3],"span":[551,25,26]},{"path":[4,32,2,1],"span":[552,2,29]},{"path":[4,32,2,1,4],"span":[552,2,10]},{"path":[4,32,2,1,5],"span":[552,11,17]},{"path":[4,32,2,1,1],"span":[552,18,24]},{"path":[4,32,2,1,3],"span":[552,27,28]},{"path":[4,32,2,2],"span":[553,2,30]},{"path":[4,32,2,2,4],"span":[553,2,10]},{"path":[4,32,2,2,5],"span":[553,11,17]},{"path":[4,32,2,2,1],"span":[553,18,25]},{"path":[4,32,2,2,3],"span":[553,28,29]},{"path":[4,32,2,3],"span":[554,2,34],"trailingComments":" unix:comment\n"},{"path":[4,32,2,3,4],"span":[554,2,10]},{"path":[4,32,2,3,5],"span":[554,11,17]},{"path":[4,32,2,3,1],"span":[554,18,29]},{"path":[4,32,2,3,3],"span":[554,32,33]},{"path":[4,32,2,4],"span":[555,2,32]},{"path":[4,32,2,4,4],"span":[555,2,10]},{"path":[4,32,2,4,5],"span":[555,11,17]},{"path":[4,32,2,4,1],"span":[555,18,27]},{"path":[4,32,2,4,3],"span":[555,30,31]},{"path":[4,32,2,5],"span":[557,2,40],"trailingComments":" unix:type\n"},{"path":[4,32,2,5,4],"span":[557,2,10]},{"path":[4,32,2,5,6],"span":[557,11,22]},{"path":[4,32,2,5,1],"span":[557,23,35]},{"path":[4,32,2,5,3],"span":[557,38,39]},{"path":[4,32,2,6],"span":[559,2,26]},{"path":[4,32,2,6,4],"span":[559,2,10]},{"path":[4,32,2,6,5],"span":[559,11,17]},{"path":[4,32,2,6,1],"span":[559,18,21]},{"path":[4,32,2,6,3],"span":[559,24,25]},{"path":[4,32,2,7],"span":[560,2,36]},{"path":[4,32,2,7,4],"span":[560,2,10]},{"path":[4,32,2,7,6],"span":[560,11,22]},{"path":[4,32,2,7,1],"span":[560,23,31]},{"path":[4,32,2,7,3],"span":[560,34,35]},{"path":[4,32,2,8],"span":[562,2,34]},{"path":[4,32,2,8,4],"span":[562,2,10]},{"path":[4,32,2,8,5],"span":[562,11,15]},{"path":[4,32,2,8,1],"span":[562,16,29]},{"path":[4,32,2,8,3],"span":[562,32,33]},{"path":[4,32,2,9],"span":[563,2,30]},{"path":[4,32,2,9,4],"span":[563,2,10]},{"path":[4,32,2,9,5],"span":[563,11,15]},{"path":[4,32,2,9,1],"span":[563,16,24]},{"path":[4,32,2,9,3],"span":[563,27,29]},{"path":[4,32,2,10],"span":[564,2,29]},{"path":[4,32,2,10,4],"span":[564,2,10]},{"path":[4,32,2,10,5],"span":[564,11,15]},{"path":[4,32,2,10,1],"span":[564,16,23]},{"path":[4,32,2,10,3],"span":[564,26,28]},{"path":[4,32,2,11],"span":[565,2,41]},{"path":[4,32,2,11,4],"span":[565,2,10]},{"path":[4,32,2,11,5],"span":[565,11,15]},{"path":[4,32,2,11,1],"span":[565,16,35]},{"path":[4,32,2,11,3],"span":[565,38,40]},{"path":[4,32,2,12],"span":[566,2,38]},{"path":[4,32,2,12,4],"span":[566,2,10]},{"path":[4,32,2,12,5],"span":[566,11,15]},{"path":[4,32,2,12,1],"span":[566,16,32]},{"path":[4,32,2,12,3],"span":[566,35,37]},{"path":[4,32,2,13],"span":[567,2,39]},{"path":[4,32,2,13,4],"span":[567,2,10]},{"path":[4,32,2,13,5],"span":[567,11,15]},{"path":[4,32,2,13,1],"span":[567,16,33]},{"path":[4,32,2,13,3],"span":[567,36,38]},{"path":[4,32,2,14],"span":[569,2,30]},{"path":[4,32,2,14,4],"span":[569,2,10]},{"path":[4,32,2,14,5],"span":[569,11,17]},{"path":[4,32,2,14,1],"span":[569,18,24]},{"path":[4,32,2,14,3],"span":[569,27,29]},{"path":[4,32,2,15],"span":[572,2,30],"leadingComments":" unix specific\n"},{"path":[4,32,2,15,4],"span":[572,2,10]},{"path":[4,32,2,15,5],"span":[572,11,16]},{"path":[4,32,2,15,1],"span":[572,17,24]},{"path":[4,32,2,15,3],"span":[572,27,29]},{"path":[4,32,2,16],"span":[573,2,31]},{"path":[4,32,2,16,4],"span":[573,2,10]},{"path":[4,32,2,16,5],"span":[573,11,16]},{"path":[4,32,2,16,1],"span":[573,17,25]},{"path":[4,32,2,16,3],"span":[573,28,30]},{"path":[4,32,2,17],"span":[575,2,38]},{"path":[4,32,2,17,4],"span":[575,2,10]},{"path":[4,32,2,17,5],"span":[575,11,17]},{"path":[4,32,2,17,1],"span":[575,18,32]},{"path":[4,32,2,17,3],"span":[575,35,37]},{"path":[4,32,2,18],"span":[576,2,35]},{"path":[4,32,2,18,4],"span":[576,2,10]},{"path":[4,32,2,18,5],"span":[576,11,17]},{"path":[4,32,2,18,1],"span":[576,18,29]},{"path":[4,32,2,18,3],"span":[576,32,34]},{"path":[4,33],"span":[583,0,595,1],"leadingComments":"\n User group, from Windows.WindowsGroup and Unix.GroupEntry.\n Note that Unix.user_names are not here but programmatically mapped to UserInGroup.\n"},{"path":[4,33,1],"span":[583,8,17]},{"path":[4,33,2,0],"span":[584,2,27]},{"path":[4,33,2,0,4],"span":[584,2,10]},{"path":[4,33,2,0,5],"span":[584,11,17]},{"path":[4,33,2,0,1],"span":[584,18,22]},{"path":[4,33,2,0,3],"span":[584,25,26]},{"path":[4,33,2,1],"span":[585,2,30]},{"path":[4,33,2,1,4],"span":[585,2,10]},{"path":[4,33,2,1,5],"span":[585,11,17]},{"path":[4,33,2,1,1],"span":[585,18,25]},{"path":[4,33,2,1,3],"span":[585,28,29]},{"path":[4,33,2,2],"span":[586,2,34]},{"path":[4,33,2,2,4],"span":[586,2,10]},{"path":[4,33,2,2,5],"span":[586,11,17]},{"path":[4,33,2,2,1],"span":[586,18,29]},{"path":[4,33,2,2,3],"span":[586,32,33]},{"path":[4,33,2,3],"span":[587,2,29]},{"path":[4,33,2,3,4],"span":[587,2,10]},{"path":[4,33,2,3,5],"span":[587,11,17]},{"path":[4,33,2,3,1],"span":[587,18,24]},{"path":[4,33,2,3,3],"span":[587,27,28]},{"path":[4,33,2,4],"span":[589,2,26]},{"path":[4,33,2,4,4],"span":[589,2,10]},{"path":[4,33,2,4,5],"span":[589,11,17]},{"path":[4,33,2,4,1],"span":[589,18,21]},{"path":[4,33,2,4,3],"span":[589,24,25]},{"path":[4,33,2,5],"span":[590,2,34]},{"path":[4,33,2,5,4],"span":[590,2,10]},{"path":[4,33,2,5,5],"span":[590,11,15]},{"path":[4,33,2,5,1],"span":[590,16,29]},{"path":[4,33,2,5,3],"span":[590,32,33]},{"path":[4,33,2,6],"span":[593,2,30],"leadingComments":" unix specific\n"},{"path":[4,33,2,6,4],"span":[593,2,10]},{"path":[4,33,2,6,5],"span":[593,11,16]},{"path":[4,33,2,6,1],"span":[593,17,25]},{"path":[4,33,2,6,3],"span":[593,28,29]},{"path":[4,33,2,7],"span":[594,2,27]},{"path":[4,33,2,7,4],"span":[594,2,10]},{"path":[4,33,2,7,5],"span":[594,11,17]},{"path":[4,33,2,7,1],"span":[594,18,22]},{"path":[4,33,2,7,3],"span":[594,25,26]},{"path":[4,34],"span":[602,0,609,1],"leadingComments":"\n Many to many relationship between users and groups and related relation properties.\n Windows: direct mapping mapped from WindowsUserInGroupInfo.\n Unix: created from parsing of Unix.GroupEntry.user_names\n"},{"path":[4,34,1],"span":[602,8,19]},{"path":[4,34,2,0],"span":[603,2,33]},{"path":[4,34,2,0,4],"span":[603,2,10]},{"path":[4,34,2,0,5],"span":[603,11,17]},{"path":[4,34,2,0,1],"span":[603,18,28]},{"path":[4,34,2,0,3],"span":[603,31,32]},{"path":[4,34,2,1],"span":[604,2,32]},{"path":[4,34,2,1,4],"span":[604,2,10]},{"path":[4,34,2,1,5],"span":[604,11,17]},{"path":[4,34,2,1,1],"span":[604,18,27]},{"path":[4,34,2,1,3],"span":[604,30,31]},{"path":[4,34,2,2],"span":[605,2,39]},{"path":[4,34,2,2,4],"span":[605,2,10]},{"path":[4,34,2,2,5],"span":[605,11,17]},{"path":[4,34,2,2,1],"span":[605,18,34]},{"path":[4,34,2,2,3],"span":[605,37,38]},{"path":[4,34,2,3],"span":[606,2,35]},{"path":[4,34,2,3,4],"span":[606,2,10]},{"path":[4,34,2,3,5],"span":[606,11,17]},{"path":[4,34,2,3,1],"span":[606,18,30]},{"path":[4,34,2,3,3],"span":[606,33,34]},{"path":[4,34,2,4],"span":[608,2,35]},{"path":[4,34,2,4,4],"span":[608,2,10]},{"path":[4,34,2,4,5],"span":[608,11,15]},{"path":[4,34,2,4,1],"span":[608,16,30]},{"path":[4,34,2,4,3],"span":[608,33,34]},{"path":[4,35],"span":[616,0,653,1],"leadingComments":"\n IE on Windows. Very specific.\n From sections: WindowsActiveX, WindowsInternetExplorerBarInfo,\n WindowsInternetExplorerBrowserObjectInfo, WindowsInternetExplorerExtensionInfo.\n"},{"path":[4,35,1],"span":[616,8,24]},{"path":[4,35,3,0],"span":[618,4,623,5],"leadingComments":" from WindowsActiveX\n"},{"path":[4,35,3,0,1],"span":[618,12,19]},{"path":[4,35,3,0,2,0],"span":[619,6,34]},{"path":[4,35,3,0,2,0,4],"span":[619,6,14]},{"path":[4,35,3,0,2,0,5],"span":[619,15,21]},{"path":[4,35,3,0,2,0,1],"span":[619,22,29]},{"path":[4,35,3,0,2,0,3],"span":[619,32,33]},{"path":[4,35,3,0,2,1],"span":[620,6,36]},{"path":[4,35,3,0,2,1,4],"span":[620,6,14]},{"path":[4,35,3,0,2,1,5],"span":[620,15,21]},{"path":[4,35,3,0,2,1,1],"span":[620,22,31]},{"path":[4,35,3,0,2,1,3],"span":[620,34,35]},{"path":[4,35,3,0,2,2],"span":[621,6,31]},{"path":[4,35,3,0,2,2,4],"span":[621,6,14]},{"path":[4,35,3,0,2,2,5],"span":[621,15,21]},{"path":[4,35,3,0,2,2,1],"span":[621,22,26]},{"path":[4,35,3,0,2,2,3],"span":[621,29,30]},{"path":[4,35,3,0,2,3],"span":[622,6,30]},{"path":[4,35,3,0,2,3,4],"span":[622,6,14]},{"path":[4,35,3,0,2,3,5],"span":[622,15,21]},{"path":[4,35,3,0,2,3,1],"span":[622,22,25]},{"path":[4,35,3,0,2,3,3],"span":[622,28,29]},{"path":[4,35,3,1],"span":[626,4,636,5],"leadingComments":" InternetExplorerExtensionInfo\n"},{"path":[4,35,3,1,1],"span":[626,12,21]},{"path":[4,35,3,1,2,0],"span":[627,6,34]},{"path":[4,35,3,1,2,0,4],"span":[627,6,14]},{"path":[4,35,3,1,2,0,5],"span":[627,15,21]},{"path":[4,35,3,1,2,0,1],"span":[627,22,29]},{"path":[4,35,3,1,2,0,3],"span":[627,32,33]},{"path":[4,35,3,1,2,1],"span":[628,6,38]},{"path":[4,35,3,1,2,1,4],"span":[628,6,14]},{"path":[4,35,3,1,2,1,5],"span":[628,15,21]},{"path":[4,35,3,1,2,1,1],"span":[628,22,33]},{"path":[4,35,3,1,2,1,3],"span":[628,36,37]},{"path":[4,35,3,1,2,2],"span":[629,6,33]},{"path":[4,35,3,1,2,2,4],"span":[629,6,14]},{"path":[4,35,3,1,2,2,5],"span":[629,15,21]},{"path":[4,35,3,1,2,2,1],"span":[629,22,28]},{"path":[4,35,3,1,2,2,3],"span":[629,31,32]},{"path":[4,35,3,1,2,3],"span":[630,6,42]},{"path":[4,35,3,1,2,3,4],"span":[630,6,14]},{"path":[4,35,3,1,2,3,5],"span":[630,15,21]},{"path":[4,35,3,1,2,3,1],"span":[630,22,37]},{"path":[4,35,3,1,2,3,3],"span":[630,40,41]},{"path":[4,35,3,1,2,4],"span":[631,6,31]},{"path":[4,35,3,1,2,4,4],"span":[631,6,14]},{"path":[4,35,3,1,2,4,5],"span":[631,15,21]},{"path":[4,35,3,1,2,4,1],"span":[631,22,26]},{"path":[4,35,3,1,2,4,3],"span":[631,29,30]},{"path":[4,35,3,1,2,5],"span":[632,6,35]},{"path":[4,35,3,1,2,5,4],"span":[632,6,14]},{"path":[4,35,3,1,2,5,5],"span":[632,15,21]},{"path":[4,35,3,1,2,5,1],"span":[632,22,30]},{"path":[4,35,3,1,2,5,3],"span":[632,33,34]},{"path":[4,35,3,1,2,6],"span":[633,6,31]},{"path":[4,35,3,1,2,6,4],"span":[633,6,14]},{"path":[4,35,3,1,2,6,5],"span":[633,15,21]},{"path":[4,35,3,1,2,6,1],"span":[633,22,26]},{"path":[4,35,3,1,2,6,3],"span":[633,29,30]},{"path":[4,35,3,1,2,7],"span":[634,6,36]},{"path":[4,35,3,1,2,7,4],"span":[634,6,14]},{"path":[4,35,3,1,2,7,5],"span":[634,15,21]},{"path":[4,35,3,1,2,7,1],"span":[634,22,31]},{"path":[4,35,3,1,2,7,3],"span":[634,34,35]},{"path":[4,35,3,1,2,8],"span":[635,6,34]},{"path":[4,35,3,1,2,8,4],"span":[635,6,14]},{"path":[4,35,3,1,2,8,5],"span":[635,15,21]},{"path":[4,35,3,1,2,8,1],"span":[635,22,29]},{"path":[4,35,3,1,2,8,3],"span":[635,32,33]},{"path":[4,35,3,2],"span":[639,2,641,3],"leadingComments":" from InternetExplorerBrowserObjectInfo\n"},{"path":[4,35,3,2,1],"span":[639,10,23]},{"path":[4,35,3,2,2,0],"span":[640,4,23]},{"path":[4,35,3,2,2,0,5],"span":[640,4,10]},{"path":[4,35,3,2,2,0,1],"span":[640,11,18]},{"path":[4,35,3,2,2,0,3],"span":[640,21,22]},{"path":[4,35,3,3],"span":[644,2,646,3],"leadingComments":" from WindowsInternetExplorerBarInfo\n"},{"path":[4,35,3,3,1],"span":[644,10,17]},{"path":[4,35,3,3,2,0],"span":[645,4,23]},{"path":[4,35,3,3,2,0,5],"span":[645,4,10]},{"path":[4,35,3,3,2,0,1],"span":[645,11,18]},{"path":[4,35,3,3,2,0,3],"span":[645,21,22]},{"path":[4,35,2,0],"span":[649,2,32]},{"path":[4,35,2,0,4],"span":[649,2,10]},{"path":[4,35,2,0,6],"span":[649,11,18]},{"path":[4,35,2,0,1],"span":[649,19,27]},{"path":[4,35,2,0,3],"span":[649,30,31]},{"path":[4,35,2,1],"span":[650,2,33]},{"path":[4,35,2,1,4],"span":[650,2,10]},{"path":[4,35,2,1,6],"span":[650,11,24]},{"path":[4,35,2,1,1],"span":[650,25,28]},{"path":[4,35,2,1,3],"span":[650,31,32]},{"path":[4,35,2,2],"span":[651,2,44]},{"path":[4,35,2,2,4],"span":[651,2,10]},{"path":[4,35,2,2,6],"span":[651,11,24]},{"path":[4,35,2,2,1],"span":[651,25,39]},{"path":[4,35,2,2,3],"span":[651,42,43]},{"path":[4,35,2,3],"span":[652,2,35]},{"path":[4,35,2,3,4],"span":[652,2,10]},{"path":[4,35,2,3,6],"span":[652,11,20]},{"path":[4,35,2,3,1],"span":[652,21,30]},{"path":[4,35,2,3,3],"span":[652,33,34]},{"path":[4,36],"span":[658,0,682,1],"leadingComments":"\n SQL Server extended information on Windows Computers.\n"},{"path":[4,36,1],"span":[658,8,24]},{"path":[4,36,4,0],"span":[659,2,663,3]},{"path":[4,36,4,0,1],"span":[659,7,28]},{"path":[4,36,4,0,2,0],"span":[660,4,21]},{"path":[4,36,4,0,2,0,1],"span":[660,4,16]},{"path":[4,36,4,0,2,0,2],"span":[660,19,20]},{"path":[4,36,4,0,2,1],"span":[661,4,16]},{"path":[4,36,4,0,2,1,1],"span":[661,4,11]},{"path":[4,36,4,0,2,1,2],"span":[661,14,15]},{"path":[4,36,4,0,2,2],"span":[662,4,14]},{"path":[4,36,4,0,2,2,1],"span":[662,4,9]},{"path":[4,36,4,0,2,2,2],"span":[662,12,13]},{"path":[4,36,2,0],"span":[665,4,26]},{"path":[4,36,2,0,5],"span":[665,4,8]},{"path":[4,36,2,0,1],"span":[665,9,21]},{"path":[4,36,2,0,3],"span":[665,24,25]},{"path":[4,36,2,1],"span":[666,4,54]},{"path":[4,36,2,1,6],"span":[666,4,25]},{"path":[4,36,2,1,1],"span":[666,26,49]},{"path":[4,36,2,1,3],"span":[666,52,53]},{"path":[4,36,2,2],"span":[667,4,45]},{"path":[4,36,2,2,4],"span":[667,4,12]},{"path":[4,36,2,2,6],"span":[667,13,30]},{"path":[4,36,2,2,1],"span":[667,31,40]},{"path":[4,36,2,2,3],"span":[667,43,44]},{"path":[4,36,2,3],"span":[668,4,43]},{"path":[4,36,2,3,4],"span":[668,4,12]},{"path":[4,36,2,3,6],"span":[668,13,29]},{"path":[4,36,2,3,1],"span":[668,30,38]},{"path":[4,36,2,3,3],"span":[668,41,42]},{"path":[4,36,2,4],"span":[669,4,28]},{"path":[4,36,2,4,5],"span":[669,4,10]},{"path":[4,36,2,4,1],"span":[669,11,23]},{"path":[4,36,2,4,3],"span":[669,26,27]},{"path":[4,36,2,5],"span":[670,4,31]},{"path":[4,36,2,5,5],"span":[670,4,10]},{"path":[4,36,2,5,1],"span":[670,11,26]},{"path":[4,36,2,5,3],"span":[670,29,30]},{"path":[4,36,2,6],"span":[671,4,23]},{"path":[4,36,2,6,5],"span":[671,4,10]},{"path":[4,36,2,6,1],"span":[671,11,18]},{"path":[4,36,2,6,3],"span":[671,21,22]},{"path":[4,36,2,7],"span":[672,4,32]},{"path":[4,36,2,7,4],"span":[672,4,12]},{"path":[4,36,2,7,5],"span":[672,13,18]},{"path":[4,36,2,7,1],"span":[672,19,27]},{"path":[4,36,2,7,3],"span":[672,30,31]},{"path":[4,36,2,8],"span":[673,4,33]},{"path":[4,36,2,8,4],"span":[673,4,12]},{"path":[4,36,2,8,5],"span":[673,13,19]},{"path":[4,36,2,8,1],"span":[673,20,28]},{"path":[4,36,2,8,3],"span":[673,31,32]},{"path":[4,36,2,9],"span":[674,4,39]},{"path":[4,36,2,9,4],"span":[674,4,12]},{"path":[4,36,2,9,6],"span":[674,13,24]},{"path":[4,36,2,9,1],"span":[674,25,33]},{"path":[4,36,2,9,3],"span":[674,36,38]},{"path":[4,36,2,10],"span":[675,4,32]},{"path":[4,36,2,10,4],"span":[675,4,12]},{"path":[4,36,2,10,5],"span":[675,13,17]},{"path":[4,36,2,10,1],"span":[675,18,26]},{"path":[4,36,2,10,3],"span":[675,29,31]},{"path":[4,36,2,11],"span":[676,4,38]},{"path":[4,36,2,11,4],"span":[676,4,12]},{"path":[4,36,2,11,5],"span":[676,13,19]},{"path":[4,36,2,11,1],"span":[676,20,32]},{"path":[4,36,2,11,3],"span":[676,35,37]},{"path":[4,36,2,12],"span":[677,4,38]},{"path":[4,36,2,12,4],"span":[677,4,12]},{"path":[4,36,2,12,5],"span":[677,13,19]},{"path":[4,36,2,12,1],"span":[677,20,32]},{"path":[4,36,2,12,3],"span":[677,35,37]},{"path":[4,36,2,13],"span":[678,4,35]},{"path":[4,36,2,13,4],"span":[678,4,12]},{"path":[4,36,2,13,5],"span":[678,13,19]},{"path":[4,36,2,13,1],"span":[678,20,29]},{"path":[4,36,2,13,3],"span":[678,32,34]},{"path":[4,36,2,14],"span":[679,4,43]},{"path":[4,36,2,14,4],"span":[679,4,12]},{"path":[4,36,2,14,6],"span":[679,13,29]},{"path":[4,36,2,14,1],"span":[679,30,37]},{"path":[4,36,2,14,3],"span":[679,40,42]},{"path":[4,36,2,15],"span":[680,4,28]},{"path":[4,36,2,15,5],"span":[680,4,10]},{"path":[4,36,2,15,1],"span":[680,11,22]},{"path":[4,36,2,15,3],"span":[680,25,27]},{"path":[4,36,2,16],"span":[681,4,39]},{"path":[4,36,2,16,4],"span":[681,4,12]},{"path":[4,36,2,16,5],"span":[681,13,19]},{"path":[4,36,2,16,1],"span":[681,20,33]},{"path":[4,36,2,16,3],"span":[681,36,38]},{"path":[4,37],"span":[685,0,690,1]},{"path":[4,37,1],"span":[685,8,25]},{"path":[4,37,2,0],"span":[686,2,40]},{"path":[4,37,2,0,4],"span":[686,2,10]},{"path":[4,37,2,0,5],"span":[686,11,16]},{"path":[4,37,2,0,1],"span":[686,17,35]},{"path":[4,37,2,0,3],"span":[686,38,39]},{"path":[4,37,2,1],"span":[687,2,39]},{"path":[4,37,2,1,4],"span":[687,2,10]},{"path":[4,37,2,1,5],"span":[687,11,16]},{"path":[4,37,2,1,1],"span":[687,17,34]},{"path":[4,37,2,1,3],"span":[687,37,38]},{"path":[4,37,2,2],"span":[688,2,44]},{"path":[4,37,2,2,4],"span":[688,2,10]},{"path":[4,37,2,2,5],"span":[688,11,16]},{"path":[4,37,2,2,1],"span":[688,17,39]},{"path":[4,37,2,2,3],"span":[688,42,43]},{"path":[4,37,2,3],"span":[689,2,27]},{"path":[4,37,2,3,4],"span":[689,2,10]},{"path":[4,37,2,3,5],"span":[689,11,17]},{"path":[4,37,2,3,1],"span":[689,18,22]},{"path":[4,37,2,3,3],"span":[689,25,26]},{"path":[4,38],"span":[692,0,716,1]},{"path":[4,38,1],"span":[692,8,24]},{"path":[4,38,4,0],"span":[693,2,702,3]},{"path":[4,38,4,0,1],"span":[693,7,19]},{"path":[4,38,4,0,2,0],"span":[694,4,25]},{"path":[4,38,4,0,2,0,1],"span":[694,4,20]},{"path":[4,38,4,0,2,0,2],"span":[694,23,24]},{"path":[4,38,4,0,2,1],"span":[695,4,16]},{"path":[4,38,4,0,2,1,1],"span":[695,4,11]},{"path":[4,38,4,0,2,1,2],"span":[695,14,15]},{"path":[4,38,4,0,2,2],"span":[696,4,22]},{"path":[4,38,4,0,2,2,1],"span":[696,4,17]},{"path":[4,38,4,0,2,2,2],"span":[696,20,21]},{"path":[4,38,4,0,2,3],"span":[697,4,21]},{"path":[4,38,4,0,2,3,1],"span":[697,4,16]},{"path":[4,38,4,0,2,3,2],"span":[697,19,20]},{"path":[4,38,4,0,2,4],"span":[698,4,16]},{"path":[4,38,4,0,2,4,1],"span":[698,4,11]},{"path":[4,38,4,0,2,4,2],"span":[698,14,15]},{"path":[4,38,4,0,2,5],"span":[699,4,25]},{"path":[4,38,4,0,2,5,1],"span":[699,4,20]},{"path":[4,38,4,0,2,5,2],"span":[699,23,24]},{"path":[4,38,4,0,2,6],"span":[700,4,22]},{"path":[4,38,4,0,2,6,1],"span":[700,4,17]},{"path":[4,38,4,0,2,6,2],"span":[700,20,21]},{"path":[4,38,4,0,2,7],"span":[701,4,15]},{"path":[4,38,4,0,2,7,1],"span":[701,4,10]},{"path":[4,38,4,0,2,7,2],"span":[701,13,14]},{"path":[4,38,4,1],"span":[704,2,710,3]},{"path":[4,38,4,1,1],"span":[704,7,25]},{"path":[4,38,4,1,2,0],"span":[705,4,32]},{"path":[4,38,4,1,2,0,1],"span":[705,4,27]},{"path":[4,38,4,1,2,0,2],"span":[705,30,31]},{"path":[4,38,4,1,2,1],"span":[706,4,27]},{"path":[4,38,4,1,2,1,1],"span":[706,4,22]},{"path":[4,38,4,1,2,1,2],"span":[706,25,26]},{"path":[4,38,4,1,2,2],"span":[707,4,18]},{"path":[4,38,4,1,2,2,1],"span":[707,4,13]},{"path":[4,38,4,1,2,2,2],"span":[707,16,17]},{"path":[4,38,4,1,2,3],"span":[708,4,15]},{"path":[4,38,4,1,2,3,1],"span":[708,4,10]},{"path":[4,38,4,1,2,3,2],"span":[708,13,14]},{"path":[4,38,4,1,2,4],"span":[709,4,17]},{"path":[4,38,4,1,2,4,1],"span":[709,4,12]},{"path":[4,38,4,1,2,4,2],"span":[709,15,16]},{"path":[4,38,2,0],"span":[712,2,34]},{"path":[4,38,2,0,4],"span":[712,2,10]},{"path":[4,38,2,0,6],"span":[712,11,23]},{"path":[4,38,2,0,1],"span":[712,24,29]},{"path":[4,38,2,0,3],"span":[712,32,33]},{"path":[4,38,2,1],"span":[713,2,47]},{"path":[4,38,2,1,4],"span":[713,2,10]},{"path":[4,38,2,1,6],"span":[713,11,29]},{"path":[4,38,2,1,1],"span":[713,30,42]},{"path":[4,38,2,1,3],"span":[713,45,46]},{"path":[4,38,2,2],"span":[714,2,27]},{"path":[4,38,2,2,4],"span":[714,2,10]},{"path":[4,38,2,2,5],"span":[714,11,17]},{"path":[4,38,2,2,1],"span":[714,18,22]},{"path":[4,38,2,2,3],"span":[714,25,26]},{"path":[4,38,2,3],"span":[715,2,34]},{"path":[4,38,2,3,4],"span":[715,2,10]},{"path":[4,38,2,3,5],"span":[715,11,17]},{"path":[4,38,2,3,1],"span":[715,18,29]},{"path":[4,38,2,3,3],"span":[715,32,33]},{"path":[4,39],"span":[718,0,721,1]},{"path":[4,39,1],"span":[718,8,24]},{"path":[4,39,2,0],"span":[719,2,27]},{"path":[4,39,2,0,4],"span":[719,2,10]},{"path":[4,39,2,0,5],"span":[719,11,17]},{"path":[4,39,2,0,1],"span":[719,18,22]},{"path":[4,39,2,0,3],"span":[719,25,26]},{"path":[4,39,2,1],"span":[720,2,50]},{"path":[4,39,2,1,4],"span":[720,2,10]},{"path":[4,39,2,1,6],"span":[720,11,31]},{"path":[4,39,2,1,1],"span":[720,32,45]},{"path":[4,39,2,1,3],"span":[720,48,49]},{"path":[4,40],"span":[723,0,725,1]},{"path":[4,40,1],"span":[723,8,28]},{"path":[4,40,2,0],"span":[724,2,27]},{"path":[4,40,2,0,4],"span":[724,2,10]},{"path":[4,40,2,0,5],"span":[724,11,17]},{"path":[4,40,2,0,1],"span":[724,18,22]},{"path":[4,40,2,0,3],"span":[724,25,26]},{"path":[4,41],"span":[730,1,743,1],"leadingComments":"\n Log entry for windows sql server change log, tracking install, uninstall and update.\n"},{"path":[4,41,1],"span":[730,9,36]},{"path":[4,41,4,0],"span":[731,2,735,3]},{"path":[4,41,4,0,1],"span":[731,7,16]},{"path":[4,41,4,0,2,0],"span":[732,4,16]},{"path":[4,41,4,0,2,0,1],"span":[732,4,11]},{"path":[4,41,4,0,2,0,2],"span":[732,14,15]},{"path":[4,41,4,0,2,1],"span":[733,4,18]},{"path":[4,41,4,0,2,1,1],"span":[733,4,13]},{"path":[4,41,4,0,2,1,2],"span":[733,16,17]},{"path":[4,41,4,0,2,2],"span":[734,4,15]},{"path":[4,41,4,0,2,2,1],"span":[734,4,10]},{"path":[4,41,4,0,2,2,2],"span":[734,13,14]},{"path":[4,41,2,0],"span":[737,2,27]},{"path":[4,41,2,0,6],"span":[737,2,11]},{"path":[4,41,2,0,1],"span":[737,12,22]},{"path":[4,41,2,0,3],"span":[737,25,26]},{"path":[4,41,2,1],"span":[739,2,38]},{"path":[4,41,2,1,6],"span":[739,2,27]},{"path":[4,41,2,1,1],"span":[739,28,33]},{"path":[4,41,2,1,3],"span":[739,36,37]},{"path":[4,41,2,2],"span":[740,2,45]},{"path":[4,41,2,2,4],"span":[740,2,10]},{"path":[4,41,2,2,6],"span":[740,11,36]},{"path":[4,41,2,2,1],"span":[740,37,40]},{"path":[4,41,2,2,3],"span":[740,43,44]},{"path":[4,41,2,3],"span":[742,2,42]},{"path":[4,41,2,3,6],"span":[742,2,18]},{"path":[4,41,2,3,1],"span":[742,19,37]},{"path":[4,41,2,3,3],"span":[742,40,41]},{"path":[4,42],"span":[748,0,782,1],"leadingComments":"\n General section for any HW, normalized and with raw data.\n"},{"path":[4,42,1],"span":[748,8,20]},{"path":[4,42,2,0],"span":[749,2,29]},{"path":[4,42,2,0,4],"span":[749,2,10]},{"path":[4,42,2,0,5],"span":[749,11,16]},{"path":[4,42,2,0,1],"span":[749,17,24]},{"path":[4,42,2,0,3],"span":[749,27,28]},{"path":[4,42,2,1],"span":[752,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,42,2,1,4],"span":[752,2,10]},{"path":[4,42,2,1,5],"span":[752,11,16]},{"path":[4,42,2,1,1],"span":[752,17,24]},{"path":[4,42,2,1,3],"span":[752,27,28]},{"path":[4,42,2,2],"span":[755,2,30],"leadingComments":" catalog id of: CatalogModel\n"},{"path":[4,42,2,2,4],"span":[755,2,10]},{"path":[4,42,2,2,5],"span":[755,11,16]},{"path":[4,42,2,2,1],"span":[755,17,25]},{"path":[4,42,2,2,3],"span":[755,28,29]},{"path":[4,42,2,3],"span":[758,2,31],"leadingComments":" catalog id of: CatalogModel\n"},{"path":[4,42,2,3,4],"span":[758,2,10]},{"path":[4,42,2,3,5],"span":[758,11,16]},{"path":[4,42,2,3,1],"span":[758,17,26]},{"path":[4,42,2,3,3],"span":[758,29,30]},{"path":[4,42,2,4],"span":[760,2,30]},{"path":[4,42,2,4,4],"span":[760,2,10]},{"path":[4,42,2,4,5],"span":[760,11,15]},{"path":[4,42,2,4,1],"span":[760,16,25]},{"path":[4,42,2,4,3],"span":[760,28,29]},{"path":[4,42,2,5],"span":[761,2,29]},{"path":[4,42,2,5,4],"span":[761,2,10]},{"path":[4,42,2,5,5],"span":[761,11,17]},{"path":[4,42,2,5,1],"span":[761,18,24]},{"path":[4,42,2,5,3],"span":[761,27,28]},{"path":[4,42,2,6],"span":[763,2,33],"trailingComments":" e.g.: \"SMART_HOME\"\n"},{"path":[4,42,2,6,4],"span":[763,2,10]},{"path":[4,42,2,6,5],"span":[763,11,17]},{"path":[4,42,2,6,1],"span":[763,18,27]},{"path":[4,42,2,6,3],"span":[763,30,32]},{"path":[4,42,2,7],"span":[764,2,36],"trailingComments":" e.g.: \"Smart Device\"\n"},{"path":[4,42,2,7,4],"span":[764,2,10]},{"path":[4,42,2,7,5],"span":[764,11,17]},{"path":[4,42,2,7,1],"span":[764,18,30]},{"path":[4,42,2,7,3],"span":[764,33,35]},{"path":[4,42,2,8],"span":[765,2,34],"trailingComments":" e.g.: \"Smart Home\"\n"},{"path":[4,42,2,8,4],"span":[765,2,10]},{"path":[4,42,2,8,5],"span":[765,11,17]},{"path":[4,42,2,8,1],"span":[765,18,28]},{"path":[4,42,2,8,3],"span":[765,31,33]},{"path":[4,42,2,9],"span":[767,2,33]},{"path":[4,42,2,9,4],"span":[767,2,10]},{"path":[4,42,2,9,5],"span":[767,11,17]},{"path":[4,42,2,9,1],"span":[767,18,27]},{"path":[4,42,2,9,3],"span":[767,30,32]},{"path":[4,42,2,10],"span":[768,2,34]},{"path":[4,42,2,10,4],"span":[768,2,10]},{"path":[4,42,2,10,5],"span":[768,11,17]},{"path":[4,42,2,10,1],"span":[768,18,28]},{"path":[4,42,2,10,3],"span":[768,31,33]},{"path":[4,42,2,11],"span":[769,2,35]},{"path":[4,42,2,11,4],"span":[769,2,10]},{"path":[4,42,2,11,5],"span":[769,11,17]},{"path":[4,42,2,11,1],"span":[769,18,29]},{"path":[4,42,2,11,3],"span":[769,32,34]},{"path":[4,42,2,12],"span":[771,2,27]},{"path":[4,42,2,12,4],"span":[771,2,10]},{"path":[4,42,2,12,5],"span":[771,11,17]},{"path":[4,42,2,12,1],"span":[771,18,21]},{"path":[4,42,2,12,3],"span":[771,24,26]},{"path":[4,42,2,13],"span":[772,2,27]},{"path":[4,42,2,13,4],"span":[772,2,10]},{"path":[4,42,2,13,5],"span":[772,11,16]},{"path":[4,42,2,13,1],"span":[772,17,21]},{"path":[4,42,2,13,3],"span":[772,24,26]},{"path":[4,42,2,14],"span":[774,2,38]},{"path":[4,42,2,14,4],"span":[774,2,10]},{"path":[4,42,2,14,6],"span":[774,11,27]},{"path":[4,42,2,14,1],"span":[774,28,32]},{"path":[4,42,2,14,3],"span":[774,35,37]},{"path":[4,42,2,15],"span":[777,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,42,2,15,4],"span":[777,2,10]},{"path":[4,42,2,15,6],"span":[777,11,23]},{"path":[4,42,2,15,1],"span":[777,24,37]},{"path":[4,42,2,15,3],"span":[777,40,42]},{"path":[4,42,2,16],"span":[779,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,42,2,16,4],"span":[779,2,10]},{"path":[4,42,2,16,6],"span":[779,11,23]},{"path":[4,42,2,16,1],"span":[779,24,37]},{"path":[4,42,2,16,3],"span":[779,40,42]},{"path":[4,42,2,17],"span":[781,2,44],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,42,2,17,4],"span":[781,2,10]},{"path":[4,42,2,17,6],"span":[781,11,23]},{"path":[4,42,2,17,1],"span":[781,24,38]},{"path":[4,42,2,17,3],"span":[781,41,43]},{"path":[4,43],"span":[784,0,795,1]},{"path":[4,43,1],"span":[784,8,24]},{"path":[4,43,2,0],"span":[785,2,35]},{"path":[4,43,2,0,4],"span":[785,2,10]},{"path":[4,43,2,0,5],"span":[785,11,17]},{"path":[4,43,2,0,1],"span":[785,18,30]},{"path":[4,43,2,0,3],"span":[785,33,34]},{"path":[4,43,2,1],"span":[786,2,28]},{"path":[4,43,2,1,4],"span":[786,2,10]},{"path":[4,43,2,1,5],"span":[786,11,17]},{"path":[4,43,2,1,1],"span":[786,18,23]},{"path":[4,43,2,1,3],"span":[786,26,27]},{"path":[4,43,2,2],"span":[787,2,35]},{"path":[4,43,2,2,4],"span":[787,2,10]},{"path":[4,43,2,2,5],"span":[787,11,17]},{"path":[4,43,2,2,1],"span":[787,18,30]},{"path":[4,43,2,2,3],"span":[787,33,34]},{"path":[4,43,2,3],"span":[788,2,36]},{"path":[4,43,2,3,4],"span":[788,2,10]},{"path":[4,43,2,3,5],"span":[788,11,17]},{"path":[4,43,2,3,1],"span":[788,18,31]},{"path":[4,43,2,3,3],"span":[788,34,35]},{"path":[4,43,2,4],"span":[789,2,33]},{"path":[4,43,2,4,4],"span":[789,2,10]},{"path":[4,43,2,4,5],"span":[789,11,17]},{"path":[4,43,2,4,1],"span":[789,18,28]},{"path":[4,43,2,4,3],"span":[789,31,32]},{"path":[4,43,2,5],"span":[790,2,29]},{"path":[4,43,2,5,4],"span":[790,2,10]},{"path":[4,43,2,5,5],"span":[790,11,16]},{"path":[4,43,2,5,1],"span":[790,18,24]},{"path":[4,43,2,5,3],"span":[790,27,28]},{"path":[4,43,2,6],"span":[791,2,32],"trailingComments":" mac\n"},{"path":[4,43,2,6,4],"span":[791,2,10]},{"path":[4,43,2,6,5],"span":[791,11,17]},{"path":[4,43,2,6,1],"span":[791,18,27]},{"path":[4,43,2,6,3],"span":[791,30,31]},{"path":[4,43,2,7],"span":[792,2,39],"trailingComments":" mac\n"},{"path":[4,43,2,7,4],"span":[792,2,10]},{"path":[4,43,2,7,5],"span":[792,11,17]},{"path":[4,43,2,7,1],"span":[792,18,34]},{"path":[4,43,2,7,3],"span":[792,37,38]},{"path":[4,43,2,8],"span":[793,2,41],"trailingComments":" mac\n"},{"path":[4,43,2,8,4],"span":[793,2,10]},{"path":[4,43,2,8,5],"span":[793,11,17]},{"path":[4,43,2,8,1],"span":[793,18,36]},{"path":[4,43,2,8,3],"span":[793,39,40]},{"path":[4,44],"span":[799,0,822,1]},{"path":[4,44,1],"span":[799,8,23]},{"path":[4,44,2,0],"span":[801,2,24],"leadingComments":" catalog id of: CatalogOs\n"},{"path":[4,44,2,0,4],"span":[801,2,10]},{"path":[4,44,2,0,5],"span":[801,11,16]},{"path":[4,44,2,0,1],"span":[801,17,19]},{"path":[4,44,2,0,3],"span":[801,22,23]},{"path":[4,44,2,1],"span":[804,2,30],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,44,2,1,4],"span":[804,2,10]},{"path":[4,44,2,1,5],"span":[804,11,16]},{"path":[4,44,2,1,1],"span":[804,17,24]},{"path":[4,44,2,1,3],"span":[804,27,29]},{"path":[4,44,2,2],"span":[806,2,27]},{"path":[4,44,2,2,4],"span":[806,2,10]},{"path":[4,44,2,2,5],"span":[806,11,17]},{"path":[4,44,2,2,1],"span":[806,18,22]},{"path":[4,44,2,2,3],"span":[806,25,26]},{"path":[4,44,2,3],"span":[807,2,30]},{"path":[4,44,2,3,4],"span":[807,2,10]},{"path":[4,44,2,3,5],"span":[807,11,17]},{"path":[4,44,2,3,1],"span":[807,18,25]},{"path":[4,44,2,3,3],"span":[807,28,29]},{"path":[4,44,2,4],"span":[808,2,28]},{"path":[4,44,2,4,4],"span":[808,2,10]},{"path":[4,44,2,4,5],"span":[808,11,17]},{"path":[4,44,2,4,1],"span":[808,18,23]},{"path":[4,44,2,4,3],"span":[808,26,27]},{"path":[4,44,2,5],"span":[810,2,33]},{"path":[4,44,2,5,4],"span":[810,2,10]},{"path":[4,44,2,5,5],"span":[810,11,17]},{"path":[4,44,2,5,1],"span":[810,18,28]},{"path":[4,44,2,5,3],"span":[810,31,32]},{"path":[4,44,2,6],"span":[812,2,26]},{"path":[4,44,2,6,4],"span":[812,2,10]},{"path":[4,44,2,6,5],"span":[812,11,17]},{"path":[4,44,2,6,1],"span":[812,18,21]},{"path":[4,44,2,6,3],"span":[812,24,25]},{"path":[4,44,2,7],"span":[813,2,29]},{"path":[4,44,2,7,4],"span":[813,2,10]},{"path":[4,44,2,7,5],"span":[813,11,17]},{"path":[4,44,2,7,1],"span":[813,18,24]},{"path":[4,44,2,7,3],"span":[813,27,28]},{"path":[4,44,2,8],"span":[815,2,26]},{"path":[4,44,2,8,4],"span":[815,2,10]},{"path":[4,44,2,8,5],"span":[815,11,16]},{"path":[4,44,2,8,1],"span":[815,17,21]},{"path":[4,44,2,8,3],"span":[815,24,25]},{"path":[4,44,8,0],"span":[817,2,821,3]},{"path":[4,44,8,0,1],"span":[817,8,12]},{"path":[4,44,2,9],"span":[818,4,44]},{"path":[4,44,2,9,6],"span":[818,4,30]},{"path":[4,44,2,9,1],"span":[818,31,38]},{"path":[4,44,2,9,3],"span":[818,41,43]},{"path":[4,44,2,10],"span":[819,4,36]},{"path":[4,44,2,10,6],"span":[819,4,26]},{"path":[4,44,2,10,1],"span":[819,27,30]},{"path":[4,44,2,10,3],"span":[819,33,35]},{"path":[4,44,2,11],"span":[820,4,40]},{"path":[4,44,2,11,6],"span":[820,4,28]},{"path":[4,44,2,11,1],"span":[820,29,34]},{"path":[4,44,2,11,3],"span":[820,37,39]},{"path":[4,45],"span":[824,0,835,1]},{"path":[4,45,1],"span":[824,8,30]},{"path":[4,45,2,0],"span":[825,2,37]},{"path":[4,45,2,0,4],"span":[825,2,10]},{"path":[4,45,2,0,5],"span":[825,11,17]},{"path":[4,45,2,0,1],"span":[825,18,32]},{"path":[4,45,2,0,3],"span":[825,35,36]},{"path":[4,45,2,1],"span":[826,2,37]},{"path":[4,45,2,1,4],"span":[826,2,10]},{"path":[4,45,2,1,5],"span":[826,11,17]},{"path":[4,45,2,1,1],"span":[826,18,32]},{"path":[4,45,2,1,3],"span":[826,35,36]},{"path":[4,45,2,2],"span":[827,2,34]},{"path":[4,45,2,2,4],"span":[827,2,10]},{"path":[4,45,2,2,5],"span":[827,11,17]},{"path":[4,45,2,2,1],"span":[827,18,29]},{"path":[4,45,2,2,3],"span":[827,32,33]},{"path":[4,45,2,3],"span":[828,2,32]},{"path":[4,45,2,3,4],"span":[828,2,10]},{"path":[4,45,2,3,5],"span":[828,11,17]},{"path":[4,45,2,3,1],"span":[828,18,27]},{"path":[4,45,2,3,3],"span":[828,30,31]},{"path":[4,45,2,4],"span":[829,2,36]},{"path":[4,45,2,4,4],"span":[829,2,10]},{"path":[4,45,2,4,5],"span":[829,11,17]},{"path":[4,45,2,4,1],"span":[829,18,31]},{"path":[4,45,2,4,3],"span":[829,34,35]},{"path":[4,45,2,5],"span":[830,2,32]},{"path":[4,45,2,5,4],"span":[830,2,10]},{"path":[4,45,2,5,5],"span":[830,11,17]},{"path":[4,45,2,5,1],"span":[830,18,27]},{"path":[4,45,2,5,3],"span":[830,30,31]},{"path":[4,45,2,6],"span":[831,2,30]},{"path":[4,45,2,6,4],"span":[831,2,10]},{"path":[4,45,2,6,5],"span":[831,11,17]},{"path":[4,45,2,6,1],"span":[831,18,25]},{"path":[4,45,2,6,3],"span":[831,28,29]},{"path":[4,45,2,7],"span":[832,2,44]},{"path":[4,45,2,7,4],"span":[832,2,10]},{"path":[4,45,2,7,5],"span":[832,11,17]},{"path":[4,45,2,7,1],"span":[832,18,39]},{"path":[4,45,2,7,3],"span":[832,42,43]},{"path":[4,45,2,8],"span":[833,2,53]},{"path":[4,45,2,8,4],"span":[833,2,10]},{"path":[4,45,2,8,5],"span":[833,11,17]},{"path":[4,45,2,8,1],"span":[833,18,48]},{"path":[4,45,2,8,3],"span":[833,51,52]},{"path":[4,45,2,9],"span":[834,2,40]},{"path":[4,45,2,9,4],"span":[834,2,10]},{"path":[4,45,2,9,5],"span":[834,11,17]},{"path":[4,45,2,9,1],"span":[834,18,34]},{"path":[4,45,2,9,3],"span":[834,37,39]},{"path":[4,46],"span":[837,0,843,1]},{"path":[4,46,1],"span":[837,8,32]},{"path":[4,46,2,0],"span":[838,2,34]},{"path":[4,46,2,0,4],"span":[838,2,10]},{"path":[4,46,2,0,5],"span":[838,11,17]},{"path":[4,46,2,0,1],"span":[838,18,29]},{"path":[4,46,2,0,3],"span":[838,32,33]},{"path":[4,46,2,1],"span":[839,2,37]},{"path":[4,46,2,1,4],"span":[839,2,10]},{"path":[4,46,2,1,5],"span":[839,11,17]},{"path":[4,46,2,1,1],"span":[839,18,32]},{"path":[4,46,2,1,3],"span":[839,35,36]},{"path":[4,46,2,2],"span":[840,2,37]},{"path":[4,46,2,2,4],"span":[840,2,10]},{"path":[4,46,2,2,5],"span":[840,11,17]},{"path":[4,46,2,2,1],"span":[840,18,32]},{"path":[4,46,2,2,3],"span":[840,35,36]},{"path":[4,46,2,3],"span":[841,2,35]},{"path":[4,46,2,3,4],"span":[841,2,10]},{"path":[4,46,2,3,5],"span":[841,11,17]},{"path":[4,46,2,3,1],"span":[841,18,30]},{"path":[4,46,2,3,3],"span":[841,33,34]},{"path":[4,46,2,4],"span":[842,2,33]},{"path":[4,46,2,4,4],"span":[842,2,10]},{"path":[4,46,2,4,5],"span":[842,11,17]},{"path":[4,46,2,4,1],"span":[842,18,28]},{"path":[4,46,2,4,3],"span":[842,31,32]},{"path":[4,47],"span":[845,0,898,1]},{"path":[4,47,1],"span":[845,8,34]},{"path":[4,47,2,0],"span":[846,2,30]},{"path":[4,47,2,0,4],"span":[846,2,10]},{"path":[4,47,2,0,5],"span":[846,11,17]},{"path":[4,47,2,0,1],"span":[846,18,25]},{"path":[4,47,2,0,3],"span":[846,28,29]},{"path":[4,47,2,1],"span":[847,2,34]},{"path":[4,47,2,1,4],"span":[847,2,10]},{"path":[4,47,2,1,5],"span":[847,11,16]},{"path":[4,47,2,1,1],"span":[847,17,29]},{"path":[4,47,2,1,3],"span":[847,32,33]},{"path":[4,47,2,2],"span":[848,2,28],"trailingComments":" \"WindowsVersion\": \"10.0.19045\"\n"},{"path":[4,47,2,2,4],"span":[848,2,10]},{"path":[4,47,2,2,5],"span":[848,11,17]},{"path":[4,47,2,2,1],"span":[848,18,23]},{"path":[4,47,2,2,3],"span":[848,26,27]},{"path":[4,47,2,3],"span":[849,2,35],"trailingComments":" OsVersion\": \"22H2\",\n"},{"path":[4,47,2,3,4],"span":[849,2,10]},{"path":[4,47,2,3,5],"span":[849,11,17]},{"path":[4,47,2,3,1],"span":[849,18,30]},{"path":[4,47,2,3,3],"span":[849,33,34]},{"path":[4,47,2,4],"span":[850,2,41]},{"path":[4,47,2,4,4],"span":[850,2,10]},{"path":[4,47,2,4,5],"span":[850,11,15]},{"path":[4,47,2,4,1],"span":[850,16,36]},{"path":[4,47,2,4,3],"span":[850,39,40]},{"path":[4,47,2,5],"span":[851,2,35]},{"path":[4,47,2,5,4],"span":[851,2,10]},{"path":[4,47,2,5,5],"span":[851,11,15]},{"path":[4,47,2,5,1],"span":[851,16,30]},{"path":[4,47,2,5,3],"span":[851,33,34]},{"path":[4,47,2,6],"span":[852,2,39]},{"path":[4,47,2,6,4],"span":[852,2,10]},{"path":[4,47,2,6,5],"span":[852,11,15]},{"path":[4,47,2,6,1],"span":[852,16,34]},{"path":[4,47,2,6,3],"span":[852,37,38]},{"path":[4,47,2,7],"span":[854,2,31],"trailingComments":" \"OsCode\": \"10.0.19045\" - with S if server\n"},{"path":[4,47,2,7,4],"span":[854,2,10]},{"path":[4,47,2,7,5],"span":[854,11,17]},{"path":[4,47,2,7,1],"span":[854,18,25]},{"path":[4,47,2,7,3],"span":[854,28,30]},{"path":[4,47,2,8],"span":[856,2,35]},{"path":[4,47,2,8,4],"span":[856,2,10]},{"path":[4,47,2,8,5],"span":[856,11,17]},{"path":[4,47,2,8,1],"span":[856,18,29]},{"path":[4,47,2,8,3],"span":[856,32,34]},{"path":[4,47,2,9],"span":[857,2,36],"trailingComments":" \"OsBuildNumber\": \"2486\",\n"},{"path":[4,47,2,9,4],"span":[857,2,10]},{"path":[4,47,2,9,5],"span":[857,11,17]},{"path":[4,47,2,9,1],"span":[857,18,30]},{"path":[4,47,2,9,3],"span":[857,33,35]},{"path":[4,47,2,10],"span":[858,2,34]},{"path":[4,47,2,10,4],"span":[858,2,10]},{"path":[4,47,2,10,5],"span":[858,11,17]},{"path":[4,47,2,10,1],"span":[858,18,28]},{"path":[4,47,2,10,3],"span":[858,31,33]},{"path":[4,47,2,11],"span":[859,2,31]},{"path":[4,47,2,11,4],"span":[859,2,10]},{"path":[4,47,2,11,5],"span":[859,11,17]},{"path":[4,47,2,11,1],"span":[859,18,25]},{"path":[4,47,2,11,3],"span":[859,28,30]},{"path":[4,47,2,12],"span":[860,2,32]},{"path":[4,47,2,12,4],"span":[860,2,10]},{"path":[4,47,2,12,5],"span":[860,11,17]},{"path":[4,47,2,12,1],"span":[860,18,26]},{"path":[4,47,2,12,3],"span":[860,29,31]},{"path":[4,47,2,13],"span":[861,2,36]},{"path":[4,47,2,13,4],"span":[861,2,10]},{"path":[4,47,2,13,5],"span":[861,11,17]},{"path":[4,47,2,13,1],"span":[861,18,30]},{"path":[4,47,2,13,3],"span":[861,33,35]},{"path":[4,47,2,14],"span":[862,2,35]},{"path":[4,47,2,14,4],"span":[862,2,10]},{"path":[4,47,2,14,5],"span":[862,11,17]},{"path":[4,47,2,14,1],"span":[862,18,29]},{"path":[4,47,2,14,3],"span":[862,32,34]},{"path":[4,47,2,15],"span":[863,2,39]},{"path":[4,47,2,15,4],"span":[863,2,10]},{"path":[4,47,2,15,5],"span":[863,11,16]},{"path":[4,47,2,15,1],"span":[863,17,33]},{"path":[4,47,2,15,3],"span":[863,36,38]},{"path":[4,47,2,16],"span":[864,2,27]},{"path":[4,47,2,16,4],"span":[864,2,10]},{"path":[4,47,2,16,5],"span":[864,11,15]},{"path":[4,47,2,16,1],"span":[864,16,21]},{"path":[4,47,2,16,3],"span":[864,24,26]},{"path":[4,47,2,17],"span":[865,2,35]},{"path":[4,47,2,17,4],"span":[865,2,10]},{"path":[4,47,2,17,5],"span":[865,11,17]},{"path":[4,47,2,17,1],"span":[865,18,29]},{"path":[4,47,2,17,3],"span":[865,32,34]},{"path":[4,47,2,18],"span":[866,2,52]},{"path":[4,47,2,18,4],"span":[866,2,10]},{"path":[4,47,2,18,5],"span":[866,11,17]},{"path":[4,47,2,18,1],"span":[866,18,46]},{"path":[4,47,2,18,3],"span":[866,49,51]},{"path":[4,47,2,19],"span":[867,2,55]},{"path":[4,47,2,19,4],"span":[867,2,10]},{"path":[4,47,2,19,6],"span":[867,11,36]},{"path":[4,47,2,19,1],"span":[867,37,49]},{"path":[4,47,2,19,3],"span":[867,52,54]},{"path":[4,47,2,20],"span":[868,2,47]},{"path":[4,47,2,20,4],"span":[868,2,10]},{"path":[4,47,2,20,5],"span":[868,11,17]},{"path":[4,47,2,20,1],"span":[868,18,41]},{"path":[4,47,2,20,3],"span":[868,44,46]},{"path":[4,47,2,21],"span":[869,2,48]},{"path":[4,47,2,21,4],"span":[869,2,10]},{"path":[4,47,2,21,5],"span":[869,11,17]},{"path":[4,47,2,21,1],"span":[869,18,42]},{"path":[4,47,2,21,3],"span":[869,45,47]},{"path":[4,47,2,22],"span":[870,2,36]},{"path":[4,47,2,22,4],"span":[870,2,10]},{"path":[4,47,2,22,5],"span":[870,11,17]},{"path":[4,47,2,22,1],"span":[870,18,30]},{"path":[4,47,2,22,3],"span":[870,33,35]},{"path":[4,47,2,23],"span":[871,2,40]},{"path":[4,47,2,23,4],"span":[871,2,10]},{"path":[4,47,2,23,6],"span":[871,11,22]},{"path":[4,47,2,23,1],"span":[871,23,34]},{"path":[4,47,2,23,3],"span":[871,37,39]},{"path":[4,47,2,24],"span":[872,2,45]},{"path":[4,47,2,24,4],"span":[872,2,10]},{"path":[4,47,2,24,6],"span":[872,11,22]},{"path":[4,47,2,24,1],"span":[872,23,39]},{"path":[4,47,2,24,3],"span":[872,42,44]},{"path":[4,47,2,25],"span":[873,2,36]},{"path":[4,47,2,25,4],"span":[873,2,10]},{"path":[4,47,2,25,6],"span":[873,11,22]},{"path":[4,47,2,25,1],"span":[873,23,30]},{"path":[4,47,2,25,3],"span":[873,33,35]},{"path":[4,47,2,26],"span":[874,2,39]},{"path":[4,47,2,26,4],"span":[874,2,10]},{"path":[4,47,2,26,5],"span":[874,11,17]},{"path":[4,47,2,26,1],"span":[874,18,33]},{"path":[4,47,2,26,3],"span":[874,36,38]},{"path":[4,47,2,27],"span":[875,2,43]},{"path":[4,47,2,27,4],"span":[875,2,10]},{"path":[4,47,2,27,5],"span":[875,11,17]},{"path":[4,47,2,27,1],"span":[875,18,37]},{"path":[4,47,2,27,3],"span":[875,40,42]},{"path":[4,47,2,28],"span":[876,2,39]},{"path":[4,47,2,28,4],"span":[876,2,10]},{"path":[4,47,2,28,5],"span":[876,11,17]},{"path":[4,47,2,28,1],"span":[876,18,33]},{"path":[4,47,2,28,3],"span":[876,36,38]},{"path":[4,47,2,29],"span":[877,2,37]},{"path":[4,47,2,29,4],"span":[877,2,10]},{"path":[4,47,2,29,5],"span":[877,11,17]},{"path":[4,47,2,29,1],"span":[877,18,31]},{"path":[4,47,2,29,3],"span":[877,34,36]},{"path":[4,47,2,30],"span":[878,2,50]},{"path":[4,47,2,30,4],"span":[878,2,10]},{"path":[4,47,2,30,5],"span":[878,11,17]},{"path":[4,47,2,30,1],"span":[878,18,44]},{"path":[4,47,2,30,3],"span":[878,47,49]},{"path":[4,47,2,31],"span":[879,2,50]},{"path":[4,47,2,31,4],"span":[879,2,10]},{"path":[4,47,2,31,5],"span":[879,11,17]},{"path":[4,47,2,31,1],"span":[879,18,44]},{"path":[4,47,2,31,3],"span":[879,47,49]},{"path":[4,47,2,32],"span":[880,2,51]},{"path":[4,47,2,32,4],"span":[880,2,10]},{"path":[4,47,2,32,5],"span":[880,11,17]},{"path":[4,47,2,32,1],"span":[880,18,45]},{"path":[4,47,2,32,3],"span":[880,48,50]},{"path":[4,47,2,33],"span":[881,2,30]},{"path":[4,47,2,33,4],"span":[881,2,10]},{"path":[4,47,2,33,5],"span":[881,11,17]},{"path":[4,47,2,33,1],"span":[881,18,24]},{"path":[4,47,2,33,3],"span":[881,27,29]},{"path":[4,47,2,34],"span":[882,2,37]},{"path":[4,47,2,34,4],"span":[882,2,10]},{"path":[4,47,2,34,5],"span":[882,11,17]},{"path":[4,47,2,34,1],"span":[882,18,31]},{"path":[4,47,2,34,3],"span":[882,34,36]},{"path":[4,47,2,35],"span":[883,2,40]},{"path":[4,47,2,35,4],"span":[883,2,10]},{"path":[4,47,2,35,5],"span":[883,11,17]},{"path":[4,47,2,35,1],"span":[883,18,34]},{"path":[4,47,2,35,3],"span":[883,37,39]},{"path":[4,47,2,36],"span":[884,2,49]},{"path":[4,47,2,36,4],"span":[884,2,10]},{"path":[4,47,2,36,5],"span":[884,11,17]},{"path":[4,47,2,36,1],"span":[884,18,43]},{"path":[4,47,2,36,3],"span":[884,46,48]},{"path":[4,47,2,37],"span":[885,2,49]},{"path":[4,47,2,37,4],"span":[885,2,10]},{"path":[4,47,2,37,5],"span":[885,11,17]},{"path":[4,47,2,37,1],"span":[885,18,43]},{"path":[4,47,2,37,3],"span":[885,46,48]},{"path":[4,47,2,38],"span":[886,2,41]},{"path":[4,47,2,38,4],"span":[886,2,10]},{"path":[4,47,2,38,5],"span":[886,11,17]},{"path":[4,47,2,38,1],"span":[886,18,35]},{"path":[4,47,2,38,3],"span":[886,38,40]},{"path":[4,47,2,39],"span":[887,2,45]},{"path":[4,47,2,39,4],"span":[887,2,10]},{"path":[4,47,2,39,5],"span":[887,11,17]},{"path":[4,47,2,39,1],"span":[887,18,39]},{"path":[4,47,2,39,3],"span":[887,42,44]},{"path":[4,47,2,40],"span":[888,2,42]},{"path":[4,47,2,40,4],"span":[888,2,10]},{"path":[4,47,2,40,5],"span":[888,11,17]},{"path":[4,47,2,40,1],"span":[888,18,36]},{"path":[4,47,2,40,3],"span":[888,39,41]},{"path":[4,47,2,41],"span":[889,2,46]},{"path":[4,47,2,41,4],"span":[889,2,10]},{"path":[4,47,2,41,5],"span":[889,11,17]},{"path":[4,47,2,41,1],"span":[889,18,40]},{"path":[4,47,2,41,3],"span":[889,43,45]},{"path":[4,47,2,42],"span":[890,2,41]},{"path":[4,47,2,42,4],"span":[890,2,10]},{"path":[4,47,2,42,6],"span":[890,11,22]},{"path":[4,47,2,42,1],"span":[890,23,35]},{"path":[4,47,2,42,3],"span":[890,38,40]},{"path":[4,47,2,43],"span":[891,2,34]},{"path":[4,47,2,43,4],"span":[891,2,10]},{"path":[4,47,2,43,5],"span":[891,11,17]},{"path":[4,47,2,43,1],"span":[891,18,28]},{"path":[4,47,2,43,3],"span":[891,31,33]},{"path":[4,47,2,44],"span":[892,2,36]},{"path":[4,47,2,44,4],"span":[892,2,10]},{"path":[4,47,2,44,5],"span":[892,11,17]},{"path":[4,47,2,44,1],"span":[892,18,30]},{"path":[4,47,2,44,3],"span":[892,33,35]},{"path":[4,47,2,45],"span":[893,2,40]},{"path":[4,47,2,45,4],"span":[893,2,10]},{"path":[4,47,2,45,5],"span":[893,11,17]},{"path":[4,47,2,45,1],"span":[893,18,34]},{"path":[4,47,2,45,3],"span":[893,37,39]},{"path":[4,47,2,46],"span":[894,2,66]},{"path":[4,47,2,46,4],"span":[894,2,10]},{"path":[4,47,2,46,5],"span":[894,11,15]},{"path":[4,47,2,46,1],"span":[894,16,60]},{"path":[4,47,2,46,3],"span":[894,63,65]},{"path":[4,47,2,47],"span":[895,2,60]},{"path":[4,47,2,47,4],"span":[895,2,10]},{"path":[4,47,2,47,5],"span":[895,11,15]},{"path":[4,47,2,47,1],"span":[895,16,54]},{"path":[4,47,2,47,3],"span":[895,57,59]},{"path":[4,47,2,48],"span":[896,2,55]},{"path":[4,47,2,48,4],"span":[896,2,10]},{"path":[4,47,2,48,5],"span":[896,11,15]},{"path":[4,47,2,48,1],"span":[896,16,49]},{"path":[4,47,2,48,3],"span":[896,52,54]},{"path":[4,47,2,49],"span":[897,2,64]},{"path":[4,47,2,49,4],"span":[897,2,10]},{"path":[4,47,2,49,5],"span":[897,11,17]},{"path":[4,47,2,49,1],"span":[897,18,58]},{"path":[4,47,2,49,3],"span":[897,61,63]},{"path":[4,48],"span":[903,0,918,1],"leadingComments":"\n Log entry for OS change log, tracking install, uninstall and update.\n"},{"path":[4,48,1],"span":[903,8,34]},{"path":[4,48,4,0],"span":[904,2,908,3]},{"path":[4,48,4,0,1],"span":[904,7,16]},{"path":[4,48,4,0,2,0],"span":[905,4,16]},{"path":[4,48,4,0,2,0,1],"span":[905,4,11]},{"path":[4,48,4,0,2,0,2],"span":[905,14,15]},{"path":[4,48,4,0,2,1],"span":[906,4,18]},{"path":[4,48,4,0,2,1,1],"span":[906,4,13]},{"path":[4,48,4,0,2,1,2],"span":[906,16,17]},{"path":[4,48,4,0,2,2],"span":[907,4,15]},{"path":[4,48,4,0,2,2,1],"span":[907,4,10]},{"path":[4,48,4,0,2,2,2],"span":[907,13,14]},{"path":[4,48,2,0],"span":[910,2,27]},{"path":[4,48,2,0,6],"span":[910,2,11]},{"path":[4,48,2,0,1],"span":[910,12,22]},{"path":[4,48,2,0,3],"span":[910,25,26]},{"path":[4,48,2,1],"span":[912,2,38]},{"path":[4,48,2,1,6],"span":[912,2,27]},{"path":[4,48,2,1,1],"span":[912,28,33]},{"path":[4,48,2,1,3],"span":[912,36,37]},{"path":[4,48,2,2],"span":[913,2,45]},{"path":[4,48,2,2,4],"span":[913,2,10]},{"path":[4,48,2,2,6],"span":[913,11,36]},{"path":[4,48,2,2,1],"span":[913,37,40]},{"path":[4,48,2,2,3],"span":[913,43,44]},{"path":[4,48,2,3],"span":[915,2,25]},{"path":[4,48,2,3,6],"span":[915,2,17]},{"path":[4,48,2,3,1],"span":[915,18,20]},{"path":[4,48,2,3,3],"span":[915,23,24]},{"path":[4,48,2,4],"span":[916,2,39]},{"path":[4,48,2,4,4],"span":[916,2,10]},{"path":[4,48,2,4,6],"span":[916,11,26]},{"path":[4,48,2,4,1],"span":[916,27,34]},{"path":[4,48,2,4,3],"span":[916,37,38]},{"path":[4,49],"span":[921,0,924,1],"leadingComments":" OS Feature, i.e. WindowsFeature "},{"path":[4,49,1],"span":[921,8,30]},{"path":[4,49,2,0],"span":[922,2,18]},{"path":[4,49,2,0,5],"span":[922,2,8]},{"path":[4,49,2,0,1],"span":[922,9,13]},{"path":[4,49,2,0,3],"span":[922,16,17]},{"path":[4,49,2,1],"span":[923,2,21]},{"path":[4,49,2,1,5],"span":[923,2,8]},{"path":[4,49,2,1,1],"span":[923,9,16]},{"path":[4,49,2,1,3],"span":[923,19,20]},{"path":[4,50],"span":[927,0,943,1],"leadingComments":" OS Patch, i.e. Windows KB's, aka Hotfix, aka QuickFixEngieering "},{"path":[4,50,1],"span":[927,8,28]},{"path":[4,50,2,0],"span":[929,2,16],"leadingComments":" from hot_fix_id, e.g.: \"KB4570334\"\n"},{"path":[4,50,2,0,5],"span":[929,2,8]},{"path":[4,50,2,0,1],"span":[929,9,11]},{"path":[4,50,2,0,3],"span":[929,14,15]},{"path":[4,50,2,1],"span":[932,2,27],"leadingComments":" from description, e.g.: Security Update\n"},{"path":[4,50,2,1,4],"span":[932,2,10]},{"path":[4,50,2,1,5],"span":[932,11,17]},{"path":[4,50,2,1,1],"span":[932,18,22]},{"path":[4,50,2,1,3],"span":[932,25,26]},{"path":[4,50,2,2],"span":[934,2,54]},{"path":[4,50,2,2,4],"span":[934,2,10]},{"path":[4,50,2,2,6],"span":[934,11,36]},{"path":[4,50,2,2,1],"span":[934,37,49]},{"path":[4,50,2,2,3],"span":[934,52,53]},{"path":[4,50,2,3],"span":[937,2,33],"leadingComments":" e.g.: \"NT AUTHORITY\\\\SYSTEM\"\n"},{"path":[4,50,2,3,4],"span":[937,2,10]},{"path":[4,50,2,3,5],"span":[937,11,17]},{"path":[4,50,2,3,1],"span":[937,18,28]},{"path":[4,50,2,3,3],"span":[937,31,32]},{"path":[4,50,2,4],"span":[939,2,31]},{"path":[4,50,2,4,4],"span":[939,2,10]},{"path":[4,50,2,4,5],"span":[939,11,17]},{"path":[4,50,2,4,1],"span":[939,18,26]},{"path":[4,50,2,4,3],"span":[939,29,30]},{"path":[4,50,2,5],"span":[941,2,43]},{"path":[4,50,2,5,4],"span":[941,2,10]},{"path":[4,50,2,5,5],"span":[941,11,17]},{"path":[4,50,2,5,1],"span":[941,18,38]},{"path":[4,50,2,5,3],"span":[941,41,42]},{"path":[4,51],"span":[946,0,949,1],"leadingComments":" Network Interface cards "},{"path":[4,51,1],"span":[946,8,25]},{"path":[4,51,2,0],"span":[947,2,42]},{"path":[4,51,2,0,6],"span":[947,2,27]},{"path":[4,51,2,0,1],"span":[947,28,37]},{"path":[4,51,2,0,3],"span":[947,40,41]},{"path":[4,51,2,1],"span":[948,2,42]},{"path":[4,51,2,1,4],"span":[948,2,10]},{"path":[4,51,2,1,6],"span":[948,11,27]},{"path":[4,51,2,1,1],"span":[948,28,37]},{"path":[4,51,2,1,3],"span":[948,40,41]},{"path":[4,52],"span":[951,0,974,1]},{"path":[4,52,1],"span":[951,8,24]},{"path":[4,52,2,0],"span":[952,2,18]},{"path":[4,52,2,0,5],"span":[952,2,8]},{"path":[4,52,2,0,1],"span":[952,9,13]},{"path":[4,52,2,0,3],"span":[952,16,17]},{"path":[4,52,2,1],"span":[953,2,18]},{"path":[4,52,2,1,5],"span":[953,2,8]},{"path":[4,52,2,1,1],"span":[953,9,13]},{"path":[4,52,2,1,3],"span":[953,16,17]},{"path":[4,52,2,2],"span":[954,2,22]},{"path":[4,52,2,2,5],"span":[954,2,8]},{"path":[4,52,2,2,1],"span":[954,9,17]},{"path":[4,52,2,2,3],"span":[954,20,21]},{"path":[4,52,2,3],"span":[956,2,25]},{"path":[4,52,2,3,4],"span":[956,2,10]},{"path":[4,52,2,3,5],"span":[956,11,17]},{"path":[4,52,2,3,1],"span":[956,18,20]},{"path":[4,52,2,3,3],"span":[956,23,24]},{"path":[4,52,2,4],"span":[958,2,26]},{"path":[4,52,2,4,4],"span":[958,2,10]},{"path":[4,52,2,4,5],"span":[958,11,17]},{"path":[4,52,2,4,1],"span":[958,18,21]},{"path":[4,52,2,4,3],"span":[958,24,25]},{"path":[4,52,2,5],"span":[960,2,33]},{"path":[4,52,2,5,4],"span":[960,2,10]},{"path":[4,52,2,5,5],"span":[960,11,15]},{"path":[4,52,2,5,1],"span":[960,16,28]},{"path":[4,52,2,5,3],"span":[960,31,32]},{"path":[4,52,2,6],"span":[961,2,37]},{"path":[4,52,2,6,4],"span":[961,2,10]},{"path":[4,52,2,6,5],"span":[961,11,17]},{"path":[4,52,2,6,1],"span":[961,18,32]},{"path":[4,52,2,6,3],"span":[961,35,36]},{"path":[4,52,2,7],"span":[963,2,31]},{"path":[4,52,2,7,4],"span":[963,2,10]},{"path":[4,52,2,7,6],"span":[963,11,23]},{"path":[4,52,2,7,1],"span":[963,24,26]},{"path":[4,52,2,7,3],"span":[963,29,30]},{"path":[4,52,2,8],"span":[965,2,33]},{"path":[4,52,2,8,4],"span":[965,2,10]},{"path":[4,52,2,8,5],"span":[965,11,17]},{"path":[4,52,2,8,1],"span":[965,18,28]},{"path":[4,52,2,8,3],"span":[965,31,32]},{"path":[4,52,2,9],"span":[966,2,35]},{"path":[4,52,2,9,4],"span":[966,2,10]},{"path":[4,52,2,9,5],"span":[966,11,17]},{"path":[4,52,2,9,1],"span":[966,18,29]},{"path":[4,52,2,9,3],"span":[966,32,34]},{"path":[4,52,2,10],"span":[968,2,34]},{"path":[4,52,2,10,4],"span":[968,2,10]},{"path":[4,52,2,10,5],"span":[968,11,17]},{"path":[4,52,2,10,1],"span":[968,18,28]},{"path":[4,52,2,10,3],"span":[968,31,33]},{"path":[4,52,2,11],"span":[969,2,37]},{"path":[4,52,2,11,4],"span":[969,2,10]},{"path":[4,52,2,11,5],"span":[969,11,17]},{"path":[4,52,2,11,1],"span":[969,18,31]},{"path":[4,52,2,11,3],"span":[969,34,36]},{"path":[4,52,2,12],"span":[970,2,54]},{"path":[4,52,2,12,4],"span":[970,2,10]},{"path":[4,52,2,12,5],"span":[970,11,17]},{"path":[4,52,2,12,1],"span":[970,18,48]},{"path":[4,52,2,12,3],"span":[970,51,53]},{"path":[4,52,2,13],"span":[972,2,36]},{"path":[4,52,2,13,4],"span":[972,2,10]},{"path":[4,52,2,13,5],"span":[972,11,17]},{"path":[4,52,2,13,1],"span":[972,18,30]},{"path":[4,52,2,13,3],"span":[972,33,35]},{"path":[4,52,2,14],"span":[973,2,37]},{"path":[4,52,2,14,4],"span":[973,2,10]},{"path":[4,52,2,14,5],"span":[973,11,17]},{"path":[4,52,2,14,1],"span":[973,18,31]},{"path":[4,52,2,14,3],"span":[973,34,36]},{"path":[4,53],"span":[977,0,980,1],"leadingComments":" Network IP address with IP and subnet "},{"path":[4,53,1],"span":[977,8,20]},{"path":[4,53,2,0],"span":[978,2,16]},{"path":[4,53,2,0,5],"span":[978,2,8]},{"path":[4,53,2,0,1],"span":[978,9,11]},{"path":[4,53,2,0,3],"span":[978,14,15]},{"path":[4,53,2,1],"span":[979,2,20]},{"path":[4,53,2,1,5],"span":[979,2,8]},{"path":[4,53,2,1,1],"span":[979,9,15]},{"path":[4,53,2,1,3],"span":[979,18,19]},{"path":[4,54],"span":[985,0,990,1],"leadingComments":"\n Network protocols, summary and detailed info.\n"},{"path":[4,54,1],"span":[985,8,24]},{"path":[4,54,2,0],"span":[986,4,33],"trailingComments":" summary list of protocols and data points available\n"},{"path":[4,54,2,0,4],"span":[986,4,12]},{"path":[4,54,2,0,5],"span":[986,13,19]},{"path":[4,54,2,0,1],"span":[986,20,28]},{"path":[4,54,2,0,3],"span":[986,31,32]},{"path":[4,55],"span":[995,0,998,1],"leadingComments":"\n Full port scan.\n"},{"path":[4,55,1],"span":[995,8,16]},{"path":[4,55,2,0],"span":[996,2,42]},{"path":[4,55,2,0,6],"span":[996,2,27]},{"path":[4,55,2,0,1],"span":[996,28,37]},{"path":[4,55,2,0,3],"span":[996,40,41]},{"path":[4,55,2,1],"span":[997,2,40]},{"path":[4,55,2,1,4],"span":[997,2,10]},{"path":[4,55,2,1,6],"span":[997,11,22]},{"path":[4,55,2,1,1],"span":[997,23,35]},{"path":[4,55,2,1,3],"span":[997,38,39]},{"path":[4,56],"span":[1000,0,1009,1]},{"path":[4,56,1],"span":[1000,8,19]},{"path":[4,56,2,0],"span":[1001,2,22]},{"path":[4,56,2,0,5],"span":[1001,2,8]},{"path":[4,56,2,0,1],"span":[1001,9,17]},{"path":[4,56,2,0,3],"span":[1001,20,21]},{"path":[4,56,2,1],"span":[1002,2,24]},{"path":[4,56,2,1,5],"span":[1002,2,7]},{"path":[4,56,2,1,1],"span":[1002,8,19]},{"path":[4,56,2,1,3],"span":[1002,22,23]},{"path":[4,56,2,2],"span":[1003,2,36]},{"path":[4,56,2,2,4],"span":[1003,2,10]},{"path":[4,56,2,2,5],"span":[1003,11,17]},{"path":[4,56,2,2,1],"span":[1003,18,31]},{"path":[4,56,2,2,3],"span":[1003,34,35]},{"path":[4,56,2,3],"span":[1004,2,35]},{"path":[4,56,2,3,4],"span":[1004,2,10]},{"path":[4,56,2,3,5],"span":[1004,11,17]},{"path":[4,56,2,3,1],"span":[1004,18,30]},{"path":[4,56,2,3,3],"span":[1004,33,34]},{"path":[4,56,2,4],"span":[1006,2,29]},{"path":[4,56,2,4,4],"span":[1006,2,10]},{"path":[4,56,2,4,5],"span":[1006,11,17]},{"path":[4,56,2,4,1],"span":[1006,18,24]},{"path":[4,56,2,4,3],"span":[1006,27,28]},{"path":[4,56,2,5],"span":[1007,2,42]},{"path":[4,56,2,5,4],"span":[1007,2,10]},{"path":[4,56,2,5,6],"span":[1007,11,25]},{"path":[4,56,2,5,1],"span":[1007,26,37]},{"path":[4,56,2,5,3],"span":[1007,40,41]},{"path":[4,57],"span":[1011,0,1024,1]},{"path":[4,57,1],"span":[1011,8,22]},{"path":[4,57,2,0],"span":[1012,2,17]},{"path":[4,57,2,0,5],"span":[1012,2,7]},{"path":[4,57,2,0,1],"span":[1012,8,12]},{"path":[4,57,2,0,3],"span":[1012,15,16]},{"path":[4,57,2,1],"span":[1013,2,24]},{"path":[4,57,2,1,4],"span":[1013,2,10]},{"path":[4,57,2,1,5],"span":[1013,11,15]},{"path":[4,57,2,1,1],"span":[1013,16,19]},{"path":[4,57,2,1,3],"span":[1013,22,23]},{"path":[4,57,2,2],"span":[1015,2,29],"trailingComments":" http_header.server\n"},{"path":[4,57,2,2,4],"span":[1015,2,10]},{"path":[4,57,2,2,5],"span":[1015,11,17]},{"path":[4,57,2,2,1],"span":[1015,18,24]},{"path":[4,57,2,2,3],"span":[1015,27,28]},{"path":[4,57,2,3],"span":[1016,2,30],"trailingComments":" http_header.wwwauth\n"},{"path":[4,57,2,3,4],"span":[1016,2,10]},{"path":[4,57,2,3,5],"span":[1016,11,17]},{"path":[4,57,2,3,1],"span":[1016,18,25]},{"path":[4,57,2,3,3],"span":[1016,28,29]},{"path":[4,57,2,4],"span":[1017,2,29],"trailingComments":" http_header.cookie\n"},{"path":[4,57,2,4,4],"span":[1017,2,10]},{"path":[4,57,2,4,5],"span":[1017,11,17]},{"path":[4,57,2,4,1],"span":[1017,18,24]},{"path":[4,57,2,4,3],"span":[1017,27,28]},{"path":[4,57,2,5],"span":[1019,2,28],"trailingComments":" html_title\n"},{"path":[4,57,2,5,4],"span":[1019,2,10]},{"path":[4,57,2,5,5],"span":[1019,11,17]},{"path":[4,57,2,5,1],"span":[1019,18,23]},{"path":[4,57,2,5,3],"span":[1019,26,27]},{"path":[4,57,2,6],"span":[1020,2,34],"trailingComments":" favicon.md5\n"},{"path":[4,57,2,6,4],"span":[1020,2,10]},{"path":[4,57,2,6,5],"span":[1020,11,17]},{"path":[4,57,2,6,1],"span":[1020,18,29]},{"path":[4,57,2,6,3],"span":[1020,32,33]},{"path":[4,57,2,7],"span":[1021,2,29],"trailingComments":" in case at some point we want to store full\n"},{"path":[4,57,2,7,4],"span":[1021,2,10]},{"path":[4,57,2,7,5],"span":[1021,11,16]},{"path":[4,57,2,7,1],"span":[1021,17,24]},{"path":[4,57,2,7,3],"span":[1021,27,28]},{"path":[4,57,2,8],"span":[1023,2,44],"trailingComments":" Captured certificates\n"},{"path":[4,57,2,8,4],"span":[1023,2,10]},{"path":[4,57,2,8,6],"span":[1023,11,26]},{"path":[4,57,2,8,1],"span":[1023,27,39]},{"path":[4,57,2,8,3],"span":[1023,42,43]},{"path":[4,58],"span":[1026,0,1041,1]},{"path":[4,58,1],"span":[1026,8,23]},{"path":[4,58,2,0],"span":[1027,2,33],"trailingComments":" thumbprint\n"},{"path":[4,58,2,0,4],"span":[1027,2,10]},{"path":[4,58,2,0,5],"span":[1027,11,17]},{"path":[4,58,2,0,1],"span":[1027,18,28]},{"path":[4,58,2,0,3],"span":[1027,31,32]},{"path":[4,58,2,1],"span":[1028,2,36],"trailingComments":" serial_number (as a big-endian hexadecimal string)\n"},{"path":[4,58,2,1,4],"span":[1028,2,10]},{"path":[4,58,2,1,5],"span":[1028,11,17]},{"path":[4,58,2,1,1],"span":[1028,18,31]},{"path":[4,58,2,1,3],"span":[1028,34,35]},{"path":[4,58,2,2],"span":[1029,2,34],"trailingComments":" x509.issuer\n"},{"path":[4,58,2,2,4],"span":[1029,2,10]},{"path":[4,58,2,2,5],"span":[1029,11,17]},{"path":[4,58,2,2,1],"span":[1029,18,29]},{"path":[4,58,2,2,3],"span":[1029,32,33]},{"path":[4,58,2,3],"span":[1030,2,35],"trailingComments":" x509.subject\n"},{"path":[4,58,2,3,4],"span":[1030,2,10]},{"path":[4,58,2,3,5],"span":[1030,11,17]},{"path":[4,58,2,3,1],"span":[1030,18,30]},{"path":[4,58,2,3,3],"span":[1030,33,34]},{"path":[4,58,2,4],"span":[1031,2,56],"trailingComments":" not_before\n"},{"path":[4,58,2,4,4],"span":[1031,2,10]},{"path":[4,58,2,4,6],"span":[1031,11,36]},{"path":[4,58,2,4,1],"span":[1031,37,51]},{"path":[4,58,2,4,3],"span":[1031,54,55]},{"path":[4,58,2,5],"span":[1032,2,57],"trailingComments":" not_after\n"},{"path":[4,58,2,5,4],"span":[1032,2,10]},{"path":[4,58,2,5,6],"span":[1032,11,36]},{"path":[4,58,2,5,1],"span":[1032,37,52]},{"path":[4,58,2,5,3],"span":[1032,55,56]},{"path":[4,58,4,0],"span":[1034,2,1038,3]},{"path":[4,58,4,0,1],"span":[1034,7,22]},{"path":[4,58,4,0,2,0],"span":[1035,4,45]},{"path":[4,58,4,0,2,0,1],"span":[1035,4,40]},{"path":[4,58,4,0,2,0,2],"span":[1035,43,44]},{"path":[4,58,4,0,2,1],"span":[1036,4,45]},{"path":[4,58,4,0,2,1,1],"span":[1036,4,40]},{"path":[4,58,4,0,2,1,2],"span":[1036,43,44]},{"path":[4,58,4,0,2,2],"span":[1037,4,44]},{"path":[4,58,4,0,2,2,1],"span":[1037,4,39]},{"path":[4,58,4,0,2,2,2],"span":[1037,42,43]},{"path":[4,58,2,6],"span":[1040,2,38],"trailingComments":" ssl errors\n"},{"path":[4,58,2,6,4],"span":[1040,2,10]},{"path":[4,58,2,6,6],"span":[1040,11,26]},{"path":[4,58,2,6,1],"span":[1040,27,33]},{"path":[4,58,2,6,3],"span":[1040,36,37]},{"path":[4,59],"span":[1045,0,1086,1],"leadingComments":" Processor *"},{"path":[4,59,1],"span":[1045,8,17]},{"path":[4,59,2,0],"span":[1046,2,21]},{"path":[4,59,2,0,5],"span":[1046,2,8]},{"path":[4,59,2,0,1],"span":[1046,10,14]},{"path":[4,59,2,0,3],"span":[1046,17,18]},{"path":[4,59,2,1],"span":[1047,2,36],"trailingComments":" Linux-only\n"},{"path":[4,59,2,1,4],"span":[1047,2,10]},{"path":[4,59,2,1,5],"span":[1047,11,17]},{"path":[4,59,2,1,1],"span":[1047,18,31]},{"path":[4,59,2,1,3],"span":[1047,34,35]},{"path":[4,59,2,2],"span":[1048,2,35],"trailingComments":" Windows-only\n"},{"path":[4,59,2,2,4],"span":[1048,2,10]},{"path":[4,59,2,2,5],"span":[1048,11,16]},{"path":[4,59,2,2,1],"span":[1048,17,30]},{"path":[4,59,2,2,3],"span":[1048,33,34]},{"path":[4,59,2,3],"span":[1049,2,40],"trailingComments":" Consolidate on-prem fields into single numeric list with translations\n"},{"path":[4,59,2,3,4],"span":[1049,2,10]},{"path":[4,59,2,3,6],"span":[1049,11,22]},{"path":[4,59,2,3,1],"span":[1049,23,35]},{"path":[4,59,2,3,3],"span":[1049,38,39]},{"path":[4,59,2,4],"span":[1050,2,34],"trailingComments":" Windows-only\n"},{"path":[4,59,2,4,4],"span":[1050,2,10]},{"path":[4,59,2,4,5],"span":[1050,11,16]},{"path":[4,59,2,4,1],"span":[1050,17,29]},{"path":[4,59,2,4,3],"span":[1050,32,33]},{"path":[4,59,2,5],"span":[1051,2,32],"trailingComments":" Standardize to numeric\n"},{"path":[4,59,2,5,4],"span":[1051,2,10]},{"path":[4,59,2,5,5],"span":[1051,11,17]},{"path":[4,59,2,5,1],"span":[1051,18,27]},{"path":[4,59,2,5,3],"span":[1051,30,31]},{"path":[4,59,2,6],"span":[1052,2,33],"trailingComments":" Linux-only\n"},{"path":[4,59,2,6,4],"span":[1052,2,10]},{"path":[4,59,2,6,5],"span":[1052,11,17]},{"path":[4,59,2,6,1],"span":[1052,18,28]},{"path":[4,59,2,6,3],"span":[1052,31,32]},{"path":[4,59,2,7],"span":[1053,2,30],"trailingComments":" Windows-only\n"},{"path":[4,59,2,7,4],"span":[1053,2,10]},{"path":[4,59,2,7,5],"span":[1053,11,17]},{"path":[4,59,2,7,1],"span":[1053,18,25]},{"path":[4,59,2,7,3],"span":[1053,28,29]},{"path":[4,59,2,8],"span":[1054,2,41],"trailingComments":" Standardize values to numeric (MHz)\n"},{"path":[4,59,2,8,4],"span":[1054,2,10]},{"path":[4,59,2,8,5],"span":[1054,11,16]},{"path":[4,59,2,8,1],"span":[1054,17,36]},{"path":[4,59,2,8,3],"span":[1054,39,40]},{"path":[4,59,2,9],"span":[1055,2,33],"trailingComments":" Windows-only\n"},{"path":[4,59,2,9,4],"span":[1055,2,10]},{"path":[4,59,2,9,5],"span":[1055,11,16]},{"path":[4,59,2,9,1],"span":[1055,17,27]},{"path":[4,59,2,9,3],"span":[1055,30,32]},{"path":[4,59,2,10],"span":[1056,2,33],"trailingComments":" Windows-only\n"},{"path":[4,59,2,10,4],"span":[1056,2,10]},{"path":[4,59,2,10,5],"span":[1056,11,17]},{"path":[4,59,2,10,1],"span":[1056,18,27]},{"path":[4,59,2,10,3],"span":[1056,30,32]},{"path":[4,59,2,11],"span":[1057,2,41],"trailingComments":" Windows-only\n"},{"path":[4,59,2,11,4],"span":[1057,2,10]},{"path":[4,59,2,11,5],"span":[1057,11,16]},{"path":[4,59,2,11,1],"span":[1057,17,35]},{"path":[4,59,2,11,3],"span":[1057,38,40]},{"path":[4,59,2,12],"span":[1058,2,35],"trailingComments":" Consolidate on-prem fields into single numeric list with translations\n"},{"path":[4,59,2,12,4],"span":[1058,2,10]},{"path":[4,59,2,12,6],"span":[1058,11,22]},{"path":[4,59,2,12,1],"span":[1058,23,29]},{"path":[4,59,2,12,3],"span":[1058,32,34]},{"path":[4,59,2,13],"span":[1059,2,41],"trailingComments":" Linux-only\n"},{"path":[4,59,2,13,4],"span":[1059,2,10]},{"path":[4,59,2,13,5],"span":[1059,11,17]},{"path":[4,59,2,13,1],"span":[1059,18,35]},{"path":[4,59,2,13,3],"span":[1059,38,40]},{"path":[4,59,2,14],"span":[1060,2,40],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,59,2,14,4],"span":[1060,2,10]},{"path":[4,59,2,14,5],"span":[1060,11,16]},{"path":[4,59,2,14,1],"span":[1060,17,34]},{"path":[4,59,2,14,3],"span":[1060,37,39]},{"path":[4,59,2,15],"span":[1061,2,40],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,59,2,15,4],"span":[1061,2,10]},{"path":[4,59,2,15,5],"span":[1061,11,16]},{"path":[4,59,2,15,1],"span":[1061,17,34]},{"path":[4,59,2,15,3],"span":[1061,37,39]},{"path":[4,59,2,16],"span":[1062,2,39],"trailingComments":" Standardize values to int (kilobytes)\n"},{"path":[4,59,2,16,4],"span":[1062,2,10]},{"path":[4,59,2,16,5],"span":[1062,11,16]},{"path":[4,59,2,16,1],"span":[1062,17,33]},{"path":[4,59,2,16,3],"span":[1062,36,38]},{"path":[4,59,2,17],"span":[1063,2,41],"trailingComments":" Windows-only\n"},{"path":[4,59,2,17,4],"span":[1063,2,10]},{"path":[4,59,2,17,5],"span":[1063,11,16]},{"path":[4,59,2,17,1],"span":[1063,17,35]},{"path":[4,59,2,17,3],"span":[1063,38,40]},{"path":[4,59,2,18],"span":[1064,2,39],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,59,2,18,4],"span":[1064,2,10]},{"path":[4,59,2,18,5],"span":[1064,11,16]},{"path":[4,59,2,18,1],"span":[1064,17,33]},{"path":[4,59,2,18,3],"span":[1064,36,38]},{"path":[4,59,2,19],"span":[1065,2,28],"trailingComments":" Windows-only, unclear meaning\n"},{"path":[4,59,2,19,4],"span":[1065,2,10]},{"path":[4,59,2,19,5],"span":[1065,11,16]},{"path":[4,59,2,19,1],"span":[1065,17,22]},{"path":[4,59,2,19,3],"span":[1065,25,27]},{"path":[4,59,2,20],"span":[1066,2,44]},{"path":[4,59,2,20,4],"span":[1066,2,10]},{"path":[4,59,2,20,5],"span":[1066,11,16]},{"path":[4,59,2,20,1],"span":[1066,17,36]},{"path":[4,59,2,20,3],"span":[1066,39,41]},{"path":[4,59,2,21],"span":[1067,2,38]},{"path":[4,59,2,21,4],"span":[1067,2,10]},{"path":[4,59,2,21,5],"span":[1067,11,17]},{"path":[4,59,2,21,1],"span":[1067,18,30]},{"path":[4,59,2,21,3],"span":[1067,33,35]},{"path":[4,59,2,22],"span":[1068,2,42],"trailingComments":" Standardize Linux values to int (MHz)\n"},{"path":[4,59,2,22,4],"span":[1068,2,10]},{"path":[4,59,2,22,5],"span":[1068,11,16]},{"path":[4,59,2,22,1],"span":[1068,17,36]},{"path":[4,59,2,22,3],"span":[1068,39,41]},{"path":[4,59,2,23],"span":[1069,2,42],"trailingComments":" Linux-only, standardize to numeric (MHz)\n"},{"path":[4,59,2,23,4],"span":[1069,2,10]},{"path":[4,59,2,23,5],"span":[1069,11,16]},{"path":[4,59,2,23,1],"span":[1069,17,36]},{"path":[4,59,2,23,3],"span":[1069,39,41]},{"path":[4,59,2,24],"span":[1070,2,35],"trailingComments":" Linux-only, standardize to numeric\n"},{"path":[4,59,2,24,4],"span":[1070,2,10]},{"path":[4,59,2,24,5],"span":[1070,11,16]},{"path":[4,59,2,24,1],"span":[1070,17,29]},{"path":[4,59,2,24,3],"span":[1070,32,34]},{"path":[4,59,2,25],"span":[1071,2,32],"trailingComments":" Linux-only\n"},{"path":[4,59,2,25,4],"span":[1071,2,10]},{"path":[4,59,2,25,5],"span":[1071,11,17]},{"path":[4,59,2,25,1],"span":[1071,18,26]},{"path":[4,59,2,25,3],"span":[1071,29,31]},{"path":[4,59,2,26],"span":[1072,2,45]},{"path":[4,59,2,26,4],"span":[1072,2,10]},{"path":[4,59,2,26,5],"span":[1072,11,16]},{"path":[4,59,2,26,1],"span":[1072,17,37]},{"path":[4,59,2,26,3],"span":[1072,40,42]},{"path":[4,59,2,27],"span":[1073,2,36],"trailingComments":" Windows-only, probably not used much by customers due to its complexity\n"},{"path":[4,59,2,27,4],"span":[1073,2,10]},{"path":[4,59,2,27,5],"span":[1073,11,17]},{"path":[4,59,2,27,1],"span":[1073,18,30]},{"path":[4,59,2,27,3],"span":[1073,33,35]},{"path":[4,59,2,28],"span":[1074,2,43],"trailingComments":" Windows-only\n"},{"path":[4,59,2,28,4],"span":[1074,2,10]},{"path":[4,59,2,28,6],"span":[1074,11,22]},{"path":[4,59,2,28,1],"span":[1074,23,37]},{"path":[4,59,2,28,3],"span":[1074,40,42]},{"path":[4,59,2,29],"span":[1075,2,31],"trailingComments":" Windows-only\n"},{"path":[4,59,2,29,4],"span":[1075,2,10]},{"path":[4,59,2,29,5],"span":[1075,11,16]},{"path":[4,59,2,29,1],"span":[1075,17,25]},{"path":[4,59,2,29,3],"span":[1075,28,30]},{"path":[4,59,2,30],"span":[1076,2,42],"trailingComments":" Windows-only\n"},{"path":[4,59,2,30,4],"span":[1076,2,10]},{"path":[4,59,2,30,5],"span":[1076,11,17]},{"path":[4,59,2,30,1],"span":[1076,18,36]},{"path":[4,59,2,30,3],"span":[1076,39,41]},{"path":[4,59,2,31],"span":[1077,2,31],"trailingComments":" Linux-only\n"},{"path":[4,59,2,31,4],"span":[1077,2,10]},{"path":[4,59,2,31,5],"span":[1077,11,16]},{"path":[4,59,2,31,1],"span":[1077,18,25]},{"path":[4,59,2,31,3],"span":[1077,28,30]},{"path":[4,59,2,32],"span":[1078,2,35],"trailingComments":" Windows-only\n"},{"path":[4,59,2,32,4],"span":[1078,2,10]},{"path":[4,59,2,32,6],"span":[1078,11,22]},{"path":[4,59,2,32,1],"span":[1078,23,29]},{"path":[4,59,2,32,3],"span":[1078,32,34]},{"path":[4,59,2,33],"span":[1079,2,31],"trailingComments":" Consolidate on-prem fields into single numeric list\n"},{"path":[4,59,2,33,4],"span":[1079,2,10]},{"path":[4,59,2,33,5],"span":[1079,11,16]},{"path":[4,59,2,33,1],"span":[1079,17,25]},{"path":[4,59,2,33,3],"span":[1079,28,30]},{"path":[4,59,2,34],"span":[1080,2,54],"trailingComments":" Linux-only\n"},{"path":[4,59,2,34,4],"span":[1080,2,10]},{"path":[4,59,2,34,5],"span":[1080,11,16]},{"path":[4,59,2,34,1],"span":[1080,17,48]},{"path":[4,59,2,34,3],"span":[1080,51,53]},{"path":[4,59,2,35],"span":[1081,2,33],"trailingComments":" Windows-only\n"},{"path":[4,59,2,35,4],"span":[1081,2,10]},{"path":[4,59,2,35,5],"span":[1081,11,17]},{"path":[4,59,2,35,1],"span":[1081,18,27]},{"path":[4,59,2,35,3],"span":[1081,30,32]},{"path":[4,59,2,36],"span":[1082,2,43],"trailingComments":" Windows-only\n"},{"path":[4,59,2,36,4],"span":[1082,2,10]},{"path":[4,59,2,36,6],"span":[1082,11,22]},{"path":[4,59,2,36,1],"span":[1082,23,37]},{"path":[4,59,2,36,3],"span":[1082,40,42]},{"path":[4,59,2,37],"span":[1083,2,31],"trailingComments":" Windows-only\n"},{"path":[4,59,2,37,4],"span":[1083,2,10]},{"path":[4,59,2,37,5],"span":[1083,11,17]},{"path":[4,59,2,37,1],"span":[1083,18,25]},{"path":[4,59,2,37,3],"span":[1083,28,30]},{"path":[4,59,2,38],"span":[1084,2,38],"trailingComments":" Linux-only\n"},{"path":[4,59,2,38,4],"span":[1084,2,10]},{"path":[4,59,2,38,5],"span":[1084,11,17]},{"path":[4,59,2,38,1],"span":[1084,18,32]},{"path":[4,59,2,38,3],"span":[1084,35,37]},{"path":[4,59,2,39],"span":[1085,2,49],"trailingComments":" Windows-only\n"},{"path":[4,59,2,39,4],"span":[1085,2,10]},{"path":[4,59,2,39,6],"span":[1085,11,22]},{"path":[4,59,2,39,1],"span":[1085,23,43]},{"path":[4,59,2,39,3],"span":[1085,46,48]},{"path":[4,60],"span":[1089,0,1099,1],"leadingComments":" Chassis *"},{"path":[4,60,1],"span":[1089,8,15]},{"path":[4,60,2,0],"span":[1091,2,25]},{"path":[4,60,2,0,6],"span":[1091,2,13]},{"path":[4,60,2,0,1],"span":[1091,16,20]},{"path":[4,60,2,0,3],"span":[1091,23,24]},{"path":[4,60,2,1],"span":[1092,2,33]},{"path":[4,60,2,1,4],"span":[1092,2,10]},{"path":[4,60,2,1,5],"span":[1092,11,15]},{"path":[4,60,2,1,1],"span":[1092,16,28]},{"path":[4,60,2,1,3],"span":[1092,31,32]},{"path":[4,60,2,2],"span":[1093,2,41]},{"path":[4,60,2,2,4],"span":[1093,2,10]},{"path":[4,60,2,2,5],"span":[1093,11,17]},{"path":[4,60,2,2,1],"span":[1093,24,36]},{"path":[4,60,2,2,3],"span":[1093,39,40]},{"path":[4,60,2,3],"span":[1094,2,43]},{"path":[4,60,2,3,4],"span":[1094,2,10]},{"path":[4,60,2,3,6],"span":[1094,11,22]},{"path":[4,60,2,3,1],"span":[1094,23,38]},{"path":[4,60,2,3,3],"span":[1094,41,42]},{"path":[4,60,2,4],"span":[1095,2,42]},{"path":[4,60,2,4,4],"span":[1095,2,10]},{"path":[4,60,2,4,5],"span":[1095,11,17]},{"path":[4,60,2,4,1],"span":[1095,24,37]},{"path":[4,60,2,4,3],"span":[1095,40,41]},{"path":[4,60,2,5],"span":[1096,2,38]},{"path":[4,60,2,5,4],"span":[1096,2,10]},{"path":[4,60,2,5,5],"span":[1096,11,17]},{"path":[4,60,2,5,1],"span":[1096,24,33]},{"path":[4,60,2,5,3],"span":[1096,36,37]},{"path":[4,60,2,6],"span":[1097,2,36]},{"path":[4,60,2,6,4],"span":[1097,2,10]},{"path":[4,60,2,6,5],"span":[1097,11,17]},{"path":[4,60,2,6,1],"span":[1097,24,31]},{"path":[4,60,2,6,3],"span":[1097,34,35]},{"path":[4,60,2,7],"span":[1098,2,40]},{"path":[4,60,2,7,4],"span":[1098,2,10]},{"path":[4,60,2,7,6],"span":[1098,11,22]},{"path":[4,60,2,7,1],"span":[1098,23,35]},{"path":[4,60,2,7,3],"span":[1098,38,39]},{"path":[4,61],"span":[1104,0,1116,1],"leadingComments":"\n Hard drive for computers: Windows.WindowsHardDisk, Unix.HardDisks, Mac.MacHardDisk\n"},{"path":[4,61,1],"span":[1104,8,17]},{"path":[4,61,2,0],"span":[1105,2,30]},{"path":[4,61,2,0,4],"span":[1105,2,10]},{"path":[4,61,2,0,5],"span":[1105,11,17]},{"path":[4,61,2,0,1],"span":[1105,18,25]},{"path":[4,61,2,0,3],"span":[1105,28,29]},{"path":[4,61,2,1],"span":[1106,2,31]},{"path":[4,61,2,1,4],"span":[1106,2,10]},{"path":[4,61,2,1,5],"span":[1106,11,15]},{"path":[4,61,2,1,1],"span":[1106,16,26]},{"path":[4,61,2,1,3],"span":[1106,29,30]},{"path":[4,61,2,2],"span":[1107,2,34]},{"path":[4,61,2,2,4],"span":[1107,2,10]},{"path":[4,61,2,2,5],"span":[1107,11,17]},{"path":[4,61,2,2,1],"span":[1107,18,29]},{"path":[4,61,2,2,3],"span":[1107,32,33]},{"path":[4,61,2,3],"span":[1108,2,32]},{"path":[4,61,2,3,4],"span":[1108,2,10]},{"path":[4,61,2,3,5],"span":[1108,11,17]},{"path":[4,61,2,3,1],"span":[1108,18,27]},{"path":[4,61,2,3,3],"span":[1108,30,31]},{"path":[4,61,2,4],"span":[1109,2,38]},{"path":[4,61,2,4,4],"span":[1109,2,10]},{"path":[4,61,2,4,6],"span":[1109,11,22]},{"path":[4,61,2,4,1],"span":[1109,23,33]},{"path":[4,61,2,4,3],"span":[1109,36,37]},{"path":[4,61,2,5],"span":[1110,2,34]},{"path":[4,61,2,5,4],"span":[1110,2,10]},{"path":[4,61,2,5,5],"span":[1110,11,17]},{"path":[4,61,2,5,1],"span":[1110,18,29]},{"path":[4,61,2,5,3],"span":[1110,32,33]},{"path":[4,61,2,6],"span":[1111,2,32]},{"path":[4,61,2,6,4],"span":[1111,2,10]},{"path":[4,61,2,6,5],"span":[1111,11,16]},{"path":[4,61,2,6,1],"span":[1111,17,27]},{"path":[4,61,2,6,3],"span":[1111,30,31]},{"path":[4,61,2,7],"span":[1112,2,26]},{"path":[4,61,2,7,4],"span":[1112,2,10]},{"path":[4,61,2,7,5],"span":[1112,11,16]},{"path":[4,61,2,7,1],"span":[1112,17,21]},{"path":[4,61,2,7,3],"span":[1112,24,25]},{"path":[4,61,2,8],"span":[1113,2,34]},{"path":[4,61,2,8,4],"span":[1113,2,10]},{"path":[4,61,2,8,5],"span":[1113,11,17]},{"path":[4,61,2,8,1],"span":[1113,18,29]},{"path":[4,61,2,8,3],"span":[1113,32,33]},{"path":[4,61,2,9],"span":[1114,2,37]},{"path":[4,61,2,9,4],"span":[1114,2,10]},{"path":[4,61,2,9,5],"span":[1114,11,17]},{"path":[4,61,2,9,1],"span":[1114,18,31]},{"path":[4,61,2,9,3],"span":[1114,34,36]},{"path":[4,61,2,10],"span":[1115,2,34]},{"path":[4,61,2,10,4],"span":[1115,2,10]},{"path":[4,61,2,10,5],"span":[1115,11,17]},{"path":[4,61,2,10,1],"span":[1115,18,28]},{"path":[4,61,2,10,3],"span":[1115,31,33]},{"path":[4,62],"span":[1121,0,1151,1],"leadingComments":"\n Volumes for Computers: Windows.Volume+Windows.EncryptableVolumes and Unix.Volumes\n"},{"path":[4,62,1],"span":[1121,8,19]},{"path":[4,62,2,0],"span":[1122,2,32]},{"path":[4,62,2,0,4],"span":[1122,2,10]},{"path":[4,62,2,0,5],"span":[1122,11,17]},{"path":[4,62,2,0,1],"span":[1122,18,27]},{"path":[4,62,2,0,3],"span":[1122,30,31]},{"path":[4,62,2,1],"span":[1123,2,27],"trailingComments":" unix path, windows drive_letter\n"},{"path":[4,62,2,1,4],"span":[1123,2,10]},{"path":[4,62,2,1,5],"span":[1123,11,17]},{"path":[4,62,2,1,1],"span":[1123,18,22]},{"path":[4,62,2,1,3],"span":[1123,25,26]},{"path":[4,62,2,2],"span":[1124,2,28],"trailingComments":" win and linux\n"},{"path":[4,62,2,2,4],"span":[1124,2,10]},{"path":[4,62,2,2,5],"span":[1124,11,17]},{"path":[4,62,2,2,1],"span":[1124,18,23]},{"path":[4,62,2,2,3],"span":[1124,26,27]},{"path":[4,62,2,3],"span":[1125,2,27]},{"path":[4,62,2,3,4],"span":[1125,2,10]},{"path":[4,62,2,3,5],"span":[1125,11,17]},{"path":[4,62,2,3,1],"span":[1125,18,22]},{"path":[4,62,2,3,3],"span":[1125,25,26]},{"path":[4,62,2,4],"span":[1127,2,30],"trailingComments":" windows capacity, size in unix\n"},{"path":[4,62,2,4,4],"span":[1127,2,10]},{"path":[4,62,2,4,5],"span":[1127,11,16]},{"path":[4,62,2,4,1],"span":[1127,17,25]},{"path":[4,62,2,4,3],"span":[1127,28,29]},{"path":[4,62,2,5],"span":[1128,2,32]},{"path":[4,62,2,5,4],"span":[1128,2,10]},{"path":[4,62,2,5,5],"span":[1128,11,16]},{"path":[4,62,2,5,1],"span":[1128,17,27]},{"path":[4,62,2,5,3],"span":[1128,30,31]},{"path":[4,62,2,6],"span":[1129,2,32]},{"path":[4,62,2,6,4],"span":[1129,2,10]},{"path":[4,62,2,6,5],"span":[1129,11,16]},{"path":[4,62,2,6,1],"span":[1129,17,27]},{"path":[4,62,2,6,3],"span":[1129,30,31]},{"path":[4,62,2,7],"span":[1131,2,38],"trailingComments":" Windows: WMI mapped, Unix: string\n"},{"path":[4,62,2,7,4],"span":[1131,2,10]},{"path":[4,62,2,7,6],"span":[1131,11,22]},{"path":[4,62,2,7,1],"span":[1131,23,33]},{"path":[4,62,2,7,3],"span":[1131,36,37]},{"path":[4,62,2,8],"span":[1132,2,45],"trailingComments":" from Windows if encrypted: Windows.EncryptableVolumes\n"},{"path":[4,62,2,8,4],"span":[1132,2,10]},{"path":[4,62,2,8,6],"span":[1132,11,22]},{"path":[4,62,2,8,1],"span":[1132,23,40]},{"path":[4,62,2,8,3],"span":[1132,43,44]},{"path":[4,62,2,9],"span":[1134,2,41]},{"path":[4,62,2,9,4],"span":[1134,2,10]},{"path":[4,62,2,9,5],"span":[1134,11,17]},{"path":[4,62,2,9,1],"span":[1134,18,35]},{"path":[4,62,2,9,3],"span":[1134,38,40]},{"path":[4,62,2,10],"span":[1135,2,41]},{"path":[4,62,2,10,4],"span":[1135,2,10]},{"path":[4,62,2,10,5],"span":[1135,11,17]},{"path":[4,62,2,10,1],"span":[1135,18,35]},{"path":[4,62,2,10,3],"span":[1135,38,40]},{"path":[4,62,2,11],"span":[1136,2,35]},{"path":[4,62,2,11,4],"span":[1136,2,10]},{"path":[4,62,2,11,5],"span":[1136,11,17]},{"path":[4,62,2,11,1],"span":[1136,18,29]},{"path":[4,62,2,11,3],"span":[1136,32,34]},{"path":[4,62,2,12],"span":[1138,2,32]},{"path":[4,62,2,12,4],"span":[1138,2,10]},{"path":[4,62,2,12,5],"span":[1138,11,15]},{"path":[4,62,2,12,1],"span":[1138,16,26]},{"path":[4,62,2,12,3],"span":[1138,29,31]},{"path":[4,62,2,13],"span":[1139,2,32]},{"path":[4,62,2,13,4],"span":[1139,2,10]},{"path":[4,62,2,13,5],"span":[1139,11,15]},{"path":[4,62,2,13,1],"span":[1139,16,26]},{"path":[4,62,2,13,3],"span":[1139,29,31]},{"path":[4,62,2,14],"span":[1140,2,35]},{"path":[4,62,2,14,4],"span":[1140,2,10]},{"path":[4,62,2,14,5],"span":[1140,11,15]},{"path":[4,62,2,14,1],"span":[1140,16,29]},{"path":[4,62,2,14,3],"span":[1140,32,34]},{"path":[4,62,2,15],"span":[1141,2,35]},{"path":[4,62,2,15,4],"span":[1141,2,10]},{"path":[4,62,2,15,5],"span":[1141,11,15]},{"path":[4,62,2,15,1],"span":[1141,16,29]},{"path":[4,62,2,15,3],"span":[1141,32,34]},{"path":[4,62,2,16],"span":[1142,2,38]},{"path":[4,62,2,16,4],"span":[1142,2,10]},{"path":[4,62,2,16,5],"span":[1142,11,15]},{"path":[4,62,2,16,1],"span":[1142,16,32]},{"path":[4,62,2,16,3],"span":[1142,35,37]},{"path":[4,62,2,17],"span":[1143,2,39]},{"path":[4,62,2,17,4],"span":[1143,2,10]},{"path":[4,62,2,17,5],"span":[1143,11,15]},{"path":[4,62,2,17,1],"span":[1143,16,33]},{"path":[4,62,2,17,3],"span":[1143,36,38]},{"path":[4,62,2,18],"span":[1144,2,42]},{"path":[4,62,2,18,4],"span":[1144,2,10]},{"path":[4,62,2,18,5],"span":[1144,11,15]},{"path":[4,62,2,18,1],"span":[1144,16,36]},{"path":[4,62,2,18,3],"span":[1144,39,41]},{"path":[4,62,2,19],"span":[1145,2,53]},{"path":[4,62,2,19,4],"span":[1145,2,10]},{"path":[4,62,2,19,5],"span":[1145,11,15]},{"path":[4,62,2,19,1],"span":[1145,16,47]},{"path":[4,62,2,19,3],"span":[1145,50,52]},{"path":[4,62,2,20],"span":[1148,2,31],"leadingComments":" unix\n"},{"path":[4,62,2,20,4],"span":[1148,2,10]},{"path":[4,62,2,20,5],"span":[1148,11,17]},{"path":[4,62,2,20,1],"span":[1148,18,25]},{"path":[4,62,2,20,3],"span":[1148,28,30]},{"path":[4,62,2,21],"span":[1149,2,35]},{"path":[4,62,2,21,4],"span":[1149,2,10]},{"path":[4,62,2,21,5],"span":[1149,11,17]},{"path":[4,62,2,21,1],"span":[1149,18,29]},{"path":[4,62,2,21,3],"span":[1149,32,34]},{"path":[4,63],"span":[1156,0,1163,1],"leadingComments":"\n Network drives/volumes for Computers: Windows.MappedDrive and Mac.NetworkVolume\n"},{"path":[4,63,1],"span":[1156,8,21]},{"path":[4,63,8,0],"span":[1157,2,1160,5]},{"path":[4,63,8,0,1],"span":[1157,8,14]},{"path":[4,63,2,0],"span":[1158,4,44]},{"path":[4,63,2,0,6],"span":[1158,4,22]},{"path":[4,63,2,0,1],"span":[1158,23,39]},{"path":[4,63,2,0,3],"span":[1158,42,43]},{"path":[4,63,2,1],"span":[1159,4,36]},{"path":[4,63,2,1,6],"span":[1159,4,20]},{"path":[4,63,2,1,1],"span":[1159,21,31]},{"path":[4,63,2,1,3],"span":[1159,34,35]},{"path":[4,63,2,2],"span":[1162,2,29]},{"path":[4,63,2,2,4],"span":[1162,2,10]},{"path":[4,63,2,2,5],"span":[1162,11,17]},{"path":[4,63,2,2,1],"span":[1162,18,22]},{"path":[4,63,2,2,3],"span":[1162,25,28]},{"path":[4,64],"span":[1166,0,1171,1],"leadingComments":" Network drive for Windows: Mapped drive.\n"},{"path":[4,64,1],"span":[1166,8,26]},{"path":[4,64,2,0],"span":[1167,2,26]},{"path":[4,64,2,0,5],"span":[1167,2,8]},{"path":[4,64,2,0,1],"span":[1167,9,21]},{"path":[4,64,2,0,3],"span":[1167,24,25]},{"path":[4,64,2,1],"span":[1168,2,32]},{"path":[4,64,2,1,4],"span":[1168,2,10]},{"path":[4,64,2,1,5],"span":[1168,11,17]},{"path":[4,64,2,1,1],"span":[1168,18,27]},{"path":[4,64,2,1,3],"span":[1168,30,31]},{"path":[4,64,2,2],"span":[1169,2,34]},{"path":[4,64,2,2,4],"span":[1169,2,10]},{"path":[4,64,2,2,5],"span":[1169,11,17]},{"path":[4,64,2,2,1],"span":[1169,18,29]},{"path":[4,64,2,2,3],"span":[1169,32,33]},{"path":[4,64,2,3],"span":[1170,2,34]},{"path":[4,64,2,3,4],"span":[1170,2,10]},{"path":[4,64,2,3,5],"span":[1170,11,17]},{"path":[4,64,2,3,1],"span":[1170,18,29]},{"path":[4,64,2,3,3],"span":[1170,32,33]},{"path":[4,65],"span":[1174,0,1180,1],"leadingComments":" Network volume for Mac: NetworkVolume.\n"},{"path":[4,65,1],"span":[1174,8,24]},{"path":[4,65,2,0],"span":[1175,2,27]},{"path":[4,65,2,0,4],"span":[1175,2,10]},{"path":[4,65,2,0,5],"span":[1175,11,17]},{"path":[4,65,2,0,1],"span":[1175,18,22]},{"path":[4,65,2,0,3],"span":[1175,25,26]},{"path":[4,65,2,1],"span":[1176,2,35]},{"path":[4,65,2,1,4],"span":[1176,2,10]},{"path":[4,65,2,1,5],"span":[1176,11,17]},{"path":[4,65,2,1,1],"span":[1176,18,30]},{"path":[4,65,2,1,3],"span":[1176,33,34]},{"path":[4,65,2,2],"span":[1177,2,36]},{"path":[4,65,2,2,4],"span":[1177,2,10]},{"path":[4,65,2,2,5],"span":[1177,11,17]},{"path":[4,65,2,2,1],"span":[1177,18,31]},{"path":[4,65,2,2,3],"span":[1177,34,35]},{"path":[4,65,2,3],"span":[1178,2,35]},{"path":[4,65,2,3,4],"span":[1178,2,10]},{"path":[4,65,2,3,5],"span":[1178,11,17]},{"path":[4,65,2,3,1],"span":[1178,18,30]},{"path":[4,65,2,3,3],"span":[1178,33,34]},{"path":[4,65,2,4],"span":[1179,2,36]},{"path":[4,65,2,4,4],"span":[1179,2,10]},{"path":[4,65,2,4,5],"span":[1179,11,17]},{"path":[4,65,2,4,1],"span":[1179,18,31]},{"path":[4,65,2,4,3],"span":[1179,34,35]},{"path":[4,66],"span":[1185,0,1192,1],"leadingComments":"\n Keyboard for computers: Windows.Keyboards\n"},{"path":[4,66,1],"span":[1185,8,16]},{"path":[4,66,2,0],"span":[1186,2,53]},{"path":[4,66,2,0,4],"span":[1186,2,10]},{"path":[4,66,2,0,6],"span":[1186,11,22]},{"path":[4,66,2,0,1],"span":[1186,23,48]},{"path":[4,66,2,0,3],"span":[1186,51,52]},{"path":[4,66,2,1],"span":[1187,2,47]},{"path":[4,66,2,1,4],"span":[1187,2,10]},{"path":[4,66,2,1,5],"span":[1187,11,15]},{"path":[4,66,2,1,1],"span":[1187,16,42]},{"path":[4,66,2,1,3],"span":[1187,45,46]},{"path":[4,66,2,2],"span":[1188,2,34]},{"path":[4,66,2,2,4],"span":[1188,2,10]},{"path":[4,66,2,2,5],"span":[1188,11,17]},{"path":[4,66,2,2,1],"span":[1188,18,29]},{"path":[4,66,2,2,3],"span":[1188,32,33]},{"path":[4,66,2,3],"span":[1189,2,32]},{"path":[4,66,2,3,4],"span":[1189,2,10]},{"path":[4,66,2,3,5],"span":[1189,11,17]},{"path":[4,66,2,3,1],"span":[1189,18,27]},{"path":[4,66,2,3,3],"span":[1189,30,31]},{"path":[4,66,2,4],"span":[1190,2,29]},{"path":[4,66,2,4,4],"span":[1190,2,10]},{"path":[4,66,2,4,5],"span":[1190,11,17]},{"path":[4,66,2,4,1],"span":[1190,18,24]},{"path":[4,66,2,4,3],"span":[1190,27,28]},{"path":[4,66,2,5],"span":[1191,2,45]},{"path":[4,66,2,5,4],"span":[1191,2,10]},{"path":[4,66,2,5,5],"span":[1191,11,16]},{"path":[4,66,2,5,1],"span":[1191,17,40]},{"path":[4,66,2,5,3],"span":[1191,43,44]},{"path":[4,67],"span":[1198,0,1203,1],"leadingComments":"\n Computer Bus: from Windows.Bus\n WMI mappings from https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-bus\n"},{"path":[4,67,1],"span":[1198,8,19]},{"path":[4,67,2,0],"span":[1199,2,29]},{"path":[4,67,2,0,4],"span":[1199,2,10]},{"path":[4,67,2,0,5],"span":[1199,11,16]},{"path":[4,67,2,0,1],"span":[1199,17,24]},{"path":[4,67,2,0,3],"span":[1199,27,28]},{"path":[4,67,2,1],"span":[1200,2,36]},{"path":[4,67,2,1,4],"span":[1200,2,10]},{"path":[4,67,2,1,6],"span":[1200,11,22]},{"path":[4,67,2,1,1],"span":[1200,23,31]},{"path":[4,67,2,1,3],"span":[1200,34,35]},{"path":[4,67,2,2],"span":[1201,2,32]},{"path":[4,67,2,2,4],"span":[1201,2,10]},{"path":[4,67,2,2,5],"span":[1201,11,17]},{"path":[4,67,2,2,1],"span":[1201,18,27]},{"path":[4,67,2,2,3],"span":[1201,30,31]},{"path":[4,67,2,3],"span":[1202,2,36]},{"path":[4,67,2,3,4],"span":[1202,2,10]},{"path":[4,67,2,3,5],"span":[1202,11,17]},{"path":[4,67,2,3,1],"span":[1202,18,31]},{"path":[4,67,2,3,3],"span":[1202,34,35]},{"path":[4,68],"span":[1209,0,1217,1],"leadingComments":"\n Computer Infrared: from Windows.Infrared\n WMI mappings from https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-infrareddevice\n"},{"path":[4,68,1],"span":[1209,8,24]},{"path":[4,68,2,0],"span":[1210,2,40]},{"path":[4,68,2,0,4],"span":[1210,2,10]},{"path":[4,68,2,0,6],"span":[1210,11,22]},{"path":[4,68,2,0,1],"span":[1210,23,35]},{"path":[4,68,2,0,3],"span":[1210,38,39]},{"path":[4,68,2,1],"span":[1211,2,30]},{"path":[4,68,2,1,4],"span":[1211,2,10]},{"path":[4,68,2,1,5],"span":[1211,11,17]},{"path":[4,68,2,1,1],"span":[1211,18,25]},{"path":[4,68,2,1,3],"span":[1211,28,29]},{"path":[4,68,2,2],"span":[1212,2,53]},{"path":[4,68,2,2,4],"span":[1212,2,10]},{"path":[4,68,2,2,6],"span":[1212,11,22]},{"path":[4,68,2,2,1],"span":[1212,23,48]},{"path":[4,68,2,2,3],"span":[1212,51,52]},{"path":[4,68,2,3],"span":[1213,2,47]},{"path":[4,68,2,3,4],"span":[1213,2,10]},{"path":[4,68,2,3,5],"span":[1213,11,15]},{"path":[4,68,2,3,1],"span":[1213,16,42]},{"path":[4,68,2,3,3],"span":[1213,45,46]},{"path":[4,68,2,4],"span":[1214,2,32]},{"path":[4,68,2,4,4],"span":[1214,2,10]},{"path":[4,68,2,4,5],"span":[1214,11,17]},{"path":[4,68,2,4,1],"span":[1214,18,27]},{"path":[4,68,2,4,3],"span":[1214,30,31]},{"path":[4,68,2,5],"span":[1215,2,35]},{"path":[4,68,2,5,4],"span":[1215,2,10]},{"path":[4,68,2,5,5],"span":[1215,11,17]},{"path":[4,68,2,5,1],"span":[1215,18,30]},{"path":[4,68,2,5,3],"span":[1215,33,34]},{"path":[4,68,2,6],"span":[1216,2,46]},{"path":[4,68,2,6,4],"span":[1216,2,10]},{"path":[4,68,2,6,6],"span":[1216,11,22]},{"path":[4,68,2,6,1],"span":[1216,23,41]},{"path":[4,68,2,6,3],"span":[1216,44,45]},{"path":[4,69],"span":[1223,0,1235,1],"leadingComments":"\n Pointing Device for computers, like mouse or trackpad: Windows.PointingDevice\n"},{"path":[4,69,1],"span":[1223,8,22]},{"path":[4,69,2,0],"span":[1224,2,30]},{"path":[4,69,2,0,4],"span":[1224,2,10]},{"path":[4,69,2,0,5],"span":[1224,11,17]},{"path":[4,69,2,0,1],"span":[1224,18,25]},{"path":[4,69,2,0,3],"span":[1224,28,29]},{"path":[4,69,2,1],"span":[1225,2,32]},{"path":[4,69,2,1,4],"span":[1225,2,10]},{"path":[4,69,2,1,5],"span":[1225,11,17]},{"path":[4,69,2,1,1],"span":[1225,18,27]},{"path":[4,69,2,1,3],"span":[1225,30,31]},{"path":[4,69,2,2],"span":[1226,2,44]},{"path":[4,69,2,2,4],"span":[1226,2,10]},{"path":[4,69,2,2,6],"span":[1226,11,22]},{"path":[4,69,2,2,1],"span":[1226,23,39]},{"path":[4,69,2,2,3],"span":[1226,42,43]},{"path":[4,69,2,3],"span":[1227,2,45]},{"path":[4,69,2,3,4],"span":[1227,2,10]},{"path":[4,69,2,3,5],"span":[1227,11,16]},{"path":[4,69,2,3,1],"span":[1227,18,40]},{"path":[4,69,2,3,3],"span":[1227,43,44]},{"path":[4,69,2,4],"span":[1228,2,38]},{"path":[4,69,2,4,4],"span":[1228,2,10]},{"path":[4,69,2,4,6],"span":[1228,11,22]},{"path":[4,69,2,4,1],"span":[1228,23,33]},{"path":[4,69,2,4,3],"span":[1228,36,37]},{"path":[4,69,2,5],"span":[1229,2,36]},{"path":[4,69,2,5,4],"span":[1229,2,10]},{"path":[4,69,2,5,5],"span":[1229,11,17]},{"path":[4,69,2,5,1],"span":[1229,18,31]},{"path":[4,69,2,5,3],"span":[1229,34,35]},{"path":[4,69,2,6],"span":[1230,2,34]},{"path":[4,69,2,6,4],"span":[1230,2,10]},{"path":[4,69,2,6,5],"span":[1230,11,17]},{"path":[4,69,2,6,1],"span":[1230,18,29]},{"path":[4,69,2,6,3],"span":[1230,32,33]},{"path":[4,69,2,7],"span":[1231,2,35]},{"path":[4,69,2,7,4],"span":[1231,2,10]},{"path":[4,69,2,7,5],"span":[1231,11,17]},{"path":[4,69,2,7,1],"span":[1231,18,30]},{"path":[4,69,2,7,3],"span":[1231,33,34]},{"path":[4,69,2,8],"span":[1232,2,40]},{"path":[4,69,2,8,4],"span":[1232,2,10]},{"path":[4,69,2,8,5],"span":[1232,11,16]},{"path":[4,69,2,8,1],"span":[1232,18,35]},{"path":[4,69,2,8,3],"span":[1232,38,39]},{"path":[4,69,2,9],"span":[1233,2,42]},{"path":[4,69,2,9,4],"span":[1233,2,10]},{"path":[4,69,2,9,6],"span":[1233,11,22]},{"path":[4,69,2,9,1],"span":[1233,23,36]},{"path":[4,69,2,9,3],"span":[1233,39,41]},{"path":[4,69,2,10],"span":[1234,2,44]},{"path":[4,69,2,10,4],"span":[1234,2,10]},{"path":[4,69,2,10,5],"span":[1234,11,16]},{"path":[4,69,2,10,1],"span":[1234,18,38]},{"path":[4,69,2,10,3],"span":[1234,41,43]},{"path":[4,70],"span":[1240,0,1252,1],"leadingComments":"\n AutoRunCommand: Windows.Autorun and Mac - MacStartupItems\n"},{"path":[4,70,1],"span":[1240,8,22]},{"path":[4,70,2,0],"span":[1241,2,30]},{"path":[4,70,2,0,4],"span":[1241,2,10]},{"path":[4,70,2,0,5],"span":[1241,11,17]},{"path":[4,70,2,0,1],"span":[1241,18,25]},{"path":[4,70,2,0,3],"span":[1241,28,29]},{"path":[4,70,2,1],"span":[1242,2,30]},{"path":[4,70,2,1,4],"span":[1242,2,10]},{"path":[4,70,2,1,5],"span":[1242,11,17]},{"path":[4,70,2,1,1],"span":[1242,18,25]},{"path":[4,70,2,1,3],"span":[1242,28,29]},{"path":[4,70,2,2],"span":[1243,2,31]},{"path":[4,70,2,2,4],"span":[1243,2,10]},{"path":[4,70,2,2,5],"span":[1243,11,17]},{"path":[4,70,2,2,1],"span":[1243,18,26]},{"path":[4,70,2,2,3],"span":[1243,29,30]},{"path":[4,70,2,3],"span":[1244,2,27]},{"path":[4,70,2,3,4],"span":[1244,2,10]},{"path":[4,70,2,3,5],"span":[1244,11,17]},{"path":[4,70,2,3,1],"span":[1244,18,22]},{"path":[4,70,2,3,3],"span":[1244,25,26]},{"path":[4,70,2,4],"span":[1245,2,27],"trailingComments":" Windows Only\n"},{"path":[4,70,2,4,4],"span":[1245,2,10]},{"path":[4,70,2,4,5],"span":[1245,11,17]},{"path":[4,70,2,4,1],"span":[1245,18,22]},{"path":[4,70,2,4,3],"span":[1245,25,26]},{"path":[4,70,2,5],"span":[1246,2,31],"trailingComments":" Windows Only\n"},{"path":[4,70,2,5,4],"span":[1246,2,10]},{"path":[4,70,2,5,5],"span":[1246,11,17]},{"path":[4,70,2,5,1],"span":[1246,18,26]},{"path":[4,70,2,5,3],"span":[1246,29,30]},{"path":[4,70,2,6],"span":[1247,2,39],"trailingComments":" macOS only\n"},{"path":[4,70,2,6,4],"span":[1247,2,10]},{"path":[4,70,2,6,5],"span":[1247,11,17]},{"path":[4,70,2,6,1],"span":[1247,18,34]},{"path":[4,70,2,6,3],"span":[1247,37,38]},{"path":[4,70,2,7],"span":[1248,2,31],"trailingComments":" macOS only\n"},{"path":[4,70,2,7,4],"span":[1248,2,10]},{"path":[4,70,2,7,5],"span":[1248,11,17]},{"path":[4,70,2,7,1],"span":[1248,18,26]},{"path":[4,70,2,7,3],"span":[1248,29,30]},{"path":[4,70,2,8],"span":[1249,2,31],"trailingComments":" macOS only\n"},{"path":[4,70,2,8,4],"span":[1249,2,10]},{"path":[4,70,2,8,5],"span":[1249,11,17]},{"path":[4,70,2,8,1],"span":[1249,18,26]},{"path":[4,70,2,8,3],"span":[1249,29,30]},{"path":[4,70,2,9],"span":[1250,2,28],"trailingComments":" macOS only\n"},{"path":[4,70,2,9,4],"span":[1250,2,10]},{"path":[4,70,2,9,5],"span":[1250,11,17]},{"path":[4,70,2,9,1],"span":[1250,18,22]},{"path":[4,70,2,9,3],"span":[1250,25,27]},{"path":[4,70,2,10],"span":[1251,2,29],"trailingComments":" macOS only\n"},{"path":[4,70,2,10,4],"span":[1251,2,10]},{"path":[4,70,2,10,5],"span":[1251,11,15]},{"path":[4,70,2,10,1],"span":[1251,16,23]},{"path":[4,70,2,10,3],"span":[1251,26,28]},{"path":[4,71],"span":[1257,0,1268,1],"leadingComments":"\n BootConfig: Windows.BootConfig \n"},{"path":[4,71,1],"span":[1257,8,18]},{"path":[4,71,2,0],"span":[1258,2,37]},{"path":[4,71,2,0,4],"span":[1258,2,10]},{"path":[4,71,2,0,5],"span":[1258,11,17]},{"path":[4,71,2,0,1],"span":[1258,18,32]},{"path":[4,71,2,0,3],"span":[1258,35,36]},{"path":[4,71,2,1],"span":[1259,2,30]},{"path":[4,71,2,1,4],"span":[1259,2,10]},{"path":[4,71,2,1,5],"span":[1259,11,17]},{"path":[4,71,2,1,1],"span":[1259,18,25]},{"path":[4,71,2,1,3],"span":[1259,28,29]},{"path":[4,71,2,2],"span":[1260,2,27]},{"path":[4,71,2,2,4],"span":[1260,2,10]},{"path":[4,71,2,2,5],"span":[1260,11,17]},{"path":[4,71,2,2,1],"span":[1260,18,22]},{"path":[4,71,2,2,3],"span":[1260,25,26]},{"path":[4,71,2,3],"span":[1261,2,41]},{"path":[4,71,2,3,4],"span":[1261,2,10]},{"path":[4,71,2,3,5],"span":[1261,11,17]},{"path":[4,71,2,3,1],"span":[1261,18,36]},{"path":[4,71,2,3,3],"span":[1261,39,40]},{"path":[4,71,2,4],"span":[1262,2,40]},{"path":[4,71,2,4,4],"span":[1262,2,10]},{"path":[4,71,2,4,5],"span":[1262,11,17]},{"path":[4,71,2,4,1],"span":[1262,18,35]},{"path":[4,71,2,4,3],"span":[1262,38,39]},{"path":[4,71,2,5],"span":[1263,2,37]},{"path":[4,71,2,5,4],"span":[1263,2,10]},{"path":[4,71,2,5,5],"span":[1263,11,17]},{"path":[4,71,2,5,1],"span":[1263,18,32]},{"path":[4,71,2,5,3],"span":[1263,35,36]},{"path":[4,71,2,6],"span":[1266,2,34],"leadingComments":" from mac\n"},{"path":[4,71,2,6,4],"span":[1266,2,10]},{"path":[4,71,2,6,5],"span":[1266,11,17]},{"path":[4,71,2,6,1],"span":[1266,18,29]},{"path":[4,71,2,6,3],"span":[1266,32,33]},{"path":[4,71,2,7],"span":[1267,2,32]},{"path":[4,71,2,7,4],"span":[1267,2,10]},{"path":[4,71,2,7,5],"span":[1267,11,17]},{"path":[4,71,2,7,1],"span":[1267,18,27]},{"path":[4,71,2,7,3],"span":[1267,30,31]},{"path":[4,72],"span":[1273,0,1279,1],"leadingComments":"\n SharedResource: windows WindowsShare.\n"},{"path":[4,72,1],"span":[1273,8,22]},{"path":[4,72,2,0],"span":[1274,2,30]},{"path":[4,72,2,0,4],"span":[1274,2,10]},{"path":[4,72,2,0,5],"span":[1274,11,17]},{"path":[4,72,2,0,1],"span":[1274,18,25]},{"path":[4,72,2,0,3],"span":[1274,28,29]},{"path":[4,72,2,1],"span":[1275,2,28]},{"path":[4,72,2,1,4],"span":[1275,2,10]},{"path":[4,72,2,1,5],"span":[1275,11,17]},{"path":[4,72,2,1,1],"span":[1275,18,22]},{"path":[4,72,2,1,3],"span":[1275,26,27]},{"path":[4,72,2,2],"span":[1276,2,27]},{"path":[4,72,2,2,4],"span":[1276,2,10]},{"path":[4,72,2,2,5],"span":[1276,11,17]},{"path":[4,72,2,2,1],"span":[1276,18,22]},{"path":[4,72,2,2,3],"span":[1276,25,26]},{"path":[4,72,2,3],"span":[1277,2,32]},{"path":[4,72,2,3,4],"span":[1277,2,10]},{"path":[4,72,2,3,6],"span":[1277,11,22]},{"path":[4,72,2,3,1],"span":[1277,23,27]},{"path":[4,72,2,3,3],"span":[1277,30,31]},{"path":[4,72,2,4],"span":[1278,2,50]},{"path":[4,72,2,4,4],"span":[1278,2,10]},{"path":[4,72,2,4,6],"span":[1278,11,27]},{"path":[4,72,2,4,1],"span":[1278,28,45]},{"path":[4,72,2,4,3],"span":[1278,48,49]},{"path":[4,73],"span":[1284,1,1291,1],"leadingComments":"\n SharedPermission: windows SharePermissionInfo.\n"},{"path":[4,73,1],"span":[1284,9,25]},{"path":[4,73,2,0],"span":[1285,2,27]},{"path":[4,73,2,0,4],"span":[1285,2,10]},{"path":[4,73,2,0,5],"span":[1285,11,17]},{"path":[4,73,2,0,1],"span":[1285,18,22]},{"path":[4,73,2,0,3],"span":[1285,25,26]},{"path":[4,73,2,1],"span":[1286,2,31]},{"path":[4,73,2,1,4],"span":[1286,2,10]},{"path":[4,73,2,1,5],"span":[1286,11,17]},{"path":[4,73,2,1,1],"span":[1286,18,25]},{"path":[4,73,2,1,3],"span":[1286,29,30]},{"path":[4,73,2,2],"span":[1287,2,32]},{"path":[4,73,2,2,4],"span":[1287,2,10]},{"path":[4,73,2,2,5],"span":[1287,11,15]},{"path":[4,73,2,2,1],"span":[1287,16,27]},{"path":[4,73,2,2,3],"span":[1287,30,31]},{"path":[4,73,2,3],"span":[1288,2,33]},{"path":[4,73,2,3,4],"span":[1288,2,10]},{"path":[4,73,2,3,5],"span":[1288,11,15]},{"path":[4,73,2,3,1],"span":[1288,16,28]},{"path":[4,73,2,3,3],"span":[1288,31,32]},{"path":[4,73,2,4],"span":[1289,2,32]},{"path":[4,73,2,4,4],"span":[1289,2,10]},{"path":[4,73,2,4,5],"span":[1289,11,15]},{"path":[4,73,2,4,1],"span":[1289,16,27]},{"path":[4,73,2,4,3],"span":[1289,30,31]},{"path":[4,73,2,5],"span":[1290,2,34]},{"path":[4,73,2,5,4],"span":[1290,2,10]},{"path":[4,73,2,5,5],"span":[1290,11,17]},{"path":[4,73,2,5,1],"span":[1290,18,29]},{"path":[4,73,2,5,3],"span":[1290,32,33]},{"path":[4,74],"span":[1296,0,1302,1],"leadingComments":"\n RunningProcess: computer running processes. Windows.WindowsProcess\n"},{"path":[4,74,1],"span":[1296,8,22]},{"path":[4,74,2,0],"span":[1297,2,27],"trailingComments":" caption\n"},{"path":[4,74,2,0,4],"span":[1297,2,10]},{"path":[4,74,2,0,5],"span":[1297,11,17]},{"path":[4,74,2,0,1],"span":[1297,18,22]},{"path":[4,74,2,0,3],"span":[1297,25,26]},{"path":[4,74,2,1],"span":[1298,2,27],"trailingComments":" executable_path\n"},{"path":[4,74,2,1,4],"span":[1298,2,10]},{"path":[4,74,2,1,5],"span":[1298,11,17]},{"path":[4,74,2,1,1],"span":[1298,18,22]},{"path":[4,74,2,1,3],"span":[1298,25,26]},{"path":[4,74,2,2],"span":[1299,2,29]},{"path":[4,74,2,2,4],"span":[1299,2,10]},{"path":[4,74,2,2,5],"span":[1299,11,16]},{"path":[4,74,2,2,1],"span":[1299,17,24]},{"path":[4,74,2,2,3],"span":[1299,27,28]},{"path":[4,74,2,3],"span":[1300,2,30],"trailingComments":" windows: 0 = LOWEST , 31 = HIGHEST, as per table: https://learn.microsoft.com/en-us/windows/win32/procthread/scheduling-priorities\n"},{"path":[4,74,2,3,4],"span":[1300,2,10]},{"path":[4,74,2,3,5],"span":[1300,11,16]},{"path":[4,74,2,3,1],"span":[1300,17,25]},{"path":[4,74,2,3,3],"span":[1300,28,29]},{"path":[4,74,2,4],"span":[1301,2,29]},{"path":[4,74,2,4,4],"span":[1301,2,10]},{"path":[4,74,2,4,5],"span":[1301,11,17]},{"path":[4,74,2,4,1],"span":[1301,18,24]},{"path":[4,74,2,4,3],"span":[1301,27,28]},{"path":[4,75],"span":[1307,0,1318,1],"leadingComments":"\n Operating System Service: WindowsService.\n"},{"path":[4,75,1],"span":[1307,8,30]},{"path":[4,75,2,0],"span":[1308,2,27]},{"path":[4,75,2,0,4],"span":[1308,2,10]},{"path":[4,75,2,0,5],"span":[1308,11,17]},{"path":[4,75,2,0,1],"span":[1308,18,22]},{"path":[4,75,2,0,3],"span":[1308,25,26]},{"path":[4,75,2,1],"span":[1309,2,30]},{"path":[4,75,2,1,4],"span":[1309,2,10]},{"path":[4,75,2,1,5],"span":[1309,11,17]},{"path":[4,75,2,1,1],"span":[1309,18,25]},{"path":[4,75,2,1,3],"span":[1309,28,29]},{"path":[4,75,2,2],"span":[1310,2,31]},{"path":[4,75,2,2,4],"span":[1310,2,10]},{"path":[4,75,2,2,5],"span":[1310,11,17]},{"path":[4,75,2,2,1],"span":[1310,18,26]},{"path":[4,75,2,2,3],"span":[1310,29,30]},{"path":[4,75,2,3],"span":[1311,2,33]},{"path":[4,75,2,3,4],"span":[1311,2,10]},{"path":[4,75,2,3,5],"span":[1311,11,17]},{"path":[4,75,2,3,1],"span":[1311,18,28]},{"path":[4,75,2,3,3],"span":[1311,31,32]},{"path":[4,75,2,4],"span":[1312,2,33]},{"path":[4,75,2,4,4],"span":[1312,2,10]},{"path":[4,75,2,4,5],"span":[1312,11,17]},{"path":[4,75,2,4,1],"span":[1312,18,28]},{"path":[4,75,2,4,3],"span":[1312,31,32]},{"path":[4,75,2,5],"span":[1313,2,28]},{"path":[4,75,2,5,4],"span":[1313,2,10]},{"path":[4,75,2,5,5],"span":[1313,11,17]},{"path":[4,75,2,5,1],"span":[1313,18,23]},{"path":[4,75,2,5,3],"span":[1313,26,27]},{"path":[4,75,2,6],"span":[1314,2,28]},{"path":[4,75,2,6,4],"span":[1314,2,10]},{"path":[4,75,2,6,5],"span":[1314,11,15]},{"path":[4,75,2,6,1],"span":[1314,16,23]},{"path":[4,75,2,6,3],"span":[1314,26,27]},{"path":[4,75,2,7],"span":[1315,2,33]},{"path":[4,75,2,7,4],"span":[1315,2,10]},{"path":[4,75,2,7,5],"span":[1315,11,15]},{"path":[4,75,2,7,1],"span":[1315,16,28]},{"path":[4,75,2,7,3],"span":[1315,31,32]},{"path":[4,75,2,8],"span":[1316,2,32]},{"path":[4,75,2,8,4],"span":[1316,2,10]},{"path":[4,75,2,8,5],"span":[1316,11,15]},{"path":[4,75,2,8,1],"span":[1316,16,27]},{"path":[4,75,2,8,3],"span":[1316,30,31]},{"path":[4,75,2,9],"span":[1317,2,38]},{"path":[4,75,2,9,4],"span":[1317,2,10]},{"path":[4,75,2,9,5],"span":[1317,11,15]},{"path":[4,75,2,9,1],"span":[1317,16,32]},{"path":[4,75,2,9,3],"span":[1317,35,37]},{"path":[4,76],"span":[1323,0,1327,1],"leadingComments":"\n Operating System Recovery: only windows atm.\n"},{"path":[4,76,1],"span":[1323,8,31]},{"path":[4,76,8,0],"span":[1324,2,1326,3]},{"path":[4,76,8,0,1],"span":[1324,8,10]},{"path":[4,76,2,0],"span":[1325,6,32]},{"path":[4,76,2,0,6],"span":[1325,6,23]},{"path":[4,76,2,0,1],"span":[1325,24,27]},{"path":[4,76,2,0,3],"span":[1325,30,31]},{"path":[4,77],"span":[1332,0,1343,1],"leadingComments":"\n Windows WindowsOsRecovery.\n"},{"path":[4,77,1],"span":[1332,8,25]},{"path":[4,77,2,0],"span":[1333,2,32]},{"path":[4,77,2,0,4],"span":[1333,2,10]},{"path":[4,77,2,0,5],"span":[1333,11,15]},{"path":[4,77,2,0,1],"span":[1333,16,27]},{"path":[4,77,2,0,3],"span":[1333,30,31]},{"path":[4,77,2,1],"span":[1334,2,38]},{"path":[4,77,2,1,4],"span":[1334,2,10]},{"path":[4,77,2,1,5],"span":[1334,11,17]},{"path":[4,77,2,1,1],"span":[1334,18,33]},{"path":[4,77,2,1,3],"span":[1334,36,37]},{"path":[4,77,2,2],"span":[1335,2,37]},{"path":[4,77,2,2,4],"span":[1335,2,10]},{"path":[4,77,2,2,5],"span":[1335,11,15]},{"path":[4,77,2,2,1],"span":[1335,16,32]},{"path":[4,77,2,2,3],"span":[1335,35,36]},{"path":[4,77,2,3],"span":[1336,2,27]},{"path":[4,77,2,3,4],"span":[1336,2,10]},{"path":[4,77,2,3,5],"span":[1336,11,17]},{"path":[4,77,2,3,1],"span":[1336,18,22]},{"path":[4,77,2,3,3],"span":[1336,25,26]},{"path":[4,77,2,4],"span":[1337,2,50]},{"path":[4,77,2,4,4],"span":[1337,2,10]},{"path":[4,77,2,4,5],"span":[1337,11,15]},{"path":[4,77,2,4,1],"span":[1337,16,45]},{"path":[4,77,2,4,3],"span":[1337,48,49]},{"path":[4,77,2,5],"span":[1338,2,37]},{"path":[4,77,2,5,4],"span":[1338,2,10]},{"path":[4,77,2,5,5],"span":[1338,11,15]},{"path":[4,77,2,5,1],"span":[1338,16,32]},{"path":[4,77,2,5,3],"span":[1338,35,36]},{"path":[4,77,2,6],"span":[1339,2,37]},{"path":[4,77,2,6,4],"span":[1339,2,10]},{"path":[4,77,2,6,5],"span":[1339,11,15]},{"path":[4,77,2,6,1],"span":[1339,16,32]},{"path":[4,77,2,6,3],"span":[1339,35,36]},{"path":[4,77,2,7],"span":[1340,2,40]},{"path":[4,77,2,7,4],"span":[1340,2,10]},{"path":[4,77,2,7,5],"span":[1340,11,15]},{"path":[4,77,2,7,1],"span":[1340,16,35]},{"path":[4,77,2,7,3],"span":[1340,38,39]},{"path":[4,77,2,8],"span":[1341,2,44]},{"path":[4,77,2,8,4],"span":[1341,2,10]},{"path":[4,77,2,8,6],"span":[1341,11,22]},{"path":[4,77,2,8,1],"span":[1341,23,38]},{"path":[4,77,2,8,3],"span":[1341,41,43]},{"path":[4,77,2,9],"span":[1342,2,43]},{"path":[4,77,2,9,4],"span":[1342,2,10]},{"path":[4,77,2,9,5],"span":[1342,11,17]},{"path":[4,77,2,9,1],"span":[1342,18,37]},{"path":[4,77,2,9,3],"span":[1342,40,42]},{"path":[4,78],"span":[1349,0,1359,1],"leadingComments":"\n Driver: computer drivers.\n"},{"path":[4,78,1],"span":[1349,8,14]},{"path":[4,78,8,0],"span":[1350,2,1355,3]},{"path":[4,78,8,0,1],"span":[1350,8,14]},{"path":[4,78,2,0],"span":[1351,4,36]},{"path":[4,78,2,0,6],"span":[1351,4,23]},{"path":[4,78,2,0,1],"span":[1351,24,31]},{"path":[4,78,2,0,3],"span":[1351,34,35]},{"path":[4,78,2,1],"span":[1352,4,39]},{"path":[4,78,2,1,6],"span":[1352,4,26]},{"path":[4,78,2,1,1],"span":[1352,27,34]},{"path":[4,78,2,1,3],"span":[1352,37,38]},{"path":[4,78,2,2],"span":[1353,4,41]},{"path":[4,78,2,2,6],"span":[1353,4,24]},{"path":[4,78,2,2,1],"span":[1353,25,36]},{"path":[4,78,2,2,3],"span":[1353,39,40]},{"path":[4,78,2,3],"span":[1354,4,50]},{"path":[4,78,2,3,6],"span":[1354,4,24]},{"path":[4,78,2,3,1],"span":[1354,25,45]},{"path":[4,78,2,3,3],"span":[1354,48,49]},{"path":[4,78,2,4],"span":[1357,2,29]},{"path":[4,78,2,4,4],"span":[1357,2,10]},{"path":[4,78,2,4,5],"span":[1357,11,17]},{"path":[4,78,2,4,1],"span":[1357,18,22]},{"path":[4,78,2,4,3],"span":[1357,25,28]},{"path":[4,78,2,5],"span":[1358,2,36]},{"path":[4,78,2,5,4],"span":[1358,2,10]},{"path":[4,78,2,5,5],"span":[1358,11,17]},{"path":[4,78,2,5,1],"span":[1358,18,29]},{"path":[4,78,2,5,3],"span":[1358,32,35]},{"path":[4,79],"span":[1364,0,1383,1],"leadingComments":"\n WindowsSystemDriver: Windows.SystemDriver\n"},{"path":[4,79,1],"span":[1364,8,27]},{"path":[4,79,2,0],"span":[1365,2,34]},{"path":[4,79,2,0,4],"span":[1365,2,10]},{"path":[4,79,2,0,5],"span":[1365,11,15]},{"path":[4,79,2,0,1],"span":[1365,17,29]},{"path":[4,79,2,0,3],"span":[1365,32,33]},{"path":[4,79,2,1],"span":[1366,2,33]},{"path":[4,79,2,1,4],"span":[1366,2,10]},{"path":[4,79,2,1,5],"span":[1366,11,15]},{"path":[4,79,2,1,1],"span":[1366,17,28]},{"path":[4,79,2,1,3],"span":[1366,31,32]},{"path":[4,79,2,2],"span":[1367,2,38]},{"path":[4,79,2,2,4],"span":[1367,2,10]},{"path":[4,79,2,2,5],"span":[1367,11,15]},{"path":[4,79,2,2,1],"span":[1367,17,33]},{"path":[4,79,2,2,3],"span":[1367,36,37]},{"path":[4,79,2,3],"span":[1368,2,36]},{"path":[4,79,2,3,4],"span":[1368,2,10]},{"path":[4,79,2,3,5],"span":[1368,11,17]},{"path":[4,79,2,3,1],"span":[1368,18,31]},{"path":[4,79,2,3,3],"span":[1368,34,35]},{"path":[4,79,2,4],"span":[1369,2,32]},{"path":[4,79,2,4,4],"span":[1369,2,10]},{"path":[4,79,2,4,5],"span":[1369,11,16]},{"path":[4,79,2,4,1],"span":[1369,18,27]},{"path":[4,79,2,4,3],"span":[1369,30,31]},{"path":[4,79,2,5],"span":[1370,2,32]},{"path":[4,79,2,5,4],"span":[1370,2,10]},{"path":[4,79,2,5,5],"span":[1370,11,17]},{"path":[4,79,2,5,1],"span":[1370,18,27]},{"path":[4,79,2,5,3],"span":[1370,30,31]},{"path":[4,79,2,6],"span":[1371,2,49]},{"path":[4,79,2,6,4],"span":[1371,2,10]},{"path":[4,79,2,6,5],"span":[1371,11,16]},{"path":[4,79,2,6,1],"span":[1371,18,44]},{"path":[4,79,2,6,3],"span":[1371,47,48]},{"path":[4,79,2,7],"span":[1372,2,34]},{"path":[4,79,2,7,4],"span":[1372,2,10]},{"path":[4,79,2,7,5],"span":[1372,11,17]},{"path":[4,79,2,7,1],"span":[1372,18,30]},{"path":[4,79,2,7,3],"span":[1372,32,33]},{"path":[4,79,2,8],"span":[1373,2,29]},{"path":[4,79,2,8,4],"span":[1373,2,10]},{"path":[4,79,2,8,5],"span":[1373,11,15]},{"path":[4,79,2,8,1],"span":[1373,17,24]},{"path":[4,79,2,8,3],"span":[1373,27,28]},{"path":[4,79,2,9],"span":[1374,2,34]},{"path":[4,79,2,9,4],"span":[1374,2,10]},{"path":[4,79,2,9,5],"span":[1374,11,17]},{"path":[4,79,2,9,1],"span":[1374,18,28]},{"path":[4,79,2,9,3],"span":[1374,31,33]},{"path":[4,79,2,10],"span":[1375,2,34]},{"path":[4,79,2,10,4],"span":[1375,2,10]},{"path":[4,79,2,10,5],"span":[1375,11,17]},{"path":[4,79,2,10,1],"span":[1375,18,28]},{"path":[4,79,2,10,3],"span":[1375,31,33]},{"path":[4,79,2,11],"span":[1376,2,29]},{"path":[4,79,2,11,4],"span":[1376,2,10]},{"path":[4,79,2,11,5],"span":[1376,11,17]},{"path":[4,79,2,11,1],"span":[1376,18,23]},{"path":[4,79,2,11,3],"span":[1376,26,28]},{"path":[4,79,2,12],"span":[1377,2,30]},{"path":[4,79,2,12,4],"span":[1377,2,10]},{"path":[4,79,2,12,5],"span":[1377,11,17]},{"path":[4,79,2,12,1],"span":[1377,18,24]},{"path":[4,79,2,12,3],"span":[1377,27,29]},{"path":[4,79,2,13],"span":[1378,2,30]},{"path":[4,79,2,13,4],"span":[1378,2,10]},{"path":[4,79,2,13,5],"span":[1378,11,16]},{"path":[4,79,2,13,1],"span":[1378,18,24]},{"path":[4,79,2,13,3],"span":[1378,27,29]},{"path":[4,79,2,14],"span":[1379,2,28]},{"path":[4,79,2,14,4],"span":[1379,2,10]},{"path":[4,79,2,14,5],"span":[1379,11,17]},{"path":[4,79,2,14,1],"span":[1379,18,22]},{"path":[4,79,2,14,3],"span":[1379,25,27]},{"path":[4,79,2,15],"span":[1380,2,35]},{"path":[4,79,2,15,4],"span":[1380,2,10]},{"path":[4,79,2,15,5],"span":[1380,11,17]},{"path":[4,79,2,15,1],"span":[1380,18,29]},{"path":[4,79,2,15,3],"span":[1380,32,34]},{"path":[4,79,2,16],"span":[1381,2,31]},{"path":[4,79,2,16,4],"span":[1381,2,10]},{"path":[4,79,2,16,5],"span":[1381,11,17]},{"path":[4,79,2,16,1],"span":[1381,18,25]},{"path":[4,79,2,16,3],"span":[1381,28,30]},{"path":[4,79,2,17],"span":[1382,2,36]},{"path":[4,79,2,17,4],"span":[1382,2,10]},{"path":[4,79,2,17,5],"span":[1382,11,17]},{"path":[4,79,2,17,1],"span":[1382,18,30]},{"path":[4,79,2,17,3],"span":[1382,33,35]},{"path":[4,80],"span":[1388,0,1407,1],"leadingComments":"\n WindowsPnpSignedDriver: Windows.PnpSignedDriver\n"},{"path":[4,80,1],"span":[1388,8,30]},{"path":[4,80,2,0],"span":[1389,2,32]},{"path":[4,80,2,0,4],"span":[1389,2,10]},{"path":[4,80,2,0,5],"span":[1389,11,17]},{"path":[4,80,2,0,1],"span":[1389,18,27]},{"path":[4,80,2,0,3],"span":[1389,30,31]},{"path":[4,80,2,1],"span":[1390,2,32]},{"path":[4,80,2,1,4],"span":[1390,2,10]},{"path":[4,80,2,1,5],"span":[1390,11,17]},{"path":[4,80,2,1,1],"span":[1390,18,27]},{"path":[4,80,2,1,3],"span":[1390,30,31]},{"path":[4,80,2,2],"span":[1391,2,33]},{"path":[4,80,2,2,4],"span":[1391,2,10]},{"path":[4,80,2,2,5],"span":[1391,11,17]},{"path":[4,80,2,2,1],"span":[1391,18,28]},{"path":[4,80,2,2,3],"span":[1391,31,32]},{"path":[4,80,2,3],"span":[1392,2,34]},{"path":[4,80,2,3,4],"span":[1392,2,10]},{"path":[4,80,2,3,5],"span":[1392,11,17]},{"path":[4,80,2,3,1],"span":[1392,18,29]},{"path":[4,80,2,3,3],"span":[1392,32,33]},{"path":[4,80,2,4],"span":[1393,2,36]},{"path":[4,80,2,4,4],"span":[1393,2,10]},{"path":[4,80,2,4,5],"span":[1393,11,17]},{"path":[4,80,2,4,1],"span":[1393,18,31]},{"path":[4,80,2,4,3],"span":[1393,34,35]},{"path":[4,80,2,5],"span":[1394,2,44]},{"path":[4,80,2,5,6],"span":[1394,2,27]},{"path":[4,80,2,5,1],"span":[1394,28,39]},{"path":[4,80,2,5,3],"span":[1394,42,43]},{"path":[4,80,2,6],"span":[1395,2,37]},{"path":[4,80,2,6,4],"span":[1395,2,10]},{"path":[4,80,2,6,5],"span":[1395,11,17]},{"path":[4,80,2,6,1],"span":[1395,18,32]},{"path":[4,80,2,6,3],"span":[1395,35,36]},{"path":[4,80,2,7],"span":[1396,2,34]},{"path":[4,80,2,7,4],"span":[1396,2,10]},{"path":[4,80,2,7,5],"span":[1396,11,17]},{"path":[4,80,2,7,1],"span":[1396,18,29]},{"path":[4,80,2,7,3],"span":[1396,32,33]},{"path":[4,80,2,8],"span":[1397,2,31]},{"path":[4,80,2,8,4],"span":[1397,2,10]},{"path":[4,80,2,8,5],"span":[1397,11,17]},{"path":[4,80,2,8,1],"span":[1397,18,26]},{"path":[4,80,2,8,3],"span":[1397,29,30]},{"path":[4,80,2,9],"span":[1398,2,32]},{"path":[4,80,2,9,4],"span":[1398,2,10]},{"path":[4,80,2,9,5],"span":[1398,11,15]},{"path":[4,80,2,9,1],"span":[1398,17,26]},{"path":[4,80,2,9,3],"span":[1398,29,31]},{"path":[4,80,2,10],"span":[1399,2,32]},{"path":[4,80,2,10,4],"span":[1399,2,10]},{"path":[4,80,2,10,5],"span":[1399,11,17]},{"path":[4,80,2,10,1],"span":[1399,18,26]},{"path":[4,80,2,10,3],"span":[1399,29,31]},{"path":[4,80,2,11],"span":[1400,2,27]},{"path":[4,80,2,11,4],"span":[1400,2,10]},{"path":[4,80,2,11,5],"span":[1400,11,17]},{"path":[4,80,2,11,1],"span":[1400,18,21]},{"path":[4,80,2,11,3],"span":[1400,24,26]},{"path":[4,80,2,12],"span":[1401,2,36]},{"path":[4,80,2,12,4],"span":[1401,2,10]},{"path":[4,80,2,12,5],"span":[1401,11,17]},{"path":[4,80,2,12,1],"span":[1401,18,30]},{"path":[4,80,2,12,3],"span":[1401,33,35]},{"path":[4,80,2,13],"span":[1402,2,35]},{"path":[4,80,2,13,4],"span":[1402,2,10]},{"path":[4,80,2,13,5],"span":[1402,11,17]},{"path":[4,80,2,13,1],"span":[1402,18,29]},{"path":[4,80,2,13,3],"span":[1402,32,34]},{"path":[4,80,2,14],"span":[1403,2,36]},{"path":[4,80,2,14,4],"span":[1403,2,10]},{"path":[4,80,2,14,5],"span":[1403,11,17]},{"path":[4,80,2,14,1],"span":[1403,18,30]},{"path":[4,80,2,14,3],"span":[1403,33,35]},{"path":[4,80,2,15],"span":[1404,2,35]},{"path":[4,80,2,15,4],"span":[1404,2,10]},{"path":[4,80,2,15,5],"span":[1404,11,17]},{"path":[4,80,2,15,1],"span":[1404,18,29]},{"path":[4,80,2,15,3],"span":[1404,32,34]},{"path":[4,80,2,16],"span":[1405,2,30]},{"path":[4,80,2,16,4],"span":[1405,2,10]},{"path":[4,80,2,16,5],"span":[1405,11,17]},{"path":[4,80,2,16,1],"span":[1405,18,24]},{"path":[4,80,2,16,3],"span":[1405,27,29]},{"path":[4,80,2,17],"span":[1406,2,44]},{"path":[4,80,2,17,4],"span":[1406,2,10]},{"path":[4,80,2,17,5],"span":[1406,11,17]},{"path":[4,80,2,17,1],"span":[1406,18,38]},{"path":[4,80,2,17,3],"span":[1406,41,43]},{"path":[4,81],"span":[1412,0,1432,1],"leadingComments":"\n WindowsPrinterDriver: Windows.PrinterDriver\n"},{"path":[4,81,1],"span":[1412,8,28]},{"path":[4,81,2,0],"span":[1413,2,34]},{"path":[4,81,2,0,4],"span":[1413,2,10]},{"path":[4,81,2,0,5],"span":[1413,11,17]},{"path":[4,81,2,0,1],"span":[1413,18,29]},{"path":[4,81,2,0,3],"span":[1413,32,33]},{"path":[4,81,2,1],"span":[1414,2,32]},{"path":[4,81,2,1,4],"span":[1414,2,10]},{"path":[4,81,2,1,5],"span":[1414,11,17]},{"path":[4,81,2,1,1],"span":[1414,18,27]},{"path":[4,81,2,1,3],"span":[1414,30,31]},{"path":[4,81,2,2],"span":[1415,2,40]},{"path":[4,81,2,2,4],"span":[1415,2,10]},{"path":[4,81,2,2,5],"span":[1415,11,17]},{"path":[4,81,2,2,1],"span":[1415,18,35]},{"path":[4,81,2,2,3],"span":[1415,38,39]},{"path":[4,81,2,3],"span":[1416,2,34]},{"path":[4,81,2,3,4],"span":[1416,2,10]},{"path":[4,81,2,3,5],"span":[1416,11,17]},{"path":[4,81,2,3,1],"span":[1416,18,29]},{"path":[4,81,2,3,3],"span":[1416,32,33]},{"path":[4,81,2,4],"span":[1417,2,32]},{"path":[4,81,2,4,4],"span":[1417,2,10]},{"path":[4,81,2,4,5],"span":[1417,11,17]},{"path":[4,81,2,4,1],"span":[1417,18,27]},{"path":[4,81,2,4,3],"span":[1417,30,31]},{"path":[4,81,2,5],"span":[1418,2,32]},{"path":[4,81,2,5,4],"span":[1418,2,10]},{"path":[4,81,2,5,5],"span":[1418,11,17]},{"path":[4,81,2,5,1],"span":[1418,18,27]},{"path":[4,81,2,5,3],"span":[1418,30,31]},{"path":[4,81,2,6],"span":[1419,2,35]},{"path":[4,81,2,6,4],"span":[1419,2,10]},{"path":[4,81,2,6,5],"span":[1419,11,17]},{"path":[4,81,2,6,1],"span":[1419,18,30]},{"path":[4,81,2,6,3],"span":[1419,33,34]},{"path":[4,81,2,7],"span":[1420,2,30]},{"path":[4,81,2,7,4],"span":[1420,2,10]},{"path":[4,81,2,7,5],"span":[1420,11,17]},{"path":[4,81,2,7,1],"span":[1420,18,25]},{"path":[4,81,2,7,3],"span":[1420,28,29]},{"path":[4,81,2,8],"span":[1421,2,30]},{"path":[4,81,2,8,4],"span":[1421,2,10]},{"path":[4,81,2,8,5],"span":[1421,11,16]},{"path":[4,81,2,8,1],"span":[1421,18,25]},{"path":[4,81,2,8,3],"span":[1421,28,29]},{"path":[4,81,2,9],"span":[1422,2,38]},{"path":[4,81,2,9,4],"span":[1422,2,10]},{"path":[4,81,2,9,5],"span":[1422,11,17]},{"path":[4,81,2,9,1],"span":[1422,18,32]},{"path":[4,81,2,9,3],"span":[1422,35,37]},{"path":[4,81,2,10],"span":[1423,2,35]},{"path":[4,81,2,10,4],"span":[1423,2,10]},{"path":[4,81,2,10,5],"span":[1423,11,17]},{"path":[4,81,2,10,1],"span":[1423,18,29]},{"path":[4,81,2,10,3],"span":[1423,32,34]},{"path":[4,81,2,11],"span":[1424,2,35]},{"path":[4,81,2,11,4],"span":[1424,2,10]},{"path":[4,81,2,11,5],"span":[1424,11,17]},{"path":[4,81,2,11,1],"span":[1424,18,29]},{"path":[4,81,2,11,3],"span":[1424,32,34]},{"path":[4,81,2,12],"span":[1425,2,32]},{"path":[4,81,2,12,4],"span":[1425,2,10]},{"path":[4,81,2,12,5],"span":[1425,11,17]},{"path":[4,81,2,12,1],"span":[1425,18,26]},{"path":[4,81,2,12,3],"span":[1425,29,31]},{"path":[4,81,2,13],"span":[1426,2,43]},{"path":[4,81,2,13,4],"span":[1426,2,10]},{"path":[4,81,2,13,5],"span":[1426,11,17]},{"path":[4,81,2,13,1],"span":[1426,18,37]},{"path":[4,81,2,13,3],"span":[1426,40,42]},{"path":[4,81,2,14],"span":[1427,2,39]},{"path":[4,81,2,14,4],"span":[1427,2,10]},{"path":[4,81,2,14,5],"span":[1427,11,17]},{"path":[4,81,2,14,1],"span":[1427,18,33]},{"path":[4,81,2,14,3],"span":[1427,36,38]},{"path":[4,81,2,15],"span":[1428,2,28]},{"path":[4,81,2,15,4],"span":[1428,2,10]},{"path":[4,81,2,15,5],"span":[1428,11,17]},{"path":[4,81,2,15,1],"span":[1428,18,22]},{"path":[4,81,2,15,3],"span":[1428,25,27]},{"path":[4,81,2,16],"span":[1429,2,32]},{"path":[4,81,2,16,4],"span":[1429,2,10]},{"path":[4,81,2,16,5],"span":[1429,11,17]},{"path":[4,81,2,16,1],"span":[1429,18,26]},{"path":[4,81,2,16,3],"span":[1429,29,31]},{"path":[4,81,2,17],"span":[1430,2,42]},{"path":[4,81,2,17,4],"span":[1430,2,10]},{"path":[4,81,2,17,5],"span":[1430,11,17]},{"path":[4,81,2,17,1],"span":[1430,18,36]},{"path":[4,81,2,17,3],"span":[1430,39,41]},{"path":[4,81,2,18],"span":[1431,2,36]},{"path":[4,81,2,18,4],"span":[1431,2,10]},{"path":[4,81,2,18,5],"span":[1431,11,17]},{"path":[4,81,2,18,1],"span":[1431,18,30]},{"path":[4,81,2,18,3],"span":[1431,33,35]},{"path":[4,82],"span":[1435,0,1456,1],"leadingComments":" Mac OS Kernel Extension. From MacOs.Extension inbound model\n"},{"path":[4,82,1],"span":[1435,8,28]},{"path":[4,82,2,0],"span":[1436,2,27]},{"path":[4,82,2,0,4],"span":[1436,2,10]},{"path":[4,82,2,0,5],"span":[1436,11,17]},{"path":[4,82,2,0,1],"span":[1436,18,22]},{"path":[4,82,2,0,3],"span":[1436,25,26]},{"path":[4,82,2,1],"span":[1437,2,43]},{"path":[4,82,2,1,4],"span":[1437,2,10]},{"path":[4,82,2,1,5],"span":[1437,11,17]},{"path":[4,82,2,1,1],"span":[1437,18,38]},{"path":[4,82,2,1,3],"span":[1437,41,42]},{"path":[4,82,2,2],"span":[1438,2,36]},{"path":[4,82,2,2,4],"span":[1438,2,10]},{"path":[4,82,2,2,5],"span":[1438,11,17]},{"path":[4,82,2,2,1],"span":[1438,18,31]},{"path":[4,82,2,2,3],"span":[1438,34,35]},{"path":[4,82,2,3],"span":[1439,2,32]},{"path":[4,82,2,3,4],"span":[1439,2,10]},{"path":[4,82,2,3,5],"span":[1439,11,17]},{"path":[4,82,2,3,1],"span":[1439,18,27]},{"path":[4,82,2,3,3],"span":[1439,30,31]},{"path":[4,82,2,4],"span":[1440,2,35]},{"path":[4,82,2,4,4],"span":[1440,2,10]},{"path":[4,82,2,4,5],"span":[1440,11,17]},{"path":[4,82,2,4,1],"span":[1440,18,30]},{"path":[4,82,2,4,3],"span":[1440,33,34]},{"path":[4,82,2,5],"span":[1441,2,58]},{"path":[4,82,2,5,4],"span":[1441,2,10]},{"path":[4,82,2,5,6],"span":[1441,11,35]},{"path":[4,82,2,5,1],"span":[1441,36,53]},{"path":[4,82,2,5,3],"span":[1441,56,57]},{"path":[4,82,2,6],"span":[1442,2,27]},{"path":[4,82,2,6,4],"span":[1442,2,10]},{"path":[4,82,2,6,5],"span":[1442,11,17]},{"path":[4,82,2,6,1],"span":[1442,18,22]},{"path":[4,82,2,6,3],"span":[1442,25,26]},{"path":[4,82,2,7],"span":[1443,2,55]},{"path":[4,82,2,7,4],"span":[1443,2,10]},{"path":[4,82,2,7,6],"span":[1443,11,36]},{"path":[4,82,2,7,1],"span":[1443,37,50]},{"path":[4,82,2,7,3],"span":[1443,53,54]},{"path":[4,82,2,8],"span":[1444,2,35]},{"path":[4,82,2,8,4],"span":[1444,2,10]},{"path":[4,82,2,8,5],"span":[1444,11,17]},{"path":[4,82,2,8,1],"span":[1444,18,30]},{"path":[4,82,2,8,3],"span":[1444,33,34]},{"path":[4,82,2,9],"span":[1445,2,32]},{"path":[4,82,2,9,4],"span":[1445,2,10]},{"path":[4,82,2,9,5],"span":[1445,11,17]},{"path":[4,82,2,9,1],"span":[1445,18,26]},{"path":[4,82,2,9,3],"span":[1445,29,31]},{"path":[4,82,2,10],"span":[1446,2,30]},{"path":[4,82,2,10,4],"span":[1446,2,10]},{"path":[4,82,2,10,5],"span":[1446,11,17]},{"path":[4,82,2,10,1],"span":[1446,18,24]},{"path":[4,82,2,10,3],"span":[1446,27,29]},{"path":[4,82,2,11],"span":[1447,2,33]},{"path":[4,82,2,11,4],"span":[1447,2,10]},{"path":[4,82,2,11,5],"span":[1447,11,17]},{"path":[4,82,2,11,1],"span":[1447,18,27]},{"path":[4,82,2,11,3],"span":[1447,30,32]},{"path":[4,82,2,12],"span":[1448,2,37]},{"path":[4,82,2,12,4],"span":[1448,2,10]},{"path":[4,82,2,12,5],"span":[1448,11,17]},{"path":[4,82,2,12,1],"span":[1448,18,31]},{"path":[4,82,2,12,3],"span":[1448,34,36]},{"path":[4,82,2,13],"span":[1449,2,37]},{"path":[4,82,2,13,4],"span":[1449,2,10]},{"path":[4,82,2,13,5],"span":[1449,11,17]},{"path":[4,82,2,13,1],"span":[1449,18,31]},{"path":[4,82,2,13,3],"span":[1449,34,36]},{"path":[4,82,2,14],"span":[1450,2,43]},{"path":[4,82,2,14,4],"span":[1450,2,10]},{"path":[4,82,2,14,5],"span":[1450,11,17]},{"path":[4,82,2,14,1],"span":[1450,18,37]},{"path":[4,82,2,14,3],"span":[1450,40,42]},{"path":[4,82,2,15],"span":[1451,2,33]},{"path":[4,82,2,15,4],"span":[1451,2,10]},{"path":[4,82,2,15,5],"span":[1451,11,17]},{"path":[4,82,2,15,1],"span":[1451,18,27]},{"path":[4,82,2,15,3],"span":[1451,30,32]},{"path":[4,82,2,16],"span":[1452,2,38]},{"path":[4,82,2,16,4],"span":[1452,2,10]},{"path":[4,82,2,16,5],"span":[1452,11,17]},{"path":[4,82,2,16,1],"span":[1452,18,32]},{"path":[4,82,2,16,3],"span":[1452,35,37]},{"path":[4,82,2,17],"span":[1453,2,57]},{"path":[4,82,2,17,4],"span":[1453,2,10]},{"path":[4,82,2,17,6],"span":[1453,11,35]},{"path":[4,82,2,17,1],"span":[1453,36,51]},{"path":[4,82,2,17,3],"span":[1453,54,56]},{"path":[4,82,2,18],"span":[1454,2,31]},{"path":[4,82,2,18,4],"span":[1454,2,10]},{"path":[4,82,2,18,5],"span":[1454,11,17]},{"path":[4,82,2,18,1],"span":[1454,18,25]},{"path":[4,82,2,18,3],"span":[1454,28,30]},{"path":[4,82,2,19],"span":[1455,2,36]},{"path":[4,82,2,19,4],"span":[1455,2,10]},{"path":[4,82,2,19,5],"span":[1455,11,17]},{"path":[4,82,2,19,1],"span":[1455,18,30]},{"path":[4,82,2,19,3],"span":[1455,33,35]},{"path":[4,83],"span":[1458,0,1461,1]},{"path":[4,83,1],"span":[1458,8,32]},{"path":[4,83,2,0],"span":[1459,2,33]},{"path":[4,83,2,0,4],"span":[1459,2,10]},{"path":[4,83,2,0,5],"span":[1459,11,17]},{"path":[4,83,2,0,1],"span":[1459,18,28]},{"path":[4,83,2,0,3],"span":[1459,31,32]},{"path":[4,83,2,1],"span":[1460,2,43]},{"path":[4,83,2,1,4],"span":[1460,2,10]},{"path":[4,83,2,1,6],"span":[1460,11,31]},{"path":[4,83,2,1,1],"span":[1460,32,38]},{"path":[4,83,2,1,3],"span":[1460,41,42]},{"path":[4,84],"span":[1463,0,1466,1]},{"path":[4,84,1],"span":[1463,8,28]},{"path":[4,84,2,0],"span":[1464,2,40]},{"path":[4,84,2,0,4],"span":[1464,2,10]},{"path":[4,84,2,0,5],"span":[1464,11,17]},{"path":[4,84,2,0,1],"span":[1464,18,35]},{"path":[4,84,2,0,3],"span":[1464,38,39]},{"path":[4,84,2,1],"span":[1465,2,29]},{"path":[4,84,2,1,4],"span":[1465,2,10]},{"path":[4,84,2,1,5],"span":[1465,11,17]},{"path":[4,84,2,1,1],"span":[1465,18,24]},{"path":[4,84,2,1,3],"span":[1465,27,28]},{"path":[4,85],"span":[1469,0,1481,1],"leadingComments":" Accessibility Information from MacOS, to be mapped from MacAccessibility\n"},{"path":[4,85,1],"span":[1469,8,32]},{"path":[4,85,2,0],"span":[1470,2,31]},{"path":[4,85,2,0,4],"span":[1470,2,10]},{"path":[4,85,2,0,5],"span":[1470,11,17]},{"path":[4,85,2,0,1],"span":[1470,18,26]},{"path":[4,85,2,0,3],"span":[1470,29,30]},{"path":[4,85,2,1],"span":[1471,2,33]},{"path":[4,85,2,1,4],"span":[1471,2,10]},{"path":[4,85,2,1,5],"span":[1471,11,17]},{"path":[4,85,2,1,1],"span":[1471,18,28]},{"path":[4,85,2,1,3],"span":[1471,31,32]},{"path":[4,85,2,2],"span":[1472,2,30]},{"path":[4,85,2,2,4],"span":[1472,2,10]},{"path":[4,85,2,2,5],"span":[1472,11,17]},{"path":[4,85,2,2,1],"span":[1472,18,25]},{"path":[4,85,2,2,3],"span":[1472,28,29]},{"path":[4,85,2,3],"span":[1473,2,35]},{"path":[4,85,2,3,4],"span":[1473,2,10]},{"path":[4,85,2,3,5],"span":[1473,11,17]},{"path":[4,85,2,3,1],"span":[1473,18,30]},{"path":[4,85,2,3,3],"span":[1473,33,34]},{"path":[4,85,2,4],"span":[1474,2,36]},{"path":[4,85,2,4,4],"span":[1474,2,10]},{"path":[4,85,2,4,5],"span":[1474,11,17]},{"path":[4,85,2,4,1],"span":[1474,18,31]},{"path":[4,85,2,4,3],"span":[1474,34,35]},{"path":[4,85,2,5],"span":[1475,2,33]},{"path":[4,85,2,5,4],"span":[1475,2,10]},{"path":[4,85,2,5,5],"span":[1475,11,17]},{"path":[4,85,2,5,1],"span":[1475,18,28]},{"path":[4,85,2,5,3],"span":[1475,31,32]},{"path":[4,85,2,6],"span":[1476,2,34]},{"path":[4,85,2,6,4],"span":[1476,2,10]},{"path":[4,85,2,6,5],"span":[1476,11,17]},{"path":[4,85,2,6,1],"span":[1476,18,29]},{"path":[4,85,2,6,3],"span":[1476,32,33]},{"path":[4,85,2,7],"span":[1477,2,32]},{"path":[4,85,2,7,4],"span":[1477,2,10]},{"path":[4,85,2,7,5],"span":[1477,11,17]},{"path":[4,85,2,7,1],"span":[1477,18,27]},{"path":[4,85,2,7,3],"span":[1477,30,31]},{"path":[4,85,2,8],"span":[1478,2,34]},{"path":[4,85,2,8,4],"span":[1478,2,10]},{"path":[4,85,2,8,5],"span":[1478,11,17]},{"path":[4,85,2,8,1],"span":[1478,18,29]},{"path":[4,85,2,8,3],"span":[1478,32,33]},{"path":[4,85,2,9],"span":[1479,2,34]},{"path":[4,85,2,9,4],"span":[1479,2,10]},{"path":[4,85,2,9,5],"span":[1479,11,17]},{"path":[4,85,2,9,1],"span":[1479,18,28]},{"path":[4,85,2,9,3],"span":[1479,31,33]},{"path":[4,85,2,10],"span":[1480,2,33]},{"path":[4,85,2,10,4],"span":[1480,2,10]},{"path":[4,85,2,10,5],"span":[1480,11,17]},{"path":[4,85,2,10,1],"span":[1480,18,27]},{"path":[4,85,2,10,3],"span":[1480,30,32]},{"path":[4,86],"span":[1486,0,1495,1],"leadingComments":"\n Sound Card for computers: Windows.WindowsSound, Unix.SoundCards (=PciCards)\n"},{"path":[4,86,1],"span":[1486,8,17]},{"path":[4,86,2,0],"span":[1487,2,30],"trailingComments":" Windows, Linux(name)\n"},{"path":[4,86,2,0,4],"span":[1487,2,10]},{"path":[4,86,2,0,5],"span":[1487,11,17]},{"path":[4,86,2,0,1],"span":[1487,18,25]},{"path":[4,86,2,0,3],"span":[1487,28,29]},{"path":[4,86,2,1],"span":[1488,2,32],"trailingComments":" Windows, Linux\n"},{"path":[4,86,2,1,4],"span":[1488,2,10]},{"path":[4,86,2,1,5],"span":[1488,11,17]},{"path":[4,86,2,1,1],"span":[1488,18,27]},{"path":[4,86,2,1,3],"span":[1488,30,31]},{"path":[4,86,2,2],"span":[1489,2,35],"trailingComments":" Windows, Linux\n"},{"path":[4,86,2,2,4],"span":[1489,2,10]},{"path":[4,86,2,2,5],"span":[1489,11,17]},{"path":[4,86,2,2,1],"span":[1489,18,30]},{"path":[4,86,2,2,3],"span":[1489,33,34]},{"path":[4,86,2,3],"span":[1491,2,27],"trailingComments":" Linux\n"},{"path":[4,86,2,3,4],"span":[1491,2,10]},{"path":[4,86,2,3,5],"span":[1491,11,17]},{"path":[4,86,2,3,1],"span":[1491,18,22]},{"path":[4,86,2,3,3],"span":[1491,25,26]},{"path":[4,86,2,4],"span":[1492,2,37],"trailingComments":" Linux\n"},{"path":[4,86,2,4,4],"span":[1492,2,10]},{"path":[4,86,2,4,5],"span":[1492,11,17]},{"path":[4,86,2,4,1],"span":[1492,18,32]},{"path":[4,86,2,4,3],"span":[1492,35,36]},{"path":[4,86,2,5],"span":[1493,2,45],"trailingComments":" Linux\n"},{"path":[4,86,2,5,4],"span":[1493,2,10]},{"path":[4,86,2,5,5],"span":[1493,11,17]},{"path":[4,86,2,5,1],"span":[1493,18,40]},{"path":[4,86,2,5,3],"span":[1493,43,44]},{"path":[4,86,2,6],"span":[1494,2,29],"trailingComments":" Linux\n"},{"path":[4,86,2,6,4],"span":[1494,2,10]},{"path":[4,86,2,6,5],"span":[1494,11,17]},{"path":[4,86,2,6,1],"span":[1494,18,24]},{"path":[4,86,2,6,3],"span":[1494,27,28]},{"path":[4,87],"span":[1500,0,1529,1],"leadingComments":"\n Graphics Card for computers: Windows.VideoControllers, Unix.SoundCards (=PciCards)\n"},{"path":[4,87,1],"span":[1500,8,20]},{"path":[4,87,2,0],"span":[1501,2,33],"trailingComments":"\tWindows, Linux\n"},{"path":[4,87,2,0,4],"span":[1501,2,10]},{"path":[4,87,2,0,5],"span":[1501,16,22]},{"path":[4,87,2,0,1],"span":[1501,24,28]},{"path":[4,87,2,0,3],"span":[1501,31,32]},{"path":[4,87,2,1],"span":[1502,2,47],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,1,4],"span":[1502,2,10]},{"path":[4,87,2,1,5],"span":[1502,16,21]},{"path":[4,87,2,1,1],"span":[1502,24,42]},{"path":[4,87,2,1,3],"span":[1502,45,46]},{"path":[4,87,2,2],"span":[1503,2,51],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,2,4],"span":[1503,2,10]},{"path":[4,87,2,2,5],"span":[1503,16,21]},{"path":[4,87,2,2,1],"span":[1503,24,46]},{"path":[4,87,2,2,3],"span":[1503,49,50]},{"path":[4,87,2,3],"span":[1504,2,58],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,3,4],"span":[1504,2,10]},{"path":[4,87,2,3,5],"span":[1504,16,21]},{"path":[4,87,2,3,1],"span":[1504,24,53]},{"path":[4,87,2,3,3],"span":[1504,56,57]},{"path":[4,87,2,4],"span":[1505,2,53],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,4,4],"span":[1505,2,10]},{"path":[4,87,2,4,5],"span":[1505,16,21]},{"path":[4,87,2,4,1],"span":[1505,24,48]},{"path":[4,87,2,4,3],"span":[1505,51,52]},{"path":[4,87,2,5],"span":[1506,2,49],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,5,4],"span":[1506,2,10]},{"path":[4,87,2,5,5],"span":[1506,16,21]},{"path":[4,87,2,5,1],"span":[1506,24,44]},{"path":[4,87,2,5,3],"span":[1506,47,48]},{"path":[4,87,2,6],"span":[1507,2,54],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,6,4],"span":[1507,2,10]},{"path":[4,87,2,6,6],"span":[1507,16,27]},{"path":[4,87,2,6,1],"span":[1507,32,49]},{"path":[4,87,2,6,3],"span":[1507,52,53]},{"path":[4,87,2,7],"span":[1508,2,56],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,7,4],"span":[1508,2,10]},{"path":[4,87,2,7,5],"span":[1508,16,21]},{"path":[4,87,2,7,1],"span":[1508,24,51]},{"path":[4,87,2,7,3],"span":[1508,54,55]},{"path":[4,87,2,8],"span":[1509,2,38],"trailingComments":"\t\tWindows, Linux\n"},{"path":[4,87,2,8,4],"span":[1509,2,10]},{"path":[4,87,2,8,5],"span":[1509,16,22]},{"path":[4,87,2,8,1],"span":[1509,24,33]},{"path":[4,87,2,8,3],"span":[1509,36,37]},{"path":[4,87,2,9],"span":[1510,2,50],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,9,4],"span":[1510,2,10]},{"path":[4,87,2,9,5],"span":[1510,16,21]},{"path":[4,87,2,9,1],"span":[1510,24,44]},{"path":[4,87,2,9,3],"span":[1510,47,49]},{"path":[4,87,2,10],"span":[1511,2,44],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,10,4],"span":[1511,2,10]},{"path":[4,87,2,10,5],"span":[1511,16,22]},{"path":[4,87,2,10,1],"span":[1511,24,38]},{"path":[4,87,2,10,3],"span":[1511,41,43]},{"path":[4,87,2,11],"span":[1512,2,42],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,11,4],"span":[1512,2,10]},{"path":[4,87,2,11,5],"span":[1512,16,22]},{"path":[4,87,2,11,1],"span":[1512,24,36]},{"path":[4,87,2,11,3],"span":[1512,39,41]},{"path":[4,87,2,12],"span":[1513,2,41],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,12,4],"span":[1513,2,10]},{"path":[4,87,2,12,5],"span":[1513,16,22]},{"path":[4,87,2,12,1],"span":[1513,24,35]},{"path":[4,87,2,12,3],"span":[1513,38,40]},{"path":[4,87,2,13],"span":[1514,2,55],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,13,4],"span":[1514,2,10]},{"path":[4,87,2,13,5],"span":[1514,16,22]},{"path":[4,87,2,13,1],"span":[1514,24,49]},{"path":[4,87,2,13,3],"span":[1514,52,54]},{"path":[4,87,2,14],"span":[1515,2,43],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,14,4],"span":[1515,2,10]},{"path":[4,87,2,14,5],"span":[1515,16,20]},{"path":[4,87,2,14,1],"span":[1515,24,37]},{"path":[4,87,2,14,3],"span":[1515,40,42]},{"path":[4,87,2,15],"span":[1516,2,42],"trailingComments":"\t\tWindows, Linux\n"},{"path":[4,87,2,15,4],"span":[1516,2,10]},{"path":[4,87,2,15,5],"span":[1516,16,22]},{"path":[4,87,2,15,1],"span":[1516,24,36]},{"path":[4,87,2,15,3],"span":[1516,39,41]},{"path":[4,87,2,16],"span":[1517,2,46],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,16,4],"span":[1517,2,10]},{"path":[4,87,2,16,5],"span":[1517,16,21]},{"path":[4,87,2,16,1],"span":[1517,24,40]},{"path":[4,87,2,16,3],"span":[1517,43,45]},{"path":[4,87,2,17],"span":[1518,2,36],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,17,4],"span":[1518,2,10]},{"path":[4,87,2,17,5],"span":[1518,16,21]},{"path":[4,87,2,17,1],"span":[1518,24,30]},{"path":[4,87,2,17,3],"span":[1518,33,35]},{"path":[4,87,2,18],"span":[1519,2,49],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,18,4],"span":[1519,2,10]},{"path":[4,87,2,18,6],"span":[1519,16,27]},{"path":[4,87,2,18,1],"span":[1519,32,43]},{"path":[4,87,2,18,3],"span":[1519,46,48]},{"path":[4,87,2,19],"span":[1520,2,46],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,19,4],"span":[1520,2,10]},{"path":[4,87,2,19,5],"span":[1520,16,21]},{"path":[4,87,2,19,1],"span":[1520,24,40]},{"path":[4,87,2,19,3],"span":[1520,43,45]},{"path":[4,87,2,20],"span":[1521,2,38],"trailingComments":"\t\tLinux\n"},{"path":[4,87,2,20,4],"span":[1521,2,10]},{"path":[4,87,2,20,5],"span":[1521,16,22]},{"path":[4,87,2,20,1],"span":[1521,24,32]},{"path":[4,87,2,20,3],"span":[1521,35,37]},{"path":[4,87,2,21],"span":[1522,2,43],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,21,4],"span":[1522,2,10]},{"path":[4,87,2,21,5],"span":[1522,16,22]},{"path":[4,87,2,21,1],"span":[1522,24,37]},{"path":[4,87,2,21,3],"span":[1522,40,42]},{"path":[4,87,2,22],"span":[1523,2,43],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,22,4],"span":[1523,2,10]},{"path":[4,87,2,22,6],"span":[1523,16,27]},{"path":[4,87,2,22,1],"span":[1523,32,37]},{"path":[4,87,2,22,3],"span":[1523,40,42]},{"path":[4,87,2,23],"span":[1524,2,52],"trailingComments":"\t\tLinux\n"},{"path":[4,87,2,23,4],"span":[1524,2,10]},{"path":[4,87,2,23,5],"span":[1524,16,22]},{"path":[4,87,2,23,1],"span":[1524,24,46]},{"path":[4,87,2,23,3],"span":[1524,49,51]},{"path":[4,87,2,24],"span":[1525,2,44],"trailingComments":"\t\tLinux\n"},{"path":[4,87,2,24,4],"span":[1525,2,10]},{"path":[4,87,2,24,5],"span":[1525,16,22]},{"path":[4,87,2,24,1],"span":[1525,24,38]},{"path":[4,87,2,24,3],"span":[1525,41,43]},{"path":[4,87,2,25],"span":[1526,2,56],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,25,4],"span":[1526,2,10]},{"path":[4,87,2,25,6],"span":[1526,16,27]},{"path":[4,87,2,25,1],"span":[1526,32,50]},{"path":[4,87,2,25,3],"span":[1526,53,55]},{"path":[4,87,2,26],"span":[1527,2,40],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,26,4],"span":[1527,2,10]},{"path":[4,87,2,26,5],"span":[1527,16,22]},{"path":[4,87,2,26,1],"span":[1527,24,34]},{"path":[4,87,2,26,3],"span":[1527,37,39]},{"path":[4,87,2,27],"span":[1528,2,45],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,27,4],"span":[1528,2,10]},{"path":[4,87,2,27,5],"span":[1528,16,22]},{"path":[4,87,2,27,1],"span":[1528,24,39]},{"path":[4,87,2,27,3],"span":[1528,42,44]},{"path":[4,88],"span":[1534,0,1544,1],"leadingComments":"\n BIOS for computers.\n"},{"path":[4,88,1],"span":[1534,8,12]},{"path":[4,88,8,0],"span":[1535,2,1538,3]},{"path":[4,88,8,0,1],"span":[1535,8,12]},{"path":[4,88,2,0],"span":[1536,4,24]},{"path":[4,88,2,0,6],"span":[1536,4,15]},{"path":[4,88,2,0,1],"span":[1536,16,19]},{"path":[4,88,2,0,3],"span":[1536,22,23]},{"path":[4,88,2,1],"span":[1537,4,24]},{"path":[4,88,2,1,6],"span":[1537,4,13]},{"path":[4,88,2,1,1],"span":[1537,14,19]},{"path":[4,88,2,1,3],"span":[1537,22,23]},{"path":[4,88,2,2],"span":[1541,2,37],"leadingComments":" common fields summarized\n"},{"path":[4,88,2,2,4],"span":[1541,2,10]},{"path":[4,88,2,2,5],"span":[1541,11,17]},{"path":[4,88,2,2,1],"span":[1541,18,30]},{"path":[4,88,2,2,3],"span":[1541,33,36]},{"path":[4,88,2,3],"span":[1542,2,32]},{"path":[4,88,2,3,4],"span":[1542,2,10]},{"path":[4,88,2,3,5],"span":[1542,11,17]},{"path":[4,88,2,3,1],"span":[1542,18,25]},{"path":[4,88,2,3,3],"span":[1542,28,31]},{"path":[4,88,2,4],"span":[1543,2,56]},{"path":[4,88,2,4,4],"span":[1543,2,10]},{"path":[4,88,2,4,6],"span":[1543,11,36]},{"path":[4,88,2,4,1],"span":[1543,37,49]},{"path":[4,88,2,4,3],"span":[1543,52,55]},{"path":[4,89],"span":[1550,0,1570,1],"leadingComments":"\n Windows Bios from Windows.Bios\n WMI mappings from https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-bios\n"},{"path":[4,89,1],"span":[1550,8,19]},{"path":[4,89,2,0],"span":[1551,2,48]},{"path":[4,89,2,0,4],"span":[1551,2,10]},{"path":[4,89,2,0,6],"span":[1551,11,22]},{"path":[4,89,2,0,1],"span":[1551,23,43]},{"path":[4,89,2,0,3],"span":[1551,46,47]},{"path":[4,89,2,1],"span":[1552,2,30]},{"path":[4,89,2,1,4],"span":[1552,2,10]},{"path":[4,89,2,1,5],"span":[1552,11,17]},{"path":[4,89,2,1,1],"span":[1552,18,25]},{"path":[4,89,2,1,3],"span":[1552,28,29]},{"path":[4,89,2,2],"span":[1553,2,39]},{"path":[4,89,2,2,4],"span":[1553,2,10]},{"path":[4,89,2,2,5],"span":[1553,11,17]},{"path":[4,89,2,2,1],"span":[1553,18,34]},{"path":[4,89,2,2,3],"span":[1553,37,38]},{"path":[4,89,2,3],"span":[1554,2,43]},{"path":[4,89,2,3,4],"span":[1554,2,10]},{"path":[4,89,2,3,5],"span":[1554,11,16]},{"path":[4,89,2,3,1],"span":[1554,17,38]},{"path":[4,89,2,3,3],"span":[1554,41,42]},{"path":[4,89,2,4],"span":[1555,2,35]},{"path":[4,89,2,4,4],"span":[1555,2,10]},{"path":[4,89,2,4,5],"span":[1555,11,17]},{"path":[4,89,2,4,1],"span":[1555,18,30]},{"path":[4,89,2,4,3],"span":[1555,33,34]},{"path":[4,89,2,5],"span":[1556,2,27]},{"path":[4,89,2,5,4],"span":[1556,2,10]},{"path":[4,89,2,5,5],"span":[1556,11,17]},{"path":[4,89,2,5,1],"span":[1556,18,22]},{"path":[4,89,2,5,3],"span":[1556,25,26]},{"path":[4,89,2,6],"span":[1557,2,33]},{"path":[4,89,2,6,4],"span":[1557,2,10]},{"path":[4,89,2,6,5],"span":[1557,11,15]},{"path":[4,89,2,6,1],"span":[1557,16,28]},{"path":[4,89,2,6,3],"span":[1557,31,32]},{"path":[4,89,2,7],"span":[1558,2,54]},{"path":[4,89,2,7,4],"span":[1558,2,10]},{"path":[4,89,2,7,6],"span":[1558,11,36]},{"path":[4,89,2,7,1],"span":[1558,37,49]},{"path":[4,89,2,7,3],"span":[1558,52,53]},{"path":[4,89,2,8],"span":[1559,2,37]},{"path":[4,89,2,8,4],"span":[1559,2,10]},{"path":[4,89,2,8,5],"span":[1559,11,17]},{"path":[4,89,2,8,1],"span":[1559,18,31]},{"path":[4,89,2,8,3],"span":[1559,34,36]},{"path":[4,89,2,9],"span":[1560,2,43]},{"path":[4,89,2,9,4],"span":[1560,2,10]},{"path":[4,89,2,9,5],"span":[1560,11,17]},{"path":[4,89,2,9,1],"span":[1560,18,37]},{"path":[4,89,2,9,3],"span":[1560,40,42]},{"path":[4,89,2,10],"span":[1561,2,43]},{"path":[4,89,2,10,4],"span":[1561,2,10]},{"path":[4,89,2,10,5],"span":[1561,11,16]},{"path":[4,89,2,10,1],"span":[1561,17,37]},{"path":[4,89,2,10,3],"span":[1561,40,42]},{"path":[4,89,2,11],"span":[1562,2,43]},{"path":[4,89,2,11,4],"span":[1562,2,10]},{"path":[4,89,2,11,5],"span":[1562,11,16]},{"path":[4,89,2,11,1],"span":[1562,17,37]},{"path":[4,89,2,11,3],"span":[1562,40,42]},{"path":[4,89,2,12],"span":[1563,2,36]},{"path":[4,89,2,12,4],"span":[1563,2,10]},{"path":[4,89,2,12,5],"span":[1563,11,15]},{"path":[4,89,2,12,1],"span":[1563,16,30]},{"path":[4,89,2,12,3],"span":[1563,33,35]},{"path":[4,89,2,13],"span":[1564,2,43]},{"path":[4,89,2,13,4],"span":[1564,2,10]},{"path":[4,89,2,13,5],"span":[1564,11,17]},{"path":[4,89,2,13,1],"span":[1564,18,37]},{"path":[4,89,2,13,3],"span":[1564,40,42]},{"path":[4,89,2,14],"span":[1565,2,51]},{"path":[4,89,2,14,4],"span":[1565,2,10]},{"path":[4,89,2,14,6],"span":[1565,11,22]},{"path":[4,89,2,14,1],"span":[1565,23,45]},{"path":[4,89,2,14,3],"span":[1565,48,50]},{"path":[4,89,2,15],"span":[1566,2,30]},{"path":[4,89,2,15,4],"span":[1566,2,10]},{"path":[4,89,2,15,5],"span":[1566,11,17]},{"path":[4,89,2,15,1],"span":[1566,18,24]},{"path":[4,89,2,15,3],"span":[1566,27,29]},{"path":[4,89,2,16],"span":[1567,2,52]},{"path":[4,89,2,16,4],"span":[1567,2,10]},{"path":[4,89,2,16,6],"span":[1567,11,22]},{"path":[4,89,2,16,1],"span":[1567,23,46]},{"path":[4,89,2,16,3],"span":[1567,49,51]},{"path":[4,89,2,17],"span":[1568,2,31]},{"path":[4,89,2,17,4],"span":[1568,2,10]},{"path":[4,89,2,17,5],"span":[1568,11,17]},{"path":[4,89,2,17,1],"span":[1568,18,25]},{"path":[4,89,2,17,3],"span":[1568,28,30]},{"path":[4,89,2,18],"span":[1569,2,36]},{"path":[4,89,2,18,4],"span":[1569,2,10]},{"path":[4,89,2,18,5],"span":[1569,11,17]},{"path":[4,89,2,18,1],"span":[1569,18,30]},{"path":[4,89,2,18,3],"span":[1569,33,35]},{"path":[4,90],"span":[1575,0,1582,1],"leadingComments":"\n Bios for Unix/Linux: Unix.Bios\n"},{"path":[4,90,1],"span":[1575,8,17]},{"path":[4,90,2,0],"span":[1576,2,30],"trailingComments":" e.g.: \"Hyper-V UEFI Release v4.1\"\n"},{"path":[4,90,2,0,4],"span":[1576,2,10]},{"path":[4,90,2,0,5],"span":[1576,11,17]},{"path":[4,90,2,0,1],"span":[1576,18,25]},{"path":[4,90,2,0,3],"span":[1576,28,29]},{"path":[4,90,2,1],"span":[1577,2,30]},{"path":[4,90,2,1,4],"span":[1577,2,10]},{"path":[4,90,2,1,5],"span":[1577,11,17]},{"path":[4,90,2,1,1],"span":[1577,18,25]},{"path":[4,90,2,1,3],"span":[1577,28,29]},{"path":[4,90,2,2],"span":[1578,2,29]},{"path":[4,90,2,2,4],"span":[1578,2,10]},{"path":[4,90,2,2,5],"span":[1578,11,17]},{"path":[4,90,2,2,1],"span":[1578,18,24]},{"path":[4,90,2,2,3],"span":[1578,27,28]},{"path":[4,90,2,3],"span":[1579,2,34],"trailingComments":" parsed from e.g. \"64 kB\"\n"},{"path":[4,90,2,3,4],"span":[1579,2,10]},{"path":[4,90,2,3,5],"span":[1579,11,16]},{"path":[4,90,2,3,1],"span":[1579,17,29]},{"path":[4,90,2,3,3],"span":[1579,32,33]},{"path":[4,90,2,4],"span":[1580,2,30],"trailingComments":" parsed from e.g. \"64 kB\"\n"},{"path":[4,90,2,4,4],"span":[1580,2,10]},{"path":[4,90,2,4,5],"span":[1580,11,16]},{"path":[4,90,2,4,1],"span":[1580,17,25]},{"path":[4,90,2,4,3],"span":[1580,28,29]},{"path":[4,90,2,5],"span":[1581,2,54]},{"path":[4,90,2,5,4],"span":[1581,2,10]},{"path":[4,90,2,5,6],"span":[1581,11,36]},{"path":[4,90,2,5,1],"span":[1581,37,49]},{"path":[4,90,2,5,3],"span":[1581,52,53]},{"path":[4,91],"span":[1587,0,1593,1],"leadingComments":"\n Computer Battery: Windows.WindowsBattery. Mac.Power battery messages.\n"},{"path":[4,91,1],"span":[1587,8,23]},{"path":[4,91,8,0],"span":[1588,2,1592,3]},{"path":[4,91,8,0,1],"span":[1588,8,12]},{"path":[4,91,2,0],"span":[1589,4,43]},{"path":[4,91,2,0,6],"span":[1589,4,26]},{"path":[4,91,2,0,1],"span":[1589,27,38]},{"path":[4,91,2,0,3],"span":[1589,41,42]},{"path":[4,91,2,1],"span":[1590,4,44]},{"path":[4,91,2,1,6],"span":[1590,4,26]},{"path":[4,91,2,1,1],"span":[1590,27,39]},{"path":[4,91,2,1,3],"span":[1590,42,43]},{"path":[4,91,2,2],"span":[1591,4,39]},{"path":[4,91,2,2,6],"span":[1591,4,22]},{"path":[4,91,2,2,1],"span":[1591,23,34]},{"path":[4,91,2,2,3],"span":[1591,37,38]},{"path":[4,92],"span":[1599,0,1610,1],"leadingComments":"\n Computer Battery: Windows.WindowsBattery.\n WMI MappedValue to be taken from: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-battery\n"},{"path":[4,92,1],"span":[1599,8,30]},{"path":[4,92,2,0],"span":[1600,2,40]},{"path":[4,92,2,0,4],"span":[1600,2,10]},{"path":[4,92,2,0,6],"span":[1600,11,22]},{"path":[4,92,2,0,1],"span":[1600,23,35]},{"path":[4,92,2,0,3],"span":[1600,38,39]},{"path":[4,92,2,1],"span":[1601,2,42]},{"path":[4,92,2,1,4],"span":[1601,2,10]},{"path":[4,92,2,1,6],"span":[1601,11,22]},{"path":[4,92,2,1,1],"span":[1601,23,37]},{"path":[4,92,2,1,3],"span":[1601,40,41]},{"path":[4,92,2,2],"span":[1602,2,37]},{"path":[4,92,2,2,4],"span":[1602,2,10]},{"path":[4,92,2,2,6],"span":[1602,11,22]},{"path":[4,92,2,2,1],"span":[1602,23,32]},{"path":[4,92,2,2,3],"span":[1602,35,36]},{"path":[4,92,2,3],"span":[1603,2,43]},{"path":[4,92,2,3,4],"span":[1603,2,10]},{"path":[4,92,2,3,6],"span":[1603,11,22]},{"path":[4,92,2,3,1],"span":[1603,23,38]},{"path":[4,92,2,3,3],"span":[1603,41,42]},{"path":[4,92,2,4],"span":[1604,2,32]},{"path":[4,92,2,4,4],"span":[1604,2,10]},{"path":[4,92,2,4,5],"span":[1604,11,17]},{"path":[4,92,2,4,1],"span":[1604,18,27]},{"path":[4,92,2,4,3],"span":[1604,30,31]},{"path":[4,92,2,5],"span":[1605,2,27]},{"path":[4,92,2,5,4],"span":[1605,2,10]},{"path":[4,92,2,5,5],"span":[1605,11,17]},{"path":[4,92,2,5,1],"span":[1605,18,22]},{"path":[4,92,2,5,3],"span":[1605,25,26]},{"path":[4,92,2,6],"span":[1606,2,57]},{"path":[4,92,2,6,4],"span":[1606,2,10]},{"path":[4,92,2,6,6],"span":[1606,11,22]},{"path":[4,92,2,6,1],"span":[1606,23,52]},{"path":[4,92,2,6,3],"span":[1606,55,56]},{"path":[4,92,2,7],"span":[1607,2,47]},{"path":[4,92,2,7,4],"span":[1607,2,10]},{"path":[4,92,2,7,5],"span":[1607,11,15]},{"path":[4,92,2,7,1],"span":[1607,16,42]},{"path":[4,92,2,7,3],"span":[1607,45,46]},{"path":[4,92,2,8],"span":[1608,2,44]},{"path":[4,92,2,8,4],"span":[1608,2,10]},{"path":[4,92,2,8,5],"span":[1608,11,17]},{"path":[4,92,2,8,1],"span":[1608,18,39]},{"path":[4,92,2,8,3],"span":[1608,42,43]},{"path":[4,92,2,9],"span":[1609,2,30]},{"path":[4,92,2,9,4],"span":[1609,2,10]},{"path":[4,92,2,9,5],"span":[1609,11,17]},{"path":[4,92,2,9,1],"span":[1609,18,24]},{"path":[4,92,2,9,3],"span":[1609,27,29]},{"path":[4,93],"span":[1616,0,1628,1],"leadingComments":"\n Windows PortableBattery: WindowsPortableBattery.\n WMI MappedValue to be taken from: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-portablebattery\n"},{"path":[4,93,1],"span":[1616,8,30]},{"path":[4,93,2,0],"span":[1617,2,41]},{"path":[4,93,2,0,4],"span":[1617,2,10]},{"path":[4,93,2,0,5],"span":[1617,11,16]},{"path":[4,93,2,0,1],"span":[1617,17,36]},{"path":[4,93,2,0,3],"span":[1617,39,40]},{"path":[4,93,2,1],"span":[1618,2,37]},{"path":[4,93,2,1,4],"span":[1618,2,10]},{"path":[4,93,2,1,6],"span":[1618,11,22]},{"path":[4,93,2,1,1],"span":[1618,23,32]},{"path":[4,93,2,1,3],"span":[1618,35,36]},{"path":[4,93,2,2],"span":[1619,2,37]},{"path":[4,93,2,2,4],"span":[1619,2,10]},{"path":[4,93,2,2,5],"span":[1619,11,16]},{"path":[4,93,2,2,1],"span":[1619,17,32]},{"path":[4,93,2,2,3],"span":[1619,35,36]},{"path":[4,93,2,3],"span":[1620,2,36]},{"path":[4,93,2,3,4],"span":[1620,2,10]},{"path":[4,93,2,3,5],"span":[1620,11,16]},{"path":[4,93,2,3,1],"span":[1620,17,31]},{"path":[4,93,2,3,3],"span":[1620,34,35]},{"path":[4,93,2,4],"span":[1621,2,32]},{"path":[4,93,2,4,4],"span":[1621,2,10]},{"path":[4,93,2,4,5],"span":[1621,11,17]},{"path":[4,93,2,4,1],"span":[1621,18,27]},{"path":[4,93,2,4,3],"span":[1621,30,31]},{"path":[4,93,2,5],"span":[1622,2,31]},{"path":[4,93,2,5,4],"span":[1622,2,10]},{"path":[4,93,2,5,5],"span":[1622,11,17]},{"path":[4,93,2,5,1],"span":[1622,18,26]},{"path":[4,93,2,5,3],"span":[1622,29,30]},{"path":[4,93,2,6],"span":[1623,2,39]},{"path":[4,93,2,6,4],"span":[1623,2,10]},{"path":[4,93,2,6,5],"span":[1623,11,17]},{"path":[4,93,2,6,1],"span":[1623,18,34]},{"path":[4,93,2,6,3],"span":[1623,37,38]},{"path":[4,93,2,7],"span":[1624,2,35]},{"path":[4,93,2,7,4],"span":[1624,2,10]},{"path":[4,93,2,7,5],"span":[1624,11,17]},{"path":[4,93,2,7,1],"span":[1624,18,30]},{"path":[4,93,2,7,3],"span":[1624,33,34]},{"path":[4,93,2,8],"span":[1625,2,39]},{"path":[4,93,2,8,4],"span":[1625,2,10]},{"path":[4,93,2,8,5],"span":[1625,11,16]},{"path":[4,93,2,8,1],"span":[1625,17,34]},{"path":[4,93,2,8,3],"span":[1625,37,38]},{"path":[4,93,2,9],"span":[1626,2,28]},{"path":[4,93,2,9,4],"span":[1626,2,10]},{"path":[4,93,2,9,5],"span":[1626,11,17]},{"path":[4,93,2,9,1],"span":[1626,18,22]},{"path":[4,93,2,9,3],"span":[1626,25,27]},{"path":[4,93,2,10],"span":[1627,2,45]},{"path":[4,93,2,10,4],"span":[1627,2,10]},{"path":[4,93,2,10,5],"span":[1627,11,17]},{"path":[4,93,2,10,1],"span":[1627,18,39]},{"path":[4,93,2,10,3],"span":[1627,42,44]},{"path":[4,94],"span":[1633,0,1669,1],"leadingComments":"\n Computer Battery: Mac.Power battery messages.\n"},{"path":[4,94,1],"span":[1633,8,26]},{"path":[4,94,2,0],"span":[1635,2,38],"leadingComments":" from battery power\n"},{"path":[4,94,2,0,4],"span":[1635,2,10]},{"path":[4,94,2,0,5],"span":[1635,11,16]},{"path":[4,94,2,0,1],"span":[1635,17,33]},{"path":[4,94,2,0,3],"span":[1635,36,37]},{"path":[4,94,2,1],"span":[1636,2,41]},{"path":[4,94,2,1,4],"span":[1636,2,10]},{"path":[4,94,2,1,5],"span":[1636,11,16]},{"path":[4,94,2,1,1],"span":[1636,17,36]},{"path":[4,94,2,1,3],"span":[1636,39,40]},{"path":[4,94,2,2],"span":[1637,2,36]},{"path":[4,94,2,2,4],"span":[1637,2,10]},{"path":[4,94,2,2,5],"span":[1637,11,16]},{"path":[4,94,2,2,1],"span":[1637,17,31]},{"path":[4,94,2,2,3],"span":[1637,34,35]},{"path":[4,94,2,3],"span":[1638,2,64]},{"path":[4,94,2,3,4],"span":[1638,2,10]},{"path":[4,94,2,3,5],"span":[1638,11,16]},{"path":[4,94,2,3,1],"span":[1638,17,59]},{"path":[4,94,2,3,3],"span":[1638,62,63]},{"path":[4,94,2,4],"span":[1639,2,42],"trailingComments":" parse from: 'Yes'\n"},{"path":[4,94,2,4,4],"span":[1639,2,10]},{"path":[4,94,2,4,5],"span":[1639,11,15]},{"path":[4,94,2,4,1],"span":[1639,16,37]},{"path":[4,94,2,4,3],"span":[1639,40,41]},{"path":[4,94,2,5],"span":[1640,2,40]},{"path":[4,94,2,5,4],"span":[1640,2,10]},{"path":[4,94,2,5,5],"span":[1640,11,16]},{"path":[4,94,2,5,1],"span":[1640,17,35]},{"path":[4,94,2,5,3],"span":[1640,38,39]},{"path":[4,94,2,6],"span":[1641,2,32]},{"path":[4,94,2,6,4],"span":[1641,2,10]},{"path":[4,94,2,6,5],"span":[1641,11,15]},{"path":[4,94,2,6,1],"span":[1641,16,27]},{"path":[4,94,2,6,3],"span":[1641,30,31]},{"path":[4,94,2,7],"span":[1642,2,42]},{"path":[4,94,2,7,4],"span":[1642,2,10]},{"path":[4,94,2,7,5],"span":[1642,11,16]},{"path":[4,94,2,7,1],"span":[1642,17,37]},{"path":[4,94,2,7,3],"span":[1642,40,41]},{"path":[4,94,2,8],"span":[1643,2,37]},{"path":[4,94,2,8,4],"span":[1643,2,10]},{"path":[4,94,2,8,5],"span":[1643,11,16]},{"path":[4,94,2,8,1],"span":[1643,17,32]},{"path":[4,94,2,8,3],"span":[1643,35,36]},{"path":[4,94,2,9],"span":[1644,2,37]},{"path":[4,94,2,9,4],"span":[1644,2,10]},{"path":[4,94,2,9,5],"span":[1644,11,16]},{"path":[4,94,2,9,1],"span":[1644,17,31]},{"path":[4,94,2,9,3],"span":[1644,34,36]},{"path":[4,94,2,10],"span":[1645,2,39]},{"path":[4,94,2,10,4],"span":[1645,2,10]},{"path":[4,94,2,10,5],"span":[1645,11,15]},{"path":[4,94,2,10,1],"span":[1645,16,33]},{"path":[4,94,2,10,3],"span":[1645,36,38]},{"path":[4,94,2,11],"span":[1648,2,38],"leadingComments":" from battery charge (parse booleans)\n"},{"path":[4,94,2,11,4],"span":[1648,2,10]},{"path":[4,94,2,11,5],"span":[1648,11,15]},{"path":[4,94,2,11,1],"span":[1648,16,32]},{"path":[4,94,2,11,3],"span":[1648,35,37]},{"path":[4,94,2,12],"span":[1649,2,38]},{"path":[4,94,2,12,4],"span":[1649,2,10]},{"path":[4,94,2,12,5],"span":[1649,11,15]},{"path":[4,94,2,12,1],"span":[1649,16,32]},{"path":[4,94,2,12,3],"span":[1649,35,37]},{"path":[4,94,2,13],"span":[1650,2,33]},{"path":[4,94,2,13,4],"span":[1650,2,10]},{"path":[4,94,2,13,5],"span":[1650,11,15]},{"path":[4,94,2,13,1],"span":[1650,16,27]},{"path":[4,94,2,13,3],"span":[1650,30,32]},{"path":[4,94,2,14],"span":[1651,2,39]},{"path":[4,94,2,14,4],"span":[1651,2,10]},{"path":[4,94,2,14,5],"span":[1651,11,16]},{"path":[4,94,2,14,1],"span":[1651,18,33]},{"path":[4,94,2,14,3],"span":[1651,36,38]},{"path":[4,94,2,15],"span":[1654,2,34],"leadingComments":" from battery_health_info\n"},{"path":[4,94,2,15,4],"span":[1654,2,10]},{"path":[4,94,2,15,5],"span":[1654,11,16]},{"path":[4,94,2,15,1],"span":[1654,17,28]},{"path":[4,94,2,15,3],"span":[1654,31,33]},{"path":[4,94,2,16],"span":[1655,2,37]},{"path":[4,94,2,16,4],"span":[1655,2,10]},{"path":[4,94,2,16,5],"span":[1655,11,17]},{"path":[4,94,2,16,1],"span":[1655,18,31]},{"path":[4,94,2,16,3],"span":[1655,34,36]},{"path":[4,94,2,17],"span":[1656,2,54]},{"path":[4,94,2,17,4],"span":[1656,2,10]},{"path":[4,94,2,17,5],"span":[1656,11,17]},{"path":[4,94,2,17,1],"span":[1656,18,48]},{"path":[4,94,2,17,3],"span":[1656,51,53]},{"path":[4,94,2,18],"span":[1659,2,36],"leadingComments":" from battery_model_info\n"},{"path":[4,94,2,18,4],"span":[1659,2,10]},{"path":[4,94,2,18,5],"span":[1659,11,17]},{"path":[4,94,2,18,1],"span":[1659,18,30]},{"path":[4,94,2,18,3],"span":[1659,33,35]},{"path":[4,94,2,19],"span":[1660,2,37]},{"path":[4,94,2,19,4],"span":[1660,2,10]},{"path":[4,94,2,19,5],"span":[1660,11,17]},{"path":[4,94,2,19,1],"span":[1660,18,31]},{"path":[4,94,2,19,3],"span":[1660,34,36]},{"path":[4,94,2,20],"span":[1661,2,37]},{"path":[4,94,2,20,4],"span":[1661,2,10]},{"path":[4,94,2,20,5],"span":[1661,11,17]},{"path":[4,94,2,20,1],"span":[1661,18,31]},{"path":[4,94,2,20,3],"span":[1661,34,36]},{"path":[4,94,2,21],"span":[1662,2,35]},{"path":[4,94,2,21,4],"span":[1662,2,10]},{"path":[4,94,2,21,5],"span":[1662,11,17]},{"path":[4,94,2,21,1],"span":[1662,18,29]},{"path":[4,94,2,21,3],"span":[1662,32,34]},{"path":[4,94,2,22],"span":[1663,2,40]},{"path":[4,94,2,22,4],"span":[1663,2,10]},{"path":[4,94,2,22,5],"span":[1663,11,17]},{"path":[4,94,2,22,1],"span":[1663,18,34]},{"path":[4,94,2,22,3],"span":[1663,37,39]},{"path":[4,94,2,23],"span":[1664,2,41]},{"path":[4,94,2,23,4],"span":[1664,2,10]},{"path":[4,94,2,23,5],"span":[1664,11,17]},{"path":[4,94,2,23,1],"span":[1664,18,35]},{"path":[4,94,2,23,3],"span":[1664,38,40]},{"path":[4,94,2,24],"span":[1665,2,37]},{"path":[4,94,2,24,4],"span":[1665,2,10]},{"path":[4,94,2,24,5],"span":[1665,11,17]},{"path":[4,94,2,24,1],"span":[1665,18,31]},{"path":[4,94,2,24,3],"span":[1665,34,36]},{"path":[4,94,2,25],"span":[1667,2,47]},{"path":[4,94,2,25,4],"span":[1667,2,10]},{"path":[4,94,2,25,5],"span":[1667,11,15]},{"path":[4,94,2,25,1],"span":[1667,16,41]},{"path":[4,94,2,25,3],"span":[1667,44,46]},{"path":[4,94,2,26],"span":[1668,2,41]},{"path":[4,94,2,26,4],"span":[1668,2,10]},{"path":[4,94,2,26,5],"span":[1668,11,15]},{"path":[4,94,2,26,1],"span":[1668,16,35]},{"path":[4,94,2,26,3],"span":[1668,38,40]},{"path":[4,95],"span":[1674,0,1696,1],"leadingComments":"\n Optical disc drive for computers.\n"},{"path":[4,95,1],"span":[1674,8,20]},{"path":[4,95,2,0],"span":[1675,2,36],"trailingComments":" Windows: \"HL-DT-ST DVD+-RW GHB0N\", Linux: \"VMware SATA CD00\", Mac: \"NECVMWar VMware SATA CD01\"\tWindows, Linux, Mac\n"},{"path":[4,95,2,0,4],"span":[1675,2,10]},{"path":[4,95,2,0,5],"span":[1675,16,22]},{"path":[4,95,2,0,1],"span":[1675,24,28]},{"path":[4,95,2,0,3],"span":[1675,34,35]},{"path":[4,95,2,1],"span":[1676,2,36],"trailingComments":" \t\"OK\",\"Error\",\"Degraded\"\tWindows\n"},{"path":[4,95,2,1,4],"span":[1676,2,10]},{"path":[4,95,2,1,5],"span":[1676,16,22]},{"path":[4,95,2,1,1],"span":[1676,24,30]},{"path":[4,95,2,1,3],"span":[1676,34,35]},{"path":[4,95,2,2],"span":[1677,2,36],"trailingComments":" \t\"2:0:0:0\"\tLinux\n"},{"path":[4,95,2,2,4],"span":[1677,2,10]},{"path":[4,95,2,2,5],"span":[1677,16,22]},{"path":[4,95,2,2,1],"span":[1677,24,27]},{"path":[4,95,2,2,3],"span":[1677,34,35]},{"path":[4,95,2,3],"span":[1678,2,52],"trailingComments":" \t\"Supports writing, Random Access, Supports Removable Media\" \tWindows\n"},{"path":[4,95,2,3,4],"span":[1678,2,10]},{"path":[4,95,2,3,6],"span":[1678,16,27]},{"path":[4,95,2,3,1],"span":[1678,32,44]},{"path":[4,95,2,3,3],"span":[1678,50,51]},{"path":[4,95,2,4],"span":[1679,2,44],"trailingComments":" \t\"32 KB\", \"2048 KB\"\tMac\n"},{"path":[4,95,2,4,4],"span":[1679,2,10]},{"path":[4,95,2,4,5],"span":[1679,16,22]},{"path":[4,95,2,4,1],"span":[1679,24,34]},{"path":[4,95,2,4,3],"span":[1679,42,43]},{"path":[4,95,2,5],"span":[1680,2,44],"trailingComments":" \t\"DRDeviceSupportLevelUnsupported\",\"Yes (Apple Shipping Drive)\",\"Yes (Generic Drive Support)\"\tMac\n"},{"path":[4,95,2,5,4],"span":[1680,2,10]},{"path":[4,95,2,5,5],"span":[1680,16,22]},{"path":[4,95,2,5,1],"span":[1680,24,36]},{"path":[4,95,2,5,3],"span":[1680,42,43]},{"path":[4,95,2,6],"span":[1681,2,44],"trailingComments":" \t\"-R, -RW\"\tMac\n"},{"path":[4,95,2,6,4],"span":[1681,2,10]},{"path":[4,95,2,6,5],"span":[1681,16,22]},{"path":[4,95,2,6,1],"span":[1681,24,32]},{"path":[4,95,2,6,3],"span":[1681,42,43]},{"path":[4,95,2,7],"span":[1682,2,44],"trailingComments":" \t\"-R, -RAM, -RW\"\tMac\n"},{"path":[4,95,2,7,4],"span":[1682,2,10]},{"path":[4,95,2,7,5],"span":[1682,16,22]},{"path":[4,95,2,7,1],"span":[1682,24,33]},{"path":[4,95,2,7,3],"span":[1682,42,43]},{"path":[4,95,2,8],"span":[1683,2,44],"trailingComments":" \t\"yes\"\tMac\n"},{"path":[4,95,2,8,4],"span":[1683,2,10]},{"path":[4,95,2,8,5],"span":[1683,16,22]},{"path":[4,95,2,8,1],"span":[1683,24,32]},{"path":[4,95,2,8,3],"span":[1683,42,43]},{"path":[4,95,2,9],"span":[1684,2,45],"trailingComments":" \tWindows: \"H:\" Linux: \"/dev/sr0 (/dev/sg0)\"\tWindows, Linux\n"},{"path":[4,95,2,9,4],"span":[1684,2,10]},{"path":[4,95,2,9,5],"span":[1684,16,22]},{"path":[4,95,2,9,1],"span":[1684,24,34]},{"path":[4,95,2,9,3],"span":[1684,42,44]},{"path":[4,95,2,10],"span":[1685,2,53],"trailingComments":" \t\"RQ00\",\"1.00\"\tMac\n"},{"path":[4,95,2,10,4],"span":[1685,2,10]},{"path":[4,95,2,10,5],"span":[1685,16,22]},{"path":[4,95,2,10,1],"span":[1685,24,40]},{"path":[4,95,2,10,3],"span":[1685,50,52]},{"path":[4,95,2,11],"span":[1686,2,45],"trailingComments":" \t\"ATAPI\",\"USB\"\tMac\n"},{"path":[4,95,2,11,4],"span":[1686,2,10]},{"path":[4,95,2,11,5],"span":[1686,16,22]},{"path":[4,95,2,11,1],"span":[1686,24,34]},{"path":[4,95,2,11,3],"span":[1686,42,44]},{"path":[4,95,2,12],"span":[1687,2,61],"trailingComments":" \t\"yes\"\tMac\n"},{"path":[4,95,2,12,4],"span":[1687,2,10]},{"path":[4,95,2,12,5],"span":[1687,16,22]},{"path":[4,95,2,12,1],"span":[1687,24,54]},{"path":[4,95,2,12,3],"span":[1687,58,60]},{"path":[4,95,2,13],"span":[1688,2,45],"trailingComments":" \tWindows:\"(Standard CD-ROM drives)\",Linux:\"NECVMWar\"\tWindows, Linux\n"},{"path":[4,95,2,13,4],"span":[1688,2,10]},{"path":[4,95,2,13,5],"span":[1688,16,22]},{"path":[4,95,2,13,1],"span":[1688,24,36]},{"path":[4,95,2,13,3],"span":[1688,42,44]},{"path":[4,95,2,14],"span":[1689,2,45],"trailingComments":" \t\tLinux\n"},{"path":[4,95,2,14,4],"span":[1689,2,10]},{"path":[4,95,2,14,5],"span":[1689,16,22]},{"path":[4,95,2,14,1],"span":[1689,24,35]},{"path":[4,95,2,14,3],"span":[1689,42,44]},{"path":[4,95,2,15],"span":[1690,2,53],"trailingComments":" \t\"CD-TAO, CD-SAO, CD-Raw, DVD-DAO\"\tMac\n"},{"path":[4,95,2,15,4],"span":[1690,2,10]},{"path":[4,95,2,15,5],"span":[1690,16,22]},{"path":[4,95,2,15,1],"span":[1690,24,40]},{"path":[4,95,2,15,3],"span":[1690,50,52]},{"path":[4,95,2,16],"span":[1691,2,45],"trailingComments":" \t7\tWindows\n"},{"path":[4,95,2,16,4],"span":[1691,2,10]},{"path":[4,95,2,16,5],"span":[1691,16,21]},{"path":[4,95,2,16,1],"span":[1691,24,32]},{"path":[4,95,2,16,3],"span":[1691,42,44]},{"path":[4,95,2,17],"span":[1692,2,53],"trailingComments":" \t0\tWindows\n"},{"path":[4,95,2,17,4],"span":[1692,2,10]},{"path":[4,95,2,17,5],"span":[1692,16,21]},{"path":[4,95,2,17,1],"span":[1692,24,41]},{"path":[4,95,2,17,3],"span":[1692,50,52]},{"path":[4,95,2,18],"span":[1693,2,45],"trailingComments":" \t0\tWindows\n"},{"path":[4,95,2,18,4],"span":[1693,2,10]},{"path":[4,95,2,18,5],"span":[1693,16,21]},{"path":[4,95,2,18,1],"span":[1693,24,33]},{"path":[4,95,2,18,3],"span":[1693,42,44]},{"path":[4,95,2,19],"span":[1694,2,45],"trailingComments":" \t0\tWindows\n"},{"path":[4,95,2,19,4],"span":[1694,2,10]},{"path":[4,95,2,19,5],"span":[1694,16,21]},{"path":[4,95,2,19,1],"span":[1694,24,38]},{"path":[4,95,2,19,3],"span":[1694,42,44]},{"path":[4,95,2,20],"span":[1695,2,52],"trailingComments":" \tMac\n"},{"path":[4,95,2,20,4],"span":[1695,2,10]},{"path":[4,95,2,20,5],"span":[1695,16,22]},{"path":[4,95,2,20,1],"span":[1695,24,46]},{"path":[4,95,2,20,3],"span":[1695,49,51]},{"path":[4,96],"span":[1701,0,1714,1],"leadingComments":"\n Motherboard for computers.\n"},{"path":[4,96,1],"span":[1701,8,19]},{"path":[4,96,2,0],"span":[1702,2,18],"trailingComments":" Windows, Linux\n"},{"path":[4,96,2,0,5],"span":[1702,2,8]},{"path":[4,96,2,0,1],"span":[1702,9,13]},{"path":[4,96,2,0,3],"span":[1702,16,17]},{"path":[4,96,2,1],"span":[1703,2,43],"trailingComments":" Windows\n"},{"path":[4,96,2,1,4],"span":[1703,2,10]},{"path":[4,96,2,1,5],"span":[1703,11,17]},{"path":[4,96,2,1,1],"span":[1703,24,38]},{"path":[4,96,2,1,3],"span":[1703,41,42]},{"path":[4,96,2,2],"span":[1704,2,37],"trailingComments":" Windows\n"},{"path":[4,96,2,2,4],"span":[1704,2,10]},{"path":[4,96,2,2,5],"span":[1704,11,15]},{"path":[4,96,2,2,1],"span":[1704,16,32]},{"path":[4,96,2,2,3],"span":[1704,35,36]},{"path":[4,96,2,3],"span":[1705,2,34],"trailingComments":" Windows\n"},{"path":[4,96,2,3,4],"span":[1705,2,10]},{"path":[4,96,2,3,5],"span":[1705,11,15]},{"path":[4,96,2,3,1],"span":[1705,16,29]},{"path":[4,96,2,3,3],"span":[1705,32,33]},{"path":[4,96,2,4],"span":[1706,2,37],"trailingComments":" Linux\n"},{"path":[4,96,2,4,4],"span":[1706,2,10]},{"path":[4,96,2,4,5],"span":[1706,11,17]},{"path":[4,96,2,4,1],"span":[1706,24,32]},{"path":[4,96,2,4,3],"span":[1706,35,36]},{"path":[4,96,2,5],"span":[1707,2,41],"trailingComments":" Windows, Linux\n"},{"path":[4,96,2,5,4],"span":[1707,2,10]},{"path":[4,96,2,5,5],"span":[1707,11,17]},{"path":[4,96,2,5,1],"span":[1707,24,36]},{"path":[4,96,2,5,3],"span":[1707,39,40]},{"path":[4,96,2,6],"span":[1708,2,42],"trailingComments":" Windows, Linux\n"},{"path":[4,96,2,6,4],"span":[1708,2,10]},{"path":[4,96,2,6,5],"span":[1708,11,17]},{"path":[4,96,2,6,1],"span":[1708,24,37]},{"path":[4,96,2,6,3],"span":[1708,40,41]},{"path":[4,96,2,7],"span":[1709,2,32],"trailingComments":" Windows\n"},{"path":[4,96,2,7,4],"span":[1709,2,10]},{"path":[4,96,2,7,5],"span":[1709,11,17]},{"path":[4,96,2,7,1],"span":[1709,24,27]},{"path":[4,96,2,7,3],"span":[1709,30,31]},{"path":[4,96,2,8],"span":[1710,2,33],"trailingComments":" Linux\n"},{"path":[4,96,2,8,4],"span":[1710,2,10]},{"path":[4,96,2,8,5],"span":[1710,11,17]},{"path":[4,96,2,8,1],"span":[1710,24,28]},{"path":[4,96,2,8,3],"span":[1710,31,32]},{"path":[4,96,2,9],"span":[1711,2,37],"trailingComments":" Windows, Linux\n"},{"path":[4,96,2,9,4],"span":[1711,2,10]},{"path":[4,96,2,9,5],"span":[1711,11,17]},{"path":[4,96,2,9,1],"span":[1711,24,31]},{"path":[4,96,2,9,3],"span":[1711,34,36]},{"path":[4,96,2,10],"span":[1713,2,41]},{"path":[4,96,2,10,4],"span":[1713,2,10]},{"path":[4,96,2,10,6],"span":[1713,11,28]},{"path":[4,96,2,10,1],"span":[1713,29,35]},{"path":[4,96,2,10,3],"span":[1713,38,40]},{"path":[4,97],"span":[1719,0,1724,1],"leadingComments":"\n Motherboard device, available only on Windows atm.\n"},{"path":[4,97,1],"span":[1719,8,25]},{"path":[4,97,2,0],"span":[1720,2,40]},{"path":[4,97,2,0,4],"span":[1720,2,10]},{"path":[4,97,2,0,5],"span":[1720,11,17]},{"path":[4,97,2,0,1],"span":[1720,24,35]},{"path":[4,97,2,0,3],"span":[1720,38,39]},{"path":[4,97,2,1],"span":[1721,2,28]},{"path":[4,97,2,1,4],"span":[1721,2,10]},{"path":[4,97,2,1,5],"span":[1721,11,15]},{"path":[4,97,2,1,1],"span":[1721,16,23]},{"path":[4,97,2,1,3],"span":[1721,26,27]},{"path":[4,97,2,2],"span":[1722,2,32]},{"path":[4,97,2,2,4],"span":[1722,2,10]},{"path":[4,97,2,2,5],"span":[1722,11,17]},{"path":[4,97,2,2,1],"span":[1722,24,27]},{"path":[4,97,2,2,3],"span":[1722,30,31]},{"path":[4,97,2,3],"span":[1723,2,32]},{"path":[4,97,2,3,4],"span":[1723,2,10]},{"path":[4,97,2,3,6],"span":[1723,11,22]},{"path":[4,97,2,3,1],"span":[1723,23,27]},{"path":[4,97,2,3,3],"span":[1723,30,31]},{"path":[4,98],"span":[1729,0,1733,1],"leadingComments":"\n Memory with summary fields and repeated entries.\n"},{"path":[4,98,1],"span":[1729,8,14]},{"path":[4,98,2,0],"span":[1730,4,29]},{"path":[4,98,2,0,5],"span":[1730,4,9]},{"path":[4,98,2,0,1],"span":[1730,10,24]},{"path":[4,98,2,0,3],"span":[1730,27,28]},{"path":[4,98,2,1],"span":[1731,4,48]},{"path":[4,98,2,1,4],"span":[1731,4,12]},{"path":[4,98,2,1,6],"span":[1731,13,27]},{"path":[4,98,2,1,1],"span":[1731,28,43]},{"path":[4,98,2,1,3],"span":[1731,46,47]},{"path":[4,98,2,2],"span":[1732,4,42]},{"path":[4,98,2,2,4],"span":[1732,4,12]},{"path":[4,98,2,2,6],"span":[1732,13,24]},{"path":[4,98,2,2,1],"span":[1732,25,37]},{"path":[4,98,2,2,3],"span":[1732,40,41]},{"path":[4,99],"span":[1736,0,1759,1],"leadingComments":" MemoryEntry *"},{"path":[4,99,1],"span":[1736,8,22]},{"path":[4,99,2,0],"span":[1738,4,30],"trailingComments":" memory capacity/size\n"},{"path":[4,99,2,0,4],"span":[1738,4,12]},{"path":[4,99,2,0,5],"span":[1738,14,19]},{"path":[4,99,2,0,1],"span":[1738,20,24]},{"path":[4,99,2,0,3],"span":[1738,27,29]},{"path":[4,99,2,1],"span":[1739,4,40],"trailingComments":"\tLinux\n"},{"path":[4,99,2,1,4],"span":[1739,4,12]},{"path":[4,99,2,1,5],"span":[1739,13,19]},{"path":[4,99,2,1,1],"span":[1739,24,36]},{"path":[4,99,2,1,3],"span":[1739,38,39]},{"path":[4,99,2,2],"span":[1740,4,51],"trailingComments":"\tWindows\n"},{"path":[4,99,2,2,4],"span":[1740,4,12]},{"path":[4,99,2,2,5],"span":[1740,13,18]},{"path":[4,99,2,2,1],"span":[1740,24,46]},{"path":[4,99,2,2,3],"span":[1740,49,50]},{"path":[4,99,2,3],"span":[1741,4,46],"trailingComments":"\tWindows\n"},{"path":[4,99,2,3,4],"span":[1741,4,12]},{"path":[4,99,2,3,5],"span":[1741,13,18]},{"path":[4,99,2,3,1],"span":[1741,24,42]},{"path":[4,99,2,3,3],"span":[1741,44,45]},{"path":[4,99,2,4],"span":[1742,4,38],"trailingComments":"\tWindows, Linux\n"},{"path":[4,99,2,4,4],"span":[1742,4,12]},{"path":[4,99,2,4,5],"span":[1742,13,18]},{"path":[4,99,2,4,1],"span":[1742,24,34]},{"path":[4,99,2,4,3],"span":[1742,36,37]},{"path":[4,99,2,5],"span":[1743,4,42],"trailingComments":"\tWindows, Linux\n"},{"path":[4,99,2,5,4],"span":[1743,4,12]},{"path":[4,99,2,5,5],"span":[1743,13,19]},{"path":[4,99,2,5,1],"span":[1743,24,38]},{"path":[4,99,2,5,3],"span":[1743,40,41]},{"path":[4,99,2,6],"span":[1744,4,47],"trailingComments":"\tWindows, Linux\n"},{"path":[4,99,2,6,4],"span":[1744,4,12]},{"path":[4,99,2,6,6],"span":[1744,13,24]},{"path":[4,99,2,6,1],"span":[1744,32,43]},{"path":[4,99,2,6,3],"span":[1744,45,46]},{"path":[4,99,2,7],"span":[1745,4,49],"trailingComments":"\tWindows\n"},{"path":[4,99,2,7,4],"span":[1745,4,12]},{"path":[4,99,2,7,5],"span":[1745,13,18]},{"path":[4,99,2,7,1],"span":[1745,24,45]},{"path":[4,99,2,7,3],"span":[1745,47,48]},{"path":[4,99,2,8],"span":[1746,4,55],"trailingComments":"\tWindows\n"},{"path":[4,99,2,8,4],"span":[1746,4,12]},{"path":[4,99,2,8,6],"span":[1746,13,24]},{"path":[4,99,2,8,1],"span":[1746,32,51]},{"path":[4,99,2,8,3],"span":[1746,53,54]},{"path":[4,99,2,9],"span":[1747,4,40],"trailingComments":"\tWindows, Linux\n"},{"path":[4,99,2,9,4],"span":[1747,4,12]},{"path":[4,99,2,9,5],"span":[1747,13,19]},{"path":[4,99,2,9,1],"span":[1747,24,36]},{"path":[4,99,2,9,3],"span":[1747,38,39]},{"path":[4,99,2,10],"span":[1748,4,33],"trailingComments":"\tMac\n"},{"path":[4,99,2,10,4],"span":[1748,4,12]},{"path":[4,99,2,10,5],"span":[1748,13,19]},{"path":[4,99,2,10,1],"span":[1748,24,28]},{"path":[4,99,2,10,3],"span":[1748,30,32]},{"path":[4,99,2,11],"span":[1749,4,40],"trailingComments":"\tWindows\n"},{"path":[4,99,2,11,4],"span":[1749,4,12]},{"path":[4,99,2,11,5],"span":[1749,13,19]},{"path":[4,99,2,11,1],"span":[1749,24,35]},{"path":[4,99,2,11,3],"span":[1749,37,39]},{"path":[4,99,2,12],"span":[1750,4,44],"trailingComments":"\tWindows\n"},{"path":[4,99,2,12,4],"span":[1750,4,12]},{"path":[4,99,2,12,5],"span":[1750,13,18]},{"path":[4,99,2,12,1],"span":[1750,24,39]},{"path":[4,99,2,12,3],"span":[1750,41,43]},{"path":[4,99,2,13],"span":[1751,4,42],"trailingComments":"\tWindows, Linux\n"},{"path":[4,99,2,13,4],"span":[1751,4,12]},{"path":[4,99,2,13,5],"span":[1751,13,19]},{"path":[4,99,2,13,1],"span":[1751,24,37]},{"path":[4,99,2,13,3],"span":[1751,39,41]},{"path":[4,99,2,14],"span":[1752,4,32],"trailingComments":"\tLinux\n"},{"path":[4,99,2,14,4],"span":[1752,4,12]},{"path":[4,99,2,14,5],"span":[1752,13,19]},{"path":[4,99,2,14,1],"span":[1752,24,27]},{"path":[4,99,2,14,3],"span":[1752,29,31]},{"path":[4,99,2,15],"span":[1753,4,32],"trailingComments":"\tWindows\n"},{"path":[4,99,2,15,4],"span":[1753,4,12]},{"path":[4,99,2,15,5],"span":[1753,13,19]},{"path":[4,99,2,15,1],"span":[1753,24,27]},{"path":[4,99,2,15,3],"span":[1753,29,31]},{"path":[4,99,2,16],"span":[1754,4,34],"trailingComments":"\tWindows, Linux, Mac\n"},{"path":[4,99,2,16,4],"span":[1754,4,12]},{"path":[4,99,2,16,5],"span":[1754,13,18]},{"path":[4,99,2,16,1],"span":[1754,24,29]},{"path":[4,99,2,16,3],"span":[1754,31,33]},{"path":[4,99,2,17],"span":[1755,4,34],"trailingComments":"\tMac\n"},{"path":[4,99,2,17,4],"span":[1755,4,12]},{"path":[4,99,2,17,5],"span":[1755,13,19]},{"path":[4,99,2,17,1],"span":[1755,24,29]},{"path":[4,99,2,17,3],"span":[1755,31,33]},{"path":[4,99,2,18],"span":[1756,4,40],"trailingComments":"\tWindows, Linux\n"},{"path":[4,99,2,18,4],"span":[1756,4,12]},{"path":[4,99,2,18,5],"span":[1756,13,18]},{"path":[4,99,2,18,1],"span":[1756,24,35]},{"path":[4,99,2,18,3],"span":[1756,37,39]},{"path":[4,99,2,19],"span":[1757,4,41],"trailingComments":"\tWindows, Linux, Mac\n"},{"path":[4,99,2,19,4],"span":[1757,4,12]},{"path":[4,99,2,19,6],"span":[1757,13,24]},{"path":[4,99,2,19,1],"span":[1757,32,36]},{"path":[4,99,2,19,3],"span":[1757,38,40]},{"path":[4,99,2,20],"span":[1758,4,48],"trailingComments":"\tWindows, Linux\n"},{"path":[4,99,2,20,4],"span":[1758,4,12]},{"path":[4,99,2,20,6],"span":[1758,13,24]},{"path":[4,99,2,20,1],"span":[1758,32,43]},{"path":[4,99,2,20,3],"span":[1758,45,47]},{"path":[4,100],"span":[1763,0,1770,1],"leadingComments":" MemoryArray, only Windows *"},{"path":[4,100,1],"span":[1763,8,19]},{"path":[4,100,2,0],"span":[1764,2,40],"trailingComments":"\tWindows\n"},{"path":[4,100,2,0,4],"span":[1764,2,10]},{"path":[4,100,2,0,5],"span":[1764,11,16]},{"path":[4,100,2,0,1],"span":[1764,24,36]},{"path":[4,100,2,0,3],"span":[1764,38,39]},{"path":[4,100,2,1],"span":[1765,2,36],"trailingComments":"\tWindows\n"},{"path":[4,100,2,1,4],"span":[1765,2,10]},{"path":[4,100,2,1,6],"span":[1765,11,22]},{"path":[4,100,2,1,1],"span":[1765,24,32]},{"path":[4,100,2,1,3],"span":[1765,34,35]},{"path":[4,100,2,2],"span":[1766,2,42],"trailingComments":"\tWindows\n"},{"path":[4,100,2,2,4],"span":[1766,2,10]},{"path":[4,100,2,2,5],"span":[1766,11,16]},{"path":[4,100,2,2,1],"span":[1766,24,38]},{"path":[4,100,2,2,3],"span":[1766,40,41]},{"path":[4,100,2,3],"span":[1767,2,51],"trailingComments":"\tWindows\n"},{"path":[4,100,2,3,4],"span":[1767,2,10]},{"path":[4,100,2,3,6],"span":[1767,11,22]},{"path":[4,100,2,3,1],"span":[1767,24,47]},{"path":[4,100,2,3,3],"span":[1767,49,50]},{"path":[4,100,2,4],"span":[1768,2,31],"trailingComments":"\tWindows\n"},{"path":[4,100,2,4,4],"span":[1768,2,10]},{"path":[4,100,2,4,5],"span":[1768,11,17]},{"path":[4,100,2,4,1],"span":[1768,24,27]},{"path":[4,100,2,4,3],"span":[1768,29,30]},{"path":[4,100,2,5],"span":[1769,2,31],"trailingComments":"\tWindows\n"},{"path":[4,100,2,5,4],"span":[1769,2,10]},{"path":[4,100,2,5,6],"span":[1769,11,22]},{"path":[4,100,2,5,1],"span":[1769,24,27]},{"path":[4,100,2,5,3],"span":[1769,29,30]},{"path":[4,101],"span":[1776,0,1785,1],"leadingComments":"\n ParallelPort, only Windows atm.\n WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-parallelport\n"},{"path":[4,101,1],"span":[1776,8,20]},{"path":[4,101,2,0],"span":[1777,2,30]},{"path":[4,101,2,0,4],"span":[1777,2,10]},{"path":[4,101,2,0,5],"span":[1777,11,17]},{"path":[4,101,2,0,1],"span":[1777,18,25]},{"path":[4,101,2,0,3],"span":[1777,28,29]},{"path":[4,101,2,1],"span":[1778,2,40]},{"path":[4,101,2,1,4],"span":[1778,2,10]},{"path":[4,101,2,1,6],"span":[1778,11,22]},{"path":[4,101,2,1,1],"span":[1778,23,35]},{"path":[4,101,2,1,3],"span":[1778,38,39]},{"path":[4,101,2,2],"span":[1779,2,46]},{"path":[4,101,2,2,4],"span":[1779,2,10]},{"path":[4,101,2,2,6],"span":[1779,11,22]},{"path":[4,101,2,2,1],"span":[1779,23,41]},{"path":[4,101,2,2,3],"span":[1779,44,45]},{"path":[4,101,2,3],"span":[1780,2,53]},{"path":[4,101,2,3,4],"span":[1780,2,10]},{"path":[4,101,2,3,6],"span":[1780,11,22]},{"path":[4,101,2,3,1],"span":[1780,23,48]},{"path":[4,101,2,3,3],"span":[1780,51,52]},{"path":[4,101,2,4],"span":[1781,2,36]},{"path":[4,101,2,4,4],"span":[1781,2,10]},{"path":[4,101,2,4,5],"span":[1781,11,17]},{"path":[4,101,2,4,1],"span":[1781,18,31]},{"path":[4,101,2,4,3],"span":[1781,34,35]},{"path":[4,101,2,5],"span":[1782,2,47]},{"path":[4,101,2,5,4],"span":[1782,2,10]},{"path":[4,101,2,5,5],"span":[1782,11,15]},{"path":[4,101,2,5,1],"span":[1782,16,42]},{"path":[4,101,2,5,3],"span":[1782,45,46]},{"path":[4,101,2,6],"span":[1783,2,39]},{"path":[4,101,2,6,4],"span":[1783,2,10]},{"path":[4,101,2,6,5],"span":[1783,11,15]},{"path":[4,101,2,6,1],"span":[1783,16,34]},{"path":[4,101,2,6,3],"span":[1783,37,38]},{"path":[4,101,2,7],"span":[1784,2,47]},{"path":[4,101,2,7,4],"span":[1784,2,10]},{"path":[4,101,2,7,5],"span":[1784,11,15]},{"path":[4,101,2,7,1],"span":[1784,16,42]},{"path":[4,101,2,7,3],"span":[1784,45,46]},{"path":[4,102],"span":[1791,0,1802,1],"leadingComments":"\n SerialPort, only Windows atm.\n WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-serialport\n"},{"path":[4,102,1],"span":[1791,8,18]},{"path":[4,102,2,0],"span":[1792,2,40]},{"path":[4,102,2,0,4],"span":[1792,2,10]},{"path":[4,102,2,0,6],"span":[1792,11,22]},{"path":[4,102,2,0,1],"span":[1792,23,35]},{"path":[4,102,2,0,3],"span":[1792,38,39]},{"path":[4,102,2,1],"span":[1793,2,27]},{"path":[4,102,2,1,4],"span":[1793,2,10]},{"path":[4,102,2,1,5],"span":[1793,11,15]},{"path":[4,102,2,1,1],"span":[1793,16,22]},{"path":[4,102,2,1,3],"span":[1793,25,26]},{"path":[4,102,2,2],"span":[1794,2,30]},{"path":[4,102,2,2,4],"span":[1794,2,10]},{"path":[4,102,2,2,5],"span":[1794,11,17]},{"path":[4,102,2,2,1],"span":[1794,18,25]},{"path":[4,102,2,2,3],"span":[1794,28,29]},{"path":[4,102,2,3],"span":[1795,2,32]},{"path":[4,102,2,3,4],"span":[1795,2,10]},{"path":[4,102,2,3,5],"span":[1795,11,17]},{"path":[4,102,2,3,1],"span":[1795,18,27]},{"path":[4,102,2,3,3],"span":[1795,30,31]},{"path":[4,102,2,4],"span":[1796,2,35]},{"path":[4,102,2,4,4],"span":[1796,2,10]},{"path":[4,102,2,4,5],"span":[1796,11,16]},{"path":[4,102,2,4,1],"span":[1796,17,30]},{"path":[4,102,2,4,3],"span":[1796,33,34]},{"path":[4,102,2,5],"span":[1797,2,47]},{"path":[4,102,2,5,4],"span":[1797,2,10]},{"path":[4,102,2,5,5],"span":[1797,11,16]},{"path":[4,102,2,5,1],"span":[1797,17,42]},{"path":[4,102,2,5,3],"span":[1797,45,46]},{"path":[4,102,2,6],"span":[1798,2,48]},{"path":[4,102,2,6,4],"span":[1798,2,10]},{"path":[4,102,2,6,5],"span":[1798,11,16]},{"path":[4,102,2,6,1],"span":[1798,17,43]},{"path":[4,102,2,6,3],"span":[1798,46,47]},{"path":[4,102,2,7],"span":[1799,2,39]},{"path":[4,102,2,7,4],"span":[1799,2,10]},{"path":[4,102,2,7,5],"span":[1799,11,15]},{"path":[4,102,2,7,1],"span":[1799,16,34]},{"path":[4,102,2,7,3],"span":[1799,37,38]},{"path":[4,102,2,8],"span":[1800,2,36]},{"path":[4,102,2,8,4],"span":[1800,2,10]},{"path":[4,102,2,8,5],"span":[1800,11,17]},{"path":[4,102,2,8,1],"span":[1800,18,31]},{"path":[4,102,2,8,3],"span":[1800,34,35]},{"path":[4,102,2,9],"span":[1801,2,37]},{"path":[4,102,2,9,4],"span":[1801,2,10]},{"path":[4,102,2,9,5],"span":[1801,11,17]},{"path":[4,102,2,9,1],"span":[1801,18,31]},{"path":[4,102,2,9,3],"span":[1801,34,36]},{"path":[4,103],"span":[1808,0,1815,1],"leadingComments":"\n PcmciaController, only Windows atm.\n WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-pcmciacontroller\n"},{"path":[4,103,1],"span":[1808,8,24]},{"path":[4,103,2,0],"span":[1809,2,30]},{"path":[4,103,2,0,4],"span":[1809,2,10]},{"path":[4,103,2,0,5],"span":[1809,11,17]},{"path":[4,103,2,0,1],"span":[1809,18,25]},{"path":[4,103,2,0,3],"span":[1809,28,29]},{"path":[4,103,2,1],"span":[1810,2,46]},{"path":[4,103,2,1,4],"span":[1810,2,10]},{"path":[4,103,2,1,6],"span":[1810,11,22]},{"path":[4,103,2,1,1],"span":[1810,23,41]},{"path":[4,103,2,1,3],"span":[1810,44,45]},{"path":[4,103,2,2],"span":[1811,2,53]},{"path":[4,103,2,2,4],"span":[1811,2,10]},{"path":[4,103,2,2,6],"span":[1811,11,22]},{"path":[4,103,2,2,1],"span":[1811,23,48]},{"path":[4,103,2,2,3],"span":[1811,51,52]},{"path":[4,103,2,3],"span":[1812,2,47]},{"path":[4,103,2,3,4],"span":[1812,2,10]},{"path":[4,103,2,3,5],"span":[1812,11,15]},{"path":[4,103,2,3,1],"span":[1812,16,42]},{"path":[4,103,2,3,3],"span":[1812,45,46]},{"path":[4,103,2,4],"span":[1813,2,32]},{"path":[4,103,2,4,4],"span":[1813,2,10]},{"path":[4,103,2,4,5],"span":[1813,11,17]},{"path":[4,103,2,4,1],"span":[1813,18,27]},{"path":[4,103,2,4,3],"span":[1813,30,31]},{"path":[4,103,2,5],"span":[1814,2,35]},{"path":[4,103,2,5,4],"span":[1814,2,10]},{"path":[4,103,2,5,5],"span":[1814,11,17]},{"path":[4,103,2,5,1],"span":[1814,18,30]},{"path":[4,103,2,5,3],"span":[1814,33,34]},{"path":[4,104],"span":[1821,0,1827,1],"leadingComments":"\n PortConnector, only Windows atm.\n WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-portconnector\n"},{"path":[4,104,1],"span":[1821,8,21]},{"path":[4,104,2,0],"span":[1822,2,42]},{"path":[4,104,2,0,4],"span":[1822,2,10]},{"path":[4,104,2,0,6],"span":[1822,11,22]},{"path":[4,104,2,0,1],"span":[1822,23,37]},{"path":[4,104,2,0,3],"span":[1822,40,41]},{"path":[4,104,2,1],"span":[1823,2,52]},{"path":[4,104,2,1,4],"span":[1823,2,10]},{"path":[4,104,2,1,5],"span":[1823,11,17]},{"path":[4,104,2,1,1],"span":[1823,18,47]},{"path":[4,104,2,1,3],"span":[1823,50,51]},{"path":[4,104,2,2],"span":[1824,2,52]},{"path":[4,104,2,2,4],"span":[1824,2,10]},{"path":[4,104,2,2,5],"span":[1824,11,17]},{"path":[4,104,2,2,1],"span":[1824,18,47]},{"path":[4,104,2,2,3],"span":[1824,50,51]},{"path":[4,104,2,3],"span":[1825,2,37]},{"path":[4,104,2,3,4],"span":[1825,2,10]},{"path":[4,104,2,3,6],"span":[1825,11,22]},{"path":[4,104,2,3,1],"span":[1825,23,32]},{"path":[4,104,2,3,3],"span":[1825,35,36]},{"path":[4,104,2,4],"span":[1826,2,26]},{"path":[4,104,2,4,4],"span":[1826,2,10]},{"path":[4,104,2,4,5],"span":[1826,11,17]},{"path":[4,104,2,4,1],"span":[1826,18,21]},{"path":[4,104,2,4,3],"span":[1826,24,25]},{"path":[4,105],"span":[1833,0,1840,1],"leadingComments":"\n ScsiController, only Windows atm.\n WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-scsicontroller\n"},{"path":[4,105,1],"span":[1833,8,22]},{"path":[4,105,2,0],"span":[1834,2,40]},{"path":[4,105,2,0,4],"span":[1834,2,10]},{"path":[4,105,2,0,6],"span":[1834,11,22]},{"path":[4,105,2,0,1],"span":[1834,23,35]},{"path":[4,105,2,0,3],"span":[1834,38,39]},{"path":[4,105,2,1],"span":[1835,2,30]},{"path":[4,105,2,1,4],"span":[1835,2,10]},{"path":[4,105,2,1,5],"span":[1835,11,17]},{"path":[4,105,2,1,1],"span":[1835,18,25]},{"path":[4,105,2,1,3],"span":[1835,28,29]},{"path":[4,105,2,2],"span":[1836,2,32]},{"path":[4,105,2,2,4],"span":[1836,2,10]},{"path":[4,105,2,2,5],"span":[1836,11,17]},{"path":[4,105,2,2,1],"span":[1836,18,27]},{"path":[4,105,2,2,3],"span":[1836,30,31]},{"path":[4,105,2,3],"span":[1837,2,34]},{"path":[4,105,2,3,4],"span":[1837,2,10]},{"path":[4,105,2,3,5],"span":[1837,11,17]},{"path":[4,105,2,3,1],"span":[1837,18,29]},{"path":[4,105,2,3,3],"span":[1837,32,33]},{"path":[4,105,2,4],"span":[1838,2,35]},{"path":[4,105,2,4,4],"span":[1838,2,10]},{"path":[4,105,2,4,5],"span":[1838,11,17]},{"path":[4,105,2,4,1],"span":[1838,18,30]},{"path":[4,105,2,4,3],"span":[1838,33,34]},{"path":[4,105,2,5],"span":[1839,2,46]},{"path":[4,105,2,5,4],"span":[1839,2,10]},{"path":[4,105,2,5,6],"span":[1839,11,22]},{"path":[4,105,2,5,1],"span":[1839,23,41]},{"path":[4,105,2,5,3],"span":[1839,44,45]},{"path":[4,106],"span":[1846,0,1852,1],"leadingComments":"\n ComputerSystemProduct, only Windows atm.\n WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-computersystemproduct\n"},{"path":[4,106,1],"span":[1846,8,29]},{"path":[4,106,2,0],"span":[1847,2,41]},{"path":[4,106,2,0,4],"span":[1847,2,10]},{"path":[4,106,2,0,5],"span":[1847,11,17]},{"path":[4,106,2,0,1],"span":[1847,18,36]},{"path":[4,106,2,0,3],"span":[1847,39,40]},{"path":[4,106,2,1],"span":[1848,2,27]},{"path":[4,106,2,1,4],"span":[1848,2,10]},{"path":[4,106,2,1,5],"span":[1848,11,17]},{"path":[4,106,2,1,1],"span":[1848,18,22]},{"path":[4,106,2,1,3],"span":[1848,25,26]},{"path":[4,106,2,2],"span":[1849,2,27]},{"path":[4,106,2,2,4],"span":[1849,2,10]},{"path":[4,106,2,2,5],"span":[1849,11,17]},{"path":[4,106,2,2,1],"span":[1849,18,22]},{"path":[4,106,2,2,3],"span":[1849,25,26]},{"path":[4,106,2,3],"span":[1850,2,29]},{"path":[4,106,2,3,4],"span":[1850,2,10]},{"path":[4,106,2,3,5],"span":[1850,11,17]},{"path":[4,106,2,3,1],"span":[1850,18,24]},{"path":[4,106,2,3,3],"span":[1850,27,28]},{"path":[4,106,2,4],"span":[1851,2,30]},{"path":[4,106,2,4,4],"span":[1851,2,10]},{"path":[4,106,2,4,5],"span":[1851,11,17]},{"path":[4,106,2,4,1],"span":[1851,18,25]},{"path":[4,106,2,4,3],"span":[1851,28,29]},{"path":[4,107],"span":[1858,0,1899,1],"leadingComments":"\n ComputerSystemProduct, only Windows atm.\n WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-computersystem\n"},{"path":[4,107,1],"span":[1858,8,29]},{"path":[4,107,2,0],"span":[1859,2,49]},{"path":[4,107,2,0,4],"span":[1859,2,10]},{"path":[4,107,2,0,6],"span":[1859,11,22]},{"path":[4,107,2,0,1],"span":[1859,23,44]},{"path":[4,107,2,0,3],"span":[1859,47,48]},{"path":[4,107,2,1],"span":[1860,2,48]},{"path":[4,107,2,1,4],"span":[1860,2,10]},{"path":[4,107,2,1,5],"span":[1860,11,15]},{"path":[4,107,2,1,1],"span":[1860,16,43]},{"path":[4,107,2,1,3],"span":[1860,46,47]},{"path":[4,107,2,2],"span":[1861,2,47]},{"path":[4,107,2,2,4],"span":[1861,2,10]},{"path":[4,107,2,2,5],"span":[1861,11,15]},{"path":[4,107,2,2,1],"span":[1861,16,42]},{"path":[4,107,2,2,3],"span":[1861,45,46]},{"path":[4,107,2,3],"span":[1862,2,48]},{"path":[4,107,2,3,4],"span":[1862,2,10]},{"path":[4,107,2,3,6],"span":[1862,11,22]},{"path":[4,107,2,3,1],"span":[1862,23,43]},{"path":[4,107,2,3,3],"span":[1862,46,47]},{"path":[4,107,2,4],"span":[1863,2,52]},{"path":[4,107,2,4,4],"span":[1863,2,10]},{"path":[4,107,2,4,6],"span":[1863,11,22]},{"path":[4,107,2,4,1],"span":[1863,23,47]},{"path":[4,107,2,4,3],"span":[1863,50,51]},{"path":[4,107,2,5],"span":[1864,2,39]},{"path":[4,107,2,5,4],"span":[1864,2,10]},{"path":[4,107,2,5,5],"span":[1864,11,15]},{"path":[4,107,2,5,1],"span":[1864,16,34]},{"path":[4,107,2,5,3],"span":[1864,37,38]},{"path":[4,107,2,6],"span":[1865,2,36]},{"path":[4,107,2,6,4],"span":[1865,2,10]},{"path":[4,107,2,6,5],"span":[1865,11,17]},{"path":[4,107,2,6,1],"span":[1865,18,31]},{"path":[4,107,2,6,3],"span":[1865,34,35]},{"path":[4,107,2,7],"span":[1866,2,49]},{"path":[4,107,2,7,4],"span":[1866,2,10]},{"path":[4,107,2,7,6],"span":[1866,11,22]},{"path":[4,107,2,7,1],"span":[1866,23,44]},{"path":[4,107,2,7,3],"span":[1866,47,48]},{"path":[4,107,2,8],"span":[1867,2,40]},{"path":[4,107,2,8,4],"span":[1867,2,10]},{"path":[4,107,2,8,5],"span":[1867,11,16]},{"path":[4,107,2,8,1],"span":[1867,17,34]},{"path":[4,107,2,8,3],"span":[1867,37,39]},{"path":[4,107,2,9],"span":[1868,2,40]},{"path":[4,107,2,9,4],"span":[1868,2,10]},{"path":[4,107,2,9,5],"span":[1868,11,15]},{"path":[4,107,2,9,1],"span":[1868,16,34]},{"path":[4,107,2,9,3],"span":[1868,37,39]},{"path":[4,107,2,10],"span":[1869,2,35]},{"path":[4,107,2,10,4],"span":[1869,2,10]},{"path":[4,107,2,10,5],"span":[1869,11,17]},{"path":[4,107,2,10,1],"span":[1869,18,29]},{"path":[4,107,2,10,3],"span":[1869,32,34]},{"path":[4,107,2,11],"span":[1870,2,30]},{"path":[4,107,2,11,4],"span":[1870,2,10]},{"path":[4,107,2,11,5],"span":[1870,11,17]},{"path":[4,107,2,11,1],"span":[1870,18,24]},{"path":[4,107,2,11,3],"span":[1870,27,29]},{"path":[4,107,2,12],"span":[1871,2,40]},{"path":[4,107,2,12,4],"span":[1871,2,10]},{"path":[4,107,2,12,6],"span":[1871,11,22]},{"path":[4,107,2,12,1],"span":[1871,23,34]},{"path":[4,107,2,12,3],"span":[1871,37,39]},{"path":[4,107,2,13],"span":[1872,2,53]},{"path":[4,107,2,13,4],"span":[1872,2,10]},{"path":[4,107,2,13,6],"span":[1872,11,22]},{"path":[4,107,2,13,1],"span":[1872,23,47]},{"path":[4,107,2,13,3],"span":[1872,50,52]},{"path":[4,107,2,14],"span":[1873,2,40]},{"path":[4,107,2,14,4],"span":[1873,2,10]},{"path":[4,107,2,14,5],"span":[1873,11,15]},{"path":[4,107,2,14,1],"span":[1873,16,34]},{"path":[4,107,2,14,3],"span":[1873,37,39]},{"path":[4,107,2,15],"span":[1874,2,53]},{"path":[4,107,2,15,4],"span":[1874,2,10]},{"path":[4,107,2,15,6],"span":[1874,11,22]},{"path":[4,107,2,15,1],"span":[1874,23,47]},{"path":[4,107,2,15,3],"span":[1874,50,52]},{"path":[4,107,2,16],"span":[1875,2,36]},{"path":[4,107,2,16,4],"span":[1875,2,10]},{"path":[4,107,2,16,5],"span":[1875,11,17]},{"path":[4,107,2,16,1],"span":[1875,18,30]},{"path":[4,107,2,16,3],"span":[1875,33,35]},{"path":[4,107,2,17],"span":[1876,2,28]},{"path":[4,107,2,17,4],"span":[1876,2,10]},{"path":[4,107,2,17,5],"span":[1876,11,17]},{"path":[4,107,2,17,1],"span":[1876,18,22]},{"path":[4,107,2,17,3],"span":[1876,25,27]},{"path":[4,107,2,18],"span":[1877,2,29]},{"path":[4,107,2,18,4],"span":[1877,2,10]},{"path":[4,107,2,18,5],"span":[1877,11,17]},{"path":[4,107,2,18,1],"span":[1877,18,23]},{"path":[4,107,2,18,3],"span":[1877,26,28]},{"path":[4,107,2,19],"span":[1878,2,49]},{"path":[4,107,2,19,4],"span":[1878,2,10]},{"path":[4,107,2,19,5],"span":[1878,11,15]},{"path":[4,107,2,19,1],"span":[1878,16,43]},{"path":[4,107,2,19,3],"span":[1878,46,48]},{"path":[4,107,2,20],"span":[1879,2,43]},{"path":[4,107,2,20,4],"span":[1879,2,10]},{"path":[4,107,2,20,5],"span":[1879,11,16]},{"path":[4,107,2,20,1],"span":[1879,17,37]},{"path":[4,107,2,20,3],"span":[1879,40,42]},{"path":[4,107,2,21],"span":[1880,2,40]},{"path":[4,107,2,21,4],"span":[1880,2,10]},{"path":[4,107,2,21,5],"span":[1880,11,16]},{"path":[4,107,2,21,1],"span":[1880,17,34]},{"path":[4,107,2,21,3],"span":[1880,37,39]},{"path":[4,107,2,22],"span":[1881,2,53]},{"path":[4,107,2,22,4],"span":[1881,2,10]},{"path":[4,107,2,22,6],"span":[1881,11,22]},{"path":[4,107,2,22,1],"span":[1881,23,47]},{"path":[4,107,2,22,3],"span":[1881,50,52]},{"path":[4,107,2,23],"span":[1882,2,40]},{"path":[4,107,2,23,4],"span":[1882,2,10]},{"path":[4,107,2,23,6],"span":[1882,11,22]},{"path":[4,107,2,23,1],"span":[1882,23,34]},{"path":[4,107,2,23,3],"span":[1882,37,39]},{"path":[4,107,2,24],"span":[1883,2,47]},{"path":[4,107,2,24,4],"span":[1883,2,10]},{"path":[4,107,2,24,6],"span":[1883,11,22]},{"path":[4,107,2,24,1],"span":[1883,23,41]},{"path":[4,107,2,24,3],"span":[1883,44,46]},{"path":[4,107,2,25],"span":[1884,2,42]},{"path":[4,107,2,25,4],"span":[1884,2,10]},{"path":[4,107,2,25,5],"span":[1884,11,17]},{"path":[4,107,2,25,1],"span":[1884,18,36]},{"path":[4,107,2,25,3],"span":[1884,39,41]},{"path":[4,107,2,26],"span":[1885,2,45]},{"path":[4,107,2,26,4],"span":[1885,2,10]},{"path":[4,107,2,26,6],"span":[1885,11,22]},{"path":[4,107,2,26,1],"span":[1885,23,39]},{"path":[4,107,2,26,3],"span":[1885,42,44]},{"path":[4,107,2,27],"span":[1886,2,34]},{"path":[4,107,2,27,4],"span":[1886,2,10]},{"path":[4,107,2,27,5],"span":[1886,11,16]},{"path":[4,107,2,27,1],"span":[1886,17,28]},{"path":[4,107,2,27,3],"span":[1886,31,33]},{"path":[4,107,2,28],"span":[1887,2,34]},{"path":[4,107,2,28,4],"span":[1887,2,10]},{"path":[4,107,2,28,5],"span":[1887,11,16]},{"path":[4,107,2,28,1],"span":[1887,17,28]},{"path":[4,107,2,28,3],"span":[1887,31,33]},{"path":[4,107,2,29],"span":[1888,2,29]},{"path":[4,107,2,29,4],"span":[1888,2,10]},{"path":[4,107,2,29,5],"span":[1888,11,17]},{"path":[4,107,2,29,1],"span":[1888,18,23]},{"path":[4,107,2,29,3],"span":[1888,26,28]},{"path":[4,107,2,30],"span":[1889,2,30]},{"path":[4,107,2,30,4],"span":[1889,2,10]},{"path":[4,107,2,30,5],"span":[1889,11,17]},{"path":[4,107,2,30,1],"span":[1889,18,24]},{"path":[4,107,2,30,3],"span":[1889,27,29]},{"path":[4,107,2,31],"span":[1890,2,43]},{"path":[4,107,2,31,4],"span":[1890,2,10]},{"path":[4,107,2,31,5],"span":[1890,11,16]},{"path":[4,107,2,31,1],"span":[1890,17,37]},{"path":[4,107,2,31,3],"span":[1890,40,42]},{"path":[4,107,2,32],"span":[1891,2,46]},{"path":[4,107,2,32,4],"span":[1891,2,10]},{"path":[4,107,2,32,5],"span":[1891,11,17]},{"path":[4,107,2,32,1],"span":[1891,18,40]},{"path":[4,107,2,32,3],"span":[1891,43,45]},{"path":[4,107,2,33],"span":[1892,2,35]},{"path":[4,107,2,33,4],"span":[1892,2,10]},{"path":[4,107,2,33,5],"span":[1892,11,17]},{"path":[4,107,2,33,1],"span":[1892,18,29]},{"path":[4,107,2,33,3],"span":[1892,32,34]},{"path":[4,107,2,34],"span":[1893,2,42]},{"path":[4,107,2,34,4],"span":[1893,2,10]},{"path":[4,107,2,34,6],"span":[1893,11,22]},{"path":[4,107,2,34,1],"span":[1893,23,36]},{"path":[4,107,2,34,3],"span":[1893,39,41]},{"path":[4,107,2,35],"span":[1894,2,44]},{"path":[4,107,2,35,4],"span":[1894,2,10]},{"path":[4,107,2,35,5],"span":[1894,11,16]},{"path":[4,107,2,35,1],"span":[1894,17,38]},{"path":[4,107,2,35,3],"span":[1894,41,43]},{"path":[4,107,2,36],"span":[1895,2,40]},{"path":[4,107,2,36,4],"span":[1895,2,10]},{"path":[4,107,2,36,6],"span":[1895,11,22]},{"path":[4,107,2,36,1],"span":[1895,23,34]},{"path":[4,107,2,36,3],"span":[1895,37,39]},{"path":[4,107,2,37],"span":[1896,2,50]},{"path":[4,107,2,37,4],"span":[1896,2,10]},{"path":[4,107,2,37,5],"span":[1896,11,15]},{"path":[4,107,2,37,1],"span":[1896,16,44]},{"path":[4,107,2,37,3],"span":[1896,47,49]},{"path":[4,107,2,38],"span":[1897,2,36]},{"path":[4,107,2,38,4],"span":[1897,2,10]},{"path":[4,107,2,38,5],"span":[1897,11,15]},{"path":[4,107,2,38,1],"span":[1897,16,30]},{"path":[4,107,2,38,3],"span":[1897,33,35]},{"path":[4,107,2,39],"span":[1898,2,51]},{"path":[4,107,2,39,4],"span":[1898,2,10]},{"path":[4,107,2,39,5],"span":[1898,11,16]},{"path":[4,107,2,39,1],"span":[1898,17,45]},{"path":[4,107,2,39,3],"span":[1898,48,50]},{"path":[4,108],"span":[1905,0,1923,1],"leadingComments":"\n TrustedPlatformModule, only Windows atm.\n WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/secprov/win32-tpm\n"},{"path":[4,108,1],"span":[1905,8,29]},{"path":[4,108,2,0],"span":[1906,2,47]},{"path":[4,108,2,0,4],"span":[1906,2,10]},{"path":[4,108,2,0,5],"span":[1906,11,15]},{"path":[4,108,2,0,1],"span":[1906,16,42]},{"path":[4,108,2,0,3],"span":[1906,45,46]},{"path":[4,108,2,1],"span":[1907,2,45]},{"path":[4,108,2,1,4],"span":[1907,2,10]},{"path":[4,108,2,1,5],"span":[1907,11,15]},{"path":[4,108,2,1,1],"span":[1907,16,40]},{"path":[4,108,2,1,3],"span":[1907,43,44]},{"path":[4,108,2,2],"span":[1908,2,43]},{"path":[4,108,2,2,4],"span":[1908,2,10]},{"path":[4,108,2,2,5],"span":[1908,11,15]},{"path":[4,108,2,2,1],"span":[1908,16,38]},{"path":[4,108,2,2,3],"span":[1908,41,42]},{"path":[4,108,2,3],"span":[1909,2,35]},{"path":[4,108,2,3,4],"span":[1909,2,10]},{"path":[4,108,2,3,5],"span":[1909,11,17]},{"path":[4,108,2,3,1],"span":[1909,18,30]},{"path":[4,108,2,3,3],"span":[1909,33,34]},{"path":[4,108,2,4],"span":[1910,2,43]},{"path":[4,108,2,4,4],"span":[1910,2,10]},{"path":[4,108,2,4,5],"span":[1910,11,17]},{"path":[4,108,2,4,1],"span":[1910,18,38]},{"path":[4,108,2,4,3],"span":[1910,41,42]},{"path":[4,108,2,5],"span":[1911,2,48]},{"path":[4,108,2,5,4],"span":[1911,2,10]},{"path":[4,108,2,5,5],"span":[1911,11,17]},{"path":[4,108,2,5,1],"span":[1911,18,43]},{"path":[4,108,2,5,3],"span":[1911,46,47]},{"path":[4,108,2,6],"span":[1918,2,38],"leadingComments":"\n This integer value can be translated to a string value by interpreting each byte as an ASCII character.\n For example, an integer value of 1414548736 can be divided into these 4 bytes: 0x54, 0x50, 0x4D, and 0x00.\n Assuming the string is interpreted from left to right, this integer value translated to a string value of \"TPM\".\n"},{"path":[4,108,2,6,4],"span":[1918,2,10]},{"path":[4,108,2,6,5],"span":[1918,11,17]},{"path":[4,108,2,6,1],"span":[1918,18,33]},{"path":[4,108,2,6,3],"span":[1918,36,37]},{"path":[4,108,2,7],"span":[1920,2,50]},{"path":[4,108,2,7,4],"span":[1920,2,10]},{"path":[4,108,2,7,5],"span":[1920,11,17]},{"path":[4,108,2,7,1],"span":[1920,18,45]},{"path":[4,108,2,7,3],"span":[1920,48,49]},{"path":[4,108,2,8],"span":[1921,2,42]},{"path":[4,108,2,8,4],"span":[1921,2,10]},{"path":[4,108,2,8,5],"span":[1921,11,17]},{"path":[4,108,2,8,1],"span":[1921,18,37]},{"path":[4,108,2,8,3],"span":[1921,40,41]},{"path":[4,108,2,9],"span":[1922,2,54]},{"path":[4,108,2,9,4],"span":[1922,2,10]},{"path":[4,108,2,9,5],"span":[1922,11,17]},{"path":[4,108,2,9,1],"span":[1922,18,48]},{"path":[4,108,2,9,3],"span":[1922,51,53]},{"path":[4,109],"span":[1929,0,1934,1],"leadingComments":"\n ComputerConnectedUsbController, only Windows atm.\n WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-usbcontroller\n"},{"path":[4,109,1],"span":[1929,8,38]},{"path":[4,109,2,0],"span":[1930,2,30]},{"path":[4,109,2,0,4],"span":[1930,2,10]},{"path":[4,109,2,0,5],"span":[1930,11,17]},{"path":[4,109,2,0,1],"span":[1930,18,25]},{"path":[4,109,2,0,3],"span":[1930,28,29]},{"path":[4,109,2,1],"span":[1931,2,32]},{"path":[4,109,2,1,4],"span":[1931,2,10]},{"path":[4,109,2,1,5],"span":[1931,11,17]},{"path":[4,109,2,1,1],"span":[1931,18,27]},{"path":[4,109,2,1,3],"span":[1931,30,31]},{"path":[4,109,2,2],"span":[1932,2,35]},{"path":[4,109,2,2,4],"span":[1932,2,10]},{"path":[4,109,2,2,5],"span":[1932,11,17]},{"path":[4,109,2,2,1],"span":[1932,18,30]},{"path":[4,109,2,2,3],"span":[1932,33,34]},{"path":[4,109,2,3],"span":[1933,2,46]},{"path":[4,109,2,3,4],"span":[1933,2,10]},{"path":[4,109,2,3,6],"span":[1933,11,22]},{"path":[4,109,2,3,1],"span":[1933,23,41]},{"path":[4,109,2,3,3],"span":[1933,44,45]},{"path":[4,110],"span":[1939,0,1943,1],"leadingComments":"\n Windows only atm.\n"},{"path":[4,110,1],"span":[1939,8,38]},{"path":[4,110,2,0],"span":[1940,2,24]},{"path":[4,110,2,0,5],"span":[1940,2,8]},{"path":[4,110,2,0,1],"span":[1940,9,19]},{"path":[4,110,2,0,3],"span":[1940,22,23]},{"path":[4,110,2,1],"span":[1941,2,26]},{"path":[4,110,2,1,5],"span":[1941,2,8]},{"path":[4,110,2,1,1],"span":[1941,9,21]},{"path":[4,110,2,1,3],"span":[1941,24,25]},{"path":[4,110,2,2],"span":[1942,2,26]},{"path":[4,110,2,2,5],"span":[1942,2,8]},{"path":[4,110,2,2,1],"span":[1942,9,21]},{"path":[4,110,2,2,3],"span":[1942,24,25]},{"path":[4,111],"span":[1948,0,1964,1],"leadingComments":"\n Modem on computers: windows and mac.\n"},{"path":[4,111,1],"span":[1948,8,30]},{"path":[4,111,2,0],"span":[1949,2,34]},{"path":[4,111,2,0,4],"span":[1949,2,10]},{"path":[4,111,2,0,5],"span":[1949,11,17]},{"path":[4,111,2,0,1],"span":[1949,18,29]},{"path":[4,111,2,0,3],"span":[1949,32,33]},{"path":[4,111,2,1],"span":[1950,2,30],"trailingComments":" mac: name\n"},{"path":[4,111,2,1,4],"span":[1950,2,10]},{"path":[4,111,2,1,5],"span":[1950,11,17]},{"path":[4,111,2,1,1],"span":[1950,18,25]},{"path":[4,111,2,1,3],"span":[1950,28,29]},{"path":[4,111,2,2],"span":[1951,2,35],"trailingComments":" windows: country_selected, mac: country_info \n"},{"path":[4,111,2,2,4],"span":[1951,2,10]},{"path":[4,111,2,2,5],"span":[1951,11,17]},{"path":[4,111,2,2,1],"span":[1951,18,30]},{"path":[4,111,2,2,3],"span":[1951,33,34]},{"path":[4,111,2,3],"span":[1952,2,32]},{"path":[4,111,2,3,4],"span":[1952,2,10]},{"path":[4,111,2,3,5],"span":[1952,11,17]},{"path":[4,111,2,3,1],"span":[1952,18,27]},{"path":[4,111,2,3,3],"span":[1952,30,31]},{"path":[4,111,2,4],"span":[1953,2,34],"trailingComments":" mac: interface_type\n"},{"path":[4,111,2,4,4],"span":[1953,2,10]},{"path":[4,111,2,4,5],"span":[1953,11,17]},{"path":[4,111,2,4,1],"span":[1953,18,29]},{"path":[4,111,2,4,3],"span":[1953,32,33]},{"path":[4,111,2,5],"span":[1954,2,44]},{"path":[4,111,2,5,4],"span":[1954,2,10]},{"path":[4,111,2,5,5],"span":[1954,11,16]},{"path":[4,111,2,5,1],"span":[1954,17,39]},{"path":[4,111,2,5,3],"span":[1954,42,43]},{"path":[4,111,2,6],"span":[1955,2,50]},{"path":[4,111,2,6,4],"span":[1955,2,10]},{"path":[4,111,2,6,5],"span":[1955,11,16]},{"path":[4,111,2,6,1],"span":[1955,17,45]},{"path":[4,111,2,6,3],"span":[1955,48,49]},{"path":[4,111,2,7],"span":[1956,2,37]},{"path":[4,111,2,7,4],"span":[1956,2,10]},{"path":[4,111,2,7,5],"span":[1956,11,17]},{"path":[4,111,2,7,1],"span":[1956,18,32]},{"path":[4,111,2,7,3],"span":[1956,35,36]},{"path":[4,111,2,8],"span":[1957,2,40]},{"path":[4,111,2,8,4],"span":[1957,2,10]},{"path":[4,111,2,8,5],"span":[1957,11,17]},{"path":[4,111,2,8,1],"span":[1957,18,35]},{"path":[4,111,2,8,3],"span":[1957,38,39]},{"path":[4,111,2,9],"span":[1958,2,37]},{"path":[4,111,2,9,4],"span":[1958,2,10]},{"path":[4,111,2,9,5],"span":[1958,11,17]},{"path":[4,111,2,9,1],"span":[1958,18,31]},{"path":[4,111,2,9,3],"span":[1958,34,36]},{"path":[4,111,2,10],"span":[1960,2,34],"trailingComments":" mac only\n"},{"path":[4,111,2,10,4],"span":[1960,2,10]},{"path":[4,111,2,10,5],"span":[1960,11,17]},{"path":[4,111,2,10,1],"span":[1960,18,28]},{"path":[4,111,2,10,3],"span":[1960,31,33]},{"path":[4,111,2,11],"span":[1961,2,38],"trailingComments":" mac only\n"},{"path":[4,111,2,11,4],"span":[1961,2,10]},{"path":[4,111,2,11,5],"span":[1961,11,17]},{"path":[4,111,2,11,1],"span":[1961,18,32]},{"path":[4,111,2,11,3],"span":[1961,35,37]},{"path":[4,111,2,12],"span":[1962,2,29],"trailingComments":" mac only\n"},{"path":[4,111,2,12,4],"span":[1962,2,10]},{"path":[4,111,2,12,5],"span":[1962,11,17]},{"path":[4,111,2,12,1],"span":[1962,18,23]},{"path":[4,111,2,12,3],"span":[1962,26,28]},{"path":[4,111,2,13],"span":[1963,2,34],"trailingComments":" mac only\n"},{"path":[4,111,2,13,4],"span":[1963,2,10]},{"path":[4,111,2,13,5],"span":[1963,11,17]},{"path":[4,111,2,13,1],"span":[1963,18,28]},{"path":[4,111,2,13,3],"span":[1963,31,33]},{"path":[4,112],"span":[1969,0,1987,1],"leadingComments":"\n Windows computer: a Printer connected to the computer.\n"},{"path":[4,112,1],"span":[1969,8,32]},{"path":[4,112,2,0],"span":[1970,2,46]},{"path":[4,112,2,0,4],"span":[1970,2,10]},{"path":[4,112,2,0,5],"span":[1970,11,17]},{"path":[4,112,2,0,1],"span":[1970,18,41]},{"path":[4,112,2,0,3],"span":[1970,44,45]},{"path":[4,112,2,1],"span":[1971,2,30]},{"path":[4,112,2,1,4],"span":[1971,2,10]},{"path":[4,112,2,1,5],"span":[1971,11,17]},{"path":[4,112,2,1,1],"span":[1971,18,25]},{"path":[4,112,2,1,3],"span":[1971,28,29]},{"path":[4,112,2,2],"span":[1972,2,32]},{"path":[4,112,2,2,4],"span":[1972,2,10]},{"path":[4,112,2,2,5],"span":[1972,11,17]},{"path":[4,112,2,2,1],"span":[1972,18,27]},{"path":[4,112,2,2,3],"span":[1972,30,31]},{"path":[4,112,2,3],"span":[1973,2,31]},{"path":[4,112,2,3,4],"span":[1973,2,10]},{"path":[4,112,2,3,5],"span":[1973,11,17]},{"path":[4,112,2,3,1],"span":[1973,18,26]},{"path":[4,112,2,3,3],"span":[1973,29,30]},{"path":[4,112,2,4],"span":[1974,2,32]},{"path":[4,112,2,4,4],"span":[1974,2,10]},{"path":[4,112,2,4,5],"span":[1974,11,17]},{"path":[4,112,2,4,1],"span":[1974,18,27]},{"path":[4,112,2,4,3],"span":[1974,30,31]},{"path":[4,112,2,5],"span":[1975,2,42]},{"path":[4,112,2,5,4],"span":[1975,2,10]},{"path":[4,112,2,5,5],"span":[1975,11,17]},{"path":[4,112,2,5,1],"span":[1975,18,37]},{"path":[4,112,2,5,3],"span":[1975,40,41]},{"path":[4,112,2,6],"span":[1976,2,38]},{"path":[4,112,2,6,4],"span":[1976,2,10]},{"path":[4,112,2,6,5],"span":[1976,11,17]},{"path":[4,112,2,6,1],"span":[1976,18,33]},{"path":[4,112,2,6,3],"span":[1976,36,37]},{"path":[4,112,2,7],"span":[1977,2,34]},{"path":[4,112,2,7,4],"span":[1977,2,10]},{"path":[4,112,2,7,5],"span":[1977,11,17]},{"path":[4,112,2,7,1],"span":[1977,18,28]},{"path":[4,112,2,7,3],"span":[1977,31,33]},{"path":[4,112,2,8],"span":[1978,2,30]},{"path":[4,112,2,8,4],"span":[1978,2,10]},{"path":[4,112,2,8,5],"span":[1978,11,17]},{"path":[4,112,2,8,1],"span":[1978,18,24]},{"path":[4,112,2,8,3],"span":[1978,27,29]},{"path":[4,112,2,9],"span":[1979,2,31]},{"path":[4,112,2,9,4],"span":[1979,2,10]},{"path":[4,112,2,9,5],"span":[1979,11,17]},{"path":[4,112,2,9,1],"span":[1979,18,25]},{"path":[4,112,2,9,3],"span":[1979,28,30]},{"path":[4,112,2,10],"span":[1981,2,43]},{"path":[4,112,2,10,4],"span":[1981,2,10]},{"path":[4,112,2,10,5],"span":[1981,11,16]},{"path":[4,112,2,10,1],"span":[1981,17,38]},{"path":[4,112,2,10,3],"span":[1981,41,42]},{"path":[4,112,2,11],"span":[1982,2,42]},{"path":[4,112,2,11,4],"span":[1982,2,10]},{"path":[4,112,2,11,5],"span":[1982,11,16]},{"path":[4,112,2,11,1],"span":[1982,17,36]},{"path":[4,112,2,11,3],"span":[1982,39,41]},{"path":[4,112,2,12],"span":[1984,2,33]},{"path":[4,112,2,12,4],"span":[1984,2,10]},{"path":[4,112,2,12,5],"span":[1984,11,15]},{"path":[4,112,2,12,1],"span":[1984,16,27]},{"path":[4,112,2,12,3],"span":[1984,30,32]},{"path":[4,112,2,13],"span":[1985,2,27]},{"path":[4,112,2,13,4],"span":[1985,2,10]},{"path":[4,112,2,13,5],"span":[1985,11,15]},{"path":[4,112,2,13,1],"span":[1985,16,21]},{"path":[4,112,2,13,3],"span":[1985,24,26]},{"path":[4,112,2,14],"span":[1986,2,29]},{"path":[4,112,2,14,4],"span":[1986,2,10]},{"path":[4,112,2,14,5],"span":[1986,11,15]},{"path":[4,112,2,14,1],"span":[1986,16,23]},{"path":[4,112,2,14,3],"span":[1986,26,28]},{"path":[4,113],"span":[1992,0,2008,1],"leadingComments":"\n Windows computer: a Tape connected to the computer.\n"},{"path":[4,113,1],"span":[1992,8,34]},{"path":[4,113,2,0],"span":[1993,2,40]},{"path":[4,113,2,0,4],"span":[1993,2,10]},{"path":[4,113,2,0,6],"span":[1993,11,22]},{"path":[4,113,2,0,1],"span":[1993,23,35]},{"path":[4,113,2,0,3],"span":[1993,38,39]},{"path":[4,113,2,1],"span":[1994,2,40]},{"path":[4,113,2,1,4],"span":[1994,2,10]},{"path":[4,113,2,1,6],"span":[1994,11,22]},{"path":[4,113,2,1,1],"span":[1994,23,35]},{"path":[4,113,2,1,3],"span":[1994,38,39]},{"path":[4,113,2,2],"span":[1995,2,30]},{"path":[4,113,2,2,4],"span":[1995,2,10]},{"path":[4,113,2,2,5],"span":[1995,11,17]},{"path":[4,113,2,2,1],"span":[1995,18,25]},{"path":[4,113,2,2,3],"span":[1995,28,29]},{"path":[4,113,2,3],"span":[1996,2,32]},{"path":[4,113,2,3,4],"span":[1996,2,10]},{"path":[4,113,2,3,5],"span":[1996,11,15]},{"path":[4,113,2,3,1],"span":[1996,16,27]},{"path":[4,113,2,3,3],"span":[1996,30,31]},{"path":[4,113,2,4],"span":[1997,2,40]},{"path":[4,113,2,4,4],"span":[1997,2,10]},{"path":[4,113,2,4,5],"span":[1997,11,16]},{"path":[4,113,2,4,1],"span":[1997,17,35]},{"path":[4,113,2,4,3],"span":[1997,38,39]},{"path":[4,113,2,5],"span":[1998,2,32]},{"path":[4,113,2,5,4],"span":[1998,2,10]},{"path":[4,113,2,5,5],"span":[1998,11,17]},{"path":[4,113,2,5,1],"span":[1998,18,27]},{"path":[4,113,2,5,3],"span":[1998,30,31]},{"path":[4,113,2,6],"span":[1999,2,35]},{"path":[4,113,2,6,4],"span":[1999,2,10]},{"path":[4,113,2,6,5],"span":[1999,11,17]},{"path":[4,113,2,6,1],"span":[1999,18,30]},{"path":[4,113,2,6,3],"span":[1999,33,34]},{"path":[4,113,2,7],"span":[2000,2,36]},{"path":[4,113,2,7,4],"span":[2000,2,10]},{"path":[4,113,2,7,5],"span":[2000,11,16]},{"path":[4,113,2,7,1],"span":[2000,17,31]},{"path":[4,113,2,7,3],"span":[2000,34,35]},{"path":[4,113,2,8],"span":[2001,2,36]},{"path":[4,113,2,8,4],"span":[2001,2,10]},{"path":[4,113,2,8,5],"span":[2001,11,16]},{"path":[4,113,2,8,1],"span":[2001,17,31]},{"path":[4,113,2,8,3],"span":[2001,34,35]},{"path":[4,113,2,9],"span":[2002,2,42]},{"path":[4,113,2,9,4],"span":[2002,2,10]},{"path":[4,113,2,9,5],"span":[2002,11,16]},{"path":[4,113,2,9,1],"span":[2002,17,36]},{"path":[4,113,2,9,3],"span":[2002,39,41]},{"path":[4,113,2,10],"span":[2003,2,34]},{"path":[4,113,2,10,4],"span":[2003,2,10]},{"path":[4,113,2,10,5],"span":[2003,11,17]},{"path":[4,113,2,10,1],"span":[2003,18,28]},{"path":[4,113,2,10,3],"span":[2003,31,33]},{"path":[4,113,2,11],"span":[2004,2,37]},{"path":[4,113,2,11,4],"span":[2004,2,10]},{"path":[4,113,2,11,5],"span":[2004,11,16]},{"path":[4,113,2,11,1],"span":[2004,17,31]},{"path":[4,113,2,11,3],"span":[2004,34,36]},{"path":[4,113,2,12],"span":[2005,2,36]},{"path":[4,113,2,12,4],"span":[2005,2,10]},{"path":[4,113,2,12,5],"span":[2005,11,15]},{"path":[4,113,2,12,1],"span":[2005,16,30]},{"path":[4,113,2,12,3],"span":[2005,33,35]},{"path":[4,113,2,13],"span":[2006,2,48]},{"path":[4,113,2,13,4],"span":[2006,2,10]},{"path":[4,113,2,13,5],"span":[2006,11,16]},{"path":[4,113,2,13,1],"span":[2006,17,42]},{"path":[4,113,2,13,3],"span":[2006,45,47]},{"path":[4,113,2,14],"span":[2007,2,30]},{"path":[4,113,2,14,4],"span":[2007,2,10]},{"path":[4,113,2,14,5],"span":[2007,11,16]},{"path":[4,113,2,14,1],"span":[2007,17,24]},{"path":[4,113,2,14,3],"span":[2007,27,29]},{"path":[4,114],"span":[2013,0,2017,1],"leadingComments":"\n Computer, Windows only Serial info. Mapped from\n"},{"path":[4,114,1],"span":[2013,8,29]},{"path":[4,114,2,0],"span":[2014,2,35]},{"path":[4,114,2,0,4],"span":[2014,2,10]},{"path":[4,114,2,0,5],"span":[2014,11,17]},{"path":[4,114,2,0,1],"span":[2014,18,30]},{"path":[4,114,2,0,3],"span":[2014,33,34]},{"path":[4,114,2,1],"span":[2015,2,33]},{"path":[4,114,2,1,4],"span":[2015,2,10]},{"path":[4,114,2,1,5],"span":[2015,11,17]},{"path":[4,114,2,1,1],"span":[2015,18,28]},{"path":[4,114,2,1,3],"span":[2015,31,32]},{"path":[4,114,2,2],"span":[2016,2,37]},{"path":[4,114,2,2,4],"span":[2016,2,10]},{"path":[4,114,2,2,5],"span":[2016,11,17]},{"path":[4,114,2,2,1],"span":[2016,18,32]},{"path":[4,114,2,2,3],"span":[2016,35,36]},{"path":[4,115],"span":[2022,0,2028,1],"leadingComments":"\n Computer Windows only: environment variables.\n"},{"path":[4,115,1],"span":[2022,8,34]},{"path":[4,115,2,0],"span":[2023,2,30]},{"path":[4,115,2,0,4],"span":[2023,2,10]},{"path":[4,115,2,0,5],"span":[2023,11,17]},{"path":[4,115,2,0,1],"span":[2023,18,25]},{"path":[4,115,2,0,3],"span":[2023,28,29]},{"path":[4,115,2,1],"span":[2024,2,27]},{"path":[4,115,2,1,4],"span":[2024,2,10]},{"path":[4,115,2,1,5],"span":[2024,11,17]},{"path":[4,115,2,1,1],"span":[2024,18,22]},{"path":[4,115,2,1,3],"span":[2024,25,26]},{"path":[4,115,2,2],"span":[2025,2,36]},{"path":[4,115,2,2,4],"span":[2025,2,10]},{"path":[4,115,2,2,5],"span":[2025,11,15]},{"path":[4,115,2,2,1],"span":[2025,16,31]},{"path":[4,115,2,2,3],"span":[2025,34,35]},{"path":[4,115,2,3],"span":[2026,2,32]},{"path":[4,115,2,3,4],"span":[2026,2,10]},{"path":[4,115,2,3,5],"span":[2026,11,17]},{"path":[4,115,2,3,1],"span":[2026,18,27]},{"path":[4,115,2,3,3],"span":[2026,30,31]},{"path":[4,115,2,4],"span":[2027,2,37]},{"path":[4,115,2,4,4],"span":[2027,2,10]},{"path":[4,115,2,4,5],"span":[2027,11,17]},{"path":[4,115,2,4,1],"span":[2027,18,32]},{"path":[4,115,2,4,3],"span":[2027,35,36]},{"path":[4,116],"span":[2033,0,2036,1],"leadingComments":"\n Computer Windows only: from WindowsComApplication, WindowsDcomApplication, WindowsComponentCategory.\n"},{"path":[4,116,1],"span":[2033,8,29]},{"path":[4,116,2,0],"span":[2034,2,29]},{"path":[4,116,2,0,4],"span":[2034,2,10]},{"path":[4,116,2,0,5],"span":[2034,11,17]},{"path":[4,116,2,0,1],"span":[2034,18,24]},{"path":[4,116,2,0,3],"span":[2034,27,28]},{"path":[4,116,2,1],"span":[2035,2,30]},{"path":[4,116,2,1,4],"span":[2035,2,10]},{"path":[4,116,2,1,5],"span":[2035,11,17]},{"path":[4,116,2,1,1],"span":[2035,18,25]},{"path":[4,116,2,1,3],"span":[2035,28,29]},{"path":[4,117],"span":[2041,0,2062,1],"leadingComments":"\n Computer Windows only: from Windows Codec.\n"},{"path":[4,117,1],"span":[2041,8,28]},{"path":[4,117,2,0],"span":[2042,2,28]},{"path":[4,117,2,0,4],"span":[2042,2,10]},{"path":[4,117,2,0,5],"span":[2042,11,15]},{"path":[4,117,2,0,1],"span":[2042,16,23]},{"path":[4,117,2,0,3],"span":[2042,26,27]},{"path":[4,117,2,1],"span":[2043,2,30]},{"path":[4,117,2,1,4],"span":[2043,2,10]},{"path":[4,117,2,1,5],"span":[2043,11,17]},{"path":[4,117,2,1,1],"span":[2043,18,25]},{"path":[4,117,2,1,3],"span":[2043,28,29]},{"path":[4,117,2,2],"span":[2044,2,31]},{"path":[4,117,2,2,4],"span":[2044,2,10]},{"path":[4,117,2,2,5],"span":[2044,11,15]},{"path":[4,117,2,2,1],"span":[2044,16,26]},{"path":[4,117,2,2,3],"span":[2044,29,30]},{"path":[4,117,2,3],"span":[2045,2,41]},{"path":[4,117,2,3,4],"span":[2045,2,10]},{"path":[4,117,2,3,5],"span":[2045,11,17]},{"path":[4,117,2,3,1],"span":[2045,18,36]},{"path":[4,117,2,3,3],"span":[2045,39,40]},{"path":[4,117,2,4],"span":[2046,2,34]},{"path":[4,117,2,4,4],"span":[2046,2,10]},{"path":[4,117,2,4,5],"span":[2046,11,17]},{"path":[4,117,2,4,1],"span":[2046,18,29]},{"path":[4,117,2,4,3],"span":[2046,32,33]},{"path":[4,117,2,5],"span":[2047,2,28]},{"path":[4,117,2,5,4],"span":[2047,2,10]},{"path":[4,117,2,5,5],"span":[2047,11,17]},{"path":[4,117,2,5,1],"span":[2047,18,23]},{"path":[4,117,2,5,3],"span":[2047,26,27]},{"path":[4,117,2,6],"span":[2048,2,30]},{"path":[4,117,2,6,4],"span":[2048,2,10]},{"path":[4,117,2,6,5],"span":[2048,11,15]},{"path":[4,117,2,6,1],"span":[2048,16,25]},{"path":[4,117,2,6,3],"span":[2048,28,29]},{"path":[4,117,2,7],"span":[2049,2,40]},{"path":[4,117,2,7,4],"span":[2049,2,10]},{"path":[4,117,2,7,5],"span":[2049,11,17]},{"path":[4,117,2,7,1],"span":[2049,18,35]},{"path":[4,117,2,7,3],"span":[2049,38,39]},{"path":[4,117,2,8],"span":[2050,2,32]},{"path":[4,117,2,8,4],"span":[2050,2,10]},{"path":[4,117,2,8,5],"span":[2050,11,17]},{"path":[4,117,2,8,1],"span":[2050,18,27]},{"path":[4,117,2,8,3],"span":[2050,30,31]},{"path":[4,117,2,9],"span":[2051,2,33]},{"path":[4,117,2,9,4],"span":[2051,2,10]},{"path":[4,117,2,9,5],"span":[2051,11,17]},{"path":[4,117,2,9,1],"span":[2051,18,27]},{"path":[4,117,2,9,3],"span":[2051,30,32]},{"path":[4,117,2,10],"span":[2052,2,32]},{"path":[4,117,2,10,4],"span":[2052,2,10]},{"path":[4,117,2,10,5],"span":[2052,11,16]},{"path":[4,117,2,10,1],"span":[2052,17,26]},{"path":[4,117,2,10,3],"span":[2052,29,31]},{"path":[4,117,2,11],"span":[2053,2,33]},{"path":[4,117,2,11,4],"span":[2053,2,10]},{"path":[4,117,2,11,5],"span":[2053,11,17]},{"path":[4,117,2,11,1],"span":[2053,18,27]},{"path":[4,117,2,11,3],"span":[2053,30,32]},{"path":[4,117,2,12],"span":[2054,2,31]},{"path":[4,117,2,12,4],"span":[2054,2,10]},{"path":[4,117,2,12,5],"span":[2054,11,17]},{"path":[4,117,2,12,1],"span":[2054,18,25]},{"path":[4,117,2,12,3],"span":[2054,28,30]},{"path":[4,117,2,13],"span":[2055,2,29]},{"path":[4,117,2,13,4],"span":[2055,2,10]},{"path":[4,117,2,13,5],"span":[2055,11,17]},{"path":[4,117,2,13,1],"span":[2055,18,23]},{"path":[4,117,2,13,3],"span":[2055,26,28]},{"path":[4,117,2,14],"span":[2056,2,28]},{"path":[4,117,2,14,4],"span":[2056,2,10]},{"path":[4,117,2,14,5],"span":[2056,11,15]},{"path":[4,117,2,14,1],"span":[2056,16,22]},{"path":[4,117,2,14,3],"span":[2056,25,27]},{"path":[4,117,2,15],"span":[2057,2,55]},{"path":[4,117,2,15,4],"span":[2057,2,10]},{"path":[4,117,2,15,6],"span":[2057,11,36]},{"path":[4,117,2,15,1],"span":[2057,37,49]},{"path":[4,117,2,15,3],"span":[2057,52,54]},{"path":[4,117,2,16],"span":[2058,2,36]},{"path":[4,117,2,16,4],"span":[2058,2,10]},{"path":[4,117,2,16,5],"span":[2058,11,17]},{"path":[4,117,2,16,1],"span":[2058,18,30]},{"path":[4,117,2,16,3],"span":[2058,33,35]},{"path":[4,117,2,17],"span":[2059,2,30]},{"path":[4,117,2,17,4],"span":[2059,2,10]},{"path":[4,117,2,17,5],"span":[2059,11,17]},{"path":[4,117,2,17,1],"span":[2059,18,24]},{"path":[4,117,2,17,3],"span":[2059,27,29]},{"path":[4,117,2,18],"span":[2060,2,28]},{"path":[4,117,2,18,4],"span":[2060,2,10]},{"path":[4,117,2,18,5],"span":[2060,11,15]},{"path":[4,117,2,18,1],"span":[2060,16,22]},{"path":[4,117,2,18,3],"span":[2060,25,27]},{"path":[4,117,2,19],"span":[2061,2,31]},{"path":[4,117,2,19,4],"span":[2061,2,10]},{"path":[4,117,2,19,5],"span":[2061,11,17]},{"path":[4,117,2,19,1],"span":[2061,18,25]},{"path":[4,117,2,19,3],"span":[2061,28,30]},{"path":[4,118],"span":[2067,0,2076,1],"leadingComments":"\n Computer Windows only: windows SAT, performance scores .\n"},{"path":[4,118,1],"span":[2067,8,26]},{"path":[4,118,2,0],"span":[2068,2,33]},{"path":[4,118,2,0,4],"span":[2068,2,10]},{"path":[4,118,2,0,5],"span":[2068,11,17]},{"path":[4,118,2,0,1],"span":[2068,18,28]},{"path":[4,118,2,0,3],"span":[2068,31,32]},{"path":[4,118,2,1],"span":[2069,2,36]},{"path":[4,118,2,1,4],"span":[2069,2,10]},{"path":[4,118,2,1,5],"span":[2069,11,17]},{"path":[4,118,2,1,1],"span":[2069,18,31]},{"path":[4,118,2,1,3],"span":[2069,34,35]},{"path":[4,118,2,2],"span":[2070,2,47]},{"path":[4,118,2,2,4],"span":[2070,2,10]},{"path":[4,118,2,2,5],"span":[2070,11,17]},{"path":[4,118,2,2,1],"span":[2070,18,42]},{"path":[4,118,2,2,3],"span":[2070,45,46]},{"path":[4,118,2,3],"span":[2071,2,35]},{"path":[4,118,2,3,4],"span":[2071,2,10]},{"path":[4,118,2,3,5],"span":[2071,11,17]},{"path":[4,118,2,3,1],"span":[2071,18,30]},{"path":[4,118,2,3,3],"span":[2071,33,34]},{"path":[4,118,2,4],"span":[2072,2,32]},{"path":[4,118,2,4,4],"span":[2072,2,10]},{"path":[4,118,2,4,5],"span":[2072,11,17]},{"path":[4,118,2,4,1],"span":[2072,18,27]},{"path":[4,118,2,4,3],"span":[2072,30,31]},{"path":[4,118,2,5],"span":[2073,2,33]},{"path":[4,118,2,5,4],"span":[2073,2,10]},{"path":[4,118,2,5,5],"span":[2073,11,17]},{"path":[4,118,2,5,1],"span":[2073,18,28]},{"path":[4,118,2,5,3],"span":[2073,31,32]},{"path":[4,118,2,6],"span":[2074,2,32]},{"path":[4,118,2,6,4],"span":[2074,2,10]},{"path":[4,118,2,6,5],"span":[2074,11,17]},{"path":[4,118,2,6,1],"span":[2074,18,27]},{"path":[4,118,2,6,3],"span":[2074,30,31]},{"path":[4,118,2,7],"span":[2075,2,37]},{"path":[4,118,2,7,4],"span":[2075,2,10]},{"path":[4,118,2,7,5],"span":[2075,11,17]},{"path":[4,118,2,7,1],"span":[2075,18,32]},{"path":[4,118,2,7,3],"span":[2075,35,36]},{"path":[4,119],"span":[2082,0,2115,1],"leadingComments":"\n Computer, Windows only Certificate.\n"},{"path":[4,119,1],"span":[2082,8,34]},{"path":[4,119,4,0],"span":[2084,2,2094,3]},{"path":[4,119,4,0,1],"span":[2084,7,19]},{"path":[4,119,4,0,2,0],"span":[2085,4,26]},{"path":[4,119,4,0,2,0,1],"span":[2085,4,21]},{"path":[4,119,4,0,2,0,2],"span":[2085,24,25]},{"path":[4,119,4,0,2,1],"span":[2086,4,24]},{"path":[4,119,4,0,2,1,1],"span":[2086,4,19]},{"path":[4,119,4,0,2,1,2],"span":[2086,22,23]},{"path":[4,119,4,0,2,2],"span":[2087,4,25]},{"path":[4,119,4,0,2,2,1],"span":[2087,4,20]},{"path":[4,119,4,0,2,2,2],"span":[2087,23,24]},{"path":[4,119,4,0,2,3],"span":[2088,4,26]},{"path":[4,119,4,0,2,3,1],"span":[2088,4,21]},{"path":[4,119,4,0,2,3,2],"span":[2088,24,25]},{"path":[4,119,4,0,2,4],"span":[2089,4,22]},{"path":[4,119,4,0,2,4,1],"span":[2089,4,17]},{"path":[4,119,4,0,2,4,2],"span":[2089,20,21]},{"path":[4,119,4,0,2,5],"span":[2090,4,22]},{"path":[4,119,4,0,2,5,1],"span":[2090,4,17]},{"path":[4,119,4,0,2,5,2],"span":[2090,20,21]},{"path":[4,119,4,0,2,6],"span":[2091,4,17]},{"path":[4,119,4,0,2,6,1],"span":[2091,4,12]},{"path":[4,119,4,0,2,6,2],"span":[2091,15,16]},{"path":[4,119,4,0,2,7],"span":[2092,4,22]},{"path":[4,119,4,0,2,7,1],"span":[2092,4,17]},{"path":[4,119,4,0,2,7,2],"span":[2092,20,21]},{"path":[4,119,4,0,2,8],"span":[2093,4,22]},{"path":[4,119,4,0,2,8,1],"span":[2093,4,17]},{"path":[4,119,4,0,2,8,2],"span":[2093,20,21]},{"path":[4,119,2,0],"span":[2096,2,69]},{"path":[4,119,2,0,4],"span":[2096,2,10]},{"path":[4,119,2,0,6],"span":[2096,11,45]},{"path":[4,119,2,0,1],"span":[2096,46,64]},{"path":[4,119,2,0,3],"span":[2096,67,68]},{"path":[4,119,2,1],"span":[2097,2,38]},{"path":[4,119,2,1,4],"span":[2097,2,10]},{"path":[4,119,2,1,6],"span":[2097,11,23]},{"path":[4,119,2,1,1],"span":[2097,24,33]},{"path":[4,119,2,1,3],"span":[2097,36,37]},{"path":[4,119,2,2],"span":[2098,2,22]},{"path":[4,119,2,2,5],"span":[2098,2,8]},{"path":[4,119,2,2,1],"span":[2098,9,17]},{"path":[4,119,2,2,3],"span":[2098,20,21]},{"path":[4,119,2,3],"span":[2099,2,27]},{"path":[4,119,2,3,5],"span":[2099,2,8]},{"path":[4,119,2,3,1],"span":[2099,9,22]},{"path":[4,119,2,3,3],"span":[2099,25,26]},{"path":[4,119,2,4],"span":[2100,2,42]},{"path":[4,119,2,4,4],"span":[2100,2,10]},{"path":[4,119,2,4,5],"span":[2100,11,17]},{"path":[4,119,2,4,1],"span":[2100,18,37]},{"path":[4,119,2,4,3],"span":[2100,40,41]},{"path":[4,119,2,5],"span":[2101,2,20]},{"path":[4,119,2,5,5],"span":[2101,2,7]},{"path":[4,119,2,5,1],"span":[2101,8,15]},{"path":[4,119,2,5,3],"span":[2101,18,19]},{"path":[4,119,2,6],"span":[2102,2,27]},{"path":[4,119,2,6,5],"span":[2102,2,6]},{"path":[4,119,2,6,1],"span":[2102,7,22]},{"path":[4,119,2,6,3],"span":[2102,25,26]},{"path":[4,119,2,7],"span":[2103,2,23]},{"path":[4,119,2,7,5],"span":[2103,2,6]},{"path":[4,119,2,7,1],"span":[2103,7,18]},{"path":[4,119,2,7,3],"span":[2103,21,22]},{"path":[4,119,2,8],"span":[2104,2,48]},{"path":[4,119,2,8,6],"span":[2104,2,27]},{"path":[4,119,2,8,1],"span":[2104,28,43]},{"path":[4,119,2,8,3],"span":[2104,46,47]},{"path":[4,119,2,9],"span":[2105,2,44]},{"path":[4,119,2,9,6],"span":[2105,2,27]},{"path":[4,119,2,9,1],"span":[2105,28,38]},{"path":[4,119,2,9,3],"span":[2105,41,43]},{"path":[4,119,2,10],"span":[2106,2,26]},{"path":[4,119,2,10,5],"span":[2106,2,8]},{"path":[4,119,2,10,1],"span":[2106,9,20]},{"path":[4,119,2,10,3],"span":[2106,23,25]},{"path":[4,119,2,11],"span":[2107,2,21]},{"path":[4,119,2,11,5],"span":[2107,2,8]},{"path":[4,119,2,11,1],"span":[2107,9,15]},{"path":[4,119,2,11,3],"span":[2107,18,20]},{"path":[4,119,2,12],"span":[2108,2,39]},{"path":[4,119,2,12,5],"span":[2108,2,8]},{"path":[4,119,2,12,1],"span":[2108,9,33]},{"path":[4,119,2,12,3],"span":[2108,36,38]},{"path":[4,119,2,13],"span":[2109,2,27]},{"path":[4,119,2,13,5],"span":[2109,2,8]},{"path":[4,119,2,13,1],"span":[2109,9,21]},{"path":[4,119,2,13,3],"span":[2109,24,26]},{"path":[4,119,2,14],"span":[2110,2,22]},{"path":[4,119,2,14,5],"span":[2110,2,8]},{"path":[4,119,2,14,1],"span":[2110,9,16]},{"path":[4,119,2,14,3],"span":[2110,19,21]},{"path":[4,119,2,15],"span":[2111,2,21]},{"path":[4,119,2,15,5],"span":[2111,2,8]},{"path":[4,119,2,15,1],"span":[2111,9,15]},{"path":[4,119,2,15,3],"span":[2111,18,20]},{"path":[4,119,2,16],"span":[2112,2,25]},{"path":[4,119,2,16,5],"span":[2112,2,8]},{"path":[4,119,2,16,1],"span":[2112,9,19]},{"path":[4,119,2,16,3],"span":[2112,22,24]},{"path":[4,119,2,17],"span":[2113,2,28]},{"path":[4,119,2,17,5],"span":[2113,2,8]},{"path":[4,119,2,17,1],"span":[2113,9,22]},{"path":[4,119,2,17,3],"span":[2113,25,27]},{"path":[4,119,2,18],"span":[2114,2,52]},{"path":[4,119,2,18,4],"span":[2114,2,10]},{"path":[4,119,2,18,6],"span":[2114,11,37]},{"path":[4,119,2,18,1],"span":[2114,38,46]},{"path":[4,119,2,18,3],"span":[2114,49,51]},{"path":[4,120],"span":[2117,0,2120,1]},{"path":[4,120,1],"span":[2117,8,42]},{"path":[4,120,2,0],"span":[2118,2,31]},{"path":[4,120,2,0,4],"span":[2118,2,10]},{"path":[4,120,2,0,5],"span":[2118,11,17]},{"path":[4,120,2,0,1],"span":[2118,18,26]},{"path":[4,120,2,0,3],"span":[2118,29,30]},{"path":[4,120,2,1],"span":[2119,2,32]},{"path":[4,120,2,1,4],"span":[2119,2,10]},{"path":[4,120,2,1,5],"span":[2119,11,17]},{"path":[4,120,2,1,1],"span":[2119,18,27]},{"path":[4,120,2,1,3],"span":[2119,30,31]},{"path":[4,121],"span":[2122,0,2125,1]},{"path":[4,121,1],"span":[2122,8,34]},{"path":[4,121,2,0],"span":[2123,2,19]},{"path":[4,121,2,0,5],"span":[2123,2,8]},{"path":[4,121,2,0,1],"span":[2123,9,14]},{"path":[4,121,2,0,3],"span":[2123,17,18]},{"path":[4,121,2,1],"span":[2124,2,20]},{"path":[4,121,2,1,5],"span":[2124,2,8]},{"path":[4,121,2,1,1],"span":[2124,9,15]},{"path":[4,121,2,1,3],"span":[2124,18,19]},{"path":[4,122],"span":[2128,0,2132,1],"leadingComments":" macOS Language and Regional Settings, macOS only. To be mapped from inbound model: MacRegional\n"},{"path":[4,122,1],"span":[2128,8,35]},{"path":[4,122,2,0],"span":[2129,2,53]},{"path":[4,122,2,0,4],"span":[2129,2,10]},{"path":[4,122,2,0,6],"span":[2129,11,34]},{"path":[4,122,2,0,1],"span":[2129,35,48]},{"path":[4,122,2,0,3],"span":[2129,51,52]},{"path":[4,122,2,1],"span":[2130,2,57]},{"path":[4,122,2,1,4],"span":[2130,2,10]},{"path":[4,122,2,1,6],"span":[2130,11,36]},{"path":[4,122,2,1,1],"span":[2130,37,52]},{"path":[4,122,2,1,3],"span":[2130,55,56]},{"path":[4,122,2,2],"span":[2131,2,66]},{"path":[4,122,2,2,4],"span":[2131,2,10]},{"path":[4,122,2,2,6],"span":[2131,11,40]},{"path":[4,122,2,2,1],"span":[2131,41,61]},{"path":[4,122,2,2,3],"span":[2131,64,65]},{"path":[4,123],"span":[2134,0,2146,1]},{"path":[4,123,1],"span":[2134,8,31]},{"path":[4,123,2,0],"span":[2135,2,55]},{"path":[4,123,2,0,4],"span":[2135,2,10]},{"path":[4,123,2,0,5],"span":[2135,11,17]},{"path":[4,123,2,0,1],"span":[2135,18,50]},{"path":[4,123,2,0,3],"span":[2135,53,54]},{"path":[4,123,2,1],"span":[2136,2,46]},{"path":[4,123,2,1,4],"span":[2136,2,10]},{"path":[4,123,2,1,5],"span":[2136,11,17]},{"path":[4,123,2,1,1],"span":[2136,18,41]},{"path":[4,123,2,1,3],"span":[2136,44,45]},{"path":[4,123,2,2],"span":[2137,2,52]},{"path":[4,123,2,2,4],"span":[2137,2,10]},{"path":[4,123,2,2,5],"span":[2137,11,17]},{"path":[4,123,2,2,1],"span":[2137,18,47]},{"path":[4,123,2,2,3],"span":[2137,50,51]},{"path":[4,123,2,3],"span":[2138,2,36]},{"path":[4,123,2,3,4],"span":[2138,2,10]},{"path":[4,123,2,3,5],"span":[2138,11,17]},{"path":[4,123,2,3,1],"span":[2138,18,31]},{"path":[4,123,2,3,3],"span":[2138,34,35]},{"path":[4,123,2,4],"span":[2139,2,40]},{"path":[4,123,2,4,4],"span":[2139,2,10]},{"path":[4,123,2,4,5],"span":[2139,11,17]},{"path":[4,123,2,4,1],"span":[2139,18,35]},{"path":[4,123,2,4,3],"span":[2139,38,39]},{"path":[4,123,2,5],"span":[2140,2,48]},{"path":[4,123,2,5,4],"span":[2140,2,10]},{"path":[4,123,2,5,5],"span":[2140,11,17]},{"path":[4,123,2,5,1],"span":[2140,18,43]},{"path":[4,123,2,5,3],"span":[2140,46,47]},{"path":[4,123,2,6],"span":[2141,2,41]},{"path":[4,123,2,6,4],"span":[2141,2,10]},{"path":[4,123,2,6,5],"span":[2141,11,17]},{"path":[4,123,2,6,1],"span":[2141,18,36]},{"path":[4,123,2,6,3],"span":[2141,39,40]},{"path":[4,123,2,7],"span":[2142,2,34]},{"path":[4,123,2,7,4],"span":[2142,2,10]},{"path":[4,123,2,7,5],"span":[2142,11,17]},{"path":[4,123,2,7,1],"span":[2142,18,29]},{"path":[4,123,2,7,3],"span":[2142,32,33]},{"path":[4,123,2,8],"span":[2143,2,57]},{"path":[4,123,2,8,4],"span":[2143,2,10]},{"path":[4,123,2,8,5],"span":[2143,11,17]},{"path":[4,123,2,8,1],"span":[2143,18,52]},{"path":[4,123,2,8,3],"span":[2143,55,56]},{"path":[4,123,2,9],"span":[2144,2,45]},{"path":[4,123,2,9,4],"span":[2144,2,10]},{"path":[4,123,2,9,5],"span":[2144,11,17]},{"path":[4,123,2,9,1],"span":[2144,18,39]},{"path":[4,123,2,9,3],"span":[2144,42,44]},{"path":[4,123,2,10],"span":[2145,2,47]},{"path":[4,123,2,10,4],"span":[2145,2,10]},{"path":[4,123,2,10,5],"span":[2145,11,17]},{"path":[4,123,2,10,1],"span":[2145,18,41]},{"path":[4,123,2,10,3],"span":[2145,44,46]},{"path":[4,124],"span":[2148,0,2155,1]},{"path":[4,124,1],"span":[2148,8,33]},{"path":[4,124,2,0],"span":[2149,2,37]},{"path":[4,124,2,0,4],"span":[2149,2,10]},{"path":[4,124,2,0,5],"span":[2149,11,17]},{"path":[4,124,2,0,1],"span":[2149,18,32]},{"path":[4,124,2,0,3],"span":[2149,35,36]},{"path":[4,124,2,1],"span":[2150,2,49]},{"path":[4,124,2,1,4],"span":[2150,2,10]},{"path":[4,124,2,1,5],"span":[2150,11,17]},{"path":[4,124,2,1,1],"span":[2150,18,44]},{"path":[4,124,2,1,3],"span":[2150,47,48]},{"path":[4,124,2,2],"span":[2151,2,39]},{"path":[4,124,2,2,4],"span":[2151,2,10]},{"path":[4,124,2,2,5],"span":[2151,11,17]},{"path":[4,124,2,2,1],"span":[2151,18,34]},{"path":[4,124,2,2,3],"span":[2151,37,38]},{"path":[4,124,2,3],"span":[2152,2,36]},{"path":[4,124,2,3,4],"span":[2152,2,10]},{"path":[4,124,2,3,5],"span":[2152,11,17]},{"path":[4,124,2,3,1],"span":[2152,18,31]},{"path":[4,124,2,3,3],"span":[2152,34,35]},{"path":[4,124,2,4],"span":[2153,2,44]},{"path":[4,124,2,4,4],"span":[2153,2,10]},{"path":[4,124,2,4,5],"span":[2153,11,17]},{"path":[4,124,2,4,1],"span":[2153,18,39]},{"path":[4,124,2,4,3],"span":[2153,42,43]},{"path":[4,124,2,5],"span":[2154,2,48]},{"path":[4,124,2,5,4],"span":[2154,2,10]},{"path":[4,124,2,5,5],"span":[2154,11,17]},{"path":[4,124,2,5,1],"span":[2154,18,43]},{"path":[4,124,2,5,3],"span":[2154,46,47]},{"path":[4,125],"span":[2157,0,2160,1]},{"path":[4,125,1],"span":[2157,8,37]},{"path":[4,125,2,0],"span":[2158,2,41]},{"path":[4,125,2,0,4],"span":[2158,2,10]},{"path":[4,125,2,0,5],"span":[2158,11,17]},{"path":[4,125,2,0,1],"span":[2158,18,36]},{"path":[4,125,2,0,3],"span":[2158,39,40]},{"path":[4,125,2,1],"span":[2159,2,34]},{"path":[4,125,2,1,4],"span":[2159,2,10]},{"path":[4,125,2,1,5],"span":[2159,11,17]},{"path":[4,125,2,1,1],"span":[2159,18,29]},{"path":[4,125,2,1,3],"span":[2159,32,33]},{"path":[4,126],"span":[2165,0,2170,1],"leadingComments":"\n Computer Windows only: page files.\n"},{"path":[4,126,1],"span":[2165,8,31]},{"path":[4,126,8,0],"span":[2166,2,2169,3]},{"path":[4,126,8,0,1],"span":[2166,8,17]},{"path":[4,126,2,0],"span":[2167,4,37]},{"path":[4,126,2,0,6],"span":[2167,4,25]},{"path":[4,126,2,0,1],"span":[2167,26,32]},{"path":[4,126,2,0,3],"span":[2167,35,36]},{"path":[4,126,2,1],"span":[2168,4,45]},{"path":[4,126,2,1,6],"span":[2168,4,31]},{"path":[4,126,2,1,1],"span":[2168,32,40]},{"path":[4,126,2,1,3],"span":[2168,43,44]},{"path":[4,127],"span":[2172,0,2188,1]},{"path":[4,127,1],"span":[2172,8,29]},{"path":[4,127,2,0],"span":[2173,2,28]},{"path":[4,127,2,0,4],"span":[2173,2,10]},{"path":[4,127,2,0,5],"span":[2173,11,15]},{"path":[4,127,2,0,1],"span":[2173,16,23]},{"path":[4,127,2,0,3],"span":[2173,26,27]},{"path":[4,127,2,1],"span":[2174,2,30]},{"path":[4,127,2,1,4],"span":[2174,2,10]},{"path":[4,127,2,1,5],"span":[2174,11,17]},{"path":[4,127,2,1,1],"span":[2174,18,25]},{"path":[4,127,2,1,3],"span":[2174,28,29]},{"path":[4,127,2,2],"span":[2175,2,55]},{"path":[4,127,2,2,4],"span":[2175,2,10]},{"path":[4,127,2,2,6],"span":[2175,11,36]},{"path":[4,127,2,2,1],"span":[2175,37,50]},{"path":[4,127,2,2,3],"span":[2175,53,54]},{"path":[4,127,2,3],"span":[2176,2,32]},{"path":[4,127,2,3,4],"span":[2176,2,10]},{"path":[4,127,2,3,5],"span":[2176,11,17]},{"path":[4,127,2,3,1],"span":[2176,18,27]},{"path":[4,127,2,3,3],"span":[2176,30,31]},{"path":[4,127,2,4],"span":[2177,2,27]},{"path":[4,127,2,4,4],"span":[2177,2,10]},{"path":[4,127,2,4,5],"span":[2177,11,15]},{"path":[4,127,2,4,1],"span":[2177,16,22]},{"path":[4,127,2,4,3],"span":[2177,25,26]},{"path":[4,127,2,5],"span":[2178,2,35]},{"path":[4,127,2,5,4],"span":[2178,2,10]},{"path":[4,127,2,5,5],"span":[2178,11,17]},{"path":[4,127,2,5,1],"span":[2178,18,30]},{"path":[4,127,2,5,3],"span":[2178,33,34]},{"path":[4,127,2,6],"span":[2179,2,54]},{"path":[4,127,2,6,4],"span":[2179,2,10]},{"path":[4,127,2,6,6],"span":[2179,11,36]},{"path":[4,127,2,6,1],"span":[2179,37,49]},{"path":[4,127,2,6,3],"span":[2179,52,53]},{"path":[4,127,2,7],"span":[2180,2,55]},{"path":[4,127,2,7,4],"span":[2180,2,10]},{"path":[4,127,2,7,6],"span":[2180,11,36]},{"path":[4,127,2,7,1],"span":[2180,37,50]},{"path":[4,127,2,7,3],"span":[2180,53,54]},{"path":[4,127,2,8],"span":[2181,2,55]},{"path":[4,127,2,8,4],"span":[2181,2,10]},{"path":[4,127,2,8,6],"span":[2181,11,36]},{"path":[4,127,2,8,1],"span":[2181,37,50]},{"path":[4,127,2,8,3],"span":[2181,53,54]},{"path":[4,127,2,9],"span":[2182,2,36]},{"path":[4,127,2,9,4],"span":[2182,2,10]},{"path":[4,127,2,9,5],"span":[2182,11,17]},{"path":[4,127,2,9,1],"span":[2182,18,30]},{"path":[4,127,2,9,3],"span":[2182,33,35]},{"path":[4,127,2,10],"span":[2183,2,28]},{"path":[4,127,2,10,4],"span":[2183,2,10]},{"path":[4,127,2,10,5],"span":[2183,11,17]},{"path":[4,127,2,10,1],"span":[2183,18,22]},{"path":[4,127,2,10,3],"span":[2183,25,27]},{"path":[4,127,2,11],"span":[2184,2,28]},{"path":[4,127,2,11,4],"span":[2184,2,10]},{"path":[4,127,2,11,5],"span":[2184,11,17]},{"path":[4,127,2,11,1],"span":[2184,18,22]},{"path":[4,127,2,11,3],"span":[2184,25,27]},{"path":[4,127,2,12],"span":[2185,2,30]},{"path":[4,127,2,12,4],"span":[2185,2,10]},{"path":[4,127,2,12,5],"span":[2185,11,15]},{"path":[4,127,2,12,1],"span":[2185,16,24]},{"path":[4,127,2,12,3],"span":[2185,27,29]},{"path":[4,127,2,13],"span":[2186,2,28]},{"path":[4,127,2,13,4],"span":[2186,2,10]},{"path":[4,127,2,13,5],"span":[2186,11,15]},{"path":[4,127,2,13,1],"span":[2186,16,22]},{"path":[4,127,2,13,3],"span":[2186,25,27]},{"path":[4,127,2,14],"span":[2187,2,31]},{"path":[4,127,2,14,4],"span":[2187,2,10]},{"path":[4,127,2,14,5],"span":[2187,11,15]},{"path":[4,127,2,14,1],"span":[2187,16,25]},{"path":[4,127,2,14,3],"span":[2187,28,30]},{"path":[4,128],"span":[2190,0,2193,1]},{"path":[4,128,1],"span":[2190,8,35]},{"path":[4,128,2,0],"span":[2191,2,53]},{"path":[4,128,2,0,4],"span":[2191,2,10]},{"path":[4,128,2,0,6],"span":[2191,11,31]},{"path":[4,128,2,0,1],"span":[2191,32,48]},{"path":[4,128,2,0,3],"span":[2191,51,52]},{"path":[4,128,2,1],"span":[2192,2,57]},{"path":[4,128,2,1,4],"span":[2192,2,10]},{"path":[4,128,2,1,6],"span":[2192,11,33]},{"path":[4,128,2,1,1],"span":[2192,34,52]},{"path":[4,128,2,1,3],"span":[2192,55,56]},{"path":[4,129],"span":[2195,0,2202,1]},{"path":[4,129,1],"span":[2195,8,30]},{"path":[4,129,2,0],"span":[2196,2,30]},{"path":[4,129,2,0,4],"span":[2196,2,10]},{"path":[4,129,2,0,5],"span":[2196,11,17]},{"path":[4,129,2,0,1],"span":[2196,18,25]},{"path":[4,129,2,0,3],"span":[2196,28,29]},{"path":[4,129,2,1],"span":[2197,2,34]},{"path":[4,129,2,1,4],"span":[2197,2,10]},{"path":[4,129,2,1,5],"span":[2197,11,17]},{"path":[4,129,2,1,1],"span":[2197,18,29]},{"path":[4,129,2,1,3],"span":[2197,32,33]},{"path":[4,129,2,2],"span":[2198,2,35]},{"path":[4,129,2,2,4],"span":[2198,2,10]},{"path":[4,129,2,2,5],"span":[2198,11,17]},{"path":[4,129,2,2,1],"span":[2198,18,30]},{"path":[4,129,2,2,3],"span":[2198,33,34]},{"path":[4,129,2,3],"span":[2199,2,35]},{"path":[4,129,2,3,4],"span":[2199,2,10]},{"path":[4,129,2,3,5],"span":[2199,11,17]},{"path":[4,129,2,3,1],"span":[2199,18,30]},{"path":[4,129,2,3,3],"span":[2199,33,34]},{"path":[4,129,2,4],"span":[2200,2,27]},{"path":[4,129,2,4,4],"span":[2200,2,10]},{"path":[4,129,2,4,5],"span":[2200,11,17]},{"path":[4,129,2,4,1],"span":[2200,18,22]},{"path":[4,129,2,4,3],"span":[2200,25,26]},{"path":[4,129,2,5],"span":[2201,2,33]},{"path":[4,129,2,5,4],"span":[2201,2,10]},{"path":[4,129,2,5,5],"span":[2201,11,17]},{"path":[4,129,2,5,1],"span":[2201,18,28]},{"path":[4,129,2,5,3],"span":[2201,31,32]},{"path":[4,130],"span":[2204,0,2214,1]},{"path":[4,130,1],"span":[2204,8,28]},{"path":[4,130,2,0],"span":[2205,2,42]},{"path":[4,130,2,0,4],"span":[2205,2,10]},{"path":[4,130,2,0,5],"span":[2205,11,17]},{"path":[4,130,2,0,1],"span":[2205,18,37]},{"path":[4,130,2,0,3],"span":[2205,40,41]},{"path":[4,130,2,1],"span":[2206,2,30]},{"path":[4,130,2,1,4],"span":[2206,2,10]},{"path":[4,130,2,1,5],"span":[2206,11,17]},{"path":[4,130,2,1,1],"span":[2206,18,25]},{"path":[4,130,2,1,3],"span":[2206,28,29]},{"path":[4,130,2,2],"span":[2207,2,36]},{"path":[4,130,2,2,4],"span":[2207,2,10]},{"path":[4,130,2,2,5],"span":[2207,11,17]},{"path":[4,130,2,2,1],"span":[2207,18,31]},{"path":[4,130,2,2,3],"span":[2207,34,35]},{"path":[4,130,2,3],"span":[2208,2,35]},{"path":[4,130,2,3,4],"span":[2208,2,10]},{"path":[4,130,2,3,5],"span":[2208,11,17]},{"path":[4,130,2,3,1],"span":[2208,18,29]},{"path":[4,130,2,3,3],"span":[2208,33,34]},{"path":[4,130,2,4],"span":[2209,2,54]},{"path":[4,130,2,4,4],"span":[2209,2,10]},{"path":[4,130,2,4,6],"span":[2209,11,36]},{"path":[4,130,2,4,1],"span":[2209,37,49]},{"path":[4,130,2,4,3],"span":[2209,52,53]},{"path":[4,130,2,5],"span":[2210,2,27]},{"path":[4,130,2,5,4],"span":[2210,2,10]},{"path":[4,130,2,5,5],"span":[2210,11,17]},{"path":[4,130,2,5,1],"span":[2210,18,22]},{"path":[4,130,2,5,3],"span":[2210,25,26]},{"path":[4,130,2,6],"span":[2211,2,33]},{"path":[4,130,2,6,4],"span":[2211,2,10]},{"path":[4,130,2,6,5],"span":[2211,11,17]},{"path":[4,130,2,6,1],"span":[2211,18,28]},{"path":[4,130,2,6,3],"span":[2211,31,32]},{"path":[4,130,2,7],"span":[2212,2,29]},{"path":[4,130,2,7,4],"span":[2212,2,10]},{"path":[4,130,2,7,5],"span":[2212,11,17]},{"path":[4,130,2,7,1],"span":[2212,18,24]},{"path":[4,130,2,7,3],"span":[2212,27,28]},{"path":[4,130,2,8],"span":[2213,2,35]},{"path":[4,130,2,8,4],"span":[2213,2,10]},{"path":[4,130,2,8,5],"span":[2213,11,15]},{"path":[4,130,2,8,1],"span":[2213,16,30]},{"path":[4,130,2,8,3],"span":[2213,33,34]},{"path":[4,131],"span":[2220,0,2239,1],"leadingComments":"\n Computer, Windows only.\n"},{"path":[4,131,1],"span":[2220,8,30]},{"path":[4,131,2,0],"span":[2221,2,34]},{"path":[4,131,2,0,4],"span":[2221,2,10]},{"path":[4,131,2,0,5],"span":[2221,11,16]},{"path":[4,131,2,0,1],"span":[2221,17,29]},{"path":[4,131,2,0,3],"span":[2221,32,33]},{"path":[4,131,2,1],"span":[2222,2,32]},{"path":[4,131,2,1,4],"span":[2222,2,10]},{"path":[4,131,2,1,5],"span":[2222,11,15]},{"path":[4,131,2,1,1],"span":[2222,16,27]},{"path":[4,131,2,1,3],"span":[2222,30,31]},{"path":[4,131,2,2],"span":[2223,2,39]},{"path":[4,131,2,2,4],"span":[2223,2,10]},{"path":[4,131,2,2,5],"span":[2223,11,16]},{"path":[4,131,2,2,1],"span":[2223,17,34]},{"path":[4,131,2,2,3],"span":[2223,37,38]},{"path":[4,131,2,3],"span":[2224,2,38]},{"path":[4,131,2,3,4],"span":[2224,2,10]},{"path":[4,131,2,3,5],"span":[2224,11,15]},{"path":[4,131,2,3,1],"span":[2224,16,33]},{"path":[4,131,2,3,3],"span":[2224,36,37]},{"path":[4,131,2,4],"span":[2225,2,38]},{"path":[4,131,2,4,4],"span":[2225,2,10]},{"path":[4,131,2,4,5],"span":[2225,11,16]},{"path":[4,131,2,4,1],"span":[2225,17,33]},{"path":[4,131,2,4,3],"span":[2225,36,37]},{"path":[4,131,2,5],"span":[2226,2,34]},{"path":[4,131,2,5,4],"span":[2226,2,10]},{"path":[4,131,2,5,5],"span":[2226,11,16]},{"path":[4,131,2,5,1],"span":[2226,17,29]},{"path":[4,131,2,5,3],"span":[2226,32,33]},{"path":[4,131,2,6],"span":[2227,2,42]},{"path":[4,131,2,6,4],"span":[2227,2,10]},{"path":[4,131,2,6,5],"span":[2227,11,17]},{"path":[4,131,2,6,1],"span":[2227,18,37]},{"path":[4,131,2,6,3],"span":[2227,40,41]},{"path":[4,131,2,7],"span":[2228,2,37]},{"path":[4,131,2,7,4],"span":[2228,2,10]},{"path":[4,131,2,7,5],"span":[2228,11,16]},{"path":[4,131,2,7,1],"span":[2228,17,32]},{"path":[4,131,2,7,3],"span":[2228,35,36]},{"path":[4,131,2,8],"span":[2229,2,36]},{"path":[4,131,2,8,4],"span":[2229,2,10]},{"path":[4,131,2,8,5],"span":[2229,11,15]},{"path":[4,131,2,8,1],"span":[2229,16,31]},{"path":[4,131,2,8,3],"span":[2229,34,35]},{"path":[4,131,2,9],"span":[2230,2,28]},{"path":[4,131,2,9,4],"span":[2230,2,10]},{"path":[4,131,2,9,5],"span":[2230,11,17]},{"path":[4,131,2,9,1],"span":[2230,18,22]},{"path":[4,131,2,9,3],"span":[2230,25,27]},{"path":[4,131,2,10],"span":[2231,2,31]},{"path":[4,131,2,10,4],"span":[2231,2,10]},{"path":[4,131,2,10,5],"span":[2231,11,17]},{"path":[4,131,2,10,1],"span":[2231,18,25]},{"path":[4,131,2,10,3],"span":[2231,28,30]},{"path":[4,131,2,11],"span":[2232,2,40]},{"path":[4,131,2,11,4],"span":[2232,2,10]},{"path":[4,131,2,11,5],"span":[2232,11,15]},{"path":[4,131,2,11,1],"span":[2232,16,34]},{"path":[4,131,2,11,3],"span":[2232,37,39]},{"path":[4,131,2,12],"span":[2233,2,46]},{"path":[4,131,2,12,4],"span":[2233,2,10]},{"path":[4,131,2,12,5],"span":[2233,11,17]},{"path":[4,131,2,12,1],"span":[2233,18,40]},{"path":[4,131,2,12,3],"span":[2233,43,45]},{"path":[4,131,2,13],"span":[2234,2,40]},{"path":[4,131,2,13,4],"span":[2234,2,10]},{"path":[4,131,2,13,5],"span":[2234,11,15]},{"path":[4,131,2,13,1],"span":[2234,16,34]},{"path":[4,131,2,13,3],"span":[2234,37,39]},{"path":[4,131,2,14],"span":[2235,2,41]},{"path":[4,131,2,14,4],"span":[2235,2,10]},{"path":[4,131,2,14,5],"span":[2235,11,16]},{"path":[4,131,2,14,1],"span":[2235,17,35]},{"path":[4,131,2,14,3],"span":[2235,38,40]},{"path":[4,131,2,15],"span":[2236,2,33]},{"path":[4,131,2,15,4],"span":[2236,2,10]},{"path":[4,131,2,15,5],"span":[2236,11,17]},{"path":[4,131,2,15,1],"span":[2236,18,27]},{"path":[4,131,2,15,3],"span":[2236,30,32]},{"path":[4,131,2,16],"span":[2237,2,41]},{"path":[4,131,2,16,4],"span":[2237,2,10]},{"path":[4,131,2,16,5],"span":[2237,11,15]},{"path":[4,131,2,16,1],"span":[2237,16,35]},{"path":[4,131,2,16,3],"span":[2237,38,40]},{"path":[4,131,2,17],"span":[2238,2,37]},{"path":[4,131,2,17,4],"span":[2238,2,10]},{"path":[4,131,2,17,5],"span":[2238,11,15]},{"path":[4,131,2,17,1],"span":[2238,16,31]},{"path":[4,131,2,17,3],"span":[2238,34,36]},{"path":[4,132],"span":[2244,0,2255,1],"leadingComments":"\n Computer, Windows only: from WindowsDisplayConfig.\n"},{"path":[4,132,1],"span":[2244,8,30]},{"path":[4,132,2,0],"span":[2245,2,34]},{"path":[4,132,2,0,4],"span":[2245,2,10]},{"path":[4,132,2,0,5],"span":[2245,11,16]},{"path":[4,132,2,0,1],"span":[2245,17,29]},{"path":[4,132,2,0,3],"span":[2245,32,33]},{"path":[4,132,2,1],"span":[2246,2,30]},{"path":[4,132,2,1,4],"span":[2246,2,10]},{"path":[4,132,2,1,5],"span":[2246,11,17]},{"path":[4,132,2,1,1],"span":[2246,18,25]},{"path":[4,132,2,1,3],"span":[2246,28,29]},{"path":[4,132,2,2],"span":[2247,2,34]},{"path":[4,132,2,2,4],"span":[2247,2,10]},{"path":[4,132,2,2,5],"span":[2247,11,17]},{"path":[4,132,2,2,1],"span":[2247,18,29]},{"path":[4,132,2,2,3],"span":[2247,32,33]},{"path":[4,132,2,3],"span":[2248,2,35]},{"path":[4,132,2,3,4],"span":[2248,2,10]},{"path":[4,132,2,3,5],"span":[2248,11,16]},{"path":[4,132,2,3,1],"span":[2248,17,30]},{"path":[4,132,2,3,3],"span":[2248,33,34]},{"path":[4,132,2,4],"span":[2249,2,39]},{"path":[4,132,2,4,4],"span":[2249,2,10]},{"path":[4,132,2,4,5],"span":[2249,11,16]},{"path":[4,132,2,4,1],"span":[2249,17,34]},{"path":[4,132,2,4,3],"span":[2249,37,38]},{"path":[4,132,2,5],"span":[2250,2,37]},{"path":[4,132,2,5,4],"span":[2250,2,10]},{"path":[4,132,2,5,5],"span":[2250,11,17]},{"path":[4,132,2,5,1],"span":[2250,18,32]},{"path":[4,132,2,5,3],"span":[2250,35,36]},{"path":[4,132,2,6],"span":[2251,2,32]},{"path":[4,132,2,6,4],"span":[2251,2,10]},{"path":[4,132,2,6,5],"span":[2251,11,16]},{"path":[4,132,2,6,1],"span":[2251,17,27]},{"path":[4,132,2,6,3],"span":[2251,30,31]},{"path":[4,132,2,7],"span":[2252,2,33]},{"path":[4,132,2,7,4],"span":[2252,2,10]},{"path":[4,132,2,7,5],"span":[2252,11,16]},{"path":[4,132,2,7,1],"span":[2252,17,28]},{"path":[4,132,2,7,3],"span":[2252,31,32]},{"path":[4,132,2,8],"span":[2253,2,32]},{"path":[4,132,2,8,4],"span":[2253,2,10]},{"path":[4,132,2,8,5],"span":[2253,11,16]},{"path":[4,132,2,8,1],"span":[2253,17,27]},{"path":[4,132,2,8,3],"span":[2253,30,31]},{"path":[4,132,2,9],"span":[2254,2,44]},{"path":[4,132,2,9,4],"span":[2254,2,10]},{"path":[4,132,2,9,5],"span":[2254,11,16]},{"path":[4,132,2,9,1],"span":[2254,17,38]},{"path":[4,132,2,9,3],"span":[2254,41,43]},{"path":[4,133],"span":[2260,0,2270,1],"leadingComments":"\n Computer, Windows only.\n"},{"path":[4,133,1],"span":[2260,8,37]},{"path":[4,133,2,0],"span":[2261,2,40]},{"path":[4,133,2,0,4],"span":[2261,2,10]},{"path":[4,133,2,0,6],"span":[2261,11,22]},{"path":[4,133,2,0,1],"span":[2261,23,35]},{"path":[4,133,2,0,3],"span":[2261,38,39]},{"path":[4,133,2,1],"span":[2262,2,30]},{"path":[4,133,2,1,4],"span":[2262,2,10]},{"path":[4,133,2,1,5],"span":[2262,11,17]},{"path":[4,133,2,1,1],"span":[2262,18,25]},{"path":[4,133,2,1,3],"span":[2262,28,29]},{"path":[4,133,2,2],"span":[2263,2,32]},{"path":[4,133,2,2,4],"span":[2263,2,10]},{"path":[4,133,2,2,5],"span":[2263,11,17]},{"path":[4,133,2,2,1],"span":[2263,18,27]},{"path":[4,133,2,2,3],"span":[2263,30,31]},{"path":[4,133,2,3],"span":[2264,2,43]},{"path":[4,133,2,3,4],"span":[2264,2,10]},{"path":[4,133,2,3,5],"span":[2264,11,17]},{"path":[4,133,2,3,1],"span":[2264,18,38]},{"path":[4,133,2,3,3],"span":[2264,41,42]},{"path":[4,133,2,4],"span":[2265,2,48]},{"path":[4,133,2,4,4],"span":[2265,2,10]},{"path":[4,133,2,4,5],"span":[2265,11,17]},{"path":[4,133,2,4,1],"span":[2265,18,43]},{"path":[4,133,2,4,3],"span":[2265,46,47]},{"path":[4,133,2,5],"span":[2266,2,48]},{"path":[4,133,2,5,4],"span":[2266,2,10]},{"path":[4,133,2,5,5],"span":[2266,11,17]},{"path":[4,133,2,5,1],"span":[2266,18,43]},{"path":[4,133,2,5,3],"span":[2266,46,47]},{"path":[4,133,2,6],"span":[2267,2,36]},{"path":[4,133,2,6,4],"span":[2267,2,10]},{"path":[4,133,2,6,5],"span":[2267,11,17]},{"path":[4,133,2,6,1],"span":[2267,18,31]},{"path":[4,133,2,6,3],"span":[2267,34,35]},{"path":[4,133,2,7],"span":[2268,2,36]},{"path":[4,133,2,7,4],"span":[2268,2,10]},{"path":[4,133,2,7,5],"span":[2268,11,17]},{"path":[4,133,2,7,1],"span":[2268,18,31]},{"path":[4,133,2,7,3],"span":[2268,34,35]},{"path":[4,133,2,8],"span":[2269,2,35]},{"path":[4,133,2,8,4],"span":[2269,2,10]},{"path":[4,133,2,8,5],"span":[2269,11,17]},{"path":[4,133,2,8,1],"span":[2269,18,30]},{"path":[4,133,2,8,3],"span":[2269,33,34]},{"path":[4,134],"span":[2273,0,2281,1],"leadingComments":" Preference Panes, macOS only. To be mapped from inbound model: MacPreferencePanes\n"},{"path":[4,134,1],"span":[2273,8,33]},{"path":[4,134,2,0],"span":[2274,2,27]},{"path":[4,134,2,0,4],"span":[2274,2,10]},{"path":[4,134,2,0,5],"span":[2274,11,17]},{"path":[4,134,2,0,1],"span":[2274,18,22]},{"path":[4,134,2,0,3],"span":[2274,25,26]},{"path":[4,134,2,1],"span":[2275,2,43]},{"path":[4,134,2,1,4],"span":[2275,2,10]},{"path":[4,134,2,1,5],"span":[2275,11,17]},{"path":[4,134,2,1,1],"span":[2275,18,38]},{"path":[4,134,2,1,3],"span":[2275,41,42]},{"path":[4,134,2,2],"span":[2276,2,33]},{"path":[4,134,2,2,4],"span":[2276,2,10]},{"path":[4,134,2,2,5],"span":[2276,11,17]},{"path":[4,134,2,2,1],"span":[2276,18,28]},{"path":[4,134,2,2,3],"span":[2276,31,32]},{"path":[4,134,2,3],"span":[2277,2,31]},{"path":[4,134,2,3,4],"span":[2277,2,10]},{"path":[4,134,2,3,5],"span":[2277,11,15]},{"path":[4,134,2,3,1],"span":[2277,16,26]},{"path":[4,134,2,3,3],"span":[2277,29,30]},{"path":[4,134,2,4],"span":[2278,2,27]},{"path":[4,134,2,4,4],"span":[2278,2,10]},{"path":[4,134,2,4,5],"span":[2278,11,17]},{"path":[4,134,2,4,1],"span":[2278,18,22]},{"path":[4,134,2,4,3],"span":[2278,25,26]},{"path":[4,134,2,5],"span":[2279,2,35]},{"path":[4,134,2,5,4],"span":[2279,2,10]},{"path":[4,134,2,5,5],"span":[2279,11,17]},{"path":[4,134,2,5,1],"span":[2279,18,30]},{"path":[4,134,2,5,3],"span":[2279,33,34]},{"path":[4,134,2,6],"span":[2280,2,30]},{"path":[4,134,2,6,4],"span":[2280,2,10]},{"path":[4,134,2,6,5],"span":[2280,11,17]},{"path":[4,134,2,6,1],"span":[2280,18,25]},{"path":[4,134,2,6,3],"span":[2280,28,29]},{"path":[4,135],"span":[2286,0,2297,1],"leadingComments":"\n Computer, Windows only: from WindowsDisplayControllerConfig.\n"},{"path":[4,135,1],"span":[2286,8,40]},{"path":[4,135,2,0],"span":[2287,2,36]},{"path":[4,135,2,0,4],"span":[2287,2,10]},{"path":[4,135,2,0,5],"span":[2287,11,16]},{"path":[4,135,2,0,1],"span":[2287,17,31]},{"path":[4,135,2,0,3],"span":[2287,34,35]},{"path":[4,135,2,1],"span":[2288,2,30]},{"path":[4,135,2,1,4],"span":[2288,2,10]},{"path":[4,135,2,1,5],"span":[2288,11,17]},{"path":[4,135,2,1,1],"span":[2288,18,25]},{"path":[4,135,2,1,3],"span":[2288,28,29]},{"path":[4,135,2,2],"span":[2289,2,35]},{"path":[4,135,2,2,4],"span":[2289,2,10]},{"path":[4,135,2,2,5],"span":[2289,11,17]},{"path":[4,135,2,2,1],"span":[2289,18,30]},{"path":[4,135,2,2,3],"span":[2289,33,34]},{"path":[4,135,2,3],"span":[2290,2,54]},{"path":[4,135,2,3,4],"span":[2290,2,10]},{"path":[4,135,2,3,5],"span":[2290,11,17]},{"path":[4,135,2,3,1],"span":[2290,18,49]},{"path":[4,135,2,3,3],"span":[2290,52,53]},{"path":[4,135,2,4],"span":[2291,2,43]},{"path":[4,135,2,4,4],"span":[2291,2,10]},{"path":[4,135,2,4,5],"span":[2291,11,17]},{"path":[4,135,2,4,1],"span":[2291,18,38]},{"path":[4,135,2,4,3],"span":[2291,41,42]},{"path":[4,135,2,5],"span":[2292,2,44]},{"path":[4,135,2,5,4],"span":[2292,2,10]},{"path":[4,135,2,5,5],"span":[2292,11,17]},{"path":[4,135,2,5,1],"span":[2292,18,39]},{"path":[4,135,2,5,3],"span":[2292,42,43]},{"path":[4,135,2,6],"span":[2293,2,27]},{"path":[4,135,2,6,4],"span":[2293,2,10]},{"path":[4,135,2,6,5],"span":[2293,11,17]},{"path":[4,135,2,6,1],"span":[2293,18,22]},{"path":[4,135,2,6,3],"span":[2293,25,26]},{"path":[4,135,2,7],"span":[2294,2,34]},{"path":[4,135,2,7,4],"span":[2294,2,10]},{"path":[4,135,2,7,5],"span":[2294,11,16]},{"path":[4,135,2,7,1],"span":[2294,17,29]},{"path":[4,135,2,7,3],"span":[2294,32,33]},{"path":[4,135,2,8],"span":[2295,2,42]},{"path":[4,135,2,8,4],"span":[2295,2,10]},{"path":[4,135,2,8,5],"span":[2295,11,17]},{"path":[4,135,2,8,1],"span":[2295,18,37]},{"path":[4,135,2,8,3],"span":[2295,40,41]},{"path":[4,135,2,9],"span":[2296,2,34]},{"path":[4,135,2,9,4],"span":[2296,2,10]},{"path":[4,135,2,9,5],"span":[2296,11,17]},{"path":[4,135,2,9,1],"span":[2296,18,28]},{"path":[4,135,2,9,3],"span":[2296,31,33]},{"path":[4,136],"span":[2302,0,2307,1],"leadingComments":"\n Computer Windows only: from WindowsNetworkClient.\n"},{"path":[4,136,1],"span":[2302,8,36]},{"path":[4,136,2,0],"span":[2303,2,30]},{"path":[4,136,2,0,4],"span":[2303,2,10]},{"path":[4,136,2,0,5],"span":[2303,11,17]},{"path":[4,136,2,0,1],"span":[2303,18,25]},{"path":[4,136,2,0,3],"span":[2303,28,29]},{"path":[4,136,2,1],"span":[2304,2,34]},{"path":[4,136,2,1,4],"span":[2304,2,10]},{"path":[4,136,2,1,5],"span":[2304,11,17]},{"path":[4,136,2,1,1],"span":[2304,18,29]},{"path":[4,136,2,1,3],"span":[2304,32,33]},{"path":[4,136,2,2],"span":[2305,2,35]},{"path":[4,136,2,2,4],"span":[2305,2,10]},{"path":[4,136,2,2,5],"span":[2305,11,17]},{"path":[4,136,2,2,1],"span":[2305,18,30]},{"path":[4,136,2,2,3],"span":[2305,33,34]},{"path":[4,136,2,3],"span":[2306,2,27]},{"path":[4,136,2,3,4],"span":[2306,2,10]},{"path":[4,136,2,3,5],"span":[2306,11,17]},{"path":[4,136,2,3,1],"span":[2306,18,22]},{"path":[4,136,2,3,3],"span":[2306,25,26]},{"path":[4,137],"span":[2314,0,2319,1],"leadingComments":"\n Computer Windows only: from WindowsIdeController.\n WMI mappings from: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-idecontroller\n"},{"path":[4,137,1],"span":[2314,8,36]},{"path":[4,137,2,0],"span":[2315,2,30]},{"path":[4,137,2,0,4],"span":[2315,2,10]},{"path":[4,137,2,0,5],"span":[2315,11,17]},{"path":[4,137,2,0,1],"span":[2315,18,25]},{"path":[4,137,2,0,3],"span":[2315,28,29]},{"path":[4,137,2,1],"span":[2316,2,32]},{"path":[4,137,2,1,4],"span":[2316,2,10]},{"path":[4,137,2,1,5],"span":[2316,11,17]},{"path":[4,137,2,1,1],"span":[2316,18,27]},{"path":[4,137,2,1,3],"span":[2316,30,31]},{"path":[4,137,2,2],"span":[2317,2,35]},{"path":[4,137,2,2,4],"span":[2317,2,10]},{"path":[4,137,2,2,5],"span":[2317,11,17]},{"path":[4,137,2,2,1],"span":[2317,18,30]},{"path":[4,137,2,2,3],"span":[2317,33,34]},{"path":[4,137,2,3],"span":[2318,2,46]},{"path":[4,137,2,3,4],"span":[2318,2,10]},{"path":[4,137,2,3,6],"span":[2318,11,22]},{"path":[4,137,2,3,1],"span":[2318,23,41]},{"path":[4,137,2,3,3],"span":[2318,44,45]},{"path":[4,138],"span":[2325,0,2337,1],"leadingComments":"\n Computer Windows only: from WindowsDiskPartition.\n As per spec: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-diskpartition\n"},{"path":[4,138,1],"span":[2325,8,36]},{"path":[4,138,2,0],"span":[2326,2,32]},{"path":[4,138,2,0,4],"span":[2326,2,10]},{"path":[4,138,2,0,5],"span":[2326,11,16]},{"path":[4,138,2,0,1],"span":[2326,17,27]},{"path":[4,138,2,0,3],"span":[2326,30,31]},{"path":[4,138,2,1],"span":[2327,2,29]},{"path":[4,138,2,1,4],"span":[2327,2,10]},{"path":[4,138,2,1,5],"span":[2327,11,15]},{"path":[4,138,2,1,1],"span":[2327,16,24]},{"path":[4,138,2,1,3],"span":[2327,27,28]},{"path":[4,138,2,2],"span":[2328,2,35]},{"path":[4,138,2,2,4],"span":[2328,2,10]},{"path":[4,138,2,2,5],"span":[2328,11,15]},{"path":[4,138,2,2,1],"span":[2328,16,30]},{"path":[4,138,2,2,3],"span":[2328,33,34]},{"path":[4,138,2,3],"span":[2329,2,32]},{"path":[4,138,2,3,4],"span":[2329,2,10]},{"path":[4,138,2,3,5],"span":[2329,11,17]},{"path":[4,138,2,3,1],"span":[2329,18,27]},{"path":[4,138,2,3,3],"span":[2329,30,31]},{"path":[4,138,2,4],"span":[2330,2,32]},{"path":[4,138,2,4,4],"span":[2330,2,10]},{"path":[4,138,2,4,5],"span":[2330,11,16]},{"path":[4,138,2,4,1],"span":[2330,17,27]},{"path":[4,138,2,4,3],"span":[2330,30,31]},{"path":[4,138,2,5],"span":[2331,2,27]},{"path":[4,138,2,5,4],"span":[2331,2,10]},{"path":[4,138,2,5,5],"span":[2331,11,16]},{"path":[4,138,2,5,1],"span":[2331,17,22]},{"path":[4,138,2,5,3],"span":[2331,25,26]},{"path":[4,138,2,6],"span":[2332,2,38]},{"path":[4,138,2,6,4],"span":[2332,2,10]},{"path":[4,138,2,6,5],"span":[2332,11,16]},{"path":[4,138,2,6,1],"span":[2332,17,33]},{"path":[4,138,2,6,3],"span":[2332,36,37]},{"path":[4,138,2,7],"span":[2333,2,38]},{"path":[4,138,2,7,4],"span":[2333,2,10]},{"path":[4,138,2,7,5],"span":[2333,11,15]},{"path":[4,138,2,7,1],"span":[2333,16,33]},{"path":[4,138,2,7,3],"span":[2333,36,37]},{"path":[4,138,2,8],"span":[2334,2,26]},{"path":[4,138,2,8,4],"span":[2334,2,10]},{"path":[4,138,2,8,5],"span":[2334,11,16]},{"path":[4,138,2,8,1],"span":[2334,17,21]},{"path":[4,138,2,8,3],"span":[2334,24,25]},{"path":[4,138,2,9],"span":[2335,2,38]},{"path":[4,138,2,9,4],"span":[2335,2,10]},{"path":[4,138,2,9,5],"span":[2335,11,16]},{"path":[4,138,2,9,1],"span":[2335,17,32]},{"path":[4,138,2,9,3],"span":[2335,35,37]},{"path":[4,138,2,10],"span":[2336,2,28]},{"path":[4,138,2,10,4],"span":[2336,2,10]},{"path":[4,138,2,10,5],"span":[2336,11,17]},{"path":[4,138,2,10,1],"span":[2336,18,22]},{"path":[4,138,2,10,3],"span":[2336,25,27]},{"path":[4,139],"span":[2342,0,2362,1],"leadingComments":"\n Computer Windows only: from WindowsFloppy. Mapped in LEC adapter to DiskDrive.\n"},{"path":[4,139,1],"span":[2342,8,29]},{"path":[4,139,2,0],"span":[2343,2,39]},{"path":[4,139,2,0,4],"span":[2343,2,10]},{"path":[4,139,2,0,5],"span":[2343,11,17]},{"path":[4,139,2,0,1],"span":[2343,18,34]},{"path":[4,139,2,0,3],"span":[2343,37,38]},{"path":[4,139,2,1],"span":[2344,2,34]},{"path":[4,139,2,1,4],"span":[2344,2,10]},{"path":[4,139,2,1,5],"span":[2344,11,17]},{"path":[4,139,2,1,1],"span":[2344,18,29]},{"path":[4,139,2,1,3],"span":[2344,32,33]},{"path":[4,139,2,2],"span":[2345,2,37]},{"path":[4,139,2,2,4],"span":[2345,2,10]},{"path":[4,139,2,2,5],"span":[2345,11,17]},{"path":[4,139,2,2,1],"span":[2345,18,32]},{"path":[4,139,2,2,3],"span":[2345,35,36]},{"path":[4,139,2,3],"span":[2346,2,35]},{"path":[4,139,2,3,4],"span":[2346,2,10]},{"path":[4,139,2,3,5],"span":[2346,11,17]},{"path":[4,139,2,3,1],"span":[2346,18,30]},{"path":[4,139,2,3,3],"span":[2346,33,34]},{"path":[4,139,2,4],"span":[2347,2,28]},{"path":[4,139,2,4,4],"span":[2347,2,10]},{"path":[4,139,2,4,5],"span":[2347,11,17]},{"path":[4,139,2,4,1],"span":[2347,18,23]},{"path":[4,139,2,4,3],"span":[2347,26,27]},{"path":[4,139,2,5],"span":[2348,2,27]},{"path":[4,139,2,5,4],"span":[2348,2,10]},{"path":[4,139,2,5,5],"span":[2348,11,17]},{"path":[4,139,2,5,1],"span":[2348,18,22]},{"path":[4,139,2,5,3],"span":[2348,25,26]},{"path":[4,139,2,6],"span":[2349,2,33]},{"path":[4,139,2,6,4],"span":[2349,2,10]},{"path":[4,139,2,6,5],"span":[2349,11,17]},{"path":[4,139,2,6,1],"span":[2349,18,28]},{"path":[4,139,2,6,3],"span":[2349,31,32]},{"path":[4,139,2,7],"span":[2350,2,36]},{"path":[4,139,2,7,4],"span":[2350,2,10]},{"path":[4,139,2,7,5],"span":[2350,11,17]},{"path":[4,139,2,7,1],"span":[2350,18,31]},{"path":[4,139,2,7,3],"span":[2350,34,35]},{"path":[4,139,2,8],"span":[2351,2,41]},{"path":[4,139,2,8,4],"span":[2351,2,10]},{"path":[4,139,2,8,5],"span":[2351,11,17]},{"path":[4,139,2,8,1],"span":[2351,18,35]},{"path":[4,139,2,8,3],"span":[2351,38,40]},{"path":[4,139,2,9],"span":[2352,2,27]},{"path":[4,139,2,9,4],"span":[2352,2,10]},{"path":[4,139,2,9,5],"span":[2352,11,16]},{"path":[4,139,2,9,1],"span":[2352,17,21]},{"path":[4,139,2,9,3],"span":[2352,24,26]},{"path":[4,139,2,10],"span":[2353,2,38]},{"path":[4,139,2,10,4],"span":[2353,2,10]},{"path":[4,139,2,10,5],"span":[2353,11,16]},{"path":[4,139,2,10,1],"span":[2353,17,32]},{"path":[4,139,2,10,3],"span":[2353,35,37]},{"path":[4,139,2,11],"span":[2354,2,35]},{"path":[4,139,2,11,4],"span":[2354,2,10]},{"path":[4,139,2,11,5],"span":[2354,11,17]},{"path":[4,139,2,11,1],"span":[2354,18,29]},{"path":[4,139,2,11,3],"span":[2354,32,34]},{"path":[4,139,2,12],"span":[2355,2,36]},{"path":[4,139,2,12,4],"span":[2355,2,10]},{"path":[4,139,2,12,5],"span":[2355,11,16]},{"path":[4,139,2,12,1],"span":[2355,17,30]},{"path":[4,139,2,12,3],"span":[2355,33,35]},{"path":[4,139,2,13],"span":[2356,2,35]},{"path":[4,139,2,13,4],"span":[2356,2,10]},{"path":[4,139,2,13,5],"span":[2356,11,16]},{"path":[4,139,2,13,1],"span":[2356,17,29]},{"path":[4,139,2,13,3],"span":[2356,32,34]},{"path":[4,139,2,14],"span":[2357,2,43]},{"path":[4,139,2,14,4],"span":[2357,2,10]},{"path":[4,139,2,14,5],"span":[2357,11,17]},{"path":[4,139,2,14,1],"span":[2357,18,37]},{"path":[4,139,2,14,3],"span":[2357,40,42]},{"path":[4,139,2,15],"span":[2358,2,33]},{"path":[4,139,2,15,4],"span":[2358,2,10]},{"path":[4,139,2,15,5],"span":[2358,11,17]},{"path":[4,139,2,15,1],"span":[2358,18,27]},{"path":[4,139,2,15,3],"span":[2358,30,32]},{"path":[4,139,2,16],"span":[2359,2,30]},{"path":[4,139,2,16,4],"span":[2359,2,10]},{"path":[4,139,2,16,5],"span":[2359,11,17]},{"path":[4,139,2,16,1],"span":[2359,18,24]},{"path":[4,139,2,16,3],"span":[2359,27,29]},{"path":[4,139,2,17],"span":[2360,2,41]},{"path":[4,139,2,17,4],"span":[2360,2,10]},{"path":[4,139,2,17,5],"span":[2360,11,17]},{"path":[4,139,2,17,1],"span":[2360,18,35]},{"path":[4,139,2,17,3],"span":[2360,38,40]},{"path":[4,139,2,18],"span":[2361,2,37]},{"path":[4,139,2,18,4],"span":[2361,2,10]},{"path":[4,139,2,18,5],"span":[2361,11,17]},{"path":[4,139,2,18,1],"span":[2361,18,31]},{"path":[4,139,2,18,3],"span":[2361,34,36]},{"path":[4,140],"span":[2368,0,2380,1],"leadingComments":"\n PortableBattery, only Windows atm.\n WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-portablebattery\n"},{"path":[4,140,1],"span":[2368,8,23]},{"path":[4,140,2,0],"span":[2369,2,41]},{"path":[4,140,2,0,4],"span":[2369,2,10]},{"path":[4,140,2,0,5],"span":[2369,11,16]},{"path":[4,140,2,0,1],"span":[2369,17,36]},{"path":[4,140,2,0,3],"span":[2369,39,40]},{"path":[4,140,2,1],"span":[2370,2,37]},{"path":[4,140,2,1,4],"span":[2370,2,10]},{"path":[4,140,2,1,6],"span":[2370,11,22]},{"path":[4,140,2,1,1],"span":[2370,23,32]},{"path":[4,140,2,1,3],"span":[2370,35,36]},{"path":[4,140,2,2],"span":[2371,2,37]},{"path":[4,140,2,2,4],"span":[2371,2,10]},{"path":[4,140,2,2,5],"span":[2371,11,16]},{"path":[4,140,2,2,1],"span":[2371,17,32]},{"path":[4,140,2,2,3],"span":[2371,35,36]},{"path":[4,140,2,3],"span":[2372,2,36]},{"path":[4,140,2,3,4],"span":[2372,2,10]},{"path":[4,140,2,3,5],"span":[2372,11,16]},{"path":[4,140,2,3,1],"span":[2372,17,31]},{"path":[4,140,2,3,3],"span":[2372,34,35]},{"path":[4,140,2,4],"span":[2373,2,32]},{"path":[4,140,2,4,4],"span":[2373,2,10]},{"path":[4,140,2,4,5],"span":[2373,11,17]},{"path":[4,140,2,4,1],"span":[2373,18,27]},{"path":[4,140,2,4,3],"span":[2373,30,31]},{"path":[4,140,2,5],"span":[2374,2,31]},{"path":[4,140,2,5,4],"span":[2374,2,10]},{"path":[4,140,2,5,5],"span":[2374,11,17]},{"path":[4,140,2,5,1],"span":[2374,18,26]},{"path":[4,140,2,5,3],"span":[2374,29,30]},{"path":[4,140,2,6],"span":[2375,2,39]},{"path":[4,140,2,6,4],"span":[2375,2,10]},{"path":[4,140,2,6,5],"span":[2375,11,17]},{"path":[4,140,2,6,1],"span":[2375,18,34]},{"path":[4,140,2,6,3],"span":[2375,37,38]},{"path":[4,140,2,7],"span":[2376,2,35]},{"path":[4,140,2,7,4],"span":[2376,2,10]},{"path":[4,140,2,7,5],"span":[2376,11,17]},{"path":[4,140,2,7,1],"span":[2376,18,30]},{"path":[4,140,2,7,3],"span":[2376,33,34]},{"path":[4,140,2,8],"span":[2377,2,39]},{"path":[4,140,2,8,4],"span":[2377,2,10]},{"path":[4,140,2,8,5],"span":[2377,11,16]},{"path":[4,140,2,8,1],"span":[2377,17,34]},{"path":[4,140,2,8,3],"span":[2377,37,38]},{"path":[4,140,2,9],"span":[2378,2,28]},{"path":[4,140,2,9,4],"span":[2378,2,10]},{"path":[4,140,2,9,5],"span":[2378,11,17]},{"path":[4,140,2,9,1],"span":[2378,18,22]},{"path":[4,140,2,9,3],"span":[2378,25,27]},{"path":[4,140,2,10],"span":[2379,2,45]},{"path":[4,140,2,10,4],"span":[2379,2,10]},{"path":[4,140,2,10,5],"span":[2379,11,17]},{"path":[4,140,2,10,1],"span":[2379,18,39]},{"path":[4,140,2,10,3],"span":[2379,42,44]},{"path":[4,141],"span":[2383,0,2393,1],"leadingComments":" MacOS Frameworks system library. To be mapped from MacFramework inbound model\n"},{"path":[4,141,1],"span":[2383,8,30]},{"path":[4,141,2,0],"span":[2384,2,27]},{"path":[4,141,2,0,4],"span":[2384,2,10]},{"path":[4,141,2,0,5],"span":[2384,11,17]},{"path":[4,141,2,0,1],"span":[2384,18,22]},{"path":[4,141,2,0,3],"span":[2384,25,26]},{"path":[4,141,2,1],"span":[2385,2,32]},{"path":[4,141,2,1,4],"span":[2385,2,10]},{"path":[4,141,2,1,5],"span":[2385,11,17]},{"path":[4,141,2,1,1],"span":[2385,18,27]},{"path":[4,141,2,1,3],"span":[2385,30,31]},{"path":[4,141,2,2],"span":[2386,2,27]},{"path":[4,141,2,2,4],"span":[2386,2,10]},{"path":[4,141,2,2,5],"span":[2386,11,17]},{"path":[4,141,2,2,1],"span":[2386,18,22]},{"path":[4,141,2,2,3],"span":[2386,25,26]},{"path":[4,141,2,3],"span":[2387,2,55]},{"path":[4,141,2,3,4],"span":[2387,2,10]},{"path":[4,141,2,3,6],"span":[2387,11,36]},{"path":[4,141,2,3,1],"span":[2387,37,50]},{"path":[4,141,2,3,3],"span":[2387,53,54]},{"path":[4,141,2,4],"span":[2388,2,36]},{"path":[4,141,2,4,4],"span":[2388,2,10]},{"path":[4,141,2,4,5],"span":[2388,11,17]},{"path":[4,141,2,4,1],"span":[2388,18,31]},{"path":[4,141,2,4,3],"span":[2388,34,35]},{"path":[4,141,2,5],"span":[2389,2,36]},{"path":[4,141,2,5,4],"span":[2389,2,10]},{"path":[4,141,2,5,5],"span":[2389,11,17]},{"path":[4,141,2,5,1],"span":[2389,18,31]},{"path":[4,141,2,5,3],"span":[2389,34,35]},{"path":[4,141,2,6],"span":[2390,2,40]},{"path":[4,141,2,6,4],"span":[2390,2,10]},{"path":[4,141,2,6,5],"span":[2390,11,17]},{"path":[4,141,2,6,1],"span":[2390,18,35]},{"path":[4,141,2,6,3],"span":[2390,38,39]},{"path":[4,141,2,7],"span":[2391,2,32]},{"path":[4,141,2,7,4],"span":[2391,2,10]},{"path":[4,141,2,7,5],"span":[2391,11,17]},{"path":[4,141,2,7,1],"span":[2391,18,27]},{"path":[4,141,2,7,3],"span":[2391,30,31]},{"path":[4,141,2,8],"span":[2392,2,30]},{"path":[4,141,2,8,4],"span":[2392,2,10]},{"path":[4,141,2,8,5],"span":[2392,11,17]},{"path":[4,141,2,8,1],"span":[2392,18,25]},{"path":[4,141,2,8,3],"span":[2392,28,29]},{"path":[4,142],"span":[2399,0,2402,1],"leadingComments":"\n A Mapped value is a numeric field that can optionally have a text looked up value.\n Typical in WMI fields.\n"},{"path":[4,142,1],"span":[2399,8,19]},{"path":[4,142,2,0],"span":[2400,2,18]},{"path":[4,142,2,0,5],"span":[2400,2,7]},{"path":[4,142,2,0,1],"span":[2400,8,13]},{"path":[4,142,2,0,3],"span":[2400,16,17]},{"path":[4,142,2,1],"span":[2401,2,27]},{"path":[4,142,2,1,4],"span":[2401,2,10]},{"path":[4,142,2,1,5],"span":[2401,11,17]},{"path":[4,142,2,1,1],"span":[2401,18,22]},{"path":[4,142,2,1,3],"span":[2401,25,26]},{"path":[4,143],"span":[2405,0,2408,1],"leadingComments":" Monitor Inventory with list of connected monitors "},{"path":[4,143,1],"span":[2405,8,24]},{"path":[4,143,2,0],"span":[2406,2,42]},{"path":[4,143,2,0,6],"span":[2406,2,27]},{"path":[4,143,2,0,1],"span":[2406,28,37]},{"path":[4,143,2,0,3],"span":[2406,40,41]},{"path":[4,143,2,1],"span":[2407,2,31]},{"path":[4,143,2,1,4],"span":[2407,2,10]},{"path":[4,143,2,1,6],"span":[2407,11,18]},{"path":[4,143,2,1,1],"span":[2407,19,26]},{"path":[4,143,2,1,3],"span":[2407,29,30]},{"path":[4,144],"span":[2412,0,2433,1],"leadingComments":" Monitor definition: normalized and with link to raw "},{"path":[4,144,1],"span":[2412,8,15]},{"path":[4,144,2,0],"span":[2414,2,24],"leadingComments":" catalog id of: CatalogMonitor\n"},{"path":[4,144,2,0,4],"span":[2414,2,10]},{"path":[4,144,2,0,5],"span":[2414,11,16]},{"path":[4,144,2,0,1],"span":[2414,17,19]},{"path":[4,144,2,0,3],"span":[2414,22,23]},{"path":[4,144,2,1],"span":[2417,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,144,2,1,4],"span":[2417,2,10]},{"path":[4,144,2,1,5],"span":[2417,11,16]},{"path":[4,144,2,1,1],"span":[2417,17,24]},{"path":[4,144,2,1,3],"span":[2417,27,28]},{"path":[4,144,2,2],"span":[2419,2,23]},{"path":[4,144,2,2,5],"span":[2419,2,8]},{"path":[4,144,2,2,1],"span":[2419,9,18]},{"path":[4,144,2,2,3],"span":[2419,21,22]},{"path":[4,144,2,3],"span":[2420,2,24]},{"path":[4,144,2,3,5],"span":[2420,2,8]},{"path":[4,144,2,3,1],"span":[2420,9,19]},{"path":[4,144,2,3,3],"span":[2420,22,23]},{"path":[4,144,2,4],"span":[2422,2,36]},{"path":[4,144,2,4,4],"span":[2422,2,10]},{"path":[4,144,2,4,5],"span":[2422,11,17]},{"path":[4,144,2,4,1],"span":[2422,18,31]},{"path":[4,144,2,4,3],"span":[2422,34,35]},{"path":[4,144,2,5],"span":[2423,2,50]},{"path":[4,144,2,5,6],"span":[2423,2,27]},{"path":[4,144,2,5,1],"span":[2423,28,45]},{"path":[4,144,2,5,3],"span":[2423,48,49]},{"path":[4,144,8,0],"span":[2425,2,2427,3]},{"path":[4,144,8,0,1],"span":[2425,8,12]},{"path":[4,144,2,6],"span":[2426,4,36]},{"path":[4,144,2,6,6],"span":[2426,4,22]},{"path":[4,144,2,6,1],"span":[2426,23,30]},{"path":[4,144,2,6,3],"span":[2426,33,35]},{"path":[4,144,2,7],"span":[2430,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,144,2,7,4],"span":[2430,2,10]},{"path":[4,144,2,7,6],"span":[2430,11,23]},{"path":[4,144,2,7,1],"span":[2430,24,37]},{"path":[4,144,2,7,3],"span":[2430,40,42]},{"path":[4,144,2,8],"span":[2432,2,47],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,144,2,8,4],"span":[2432,2,10]},{"path":[4,144,2,8,6],"span":[2432,11,25]},{"path":[4,144,2,8,1],"span":[2432,26,41]},{"path":[4,144,2,8,3],"span":[2432,44,46]},{"path":[4,145],"span":[2435,0,2444,1]},{"path":[4,145,1],"span":[2435,8,26]},{"path":[4,145,2,0],"span":[2436,2,19]},{"path":[4,145,2,0,5],"span":[2436,2,8]},{"path":[4,145,2,0,1],"span":[2436,9,14]},{"path":[4,145,2,0,3],"span":[2436,17,18]},{"path":[4,145,2,1],"span":[2437,2,36]},{"path":[4,145,2,1,4],"span":[2437,2,10]},{"path":[4,145,2,1,5],"span":[2437,11,17]},{"path":[4,145,2,1,1],"span":[2437,18,31]},{"path":[4,145,2,1,3],"span":[2437,34,35]},{"path":[4,145,2,2],"span":[2438,2,36]},{"path":[4,145,2,2,4],"span":[2438,2,10]},{"path":[4,145,2,2,5],"span":[2438,11,17]},{"path":[4,145,2,2,1],"span":[2438,18,31]},{"path":[4,145,2,2,3],"span":[2438,34,35]},{"path":[4,145,2,3],"span":[2439,2,33]},{"path":[4,145,2,3,4],"span":[2439,2,10]},{"path":[4,145,2,3,5],"span":[2439,11,17]},{"path":[4,145,2,3,1],"span":[2439,18,28]},{"path":[4,145,2,3,3],"span":[2439,31,32]},{"path":[4,145,2,4],"span":[2440,2,40]},{"path":[4,145,2,4,4],"span":[2440,2,10]},{"path":[4,145,2,4,5],"span":[2440,11,17]},{"path":[4,145,2,4,1],"span":[2440,18,35]},{"path":[4,145,2,4,3],"span":[2440,38,39]},{"path":[4,145,2,5],"span":[2441,2,39]},{"path":[4,145,2,5,4],"span":[2441,2,10]},{"path":[4,145,2,5,5],"span":[2441,11,17]},{"path":[4,145,2,5,1],"span":[2441,18,34]},{"path":[4,145,2,5,3],"span":[2441,37,38]},{"path":[4,145,2,6],"span":[2442,2,59]},{"path":[4,145,2,6,4],"span":[2442,2,10]},{"path":[4,145,2,6,6],"span":[2442,11,36]},{"path":[4,145,2,6,1],"span":[2442,37,54]},{"path":[4,145,2,6,3],"span":[2442,57,58]},{"path":[4,145,2,7],"span":[2443,2,32]},{"path":[4,145,2,7,4],"span":[2443,2,10]},{"path":[4,145,2,7,5],"span":[2443,11,17]},{"path":[4,145,2,7,1],"span":[2443,18,27]},{"path":[4,145,2,7,3],"span":[2443,30,31]},{"path":[4,146],"span":[2449,0,2455,1],"leadingComments":"\n Antivirus software (that could be even missing from scanned SW list.\n"},{"path":[4,146,1],"span":[2449,8,25]},{"path":[4,146,2,0],"span":[2450,2,27]},{"path":[4,146,2,0,4],"span":[2450,2,10]},{"path":[4,146,2,0,5],"span":[2450,11,17]},{"path":[4,146,2,0,1],"span":[2450,18,22]},{"path":[4,146,2,0,3],"span":[2450,25,26]},{"path":[4,146,2,1],"span":[2451,2,27]},{"path":[4,146,2,1,4],"span":[2451,2,10]},{"path":[4,146,2,1,5],"span":[2451,11,17]},{"path":[4,146,2,1,1],"span":[2451,18,22]},{"path":[4,146,2,1,3],"span":[2451,25,26]},{"path":[4,146,2,2],"span":[2452,2,28]},{"path":[4,146,2,2,4],"span":[2452,2,10]},{"path":[4,146,2,2,5],"span":[2452,11,15]},{"path":[4,146,2,2,1],"span":[2452,16,23]},{"path":[4,146,2,2,3],"span":[2452,26,27]},{"path":[4,146,2,3],"span":[2453,2,31]},{"path":[4,146,2,3,4],"span":[2453,2,10]},{"path":[4,146,2,3,5],"span":[2453,11,15]},{"path":[4,146,2,3,1],"span":[2453,16,26]},{"path":[4,146,2,3,3],"span":[2453,29,30]},{"path":[4,146,2,4],"span":[2454,2,33],"trailingComments":" filled only in case it was scanned sw (not windows registry)\n"},{"path":[4,146,2,4,4],"span":[2454,2,10]},{"path":[4,146,2,4,6],"span":[2454,11,19]},{"path":[4,146,2,4,1],"span":[2454,20,28]},{"path":[4,146,2,4,3],"span":[2454,31,32]},{"path":[4,147],"span":[2460,0,2470,1],"leadingComments":"\n Internet IP info, if external_ip is present and valid.\n"},{"path":[4,147,1],"span":[2460,8,14]},{"path":[4,147,2,0],"span":[2461,2,21]},{"path":[4,147,2,0,5],"span":[2461,2,8]},{"path":[4,147,2,0,1],"span":[2461,9,16]},{"path":[4,147,2,0,3],"span":[2461,19,20]},{"path":[4,147,2,1],"span":[2462,2,31]},{"path":[4,147,2,1,4],"span":[2462,2,10]},{"path":[4,147,2,1,5],"span":[2462,11,17]},{"path":[4,147,2,1,1],"span":[2462,18,26]},{"path":[4,147,2,1,3],"span":[2462,29,30]},{"path":[4,147,2,2],"span":[2463,2,31]},{"path":[4,147,2,2,4],"span":[2463,2,10]},{"path":[4,147,2,2,5],"span":[2463,11,17]},{"path":[4,147,2,2,1],"span":[2463,18,26]},{"path":[4,147,2,2,3],"span":[2463,29,30]},{"path":[4,147,2,3],"span":[2464,2,37]},{"path":[4,147,2,3,4],"span":[2464,2,10]},{"path":[4,147,2,3,5],"span":[2464,11,17]},{"path":[4,147,2,3,1],"span":[2464,18,32]},{"path":[4,147,2,3,3],"span":[2464,35,36]},{"path":[4,147,2,4],"span":[2465,2,35]},{"path":[4,147,2,4,4],"span":[2465,2,10]},{"path":[4,147,2,4,5],"span":[2465,11,17]},{"path":[4,147,2,4,1],"span":[2465,18,30]},{"path":[4,147,2,4,3],"span":[2465,33,34]},{"path":[4,147,2,5],"span":[2466,2,34]},{"path":[4,147,2,5,4],"span":[2466,2,10]},{"path":[4,147,2,5,5],"span":[2466,11,17]},{"path":[4,147,2,5,1],"span":[2466,18,29]},{"path":[4,147,2,5,3],"span":[2466,32,33]},{"path":[4,147,2,6],"span":[2467,2,35]},{"path":[4,147,2,6,4],"span":[2467,2,10]},{"path":[4,147,2,6,5],"span":[2467,11,17]},{"path":[4,147,2,6,1],"span":[2467,18,30]},{"path":[4,147,2,6,3],"span":[2467,33,34]},{"path":[4,147,2,7],"span":[2468,2,26]},{"path":[4,147,2,7,4],"span":[2468,2,10]},{"path":[4,147,2,7,5],"span":[2468,11,17]},{"path":[4,147,2,7,1],"span":[2468,18,21]},{"path":[4,147,2,7,3],"span":[2468,24,25]},{"path":[4,147,2,8],"span":[2469,2,35]},{"path":[4,147,2,8,4],"span":[2469,2,10]},{"path":[4,147,2,8,5],"span":[2469,11,17]},{"path":[4,147,2,8,1],"span":[2469,18,30]},{"path":[4,147,2,8,3],"span":[2469,33,34]},{"path":[4,148],"span":[2479,0,2483,1],"leadingComments":"\n Software Inventory with list of installed SW.\n Sources:\n - com.lansweeper.discovery.sensor.windows.v1.WindowsSoftwareInfo: section on Windows WMI/Local/SCCM\n - com.lansweeper.discovery.sensor.mac.v1.MacSoftware: section on Mac via SSH or local\n - com.lansweeper.discovery.sensor.unix.v1.Software: section Linux/Unix via SSH or local\n"},{"path":[4,148,1],"span":[2479,8,25]},{"path":[4,148,2,0],"span":[2480,2,42]},{"path":[4,148,2,0,6],"span":[2480,2,27]},{"path":[4,148,2,0,1],"span":[2480,28,37]},{"path":[4,148,2,0,3],"span":[2480,40,41]},{"path":[4,148,2,1],"span":[2481,2,33]},{"path":[4,148,2,1,4],"span":[2481,2,10]},{"path":[4,148,2,1,6],"span":[2481,11,19]},{"path":[4,148,2,1,1],"span":[2481,20,28]},{"path":[4,148,2,1,3],"span":[2481,31,32]},{"path":[4,148,9],"span":[2482,2,13],"trailingComments":" depcrecated software change event log\n"},{"path":[4,148,9,0],"span":[2482,11,12]},{"path":[4,148,9,0,1],"span":[2482,11,12]},{"path":[4,149],"span":[2494,0,2532,1],"leadingComments":"\n Software definition: normalized and with link to raw.\n Translated and enriched from:\n - com.lansweeper.discovery.sensor.windows.v1.SoftwareInfo\n - com.lansweeper.discovery.sensor.mac.v1.Software\n - com.lansweeper.discovery.sensor.unix.v1.SoftwareEntry\n"},{"path":[4,149,1],"span":[2494,8,16]},{"path":[4,149,2,0],"span":[2496,2,26]},{"path":[4,149,2,0,4],"span":[2496,2,10]},{"path":[4,149,2,0,5],"span":[2496,11,16]},{"path":[4,149,2,0,1],"span":[2496,17,21]},{"path":[4,149,2,0,3],"span":[2496,24,25]},{"path":[4,149,2,1],"span":[2497,2,29]},{"path":[4,149,2,1,4],"span":[2497,2,10]},{"path":[4,149,2,1,5],"span":[2497,11,16]},{"path":[4,149,2,1,1],"span":[2497,17,24]},{"path":[4,149,2,1,3],"span":[2497,27,28]},{"path":[4,149,2,2],"span":[2498,2,28]},{"path":[4,149,2,2,4],"span":[2498,2,10]},{"path":[4,149,2,2,5],"span":[2498,11,16]},{"path":[4,149,2,2,1],"span":[2498,17,23]},{"path":[4,149,2,2,3],"span":[2498,26,27]},{"path":[4,149,2,3],"span":[2501,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,149,2,3,4],"span":[2501,2,10]},{"path":[4,149,2,3,5],"span":[2501,11,16]},{"path":[4,149,2,3,1],"span":[2501,17,24]},{"path":[4,149,2,3,3],"span":[2501,27,28]},{"path":[4,149,2,4],"span":[2504,2,27],"leadingComments":" catalog id of: CatalogSoftware\n"},{"path":[4,149,2,4,4],"span":[2504,2,10]},{"path":[4,149,2,4,5],"span":[2504,11,16]},{"path":[4,149,2,4,1],"span":[2504,17,22]},{"path":[4,149,2,4,3],"span":[2504,25,26]},{"path":[4,149,2,5],"span":[2507,2,31],"leadingComments":" catalog id of: CatalogSoftware\n"},{"path":[4,149,2,5,4],"span":[2507,2,10]},{"path":[4,149,2,5,5],"span":[2507,11,16]},{"path":[4,149,2,5,1],"span":[2507,17,26]},{"path":[4,149,2,5,3],"span":[2507,29,30]},{"path":[4,149,2,6],"span":[2509,2,32]},{"path":[4,149,2,6,4],"span":[2509,2,10]},{"path":[4,149,2,6,5],"span":[2509,11,17]},{"path":[4,149,2,6,1],"span":[2509,18,27]},{"path":[4,149,2,6,3],"span":[2509,30,31]},{"path":[4,149,2,7],"span":[2510,2,31]},{"path":[4,149,2,7,4],"span":[2510,2,10]},{"path":[4,149,2,7,5],"span":[2510,11,17]},{"path":[4,149,2,7,1],"span":[2510,18,26]},{"path":[4,149,2,7,3],"span":[2510,29,30]},{"path":[4,149,2,8],"span":[2511,2,32]},{"path":[4,149,2,8,4],"span":[2511,2,10]},{"path":[4,149,2,8,5],"span":[2511,11,17]},{"path":[4,149,2,8,1],"span":[2511,18,27]},{"path":[4,149,2,8,3],"span":[2511,30,31]},{"path":[4,149,2,9],"span":[2512,2,28]},{"path":[4,149,2,9,4],"span":[2512,2,10]},{"path":[4,149,2,9,5],"span":[2512,11,17]},{"path":[4,149,2,9,1],"span":[2512,18,22]},{"path":[4,149,2,9,3],"span":[2512,25,27]},{"path":[4,149,2,10],"span":[2513,2,31]},{"path":[4,149,2,10,4],"span":[2513,2,10]},{"path":[4,149,2,10,5],"span":[2513,11,17]},{"path":[4,149,2,10,1],"span":[2513,18,25]},{"path":[4,149,2,10,3],"span":[2513,28,30]},{"path":[4,149,2,11],"span":[2514,2,34]},{"path":[4,149,2,11,4],"span":[2514,2,10]},{"path":[4,149,2,11,5],"span":[2514,11,17]},{"path":[4,149,2,11,1],"span":[2514,18,28]},{"path":[4,149,2,11,3],"span":[2514,31,33]},{"path":[4,149,2,12],"span":[2515,2,31]},{"path":[4,149,2,12,4],"span":[2515,2,10]},{"path":[4,149,2,12,5],"span":[2515,11,17]},{"path":[4,149,2,12,1],"span":[2515,18,25]},{"path":[4,149,2,12,3],"span":[2515,28,30]},{"path":[4,149,2,13],"span":[2516,2,29]},{"path":[4,149,2,13,4],"span":[2516,2,10]},{"path":[4,149,2,13,5],"span":[2516,11,17]},{"path":[4,149,2,13,1],"span":[2516,18,23]},{"path":[4,149,2,13,3],"span":[2516,26,28]},{"path":[4,149,2,14],"span":[2517,2,28]},{"path":[4,149,2,14,4],"span":[2517,2,10]},{"path":[4,149,2,14,5],"span":[2517,11,17]},{"path":[4,149,2,14,1],"span":[2517,18,22]},{"path":[4,149,2,14,3],"span":[2517,25,27]},{"path":[4,149,2,15],"span":[2518,2,28]},{"path":[4,149,2,15,4],"span":[2518,2,10]},{"path":[4,149,2,15,5],"span":[2518,11,17]},{"path":[4,149,2,15,1],"span":[2518,18,22]},{"path":[4,149,2,15,3],"span":[2518,25,27]},{"path":[4,149,2,16],"span":[2520,2,27]},{"path":[4,149,2,16,4],"span":[2520,2,10]},{"path":[4,149,2,16,5],"span":[2520,11,17]},{"path":[4,149,2,16,1],"span":[2520,18,21]},{"path":[4,149,2,16,3],"span":[2520,24,26]},{"path":[4,149,2,17],"span":[2522,2,23]},{"path":[4,149,2,17,6],"span":[2522,2,13]},{"path":[4,149,2,17,1],"span":[2522,14,17]},{"path":[4,149,2,17,3],"span":[2522,20,22]},{"path":[4,149,2,18],"span":[2523,2,32],"trailingComments":" optional raw hash of SW\n"},{"path":[4,149,2,18,4],"span":[2523,2,10]},{"path":[4,149,2,18,5],"span":[2523,11,17]},{"path":[4,149,2,18,1],"span":[2523,18,26]},{"path":[4,149,2,18,3],"span":[2523,29,31]},{"path":[4,149,2,19],"span":[2524,2,32],"trailingComments":" optional NRE hash of SW\n"},{"path":[4,149,2,19,4],"span":[2524,2,10]},{"path":[4,149,2,19,5],"span":[2524,11,17]},{"path":[4,149,2,19,1],"span":[2524,18,26]},{"path":[4,149,2,19,3],"span":[2524,29,31]},{"path":[4,149,2,20],"span":[2527,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,149,2,20,4],"span":[2527,2,10]},{"path":[4,149,2,20,6],"span":[2527,11,23]},{"path":[4,149,2,20,1],"span":[2527,24,37]},{"path":[4,149,2,20,3],"span":[2527,40,42]},{"path":[4,149,2,21],"span":[2529,2,49],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,149,2,21,4],"span":[2529,2,10]},{"path":[4,149,2,21,6],"span":[2529,11,26]},{"path":[4,149,2,21,1],"span":[2529,27,43]},{"path":[4,149,2,21,3],"span":[2529,46,48]},{"path":[4,149,2,22],"span":[2531,2,47],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,149,2,22,4],"span":[2531,2,10]},{"path":[4,149,2,22,6],"span":[2531,11,26]},{"path":[4,149,2,22,1],"span":[2531,27,41]},{"path":[4,149,2,22,3],"span":[2531,44,46]},{"path":[4,150],"span":[2537,0,2551,1],"leadingComments":"\n Raw Software definition, as mapped from Windows, Mac, Linux.\n"},{"path":[4,150,1],"span":[2537,8,19]},{"path":[4,150,2,0],"span":[2538,2,18]},{"path":[4,150,2,0,5],"span":[2538,2,8]},{"path":[4,150,2,0,1],"span":[2538,9,13]},{"path":[4,150,2,0,3],"span":[2538,16,17]},{"path":[4,150,2,1],"span":[2540,2,29]},{"path":[4,150,2,1,4],"span":[2540,2,10]},{"path":[4,150,2,1,5],"span":[2540,11,17]},{"path":[4,150,2,1,1],"span":[2540,18,24]},{"path":[4,150,2,1,3],"span":[2540,27,28]},{"path":[4,150,2,2],"span":[2541,2,30]},{"path":[4,150,2,2,4],"span":[2541,2,10]},{"path":[4,150,2,2,5],"span":[2541,11,17]},{"path":[4,150,2,2,1],"span":[2541,18,25]},{"path":[4,150,2,2,3],"span":[2541,28,29]},{"path":[4,150,2,3],"span":[2542,2,27]},{"path":[4,150,2,3,4],"span":[2542,2,10]},{"path":[4,150,2,3,5],"span":[2542,11,17]},{"path":[4,150,2,3,1],"span":[2542,18,22]},{"path":[4,150,2,3,3],"span":[2542,25,26]},{"path":[4,150,2,4],"span":[2543,2,31]},{"path":[4,150,2,4,4],"span":[2543,2,10]},{"path":[4,150,2,4,5],"span":[2543,11,17]},{"path":[4,150,2,4,1],"span":[2543,18,26]},{"path":[4,150,2,4,3],"span":[2543,29,30]},{"path":[4,150,2,5],"span":[2544,2,27],"trailingComments":" when available the specific sw arch\n"},{"path":[4,150,2,5,4],"span":[2544,2,10]},{"path":[4,150,2,5,5],"span":[2544,11,17]},{"path":[4,150,2,5,1],"span":[2544,18,22]},{"path":[4,150,2,5,3],"span":[2544,25,26]},{"path":[4,150,2,6],"span":[2545,2,54]},{"path":[4,150,2,6,4],"span":[2545,2,10]},{"path":[4,150,2,6,6],"span":[2545,11,36]},{"path":[4,150,2,6,1],"span":[2545,37,49]},{"path":[4,150,2,6,3],"span":[2545,52,53]},{"path":[4,150,2,7],"span":[2546,2,34],"trailingComments":" Registry | System | MsStore | Package | Custom | etc\n"},{"path":[4,150,2,7,4],"span":[2546,2,10]},{"path":[4,150,2,7,5],"span":[2546,11,17]},{"path":[4,150,2,7,1],"span":[2546,18,29]},{"path":[4,150,2,7,3],"span":[2546,32,33]},{"path":[4,150,2,8],"span":[2548,2,28],"trailingComments":" optional SW id on the client side\n"},{"path":[4,150,2,8,4],"span":[2548,2,10]},{"path":[4,150,2,8,5],"span":[2548,11,17]},{"path":[4,150,2,8,1],"span":[2548,18,23]},{"path":[4,150,2,8,3],"span":[2548,26,27]},{"path":[4,150,2,9],"span":[2550,2,37]},{"path":[4,150,2,9,4],"span":[2550,2,10]},{"path":[4,150,2,9,5],"span":[2550,11,15]},{"path":[4,150,2,9,1],"span":[2550,16,31]},{"path":[4,150,2,9,3],"span":[2550,34,36]},{"path":[4,151],"span":[2557,0,2572,1],"leadingComments":"\n Log entry for software change log, tracking install, uninstall and update.\n"},{"path":[4,151,1],"span":[2557,8,27]},{"path":[4,151,4,0],"span":[2558,2,2562,3]},{"path":[4,151,4,0,1],"span":[2558,7,16]},{"path":[4,151,4,0,2,0],"span":[2559,4,16]},{"path":[4,151,4,0,2,0,1],"span":[2559,4,11]},{"path":[4,151,4,0,2,0,2],"span":[2559,14,15]},{"path":[4,151,4,0,2,1],"span":[2560,4,18]},{"path":[4,151,4,0,2,1,1],"span":[2560,4,13]},{"path":[4,151,4,0,2,1,2],"span":[2560,16,17]},{"path":[4,151,4,0,2,2],"span":[2561,4,15]},{"path":[4,151,4,0,2,2,1],"span":[2561,4,10]},{"path":[4,151,4,0,2,2,2],"span":[2561,13,14]},{"path":[4,151,2,0],"span":[2564,2,27]},{"path":[4,151,2,0,6],"span":[2564,2,11]},{"path":[4,151,2,0,1],"span":[2564,12,22]},{"path":[4,151,2,0,3],"span":[2564,25,26]},{"path":[4,151,2,1],"span":[2566,2,38]},{"path":[4,151,2,1,6],"span":[2566,2,27]},{"path":[4,151,2,1,1],"span":[2566,28,33]},{"path":[4,151,2,1,3],"span":[2566,36,37]},{"path":[4,151,2,2],"span":[2567,2,45]},{"path":[4,151,2,2,4],"span":[2567,2,10]},{"path":[4,151,2,2,6],"span":[2567,11,36]},{"path":[4,151,2,2,1],"span":[2567,37,40]},{"path":[4,151,2,2,3],"span":[2567,43,44]},{"path":[4,151,2,3],"span":[2569,2,24]},{"path":[4,151,2,3,6],"span":[2569,2,10]},{"path":[4,151,2,3,1],"span":[2569,11,19]},{"path":[4,151,2,3,3],"span":[2569,22,23]},{"path":[4,151,2,4],"span":[2570,2,38]},{"path":[4,151,2,4,4],"span":[2570,2,10]},{"path":[4,151,2,4,6],"span":[2570,11,19]},{"path":[4,151,2,4,1],"span":[2570,20,33]},{"path":[4,151,2,4,3],"span":[2570,36,37]},{"path":[4,152],"span":[2575,0,2580,1],"leadingComments":" macOS installation history - To be mapped from inbound entity: MacInstallHistory\n"},{"path":[4,152,1],"span":[2575,8,33]},{"path":[4,152,2,0],"span":[2576,2,27]},{"path":[4,152,2,0,4],"span":[2576,2,10]},{"path":[4,152,2,0,5],"span":[2576,11,17]},{"path":[4,152,2,0,1],"span":[2576,18,22]},{"path":[4,152,2,0,3],"span":[2576,25,26]},{"path":[4,152,2,1],"span":[2577,2,54]},{"path":[4,152,2,1,4],"span":[2577,2,10]},{"path":[4,152,2,1,6],"span":[2577,11,36]},{"path":[4,152,2,1,1],"span":[2577,37,49]},{"path":[4,152,2,1,3],"span":[2577,52,53]},{"path":[4,152,2,2],"span":[2578,2,38]},{"path":[4,152,2,2,4],"span":[2578,2,10]},{"path":[4,152,2,2,5],"span":[2578,11,17]},{"path":[4,152,2,2,1],"span":[2578,18,33]},{"path":[4,152,2,2,3],"span":[2578,36,37]},{"path":[4,152,2,3],"span":[2579,2,37]},{"path":[4,152,2,3,4],"span":[2579,2,10]},{"path":[4,152,2,3,5],"span":[2579,11,17]},{"path":[4,152,2,3,1],"span":[2579,18,32]},{"path":[4,152,2,3,3],"span":[2579,35,36]},{"path":[4,153],"span":[2584,0,2618,1],"leadingDetachedComments":[" <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< CATALOG ENTITIES >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n"]},{"path":[4,153,1],"span":[2584,8,20]},{"path":[4,153,2,0],"span":[2585,2,16]},{"path":[4,153,2,0,5],"span":[2585,2,7]},{"path":[4,153,2,0,1],"span":[2585,9,11]},{"path":[4,153,2,0,3],"span":[2585,14,15]},{"path":[4,153,2,1],"span":[2586,2,23]},{"path":[4,153,2,1,5],"span":[2586,2,8]},{"path":[4,153,2,1,1],"span":[2586,9,18]},{"path":[4,153,2,1,3],"span":[2586,21,22]},{"path":[4,153,2,2],"span":[2588,2,32]},{"path":[4,153,2,2,4],"span":[2588,2,10]},{"path":[4,153,2,2,5],"span":[2588,11,16]},{"path":[4,153,2,2,1],"span":[2588,17,26]},{"path":[4,153,2,2,3],"span":[2588,29,31]},{"path":[4,153,2,3],"span":[2589,2,58]},{"path":[4,153,2,3,4],"span":[2589,2,10]},{"path":[4,153,2,3,6],"span":[2589,11,36]},{"path":[4,153,2,3,1],"span":[2589,37,53]},{"path":[4,153,2,3,3],"span":[2589,56,57]},{"path":[4,153,2,4],"span":[2591,2,35]},{"path":[4,153,2,4,4],"span":[2591,2,10]},{"path":[4,153,2,4,5],"span":[2591,11,17]},{"path":[4,153,2,4,1],"span":[2591,18,30]},{"path":[4,153,2,4,3],"span":[2591,33,34]},{"path":[4,153,2,5],"span":[2592,2,37]},{"path":[4,153,2,5,4],"span":[2592,2,10]},{"path":[4,153,2,5,5],"span":[2592,11,17]},{"path":[4,153,2,5,1],"span":[2592,18,32]},{"path":[4,153,2,5,3],"span":[2592,35,36]},{"path":[4,153,2,6],"span":[2593,2,39]},{"path":[4,153,2,6,4],"span":[2593,2,10]},{"path":[4,153,2,6,5],"span":[2593,11,17]},{"path":[4,153,2,6,1],"span":[2593,18,34]},{"path":[4,153,2,6,3],"span":[2593,37,38]},{"path":[4,153,2,7],"span":[2594,2,35]},{"path":[4,153,2,7,4],"span":[2594,2,10]},{"path":[4,153,2,7,5],"span":[2594,11,17]},{"path":[4,153,2,7,1],"span":[2594,18,30]},{"path":[4,153,2,7,3],"span":[2594,33,34]},{"path":[4,153,2,8],"span":[2595,2,43]},{"path":[4,153,2,8,4],"span":[2595,2,10]},{"path":[4,153,2,8,5],"span":[2595,11,17]},{"path":[4,153,2,8,1],"span":[2595,18,37]},{"path":[4,153,2,8,3],"span":[2595,40,42]},{"path":[4,153,2,9],"span":[2596,2,35]},{"path":[4,153,2,9,4],"span":[2596,2,10]},{"path":[4,153,2,9,5],"span":[2596,11,17]},{"path":[4,153,2,9,1],"span":[2596,18,29]},{"path":[4,153,2,9,3],"span":[2596,32,34]},{"path":[4,153,2,10],"span":[2597,2,35]},{"path":[4,153,2,10,4],"span":[2597,2,10]},{"path":[4,153,2,10,5],"span":[2597,11,17]},{"path":[4,153,2,10,1],"span":[2597,18,29]},{"path":[4,153,2,10,3],"span":[2597,32,34]},{"path":[4,153,2,11],"span":[2598,2,37]},{"path":[4,153,2,11,4],"span":[2598,2,10]},{"path":[4,153,2,11,5],"span":[2598,11,17]},{"path":[4,153,2,11,1],"span":[2598,18,31]},{"path":[4,153,2,11,3],"span":[2598,34,36]},{"path":[4,153,2,12],"span":[2599,2,40]},{"path":[4,153,2,12,4],"span":[2599,2,10]},{"path":[4,153,2,12,5],"span":[2599,11,17]},{"path":[4,153,2,12,1],"span":[2599,18,34]},{"path":[4,153,2,12,3],"span":[2599,37,39]},{"path":[4,153,2,13],"span":[2600,2,39]},{"path":[4,153,2,13,4],"span":[2600,2,10]},{"path":[4,153,2,13,5],"span":[2600,11,17]},{"path":[4,153,2,13,1],"span":[2600,18,33]},{"path":[4,153,2,13,3],"span":[2600,36,38]},{"path":[4,153,2,14],"span":[2601,2,36]},{"path":[4,153,2,14,4],"span":[2601,2,10]},{"path":[4,153,2,14,5],"span":[2601,11,17]},{"path":[4,153,2,14,1],"span":[2601,18,30]},{"path":[4,153,2,14,3],"span":[2601,33,35]},{"path":[4,153,2,15],"span":[2602,2,43]},{"path":[4,153,2,15,4],"span":[2602,2,10]},{"path":[4,153,2,15,5],"span":[2602,11,17]},{"path":[4,153,2,15,1],"span":[2602,18,37]},{"path":[4,153,2,15,3],"span":[2602,40,42]},{"path":[4,153,2,16],"span":[2603,2,37]},{"path":[4,153,2,16,4],"span":[2603,2,10]},{"path":[4,153,2,16,5],"span":[2603,11,17]},{"path":[4,153,2,16,1],"span":[2603,18,31]},{"path":[4,153,2,16,3],"span":[2603,34,36]},{"path":[4,153,2,17],"span":[2604,2,40]},{"path":[4,153,2,17,4],"span":[2604,2,10]},{"path":[4,153,2,17,5],"span":[2604,11,17]},{"path":[4,153,2,17,1],"span":[2604,18,34]},{"path":[4,153,2,17,3],"span":[2604,37,39]},{"path":[4,153,2,18],"span":[2605,2,41]},{"path":[4,153,2,18,4],"span":[2605,2,10]},{"path":[4,153,2,18,5],"span":[2605,11,17]},{"path":[4,153,2,18,1],"span":[2605,18,35]},{"path":[4,153,2,18,3],"span":[2605,38,40]},{"path":[4,153,2,19],"span":[2606,2,39]},{"path":[4,153,2,19,4],"span":[2606,2,10]},{"path":[4,153,2,19,5],"span":[2606,11,17]},{"path":[4,153,2,19,1],"span":[2606,18,33]},{"path":[4,153,2,19,3],"span":[2606,36,38]},{"path":[4,153,2,20],"span":[2607,2,41]},{"path":[4,153,2,20,4],"span":[2607,2,10]},{"path":[4,153,2,20,5],"span":[2607,11,17]},{"path":[4,153,2,20,1],"span":[2607,18,35]},{"path":[4,153,2,20,3],"span":[2607,38,40]},{"path":[4,153,2,21],"span":[2608,2,38]},{"path":[4,153,2,21,4],"span":[2608,2,10]},{"path":[4,153,2,21,5],"span":[2608,11,17]},{"path":[4,153,2,21,1],"span":[2608,18,32]},{"path":[4,153,2,21,3],"span":[2608,35,37]},{"path":[4,153,2,22],"span":[2610,2,36]},{"path":[4,153,2,22,4],"span":[2610,2,10]},{"path":[4,153,2,22,5],"span":[2610,11,15]},{"path":[4,153,2,22,1],"span":[2610,16,30]},{"path":[4,153,2,22,3],"span":[2610,33,35]},{"path":[4,153,2,23],"span":[2611,2,36]},{"path":[4,153,2,23,4],"span":[2611,2,10]},{"path":[4,153,2,23,5],"span":[2611,11,15]},{"path":[4,153,2,23,1],"span":[2611,16,30]},{"path":[4,153,2,23,3],"span":[2611,33,35]},{"path":[4,153,2,24],"span":[2612,2,36]},{"path":[4,153,2,24,4],"span":[2612,2,10]},{"path":[4,153,2,24,5],"span":[2612,11,15]},{"path":[4,153,2,24,1],"span":[2612,16,30]},{"path":[4,153,2,24,3],"span":[2612,33,35]},{"path":[4,153,2,25],"span":[2613,2,38]},{"path":[4,153,2,25,4],"span":[2613,2,10]},{"path":[4,153,2,25,5],"span":[2613,11,15]},{"path":[4,153,2,25,1],"span":[2613,16,32]},{"path":[4,153,2,25,3],"span":[2613,35,37]},{"path":[4,153,2,26],"span":[2614,2,38]},{"path":[4,153,2,26,4],"span":[2614,2,10]},{"path":[4,153,2,26,5],"span":[2614,11,15]},{"path":[4,153,2,26,1],"span":[2614,16,32]},{"path":[4,153,2,26,3],"span":[2614,35,37]},{"path":[4,153,2,27],"span":[2615,2,38]},{"path":[4,153,2,27,4],"span":[2615,2,10]},{"path":[4,153,2,27,5],"span":[2615,11,15]},{"path":[4,153,2,27,1],"span":[2615,16,32]},{"path":[4,153,2,27,3],"span":[2615,35,37]},{"path":[4,153,2,28],"span":[2617,2,34],"trailingComments":" relevant only in search result\n"},{"path":[4,153,2,28,4],"span":[2617,2,10]},{"path":[4,153,2,28,5],"span":[2617,11,16]},{"path":[4,153,2,28,1],"span":[2617,17,28]},{"path":[4,153,2,28,3],"span":[2617,31,33]},{"path":[4,154],"span":[2620,0,2655,1]},{"path":[4,154,1],"span":[2620,8,20]},{"path":[4,154,2,0],"span":[2621,2,15]},{"path":[4,154,2,0,5],"span":[2621,2,7]},{"path":[4,154,2,0,1],"span":[2621,8,10]},{"path":[4,154,2,0,3],"span":[2621,13,14]},{"path":[4,154,2,1],"span":[2623,2,20]},{"path":[4,154,2,1,5],"span":[2623,2,7]},{"path":[4,154,2,1,1],"span":[2623,8,15]},{"path":[4,154,2,1,3],"span":[2623,18,19]},{"path":[4,154,2,2],"span":[2624,2,26]},{"path":[4,154,2,2,5],"span":[2624,2,8]},{"path":[4,154,2,2,1],"span":[2624,9,21]},{"path":[4,154,2,2,3],"span":[2624,24,25]},{"path":[4,154,2,3],"span":[2626,2,36]},{"path":[4,154,2,3,4],"span":[2626,2,10]},{"path":[4,154,2,3,5],"span":[2626,11,16]},{"path":[4,154,2,3,1],"span":[2626,17,31]},{"path":[4,154,2,3,3],"span":[2626,34,35]},{"path":[4,154,2,4],"span":[2627,2,40]},{"path":[4,154,2,4,4],"span":[2627,2,10]},{"path":[4,154,2,4,5],"span":[2627,11,17]},{"path":[4,154,2,4,1],"span":[2627,18,35]},{"path":[4,154,2,4,3],"span":[2627,38,39]},{"path":[4,154,2,5],"span":[2629,2,32]},{"path":[4,154,2,5,4],"span":[2629,2,10]},{"path":[4,154,2,5,5],"span":[2629,11,16]},{"path":[4,154,2,5,1],"span":[2629,17,26]},{"path":[4,154,2,5,3],"span":[2629,29,31]},{"path":[4,154,2,6],"span":[2630,2,31]},{"path":[4,154,2,6,4],"span":[2630,2,10]},{"path":[4,154,2,6,5],"span":[2630,11,15]},{"path":[4,154,2,6,1],"span":[2630,16,25]},{"path":[4,154,2,6,3],"span":[2630,28,30]},{"path":[4,154,2,7],"span":[2631,2,34]},{"path":[4,154,2,7,4],"span":[2631,2,10]},{"path":[4,154,2,7,5],"span":[2631,11,17]},{"path":[4,154,2,7,1],"span":[2631,18,28]},{"path":[4,154,2,7,3],"span":[2631,31,33]},{"path":[4,154,2,8],"span":[2632,2,31]},{"path":[4,154,2,8,4],"span":[2632,2,10]},{"path":[4,154,2,8,5],"span":[2632,11,17]},{"path":[4,154,2,8,1],"span":[2632,18,25]},{"path":[4,154,2,8,3],"span":[2632,28,30]},{"path":[4,154,2,9],"span":[2633,2,55]},{"path":[4,154,2,9,4],"span":[2633,2,10]},{"path":[4,154,2,9,6],"span":[2633,11,36]},{"path":[4,154,2,9,1],"span":[2633,37,49]},{"path":[4,154,2,9,3],"span":[2633,52,54]},{"path":[4,154,2,10],"span":[2634,2,52]},{"path":[4,154,2,10,4],"span":[2634,2,10]},{"path":[4,154,2,10,6],"span":[2634,11,36]},{"path":[4,154,2,10,1],"span":[2634,37,46]},{"path":[4,154,2,10,3],"span":[2634,49,51]},{"path":[4,154,2,11],"span":[2635,2,51]},{"path":[4,154,2,11,4],"span":[2635,2,10]},{"path":[4,154,2,11,6],"span":[2635,11,36]},{"path":[4,154,2,11,1],"span":[2635,37,45]},{"path":[4,154,2,11,3],"span":[2635,48,50]},{"path":[4,154,2,12],"span":[2636,2,43]},{"path":[4,154,2,12,4],"span":[2636,2,10]},{"path":[4,154,2,12,5],"span":[2636,11,17]},{"path":[4,154,2,12,1],"span":[2636,18,37]},{"path":[4,154,2,12,3],"span":[2636,40,42]},{"path":[4,154,2,13],"span":[2638,2,35]},{"path":[4,154,2,13,4],"span":[2638,2,10]},{"path":[4,154,2,13,5],"span":[2638,11,17]},{"path":[4,154,2,13,1],"span":[2638,18,29]},{"path":[4,154,2,13,3],"span":[2638,32,34]},{"path":[4,154,2,14],"span":[2639,2,37]},{"path":[4,154,2,14,4],"span":[2639,2,10]},{"path":[4,154,2,14,5],"span":[2639,11,17]},{"path":[4,154,2,14,1],"span":[2639,18,31]},{"path":[4,154,2,14,3],"span":[2639,34,36]},{"path":[4,154,2,15],"span":[2641,2,39]},{"path":[4,154,2,15,4],"span":[2641,2,10]},{"path":[4,154,2,15,5],"span":[2641,11,17]},{"path":[4,154,2,15,1],"span":[2641,18,33]},{"path":[4,154,2,15,3],"span":[2641,36,38]},{"path":[4,154,2,16],"span":[2642,2,43]},{"path":[4,154,2,16,4],"span":[2642,2,10]},{"path":[4,154,2,16,5],"span":[2642,11,17]},{"path":[4,154,2,16,1],"span":[2642,18,37]},{"path":[4,154,2,16,3],"span":[2642,40,42]},{"path":[4,154,2,17],"span":[2643,2,38]},{"path":[4,154,2,17,4],"span":[2643,2,10]},{"path":[4,154,2,17,5],"span":[2643,11,17]},{"path":[4,154,2,17,1],"span":[2643,18,32]},{"path":[4,154,2,17,3],"span":[2643,35,37]},{"path":[4,154,2,18],"span":[2644,2,38]},{"path":[4,154,2,18,4],"span":[2644,2,10]},{"path":[4,154,2,18,5],"span":[2644,11,17]},{"path":[4,154,2,18,1],"span":[2644,18,32]},{"path":[4,154,2,18,3],"span":[2644,35,37]},{"path":[4,154,2,19],"span":[2645,2,41]},{"path":[4,154,2,19,4],"span":[2645,2,10]},{"path":[4,154,2,19,5],"span":[2645,11,15]},{"path":[4,154,2,19,1],"span":[2645,18,35]},{"path":[4,154,2,19,3],"span":[2645,38,40]},{"path":[4,154,2,20],"span":[2646,2,42]},{"path":[4,154,2,20,4],"span":[2646,2,10]},{"path":[4,154,2,20,5],"span":[2646,11,17]},{"path":[4,154,2,20,1],"span":[2646,18,36]},{"path":[4,154,2,20,3],"span":[2646,39,41]},{"path":[4,154,2,21],"span":[2648,2,32]},{"path":[4,154,2,21,4],"span":[2648,2,10]},{"path":[4,154,2,21,5],"span":[2648,11,17]},{"path":[4,154,2,21,1],"span":[2648,18,26]},{"path":[4,154,2,21,3],"span":[2648,29,31]},{"path":[4,154,2,22],"span":[2650,2,33]},{"path":[4,154,2,22,4],"span":[2650,2,10]},{"path":[4,154,2,22,5],"span":[2650,11,16]},{"path":[4,154,2,22,1],"span":[2650,17,27]},{"path":[4,154,2,22,3],"span":[2650,30,32]},{"path":[4,154,2,23],"span":[2652,2,59]},{"path":[4,154,2,23,4],"span":[2652,2,10]},{"path":[4,154,2,23,6],"span":[2652,11,36]},{"path":[4,154,2,23,1],"span":[2652,37,53]},{"path":[4,154,2,23,3],"span":[2652,56,58]},{"path":[4,154,2,24],"span":[2654,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,154,2,24,4],"span":[2654,2,10]},{"path":[4,154,2,24,5],"span":[2654,11,16]},{"path":[4,154,2,24,1],"span":[2654,17,28]},{"path":[4,154,2,24,3],"span":[2654,31,33]},{"path":[4,155],"span":[2657,0,2690,1]},{"path":[4,155,1],"span":[2657,8,17]},{"path":[4,155,2,0],"span":[2658,2,15]},{"path":[4,155,2,0,5],"span":[2658,2,7]},{"path":[4,155,2,0,1],"span":[2658,8,10]},{"path":[4,155,2,0,3],"span":[2658,13,14]},{"path":[4,155,2,1],"span":[2660,2,21]},{"path":[4,155,2,1,5],"span":[2660,2,8]},{"path":[4,155,2,1,1],"span":[2660,9,16]},{"path":[4,155,2,1,3],"span":[2660,19,20]},{"path":[4,155,2,2],"span":[2662,2,33]},{"path":[4,155,2,2,4],"span":[2662,2,10]},{"path":[4,155,2,2,5],"span":[2662,11,17]},{"path":[4,155,2,2,1],"span":[2662,18,28]},{"path":[4,155,2,2,3],"span":[2662,31,32]},{"path":[4,155,2,3],"span":[2663,2,32]},{"path":[4,155,2,3,4],"span":[2663,2,10]},{"path":[4,155,2,3,5],"span":[2663,11,17]},{"path":[4,155,2,3,1],"span":[2663,18,26]},{"path":[4,155,2,3,3],"span":[2663,29,31]},{"path":[4,155,2,4],"span":[2664,2,38]},{"path":[4,155,2,4,4],"span":[2664,2,10]},{"path":[4,155,2,4,5],"span":[2664,11,17]},{"path":[4,155,2,4,1],"span":[2664,18,33]},{"path":[4,155,2,4,3],"span":[2664,36,37]},{"path":[4,155,2,5],"span":[2666,2,33]},{"path":[4,155,2,5,4],"span":[2666,2,10]},{"path":[4,155,2,5,5],"span":[2666,11,16]},{"path":[4,155,2,5,1],"span":[2666,17,28]},{"path":[4,155,2,5,3],"span":[2666,31,32]},{"path":[4,155,2,6],"span":[2667,2,29]},{"path":[4,155,2,6,4],"span":[2667,2,10]},{"path":[4,155,2,6,5],"span":[2667,11,16]},{"path":[4,155,2,6,1],"span":[2667,17,24]},{"path":[4,155,2,6,3],"span":[2667,27,28]},{"path":[4,155,2,7],"span":[2668,2,31]},{"path":[4,155,2,7,4],"span":[2668,2,10]},{"path":[4,155,2,7,5],"span":[2668,11,16]},{"path":[4,155,2,7,1],"span":[2668,17,26]},{"path":[4,155,2,7,3],"span":[2668,29,30]},{"path":[4,155,2,8],"span":[2670,2,54]},{"path":[4,155,2,8,4],"span":[2670,2,10]},{"path":[4,155,2,8,6],"span":[2670,11,36]},{"path":[4,155,2,8,1],"span":[2670,37,49]},{"path":[4,155,2,8,3],"span":[2670,52,53]},{"path":[4,155,2,9],"span":[2671,2,51]},{"path":[4,155,2,9,4],"span":[2671,2,10]},{"path":[4,155,2,9,6],"span":[2671,11,36]},{"path":[4,155,2,9,1],"span":[2671,37,45]},{"path":[4,155,2,9,3],"span":[2671,48,50]},{"path":[4,155,2,10],"span":[2672,2,51]},{"path":[4,155,2,10,4],"span":[2672,2,10]},{"path":[4,155,2,10,6],"span":[2672,11,36]},{"path":[4,155,2,10,1],"span":[2672,37,45]},{"path":[4,155,2,10,3],"span":[2672,48,50]},{"path":[4,155,2,11],"span":[2673,2,52]},{"path":[4,155,2,11,4],"span":[2673,2,10]},{"path":[4,155,2,11,6],"span":[2673,11,36]},{"path":[4,155,2,11,1],"span":[2673,37,46]},{"path":[4,155,2,11,3],"span":[2673,49,51]},{"path":[4,155,2,12],"span":[2674,2,43]},{"path":[4,155,2,12,4],"span":[2674,2,10]},{"path":[4,155,2,12,5],"span":[2674,11,17]},{"path":[4,155,2,12,1],"span":[2674,18,37]},{"path":[4,155,2,12,3],"span":[2674,40,42]},{"path":[4,155,2,13],"span":[2675,2,38]},{"path":[4,155,2,13,4],"span":[2675,2,10]},{"path":[4,155,2,13,5],"span":[2675,11,17]},{"path":[4,155,2,13,1],"span":[2675,18,32]},{"path":[4,155,2,13,3],"span":[2675,35,37]},{"path":[4,155,2,14],"span":[2676,2,40]},{"path":[4,155,2,14,4],"span":[2676,2,10]},{"path":[4,155,2,14,5],"span":[2676,11,17]},{"path":[4,155,2,14,1],"span":[2676,18,34]},{"path":[4,155,2,14,3],"span":[2676,37,39]},{"path":[4,155,2,15],"span":[2677,2,36]},{"path":[4,155,2,15,4],"span":[2677,2,10]},{"path":[4,155,2,15,5],"span":[2677,11,17]},{"path":[4,155,2,15,1],"span":[2677,18,30]},{"path":[4,155,2,15,3],"span":[2677,33,35]},{"path":[4,155,2,16],"span":[2678,2,43]},{"path":[4,155,2,16,4],"span":[2678,2,10]},{"path":[4,155,2,16,5],"span":[2678,11,17]},{"path":[4,155,2,16,1],"span":[2678,18,37]},{"path":[4,155,2,16,3],"span":[2678,40,42]},{"path":[4,155,2,17],"span":[2679,2,35]},{"path":[4,155,2,17,4],"span":[2679,2,10]},{"path":[4,155,2,17,5],"span":[2679,11,17]},{"path":[4,155,2,17,1],"span":[2679,18,29]},{"path":[4,155,2,17,3],"span":[2679,32,34]},{"path":[4,155,2,18],"span":[2680,2,35]},{"path":[4,155,2,18,4],"span":[2680,2,10]},{"path":[4,155,2,18,5],"span":[2680,11,17]},{"path":[4,155,2,18,1],"span":[2680,18,29]},{"path":[4,155,2,18,3],"span":[2680,32,34]},{"path":[4,155,2,19],"span":[2681,2,37]},{"path":[4,155,2,19,4],"span":[2681,2,10]},{"path":[4,155,2,19,5],"span":[2681,11,17]},{"path":[4,155,2,19,1],"span":[2681,18,31]},{"path":[4,155,2,19,3],"span":[2681,34,36]},{"path":[4,155,2,20],"span":[2682,2,40]},{"path":[4,155,2,20,4],"span":[2682,2,10]},{"path":[4,155,2,20,5],"span":[2682,11,17]},{"path":[4,155,2,20,1],"span":[2682,18,34]},{"path":[4,155,2,20,3],"span":[2682,37,39]},{"path":[4,155,2,21],"span":[2683,2,39]},{"path":[4,155,2,21,4],"span":[2683,2,10]},{"path":[4,155,2,21,5],"span":[2683,11,17]},{"path":[4,155,2,21,1],"span":[2683,18,33]},{"path":[4,155,2,21,3],"span":[2683,36,38]},{"path":[4,155,2,22],"span":[2685,2,32]},{"path":[4,155,2,22,4],"span":[2685,2,10]},{"path":[4,155,2,22,5],"span":[2685,11,17]},{"path":[4,155,2,22,1],"span":[2685,18,26]},{"path":[4,155,2,22,3],"span":[2685,29,31]},{"path":[4,155,2,23],"span":[2687,2,59]},{"path":[4,155,2,23,4],"span":[2687,2,10]},{"path":[4,155,2,23,6],"span":[2687,11,36]},{"path":[4,155,2,23,1],"span":[2687,37,53]},{"path":[4,155,2,23,3],"span":[2687,56,58]},{"path":[4,155,2,24],"span":[2689,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,155,2,24,4],"span":[2689,2,10]},{"path":[4,155,2,24,5],"span":[2689,11,16]},{"path":[4,155,2,24,1],"span":[2689,17,28]},{"path":[4,155,2,24,3],"span":[2689,31,33]},{"path":[4,156],"span":[2692,0,2722,1]},{"path":[4,156,1],"span":[2692,8,23]},{"path":[4,156,2,0],"span":[2693,2,15]},{"path":[4,156,2,0,5],"span":[2693,2,7]},{"path":[4,156,2,0,1],"span":[2693,8,10]},{"path":[4,156,2,0,3],"span":[2693,13,14]},{"path":[4,156,2,1],"span":[2694,2,21]},{"path":[4,156,2,1,5],"span":[2694,2,8]},{"path":[4,156,2,1,1],"span":[2694,9,16]},{"path":[4,156,2,1,3],"span":[2694,19,20]},{"path":[4,156,2,2],"span":[2696,2,33]},{"path":[4,156,2,2,4],"span":[2696,2,10]},{"path":[4,156,2,2,5],"span":[2696,11,17]},{"path":[4,156,2,2,1],"span":[2696,18,28]},{"path":[4,156,2,2,3],"span":[2696,31,32]},{"path":[4,156,2,3],"span":[2697,2,36]},{"path":[4,156,2,3,4],"span":[2697,2,10]},{"path":[4,156,2,3,5],"span":[2697,11,17]},{"path":[4,156,2,3,1],"span":[2697,18,31]},{"path":[4,156,2,3,3],"span":[2697,34,35]},{"path":[4,156,2,4],"span":[2698,2,33]},{"path":[4,156,2,4,4],"span":[2698,2,10]},{"path":[4,156,2,4,5],"span":[2698,11,17]},{"path":[4,156,2,4,1],"span":[2698,18,28]},{"path":[4,156,2,4,3],"span":[2698,31,32]},{"path":[4,156,2,5],"span":[2699,2,30]},{"path":[4,156,2,5,4],"span":[2699,2,10]},{"path":[4,156,2,5,5],"span":[2699,11,17]},{"path":[4,156,2,5,1],"span":[2699,18,25]},{"path":[4,156,2,5,3],"span":[2699,28,29]},{"path":[4,156,2,6],"span":[2700,2,31]},{"path":[4,156,2,6,4],"span":[2700,2,10]},{"path":[4,156,2,6,5],"span":[2700,11,17]},{"path":[4,156,2,6,1],"span":[2700,18,26]},{"path":[4,156,2,6,3],"span":[2700,29,30]},{"path":[4,156,2,7],"span":[2702,2,29]},{"path":[4,156,2,7,4],"span":[2702,2,10]},{"path":[4,156,2,7,5],"span":[2702,11,16]},{"path":[4,156,2,7,1],"span":[2702,17,24]},{"path":[4,156,2,7,3],"span":[2702,27,28]},{"path":[4,156,2,8],"span":[2703,2,31]},{"path":[4,156,2,8,4],"span":[2703,2,10]},{"path":[4,156,2,8,5],"span":[2703,11,16]},{"path":[4,156,2,8,1],"span":[2703,17,26]},{"path":[4,156,2,8,3],"span":[2703,29,30]},{"path":[4,156,2,9],"span":[2704,2,32]},{"path":[4,156,2,9,4],"span":[2704,2,10]},{"path":[4,156,2,9,5],"span":[2704,11,16]},{"path":[4,156,2,9,1],"span":[2704,17,26]},{"path":[4,156,2,9,3],"span":[2704,29,31]},{"path":[4,156,2,10],"span":[2706,2,31]},{"path":[4,156,2,10,4],"span":[2706,2,10]},{"path":[4,156,2,10,5],"span":[2706,11,17]},{"path":[4,156,2,10,1],"span":[2706,18,25]},{"path":[4,156,2,10,3],"span":[2706,28,30]},{"path":[4,156,2,11],"span":[2707,2,35]},{"path":[4,156,2,11,4],"span":[2707,2,10]},{"path":[4,156,2,11,5],"span":[2707,11,17]},{"path":[4,156,2,11,1],"span":[2707,18,29]},{"path":[4,156,2,11,3],"span":[2707,32,34]},{"path":[4,156,2,12],"span":[2709,2,55]},{"path":[4,156,2,12,4],"span":[2709,2,10]},{"path":[4,156,2,12,6],"span":[2709,11,36]},{"path":[4,156,2,12,1],"span":[2709,37,49]},{"path":[4,156,2,12,3],"span":[2709,52,54]},{"path":[4,156,2,13],"span":[2710,2,51]},{"path":[4,156,2,13,4],"span":[2710,2,10]},{"path":[4,156,2,13,6],"span":[2710,11,36]},{"path":[4,156,2,13,1],"span":[2710,37,45]},{"path":[4,156,2,13,3],"span":[2710,48,50]},{"path":[4,156,2,14],"span":[2711,2,51]},{"path":[4,156,2,14,4],"span":[2711,2,10]},{"path":[4,156,2,14,6],"span":[2711,11,36]},{"path":[4,156,2,14,1],"span":[2711,37,45]},{"path":[4,156,2,14,3],"span":[2711,48,50]},{"path":[4,156,2,15],"span":[2712,2,52]},{"path":[4,156,2,15,4],"span":[2712,2,10]},{"path":[4,156,2,15,6],"span":[2712,11,36]},{"path":[4,156,2,15,1],"span":[2712,37,46]},{"path":[4,156,2,15,3],"span":[2712,49,51]},{"path":[4,156,2,16],"span":[2713,2,43]},{"path":[4,156,2,16,4],"span":[2713,2,10]},{"path":[4,156,2,16,5],"span":[2713,11,17]},{"path":[4,156,2,16,1],"span":[2713,18,37]},{"path":[4,156,2,16,3],"span":[2713,40,42]},{"path":[4,156,2,17],"span":[2715,2,33]},{"path":[4,156,2,17,4],"span":[2715,2,10]},{"path":[4,156,2,17,5],"span":[2715,11,15]},{"path":[4,156,2,17,1],"span":[2715,16,27]},{"path":[4,156,2,17,3],"span":[2715,30,32]},{"path":[4,156,2,18],"span":[2716,2,37]},{"path":[4,156,2,18,4],"span":[2716,2,10]},{"path":[4,156,2,18,5],"span":[2716,11,15]},{"path":[4,156,2,18,1],"span":[2716,16,31]},{"path":[4,156,2,18,3],"span":[2716,34,36]},{"path":[4,156,2,19],"span":[2717,2,37]},{"path":[4,156,2,19,4],"span":[2717,2,10]},{"path":[4,156,2,19,5],"span":[2717,11,15]},{"path":[4,156,2,19,1],"span":[2717,16,31]},{"path":[4,156,2,19,3],"span":[2717,34,36]},{"path":[4,156,2,20],"span":[2719,2,59]},{"path":[4,156,2,20,4],"span":[2719,2,10]},{"path":[4,156,2,20,6],"span":[2719,11,36]},{"path":[4,156,2,20,1],"span":[2719,37,53]},{"path":[4,156,2,20,3],"span":[2719,56,58]},{"path":[4,156,2,21],"span":[2721,2,35],"trailingComments":" filled only when a result of search\n"},{"path":[4,156,2,21,4],"span":[2721,2,10]},{"path":[4,156,2,21,5],"span":[2721,11,16]},{"path":[4,156,2,21,1],"span":[2721,17,28]},{"path":[4,156,2,21,3],"span":[2721,31,34]},{"path":[4,157],"span":[2724,0,2780,1]},{"path":[4,157,1],"span":[2724,8,22]},{"path":[4,157,2,0],"span":[2725,2,16]},{"path":[4,157,2,0,5],"span":[2725,2,7]},{"path":[4,157,2,0,1],"span":[2725,9,11]},{"path":[4,157,2,0,3],"span":[2725,14,15]},{"path":[4,157,2,1],"span":[2727,2,19]},{"path":[4,157,2,1,5],"span":[2727,2,8]},{"path":[4,157,2,1,1],"span":[2727,9,14]},{"path":[4,157,2,1,3],"span":[2727,17,18]},{"path":[4,157,2,2],"span":[2728,2,32]},{"path":[4,157,2,2,4],"span":[2728,2,10]},{"path":[4,157,2,2,5],"span":[2728,11,17]},{"path":[4,157,2,2,1],"span":[2728,18,27]},{"path":[4,157,2,2,3],"span":[2728,30,31]},{"path":[4,157,2,3],"span":[2729,2,29]},{"path":[4,157,2,3,4],"span":[2729,2,10]},{"path":[4,157,2,3,5],"span":[2729,11,16]},{"path":[4,157,2,3,1],"span":[2729,17,24]},{"path":[4,157,2,3,3],"span":[2729,27,28]},{"path":[4,157,2,4],"span":[2731,2,31]},{"path":[4,157,2,4,4],"span":[2731,2,10]},{"path":[4,157,2,4,5],"span":[2731,11,16]},{"path":[4,157,2,4,1],"span":[2731,17,26]},{"path":[4,157,2,4,3],"span":[2731,29,30]},{"path":[4,157,2,5],"span":[2732,2,30]},{"path":[4,157,2,5,4],"span":[2732,2,10]},{"path":[4,157,2,5,5],"span":[2732,11,15]},{"path":[4,157,2,5,1],"span":[2732,16,25]},{"path":[4,157,2,5,3],"span":[2732,28,29]},{"path":[4,157,2,6],"span":[2733,2,36]},{"path":[4,157,2,6,4],"span":[2733,2,10]},{"path":[4,157,2,6,5],"span":[2733,11,17]},{"path":[4,157,2,6,1],"span":[2733,18,31]},{"path":[4,157,2,6,3],"span":[2733,34,35]},{"path":[4,157,2,7],"span":[2734,2,35]},{"path":[4,157,2,7,4],"span":[2734,2,10]},{"path":[4,157,2,7,5],"span":[2734,11,17]},{"path":[4,157,2,7,1],"span":[2734,18,30]},{"path":[4,157,2,7,3],"span":[2734,33,34]},{"path":[4,157,2,8],"span":[2736,2,33]},{"path":[4,157,2,8,4],"span":[2736,2,10]},{"path":[4,157,2,8,5],"span":[2736,11,17]},{"path":[4,157,2,8,1],"span":[2736,18,27]},{"path":[4,157,2,8,3],"span":[2736,30,32]},{"path":[4,157,2,9],"span":[2737,2,38]},{"path":[4,157,2,9,4],"span":[2737,2,10]},{"path":[4,157,2,9,5],"span":[2737,11,17]},{"path":[4,157,2,9,1],"span":[2737,18,32]},{"path":[4,157,2,9,3],"span":[2737,35,37]},{"path":[4,157,2,10],"span":[2738,2,36]},{"path":[4,157,2,10,4],"span":[2738,2,10]},{"path":[4,157,2,10,5],"span":[2738,11,17]},{"path":[4,157,2,10,1],"span":[2738,18,30]},{"path":[4,157,2,10,3],"span":[2738,33,35]},{"path":[4,157,2,11],"span":[2739,2,40]},{"path":[4,157,2,11,4],"span":[2739,2,10]},{"path":[4,157,2,11,5],"span":[2739,11,17]},{"path":[4,157,2,11,1],"span":[2739,18,34]},{"path":[4,157,2,11,3],"span":[2739,37,39]},{"path":[4,157,2,12],"span":[2740,2,31]},{"path":[4,157,2,12,4],"span":[2740,2,10]},{"path":[4,157,2,12,5],"span":[2740,11,17]},{"path":[4,157,2,12,1],"span":[2740,18,25]},{"path":[4,157,2,12,3],"span":[2740,28,30]},{"path":[4,157,2,13],"span":[2741,2,36]},{"path":[4,157,2,13,4],"span":[2741,2,10]},{"path":[4,157,2,13,5],"span":[2741,11,17]},{"path":[4,157,2,13,1],"span":[2741,18,30]},{"path":[4,157,2,13,3],"span":[2741,33,35]},{"path":[4,157,2,14],"span":[2742,2,35]},{"path":[4,157,2,14,4],"span":[2742,2,10]},{"path":[4,157,2,14,5],"span":[2742,11,16]},{"path":[4,157,2,14,1],"span":[2742,17,29]},{"path":[4,157,2,14,3],"span":[2742,32,34]},{"path":[4,157,2,15],"span":[2743,2,29]},{"path":[4,157,2,15,4],"span":[2743,2,10]},{"path":[4,157,2,15,5],"span":[2743,11,17]},{"path":[4,157,2,15,1],"span":[2743,18,23]},{"path":[4,157,2,15,3],"span":[2743,26,28]},{"path":[4,157,2,16],"span":[2744,2,33]},{"path":[4,157,2,16,4],"span":[2744,2,10]},{"path":[4,157,2,16,5],"span":[2744,11,17]},{"path":[4,157,2,16,1],"span":[2744,18,27]},{"path":[4,157,2,16,3],"span":[2744,30,32]},{"path":[4,157,2,17],"span":[2745,2,32]},{"path":[4,157,2,17,4],"span":[2745,2,10]},{"path":[4,157,2,17,5],"span":[2745,11,17]},{"path":[4,157,2,17,1],"span":[2745,18,26]},{"path":[4,157,2,17,3],"span":[2745,29,31]},{"path":[4,157,2,18],"span":[2746,2,35]},{"path":[4,157,2,18,4],"span":[2746,2,10]},{"path":[4,157,2,18,5],"span":[2746,11,17]},{"path":[4,157,2,18,1],"span":[2746,18,29]},{"path":[4,157,2,18,3],"span":[2746,32,34]},{"path":[4,157,2,19],"span":[2748,2,36]},{"path":[4,157,2,19,4],"span":[2748,2,10]},{"path":[4,157,2,19,5],"span":[2748,11,17]},{"path":[4,157,2,19,1],"span":[2748,18,30]},{"path":[4,157,2,19,3],"span":[2748,33,35]},{"path":[4,157,2,20],"span":[2749,2,38]},{"path":[4,157,2,20,4],"span":[2749,2,10]},{"path":[4,157,2,20,5],"span":[2749,11,16]},{"path":[4,157,2,20,1],"span":[2749,17,32]},{"path":[4,157,2,20,3],"span":[2749,35,37]},{"path":[4,157,2,21],"span":[2750,2,47]},{"path":[4,157,2,21,4],"span":[2750,2,10]},{"path":[4,157,2,21,5],"span":[2750,11,16]},{"path":[4,157,2,21,1],"span":[2750,17,41]},{"path":[4,157,2,21,3],"span":[2750,44,46]},{"path":[4,157,2,22],"span":[2751,2,30]},{"path":[4,157,2,22,4],"span":[2751,2,10]},{"path":[4,157,2,22,5],"span":[2751,11,16]},{"path":[4,157,2,22,1],"span":[2751,17,24]},{"path":[4,157,2,22,3],"span":[2751,27,29]},{"path":[4,157,2,23],"span":[2752,2,29]},{"path":[4,157,2,23,4],"span":[2752,2,10]},{"path":[4,157,2,23,5],"span":[2752,11,16]},{"path":[4,157,2,23,1],"span":[2752,17,23]},{"path":[4,157,2,23,3],"span":[2752,26,28]},{"path":[4,157,2,24],"span":[2753,2,29]},{"path":[4,157,2,24,4],"span":[2753,2,10]},{"path":[4,157,2,24,5],"span":[2753,11,16]},{"path":[4,157,2,24,1],"span":[2753,17,23]},{"path":[4,157,2,24,3],"span":[2753,26,28]},{"path":[4,157,2,25],"span":[2754,2,36]},{"path":[4,157,2,25,4],"span":[2754,2,10]},{"path":[4,157,2,25,5],"span":[2754,11,17]},{"path":[4,157,2,25,1],"span":[2754,18,30]},{"path":[4,157,2,25,3],"span":[2754,33,35]},{"path":[4,157,2,26],"span":[2755,2,39]},{"path":[4,157,2,26,4],"span":[2755,2,10]},{"path":[4,157,2,26,5],"span":[2755,11,16]},{"path":[4,157,2,26,1],"span":[2755,17,33]},{"path":[4,157,2,26,3],"span":[2755,36,38]},{"path":[4,157,2,27],"span":[2756,2,44]},{"path":[4,157,2,27,4],"span":[2756,2,10]},{"path":[4,157,2,27,5],"span":[2756,11,17]},{"path":[4,157,2,27,1],"span":[2756,18,38]},{"path":[4,157,2,27,3],"span":[2756,41,43]},{"path":[4,157,2,28],"span":[2758,2,36]},{"path":[4,157,2,28,4],"span":[2758,2,10]},{"path":[4,157,2,28,5],"span":[2758,11,17]},{"path":[4,157,2,28,1],"span":[2758,18,30]},{"path":[4,157,2,28,3],"span":[2758,33,35]},{"path":[4,157,2,29],"span":[2759,2,37]},{"path":[4,157,2,29,4],"span":[2759,2,10]},{"path":[4,157,2,29,5],"span":[2759,11,16]},{"path":[4,157,2,29,1],"span":[2759,17,31]},{"path":[4,157,2,29,3],"span":[2759,34,36]},{"path":[4,157,2,30],"span":[2760,2,42]},{"path":[4,157,2,30,4],"span":[2760,2,10]},{"path":[4,157,2,30,5],"span":[2760,11,17]},{"path":[4,157,2,30,1],"span":[2760,18,36]},{"path":[4,157,2,30,3],"span":[2760,39,41]},{"path":[4,157,2,31],"span":[2761,2,38]},{"path":[4,157,2,31,4],"span":[2761,2,10]},{"path":[4,157,2,31,5],"span":[2761,11,17]},{"path":[4,157,2,31,1],"span":[2761,18,32]},{"path":[4,157,2,31,3],"span":[2761,35,37]},{"path":[4,157,2,32],"span":[2762,2,42]},{"path":[4,157,2,32,4],"span":[2762,2,10]},{"path":[4,157,2,32,5],"span":[2762,11,17]},{"path":[4,157,2,32,1],"span":[2762,18,36]},{"path":[4,157,2,32,3],"span":[2762,39,41]},{"path":[4,157,2,33],"span":[2763,2,39]},{"path":[4,157,2,33,4],"span":[2763,2,10]},{"path":[4,157,2,33,5],"span":[2763,11,17]},{"path":[4,157,2,33,1],"span":[2763,18,33]},{"path":[4,157,2,33,3],"span":[2763,36,38]},{"path":[4,157,2,34],"span":[2764,2,34]},{"path":[4,157,2,34,4],"span":[2764,2,10]},{"path":[4,157,2,34,5],"span":[2764,11,17]},{"path":[4,157,2,34,1],"span":[2764,18,28]},{"path":[4,157,2,34,3],"span":[2764,31,33]},{"path":[4,157,2,35],"span":[2765,2,34]},{"path":[4,157,2,35,4],"span":[2765,2,10]},{"path":[4,157,2,35,5],"span":[2765,11,17]},{"path":[4,157,2,35,1],"span":[2765,18,28]},{"path":[4,157,2,35,3],"span":[2765,31,33]},{"path":[4,157,2,36],"span":[2766,2,33]},{"path":[4,157,2,36,4],"span":[2766,2,10]},{"path":[4,157,2,36,5],"span":[2766,11,17]},{"path":[4,157,2,36,1],"span":[2766,18,27]},{"path":[4,157,2,36,3],"span":[2766,30,32]},{"path":[4,157,2,37],"span":[2768,2,33]},{"path":[4,157,2,37,4],"span":[2768,2,10]},{"path":[4,157,2,37,5],"span":[2768,11,15]},{"path":[4,157,2,37,1],"span":[2768,16,27]},{"path":[4,157,2,37,3],"span":[2768,30,32]},{"path":[4,157,2,38],"span":[2769,2,36]},{"path":[4,157,2,38,4],"span":[2769,2,10]},{"path":[4,157,2,38,5],"span":[2769,11,15]},{"path":[4,157,2,38,1],"span":[2769,16,30]},{"path":[4,157,2,38,3],"span":[2769,33,35]},{"path":[4,157,2,39],"span":[2770,2,38]},{"path":[4,157,2,39,4],"span":[2770,2,10]},{"path":[4,157,2,39,5],"span":[2770,11,15]},{"path":[4,157,2,39,1],"span":[2770,16,32]},{"path":[4,157,2,39,3],"span":[2770,35,37]},{"path":[4,157,2,40],"span":[2771,2,34]},{"path":[4,157,2,40,4],"span":[2771,2,10]},{"path":[4,157,2,40,5],"span":[2771,11,15]},{"path":[4,157,2,40,1],"span":[2771,16,28]},{"path":[4,157,2,40,3],"span":[2771,31,33]},{"path":[4,157,2,41],"span":[2772,2,33]},{"path":[4,157,2,41,4],"span":[2772,2,10]},{"path":[4,157,2,41,5],"span":[2772,11,15]},{"path":[4,157,2,41,1],"span":[2772,16,27]},{"path":[4,157,2,41,3],"span":[2772,30,32]},{"path":[4,157,2,42],"span":[2773,2,38]},{"path":[4,157,2,42,4],"span":[2773,2,10]},{"path":[4,157,2,42,5],"span":[2773,11,15]},{"path":[4,157,2,42,1],"span":[2773,16,32]},{"path":[4,157,2,42,3],"span":[2773,35,37]},{"path":[4,157,2,43],"span":[2774,2,36]},{"path":[4,157,2,43,4],"span":[2774,2,10]},{"path":[4,157,2,43,5],"span":[2774,11,15]},{"path":[4,157,2,43,1],"span":[2774,16,30]},{"path":[4,157,2,43,3],"span":[2774,33,35]},{"path":[4,157,2,44],"span":[2776,2,59]},{"path":[4,157,2,44,4],"span":[2776,2,10]},{"path":[4,157,2,44,6],"span":[2776,11,36]},{"path":[4,157,2,44,1],"span":[2776,37,53]},{"path":[4,157,2,44,3],"span":[2776,56,58]},{"path":[4,157,2,45],"span":[2778,2,35],"trailingComments":" filled only when a result of search\n"},{"path":[4,157,2,45,4],"span":[2778,2,10]},{"path":[4,157,2,45,5],"span":[2778,11,16]},{"path":[4,157,2,45,1],"span":[2778,17,28]},{"path":[4,157,2,45,3],"span":[2778,31,34]},{"path":[4,158],"span":[2788,0,2804,1],"leadingComments":"\n Configuration of rules for IP location.\n","leadingDetachedComments":[" ---------------------------------------------------------------------------------------------------------------------\n"]},{"path":[4,158,1],"span":[2788,8,24]},{"path":[4,158,2,0],"span":[2790,2,18],"trailingComments":" IP location name, to set when match\n"},{"path":[4,158,2,0,5],"span":[2790,2,8]},{"path":[4,158,2,0,1],"span":[2790,9,13]},{"path":[4,158,2,0,3],"span":[2790,16,17]},{"path":[4,158,2,1],"span":[2793,2,36],"leadingComments":" Local IP Address filter\n"},{"path":[4,158,2,1,4],"span":[2793,2,10]},{"path":[4,158,2,1,5],"span":[2793,11,17]},{"path":[4,158,2,1,1],"span":[2793,18,31]},{"path":[4,158,2,1,3],"span":[2793,34,35]},{"path":[4,158,2,2],"span":[2794,2,37]},{"path":[4,158,2,2,4],"span":[2794,2,10]},{"path":[4,158,2,2,5],"span":[2794,11,17]},{"path":[4,158,2,2,1],"span":[2794,18,32]},{"path":[4,158,2,2,3],"span":[2794,35,36]},{"path":[4,158,2,3],"span":[2795,2,35]},{"path":[4,158,2,3,4],"span":[2795,2,10]},{"path":[4,158,2,3,5],"span":[2795,11,17]},{"path":[4,158,2,3,1],"span":[2795,18,30]},{"path":[4,158,2,3,3],"span":[2795,33,34]},{"path":[4,158,2,4],"span":[2797,2,32],"trailingComments":" source id / name (optional in vNext, this was mandatory in LS-classic)\n"},{"path":[4,158,2,4,4],"span":[2797,2,10]},{"path":[4,158,2,4,5],"span":[2797,11,17]},{"path":[4,158,2,4,1],"span":[2797,18,27]},{"path":[4,158,2,4,3],"span":[2797,30,31]},{"path":[4,158,2,5],"span":[2800,2,39],"leadingComments":" Internet public rules: vNext new\n"},{"path":[4,158,2,5,4],"span":[2800,2,10]},{"path":[4,158,2,5,5],"span":[2800,11,17]},{"path":[4,158,2,5,1],"span":[2800,18,34]},{"path":[4,158,2,5,3],"span":[2800,37,38]},{"path":[4,158,2,6],"span":[2801,2,44]},{"path":[4,158,2,6,4],"span":[2801,2,10]},{"path":[4,158,2,6,5],"span":[2801,11,17]},{"path":[4,158,2,6,1],"span":[2801,18,39]},{"path":[4,158,2,6,3],"span":[2801,42,43]},{"path":[4,158,2,7],"span":[2802,2,44]},{"path":[4,158,2,7,4],"span":[2802,2,10]},{"path":[4,158,2,7,5],"span":[2802,11,17]},{"path":[4,158,2,7,1],"span":[2802,18,39]},{"path":[4,158,2,7,3],"span":[2802,42,43]}]},"syntax":"proto3","bufExtension":{"isImport":false,"isSyntaxUnspecified":false}}]}
1
+ {"file":[{"name":"google/protobuf/timestamp.proto","package":"google.protobuf","messageType":[{"name":"Timestamp","field":[{"name":"seconds","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"seconds"},{"name":"nanos","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"nanos"}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"TimestampProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/timestamppb","ccEnableArenas":true,"objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"sourceCodeInfo":{"location":[{"span":[30,0,146,1]},{"path":[12],"span":[30,0,18],"leadingDetachedComments":[" Protocol Buffers - Google's data interchange format\n Copyright 2008 Google Inc. All rights reserved.\n https://developers.google.com/protocol-buffers/\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"]},{"path":[2],"span":[32,0,24]},{"path":[8],"span":[34,0,59]},{"path":[8,37],"span":[34,0,59]},{"path":[8],"span":[35,0,31]},{"path":[8,31],"span":[35,0,31]},{"path":[8],"span":[36,0,73]},{"path":[8,11],"span":[36,0,73]},{"path":[8],"span":[37,0,44]},{"path":[8,1],"span":[37,0,44]},{"path":[8],"span":[38,0,47]},{"path":[8,8],"span":[38,0,47]},{"path":[8],"span":[39,0,34]},{"path":[8,10],"span":[39,0,34]},{"path":[8],"span":[40,0,33]},{"path":[8,36],"span":[40,0,33]},{"path":[4,0],"span":[135,0,146,1],"leadingComments":" A Timestamp represents a point in time independent of any time zone or local\n calendar, encoded as a count of seconds and fractions of seconds at\n nanosecond resolution. The count is relative to an epoch at UTC midnight on\n January 1, 1970, in the proleptic Gregorian calendar which extends the\n Gregorian calendar backwards to year one.\n\n All minutes are 60 seconds long. Leap seconds are \"smeared\" so that no leap\n second table is needed for interpretation, using a [24-hour linear\n smear](https://developers.google.com/time/smear).\n\n The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By\n restricting to that range, we ensure that we can convert to and from [RFC\n 3339](https://www.ietf.org/rfc/rfc3339.txt) date strings.\n\n # Examples\n\n Example 1: Compute Timestamp from POSIX `time()`.\n\n Timestamp timestamp;\n timestamp.set_seconds(time(NULL));\n timestamp.set_nanos(0);\n\n Example 2: Compute Timestamp from POSIX `gettimeofday()`.\n\n struct timeval tv;\n gettimeofday(&tv, NULL);\n\n Timestamp timestamp;\n timestamp.set_seconds(tv.tv_sec);\n timestamp.set_nanos(tv.tv_usec * 1000);\n\n Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`.\n\n FILETIME ft;\n GetSystemTimeAsFileTime(&ft);\n UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime;\n\n // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z\n // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.\n Timestamp timestamp;\n timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL));\n timestamp.set_nanos((INT32) ((ticks % 10000000) * 100));\n\n Example 4: Compute Timestamp from Java `System.currentTimeMillis()`.\n\n long millis = System.currentTimeMillis();\n\n Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)\n .setNanos((int) ((millis % 1000) * 1000000)).build();\n\n\n Example 5: Compute Timestamp from Java `Instant.now()`.\n\n Instant now = Instant.now();\n\n Timestamp timestamp =\n Timestamp.newBuilder().setSeconds(now.getEpochSecond())\n .setNanos(now.getNano()).build();\n\n\n Example 6: Compute Timestamp from current time in Python.\n\n timestamp = Timestamp()\n timestamp.GetCurrentTime()\n\n # JSON Mapping\n\n In JSON format, the Timestamp type is encoded as a string in the\n [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the\n format is \"{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z\"\n where {year} is always expressed using four digits while {month}, {day},\n {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional\n seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution),\n are optional. The \"Z\" suffix indicates the timezone (\"UTC\"); the timezone\n is required. A proto3 JSON serializer should always use UTC (as indicated by\n \"Z\") when printing the Timestamp type and a proto3 JSON parser should be\n able to accept both UTC and other timezones (as indicated by an offset).\n\n For example, \"2017-01-15T01:30:15.01Z\" encodes 15.01 seconds past\n 01:30 UTC on January 15, 2017.\n\n In JavaScript, one can convert a Date object to this format using the\n standard\n [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString)\n method. In Python, a standard `datetime.datetime` object can be converted\n to this format using\n [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with\n the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use\n the Joda Time's [`ISODateTimeFormat.dateTime()`](\n http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D\n ) to obtain a formatter capable of generating timestamps in this format.\n\n\n"},{"path":[4,0,1],"span":[135,8,17]},{"path":[4,0,2,0],"span":[139,2,20],"leadingComments":" Represents seconds of UTC time since Unix epoch\n 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to\n 9999-12-31T23:59:59Z inclusive.\n"},{"path":[4,0,2,0,5],"span":[139,2,7]},{"path":[4,0,2,0,1],"span":[139,8,15]},{"path":[4,0,2,0,3],"span":[139,18,19]},{"path":[4,0,2,1],"span":[145,2,18],"leadingComments":" Non-negative fractions of a second at nanosecond resolution. Negative\n second values with fractions must still have non-negative nanos values\n that count forward in time. Must be from 0 to 999,999,999\n inclusive.\n"},{"path":[4,0,2,1,5],"span":[145,2,7]},{"path":[4,0,2,1,1],"span":[145,8,13]},{"path":[4,0,2,1,3],"span":[145,16,17]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"google/protobuf/any.proto","package":"google.protobuf","messageType":[{"name":"Any","field":[{"name":"type_url","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"typeUrl"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"value"}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"AnyProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/anypb","objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"sourceCodeInfo":{"location":[{"span":[30,0,157,1]},{"path":[12],"span":[30,0,18],"leadingDetachedComments":[" Protocol Buffers - Google's data interchange format\n Copyright 2008 Google Inc. All rights reserved.\n https://developers.google.com/protocol-buffers/\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"]},{"path":[2],"span":[32,0,24]},{"path":[8],"span":[34,0,59]},{"path":[8,37],"span":[34,0,59]},{"path":[8],"span":[35,0,67]},{"path":[8,11],"span":[35,0,67]},{"path":[8],"span":[36,0,44]},{"path":[8,1],"span":[36,0,44]},{"path":[8],"span":[37,0,41]},{"path":[8,8],"span":[37,0,41]},{"path":[8],"span":[38,0,34]},{"path":[8,10],"span":[38,0,34]},{"path":[8],"span":[39,0,33]},{"path":[8,36],"span":[39,0,33]},{"path":[4,0],"span":[124,0,157,1],"leadingComments":" `Any` contains an arbitrary serialized protocol buffer message along with a\n URL that describes the type of the serialized message.\n\n Protobuf library provides support to pack/unpack Any values in the form\n of utility functions or additional generated methods of the Any type.\n\n Example 1: Pack and unpack a message in C++.\n\n Foo foo = ...;\n Any any;\n any.PackFrom(foo);\n ...\n if (any.UnpackTo(&foo)) {\n ...\n }\n\n Example 2: Pack and unpack a message in Java.\n\n Foo foo = ...;\n Any any = Any.pack(foo);\n ...\n if (any.is(Foo.class)) {\n foo = any.unpack(Foo.class);\n }\n\n Example 3: Pack and unpack a message in Python.\n\n foo = Foo(...)\n any = Any()\n any.Pack(foo)\n ...\n if any.Is(Foo.DESCRIPTOR):\n any.Unpack(foo)\n ...\n\n Example 4: Pack and unpack a message in Go\n\n foo := &pb.Foo{...}\n any, err := anypb.New(foo)\n if err != nil {\n ...\n }\n ...\n foo := &pb.Foo{}\n if err := any.UnmarshalTo(foo); err != nil {\n ...\n }\n\n The pack methods provided by protobuf library will by default use\n 'type.googleapis.com/full.type.name' as the type URL and the unpack\n methods only use the fully qualified type name after the last '/'\n in the type URL, for example \"foo.bar.com/x/y.z\" will yield type\n name \"y.z\".\n\n\n JSON\n ====\n The JSON representation of an `Any` value uses the regular\n representation of the deserialized, embedded message, with an\n additional field `@type` which contains the type URL. Example:\n\n package google.profile;\n message Person {\n string first_name = 1;\n string last_name = 2;\n }\n\n {\n \"@type\": \"type.googleapis.com/google.profile.Person\",\n \"firstName\": <string>,\n \"lastName\": <string>\n }\n\n If the embedded message type is well-known and has a custom JSON\n representation, that representation will be embedded adding a field\n `value` which holds the custom JSON in addition to the `@type`\n field. Example (for message [google.protobuf.Duration][]):\n\n {\n \"@type\": \"type.googleapis.com/google.protobuf.Duration\",\n \"value\": \"1.212s\"\n }\n\n"},{"path":[4,0,1],"span":[124,8,11]},{"path":[4,0,2,0],"span":[153,2,22],"leadingComments":" A URL/resource name that uniquely identifies the type of the serialized\n protocol buffer message. This string must contain at least\n one \"/\" character. The last segment of the URL's path must represent\n the fully qualified name of the type (as in\n `path/google.protobuf.Duration`). The name should be in a canonical form\n (e.g., leading \".\" is not accepted).\n\n In practice, teams usually precompile into the binary all types that they\n expect it to use in the context of Any. However, for URLs which use the\n scheme `http`, `https`, or no scheme, one can optionally set up a type\n server that maps type URLs to message definitions as follows:\n\n * If no scheme is provided, `https` is assumed.\n * An HTTP GET on the URL must yield a [google.protobuf.Type][]\n value in binary format, or produce an error.\n * Applications are allowed to cache lookup results based on the\n URL, or have them precompiled into a binary to avoid any\n lookup. Therefore, binary compatibility needs to be preserved\n on changes to types. (Use versioned type names to manage\n breaking changes.)\n\n Note: this functionality is not currently available in the official\n protobuf release, and it is not used for type URLs beginning with\n type.googleapis.com.\n\n Schemes other than `http`, `https` (or the empty scheme) might be\n used with implementation specific semantics.\n\n"},{"path":[4,0,2,0,5],"span":[153,2,8]},{"path":[4,0,2,0,1],"span":[153,9,17]},{"path":[4,0,2,0,3],"span":[153,20,21]},{"path":[4,0,2,1],"span":[156,2,18],"leadingComments":" Must be a valid serialized protocol buffer of the above specified type.\n"},{"path":[4,0,2,1,5],"span":[156,2,7]},{"path":[4,0,2,1,1],"span":[156,8,13]},{"path":[4,0,2,1,3],"span":[156,16,17]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"proto/outbound.proto","package":"com.lansweeper.dp.outbound.v1","dependency":["google/protobuf/timestamp.proto","google/protobuf/any.proto"],"messageType":[{"name":"GetEntityRequest","field":[{"name":"entity_path","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","jsonName":"entityPath"}]},{"name":"GetEntityResponse","field":[{"name":"success","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"success"},{"name":"error_description","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"errorDescription","proto3Optional":true},{"name":"entity","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","oneofIndex":1,"jsonName":"entity","proto3Optional":true},{"name":"related","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","jsonName":"related"}],"oneofDecl":[{"name":"_error_description"},{"name":"_entity"}]},{"name":"ListEntityRequest","field":[{"name":"filter","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","jsonName":"filter"}]},{"name":"ListEntityResponse","field":[{"name":"entity","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","jsonName":"entity"},{"name":"related","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","jsonName":"related"}]},{"name":"CatalogLookupRequest","field":[{"name":"brand_id","number":1,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"brandId"},{"name":"model_id","number":2,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"modelId"},{"name":"os_id","number":3,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"osId"},{"name":"sw_id","number":4,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"swId"},{"name":"monitor_id","number":5,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"monitorId"},{"name":"only_requested","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"onlyRequested","proto3Optional":true}],"oneofDecl":[{"name":"_only_requested"}]},{"name":"CatalogLookupResponse","field":[{"name":"brand","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","jsonName":"brand"},{"name":"model","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogModel","jsonName":"model"},{"name":"os","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogOs","jsonName":"os"},{"name":"sw","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogSoftware","jsonName":"sw"},{"name":"monitor","number":5,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogMonitor","jsonName":"monitor"},{"name":"success","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"success","proto3Optional":true},{"name":"error_description","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"errorDescription","proto3Optional":true}],"oneofDecl":[{"name":"_success"},{"name":"_error_description"}]},{"name":"GetIpLocationConfigRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"GetIpLocationConfigResponse","field":[{"name":"config","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.IpLocationConfig","jsonName":"config"}]},{"name":"SetIpLocationConfigRequest","field":[{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"config","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.IpLocationConfig","jsonName":"config"}]},{"name":"SetIpLocationConfigResponse","field":[{"name":"ok","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"ok"},{"name":"error_description","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"errorDescription"}]},{"name":"EntityPath","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"source_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"sourceId","proto3Optional":true},{"name":"source_type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"sourceType","proto3Optional":true},{"name":"entity_type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"entityType","proto3Optional":true},{"name":"entity_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"entityId","proto3Optional":true}],"oneofDecl":[{"name":"_source_id"},{"name":"_source_type"},{"name":"_entity_type"},{"name":"_entity_id"}]},{"name":"Entity","field":[{"name":"asset","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Asset","oneofIndex":0,"jsonName":"asset"}],"oneofDecl":[{"name":"entity"}]},{"name":"Asset","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","jsonName":"id"},{"name":"last_synced","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"lastSynced"},{"name":"first_seen","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"firstSeen"},{"name":"last_updated","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"lastUpdated"},{"name":"last_enriched","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"lastEnriched"},{"name":"last_synced_source_agent","number":39,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"lastSyncedSourceAgent","proto3Optional":true},{"name":"last_synced_source_name","number":49,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"lastSyncedSourceName","proto3Optional":true},{"name":"source_info","number":74,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SourceInfo","jsonName":"sourceInfo"},{"name":"unique_key","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"uniqueKey","proto3Optional":true},{"name":"scan_error","number":33,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ScanError","jsonName":"scanError"},{"name":"internet_ip","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.IpInfo","oneofIndex":3,"jsonName":"internetIp","proto3Optional":true},{"name":"tag","number":14,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Tag","jsonName":"tag"},{"name":"relation","number":20,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Relation","jsonName":"relation"},{"name":"correlation_fields","number":78,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CorrelationFields","oneofIndex":4,"jsonName":"correlationFields","proto3Optional":true},{"name":"reconciliation","number":79,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ReconciliationInfo","oneofIndex":5,"jsonName":"reconciliation","proto3Optional":true},{"name":"core","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CoreFields","jsonName":"core"},{"name":"hw","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.HardwareInfo","oneofIndex":6,"jsonName":"hw","proto3Optional":true},{"name":"os","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystem","oneofIndex":7,"jsonName":"os","proto3Optional":true},{"name":"monitor_inventory","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MonitorInventory","oneofIndex":8,"jsonName":"monitorInventory","proto3Optional":true},{"name":"network_interfaces","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetworkInterfaces","oneofIndex":9,"jsonName":"networkInterfaces","proto3Optional":true},{"name":"network_protocols","number":76,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetworkProtocols","oneofIndex":10,"jsonName":"networkProtocols","proto3Optional":true},{"name":"port_scan","number":77,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.PortScan","oneofIndex":11,"jsonName":"portScan","proto3Optional":true},{"name":"warranty_info","number":81,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WarrantyInfo","jsonName":"warrantyInfo"},{"name":"computer","number":75,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Computer","oneofIndex":12,"jsonName":"computer","proto3Optional":true},{"name":"ot_module","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OtModule","oneofIndex":13,"jsonName":"otModule","proto3Optional":true},{"name":"cloud","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CloudEntity","oneofIndex":14,"jsonName":"cloud","proto3Optional":true},{"name":"change_log","number":80,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.AssetChangeEvent","jsonName":"changeLog"}],"oneofDecl":[{"name":"_last_synced_source_agent"},{"name":"_last_synced_source_name"},{"name":"_unique_key"},{"name":"_internet_ip"},{"name":"_correlation_fields"},{"name":"_reconciliation"},{"name":"_hw"},{"name":"_os"},{"name":"_monitor_inventory"},{"name":"_network_interfaces"},{"name":"_network_protocols"},{"name":"_port_scan"},{"name":"_computer"},{"name":"_ot_module"},{"name":"_cloud"}],"reservedRange":[{"start":9,"end":10},{"start":26,"end":27},{"start":13,"end":14},{"start":37,"end":38},{"start":15,"end":16},{"start":18,"end":19},{"start":19,"end":20},{"start":21,"end":22},{"start":24,"end":25},{"start":25,"end":26},{"start":27,"end":28},{"start":30,"end":31},{"start":28,"end":29},{"start":29,"end":30},{"start":31,"end":32}]},{"name":"AssetChangeEvent","field":[{"name":"timestamp","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"timestamp"},{"name":"sw","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SoftwareChangeEvent","oneofIndex":0,"jsonName":"sw"},{"name":"os","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemChangeEvent","oneofIndex":0,"jsonName":"os"},{"name":"sql_server","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsSqlServerChangeEvent","oneofIndex":0,"jsonName":"sqlServer"}],"oneofDecl":[{"name":"event"}]},{"name":"WarrantyInfo","field":[{"name":"timestamp","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"timestamp"},{"name":"start_date","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":0,"jsonName":"startDate","proto3Optional":true},{"name":"end_date","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":1,"jsonName":"endDate","proto3Optional":true},{"name":"ship_date","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":2,"jsonName":"shipDate","proto3Optional":true},{"name":"service_type","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"serviceType","proto3Optional":true},{"name":"purchase_country","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"purchaseCountry","proto3Optional":true},{"name":"is_reliable","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isReliable"}],"oneofDecl":[{"name":"_start_date"},{"name":"_end_date"},{"name":"_ship_date"},{"name":"_service_type"},{"name":"_purchase_country"}]},{"name":"Computer","field":[{"name":"chassis","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Chassis","oneofIndex":0,"jsonName":"chassis","proto3Optional":true},{"name":"motherboard","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Motherboard","oneofIndex":1,"jsonName":"motherboard","proto3Optional":true},{"name":"processor","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Processor","jsonName":"processor"},{"name":"memory","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Memory","oneofIndex":2,"jsonName":"memory","proto3Optional":true},{"name":"graphics_card","number":5,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.GraphicsCard","jsonName":"graphicsCard"},{"name":"sound_card","number":6,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SoundCard","jsonName":"soundCard"},{"name":"keyboard","number":7,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Keyboard","jsonName":"keyboard"},{"name":"pointing_device","number":8,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.PointingDevice","jsonName":"pointingDevice"},{"name":"computer_bus","number":9,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerBus","jsonName":"computerBus"},{"name":"computer_infrared","number":10,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerInfrared","jsonName":"computerInfrared"},{"name":"parallel_port","number":11,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ParallelPort","jsonName":"parallelPort"},{"name":"serial_port","number":12,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SerialPort","jsonName":"serialPort"},{"name":"pcmcia","number":13,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.PcmciaController","jsonName":"pcmcia"},{"name":"port_connector","number":14,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.PortConnector","jsonName":"portConnector"},{"name":"scsi_controller","number":15,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ScsiController","jsonName":"scsiController"},{"name":"computer_battery","number":16,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerBattery","jsonName":"computerBattery"},{"name":"portable_battery","number":17,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.PortableBattery","jsonName":"portableBattery"},{"name":"optical_drive","number":18,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OpticalDrive","jsonName":"opticalDrive"},{"name":"hard_drive","number":19,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.HardDrive","jsonName":"hardDrive"},{"name":"drive_volume","number":20,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.DriveVolume","jsonName":"driveVolume"},{"name":"tpm","number":21,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.TrustedPlatformModule","jsonName":"tpm"},{"name":"usb_controller","number":22,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerConnectedUsbController","jsonName":"usbController"},{"name":"usb_device_info","number":23,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerConnectedUsbDeviceInfo","jsonName":"usbDeviceInfo"},{"name":"modem","number":24,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerConnectedModem","jsonName":"modem"},{"name":"printer","number":25,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerConnectedPrinter","jsonName":"printer"},{"name":"tape_drive","number":26,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerConnectedTapeDrive","jsonName":"tapeDrive"},{"name":"windows_floppy","number":33,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsFloppy","jsonName":"windowsFloppy"},{"name":"windows_desktop","number":27,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsDesktop","jsonName":"windowsDesktop"},{"name":"windows_desktop_monitor","number":32,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsDesktopMonitor","jsonName":"windowsDesktopMonitor"},{"name":"windows_display","number":28,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsDisplay","jsonName":"windowsDisplay"},{"name":"windows_display_controller","number":29,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsDisplayController","jsonName":"windowsDisplayController"},{"name":"windows_ide_controller","number":30,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsIdeController","jsonName":"windowsIdeController"},{"name":"windows_disk_partition","number":31,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsDiskPartition","jsonName":"windowsDiskPartition"},{"name":"mac_wifi_controller","number":34,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerMacWifiController","jsonName":"macWifiController"},{"name":"bios","number":101,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Bios","oneofIndex":3,"jsonName":"bios","proto3Optional":true},{"name":"os_patch","number":102,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemPatch","jsonName":"osPatch"},{"name":"os_feature","number":103,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemFeature","jsonName":"osFeature"},{"name":"os_recovery","number":104,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemRecovery","oneofIndex":4,"jsonName":"osRecovery","proto3Optional":true},{"name":"os_service","number":105,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemService","jsonName":"osService"},{"name":"computer_system_product","number":106,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerSystemProduct","oneofIndex":5,"jsonName":"computerSystemProduct","proto3Optional":true},{"name":"page_file","number":107,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsPageFile","jsonName":"pageFile"},{"name":"computer_system","number":108,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsComputerSystem","oneofIndex":6,"jsonName":"computerSystem","proto3Optional":true},{"name":"software_inventory","number":201,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SoftwareInventory","oneofIndex":7,"jsonName":"softwareInventory","proto3Optional":true},{"name":"antivirus","number":202,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.AntivirusSoftware","jsonName":"antivirus"},{"name":"auto_run_command","number":203,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.AutoRunCommand","jsonName":"autoRunCommand"},{"name":"boot_config","number":204,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.BootConfig","oneofIndex":8,"jsonName":"bootConfig","proto3Optional":true},{"name":"driver","number":205,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Driver","jsonName":"driver"},{"name":"running_process","number":206,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.RunningProcess","jsonName":"runningProcess"},{"name":"shared_resource","number":207,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SharedResource","jsonName":"sharedResource"},{"name":"internet_explorer","number":208,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.InternetExplorer","oneofIndex":9,"jsonName":"internetExplorer","proto3Optional":true},{"name":"windows_sql_server","number":209,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsSqlServer","jsonName":"windowsSqlServer"},{"name":"windows_network_client","number":210,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsNetworkClient","jsonName":"windowsNetworkClient"},{"name":"network_volume","number":211,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetworkVolume","jsonName":"networkVolume"},{"name":"windows_cert","number":212,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsCertificate","jsonName":"windowsCert"},{"name":"windows_serial","number":213,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsSerial","jsonName":"windowsSerial"},{"name":"win_env","number":214,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsEnvironment","jsonName":"winEnv"},{"name":"windows_comapp_com","number":215,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsComApp","jsonName":"windowsComappCom"},{"name":"windows_comapp_dcom","number":216,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsComApp","jsonName":"windowsComappDcom"},{"name":"windows_comapp_component","number":217,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsComApp","jsonName":"windowsComappComponent"},{"name":"windows_sat","number":218,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsSat","jsonName":"windowsSat"},{"name":"windows_codec","number":219,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsCodec","jsonName":"windowsCodec"},{"name":"mac_accessibility","number":220,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerMacAccessibility","oneofIndex":10,"jsonName":"macAccessibility","proto3Optional":true},{"name":"mac_framework","number":221,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerMacOsFramework","jsonName":"macFramework"},{"name":"mac_preference_pane","number":222,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerMacPreferencePane","jsonName":"macPreferencePane"},{"name":"mac_regional_settings","number":224,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerMacRegionalSettings","oneofIndex":11,"jsonName":"macRegionalSettings","proto3Optional":true},{"name":"mac_install_history","number":225,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerMacInstallHistory","jsonName":"macInstallHistory"},{"name":"last_user","number":301,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.LastUser","oneofIndex":12,"jsonName":"lastUser","proto3Optional":true},{"name":"user","number":302,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.UserAccount","jsonName":"user"},{"name":"user_group","number":303,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.UserGroup","jsonName":"userGroup"},{"name":"user_in_group","number":304,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.UserInGroup","jsonName":"userInGroup"}],"oneofDecl":[{"name":"_chassis"},{"name":"_motherboard"},{"name":"_memory"},{"name":"_bios"},{"name":"_os_recovery"},{"name":"_computer_system_product"},{"name":"_computer_system"},{"name":"_software_inventory"},{"name":"_boot_config"},{"name":"_internet_explorer"},{"name":"_mac_accessibility"},{"name":"_mac_regional_settings"},{"name":"_last_user"}]},{"name":"Tag","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"value","proto3Optional":true}],"oneofDecl":[{"name":"_value"}]},{"name":"Relation","field":[{"name":"from","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","oneofIndex":0,"jsonName":"from","proto3Optional":true},{"name":"to","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","oneofIndex":1,"jsonName":"to","proto3Optional":true},{"name":"start","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"start"},{"name":"end","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":2,"jsonName":"end","proto3Optional":true},{"name":"name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"tag","number":6,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Tag","jsonName":"tag"}],"oneofDecl":[{"name":"_from"},{"name":"_to"},{"name":"_end"}]},{"name":"CorrelationFields","field":[{"name":"field","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CorrField","jsonName":"field"}]},{"name":"CorrField","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"value"}]},{"name":"ReconciliationInfo","field":[{"name":"correlation_time","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"correlationTime"},{"name":"state","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".com.lansweeper.dp.outbound.v1.ReconciliationInfo.EntryState","jsonName":"state"},{"name":"master_type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".com.lansweeper.dp.outbound.v1.ReconciliationInfo.MasterType","oneofIndex":0,"jsonName":"masterType","proto3Optional":true},{"name":"master","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","oneofIndex":1,"jsonName":"master","proto3Optional":true},{"name":"reference","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","oneofIndex":2,"jsonName":"reference","proto3Optional":true},{"name":"alias","number":6,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","jsonName":"alias"},{"name":"confidence","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"confidence","proto3Optional":true},{"name":"debug_string","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"debugString","proto3Optional":true}],"enumType":[{"name":"EntryState","value":[{"name":"GOLDEN","number":0},{"name":"ALIAS","number":1}]},{"name":"MasterType","value":[{"name":"ENGINE","number":0},{"name":"USER","number":1}]}],"oneofDecl":[{"name":"_master_type"},{"name":"_master"},{"name":"_reference"},{"name":"_confidence"},{"name":"_debug_string"}]},{"name":"CloudEntity","field":[{"name":"body","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Any","jsonName":"body"},{"name":"environment_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"environmentId"},{"name":"cloud_provider","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"cloudProvider"},{"name":"region_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"regionId","proto3Optional":true},{"name":"environment_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"environmentName"},{"name":"category","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"category"}],"oneofDecl":[{"name":"_region_id"}]},{"name":"OtModule","field":[{"name":"component_type","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"componentType","proto3Optional":true},{"name":"bus_config","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OtBusConfig","jsonName":"busConfig"},{"name":"is_main_module","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isMainModule"},{"name":"total_bus_count","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"totalBusCount"},{"name":"total_bus_size","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"totalBusSize"},{"name":"max_bus_level","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"maxBusLevel"},{"name":"part_number","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"partNumber","proto3Optional":true},{"name":"ext_info","number":5,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OtModuleExtInfo","jsonName":"extInfo"},{"name":"route_path","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"routePath","proto3Optional":true},{"name":"is_network_node","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isNetworkNode"},{"name":"scan_protocol","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"scanProtocol","proto3Optional":true},{"name":"scan_info","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OtScanInfo","oneofIndex":4,"jsonName":"scanInfo","proto3Optional":true},{"name":"fw_history","number":10,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OtFirmwareHistory","jsonName":"fwHistory"}],"oneofDecl":[{"name":"_component_type"},{"name":"_part_number"},{"name":"_route_path"},{"name":"_scan_protocol"},{"name":"_scan_info"}]},{"name":"OtBusConfig","field":[{"name":"number","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"number"},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"type","proto3Optional":true},{"name":"size","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"size"},{"name":"start_index","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"startIndex"},{"name":"position","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"position","proto3Optional":true},{"name":"width","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"width","proto3Optional":true},{"name":"is_main_module","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":4,"jsonName":"isMainModule","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_type"},{"name":"_position"},{"name":"_width"},{"name":"_is_main_module"}]},{"name":"OtModuleExtInfo","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"value"}]},{"name":"OtScanInfo","field":[{"name":"scan_target_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"scanTargetId","proto3Optional":true},{"name":"scan_target_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"scanTargetName","proto3Optional":true},{"name":"sensor_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"sensorId","proto3Optional":true},{"name":"sensor_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"sensorName","proto3Optional":true},{"name":"protocol_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"protocolId","proto3Optional":true},{"name":"protocol_name","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"protocolName","proto3Optional":true},{"name":"port","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":6,"jsonName":"port","proto3Optional":true},{"name":"network_protocol","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"networkProtocol","proto3Optional":true},{"name":"last_tried","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":8,"jsonName":"lastTried","proto3Optional":true},{"name":"last_scan","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":9,"jsonName":"lastScan","proto3Optional":true}],"oneofDecl":[{"name":"_scan_target_id"},{"name":"_scan_target_name"},{"name":"_sensor_id"},{"name":"_sensor_name"},{"name":"_protocol_id"},{"name":"_protocol_name"},{"name":"_port"},{"name":"_network_protocol"},{"name":"_last_tried"},{"name":"_last_scan"}]},{"name":"OtFirmwareHistory","field":[{"name":"firmware","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"firmware"},{"name":"from","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"from"},{"name":"until","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"until"}]},{"name":"AssetType","field":[{"name":"ls_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"lsName"},{"name":"ls_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"lsId"},{"name":"fing_type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"fingType","proto3Optional":true},{"name":"sub_type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"subType","proto3Optional":true}],"oneofDecl":[{"name":"_fing_type"},{"name":"_sub_type"}]},{"name":"SourceInfo","field":[{"name":"source_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"sourceId"},{"name":"source_type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"sourceType"},{"name":"source_agent","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"sourceAgent","proto3Optional":true},{"name":"source_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"sourceName","proto3Optional":true},{"name":"raw_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"rawId"},{"name":"last_synced","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"lastSynced"}],"oneofDecl":[{"name":"_source_agent"},{"name":"_source_name"}]},{"name":"ScanError","field":[{"name":"section","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"section"},{"name":"error","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"error"},{"name":"source","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"source","proto3Optional":true},{"name":"timestamp","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":1,"jsonName":"timestamp","proto3Optional":true},{"name":"duration","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"duration","proto3Optional":true}],"oneofDecl":[{"name":"_source"},{"name":"_timestamp"},{"name":"_duration"}]},{"name":"CoreFields","field":[{"name":"type","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.AssetType","jsonName":"type"},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"domain","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"domain","proto3Optional":true},{"name":"ip_address","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"ipAddress","proto3Optional":true},{"name":"serial","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"serial","proto3Optional":true},{"name":"mac","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"mac","proto3Optional":true},{"name":"mac_vendor","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"macVendor","proto3Optional":true},{"name":"sensor_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"sensorId","proto3Optional":true},{"name":"fqdn","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"fqdn","proto3Optional":true},{"name":"confidence","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"confidence"}],"oneofDecl":[{"name":"_domain"},{"name":"_ip_address"},{"name":"_serial"},{"name":"_mac"},{"name":"_mac_vendor"},{"name":"_sensor_id"},{"name":"_fqdn"}]},{"name":"LastUser","field":[{"name":"user_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"userName"},{"name":"user_type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"userType","proto3Optional":true},{"name":"upn","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"upn","proto3Optional":true},{"name":"sid","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"sid","proto3Optional":true}],"oneofDecl":[{"name":"_user_type"},{"name":"_upn"},{"name":"_sid"}]},{"name":"UserAccount","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"domain","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"domain","proto3Optional":true},{"name":"caption","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"caption","proto3Optional":true},{"name":"description","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"description","proto3Optional":true},{"name":"full_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"fullName","proto3Optional":true},{"name":"account_type","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":5,"jsonName":"accountType","proto3Optional":true},{"name":"sid","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"sid","proto3Optional":true},{"name":"sid_type","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":7,"jsonName":"sidType","proto3Optional":true},{"name":"local_account","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":8,"jsonName":"localAccount","proto3Optional":true},{"name":"disabled","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":9,"jsonName":"disabled","proto3Optional":true},{"name":"lockout","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":10,"jsonName":"lockout","proto3Optional":true},{"name":"password_changeable","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":11,"jsonName":"passwordChangeable","proto3Optional":true},{"name":"password_expires","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":12,"jsonName":"passwordExpires","proto3Optional":true},{"name":"password_required","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":13,"jsonName":"passwordRequired","proto3Optional":true},{"name":"status","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"status","proto3Optional":true},{"name":"user_id","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":15,"jsonName":"userId","proto3Optional":true},{"name":"group_id","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"groupId","proto3Optional":true},{"name":"home_directory","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"homeDirectory","proto3Optional":true},{"name":"login_shell","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"loginShell","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_domain"},{"name":"_caption"},{"name":"_description"},{"name":"_full_name"},{"name":"_account_type"},{"name":"_sid"},{"name":"_sid_type"},{"name":"_local_account"},{"name":"_disabled"},{"name":"_lockout"},{"name":"_password_changeable"},{"name":"_password_expires"},{"name":"_password_required"},{"name":"_status"},{"name":"_user_id"},{"name":"_group_id"},{"name":"_home_directory"},{"name":"_login_shell"}]},{"name":"UserGroup","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"description","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"description","proto3Optional":true},{"name":"domain","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"domain","proto3Optional":true},{"name":"sid","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"sid","proto3Optional":true},{"name":"local_account","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":5,"jsonName":"localAccount","proto3Optional":true},{"name":"group_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":6,"jsonName":"groupId","proto3Optional":true},{"name":"type","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"type","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_caption"},{"name":"_description"},{"name":"_domain"},{"name":"_sid"},{"name":"_local_account"},{"name":"_group_id"},{"name":"_type"}]},{"name":"UserInGroup","field":[{"name":"group_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"groupName","proto3Optional":true},{"name":"user_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"userName","proto3Optional":true},{"name":"user_domain_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"userDomainName","proto3Optional":true},{"name":"account_type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"accountType","proto3Optional":true},{"name":"is_admin_group","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":4,"jsonName":"isAdminGroup","proto3Optional":true}],"oneofDecl":[{"name":"_group_name"},{"name":"_user_name"},{"name":"_user_domain_name"},{"name":"_account_type"},{"name":"_is_admin_group"}]},{"name":"InternetExplorer","field":[{"name":"active_x","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.InternetExplorer.ActiveX","jsonName":"activeX"},{"name":"bar","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.InternetExplorer.BrowserObject","jsonName":"bar"},{"name":"browser_object","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.InternetExplorer.BrowserObject","jsonName":"browserObject"},{"name":"extension","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.InternetExplorer.Extension","jsonName":"extension"}],"nestedType":[{"name":"ActiveX","field":[{"name":"control","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"control","proto3Optional":true},{"name":"code_base","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"codeBase","proto3Optional":true},{"name":"info","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"info","proto3Optional":true},{"name":"osd","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"osd","proto3Optional":true}],"oneofDecl":[{"name":"_control"},{"name":"_code_base"},{"name":"_info"},{"name":"_osd"}]},{"name":"Extension","field":[{"name":"control","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"control","proto3Optional":true},{"name":"button_text","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"buttonText","proto3Optional":true},{"name":"cls_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"clsId","proto3Optional":true},{"name":"default_visible","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"defaultVisible","proto3Optional":true},{"name":"exec","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"exec","proto3Optional":true},{"name":"hot_icon","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"hotIcon","proto3Optional":true},{"name":"icon","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"icon","proto3Optional":true},{"name":"menu_text","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"menuText","proto3Optional":true},{"name":"tooltip","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"tooltip","proto3Optional":true}],"oneofDecl":[{"name":"_control"},{"name":"_button_text"},{"name":"_cls_id"},{"name":"_default_visible"},{"name":"_exec"},{"name":"_hot_icon"},{"name":"_icon"},{"name":"_menu_text"},{"name":"_tooltip"}]},{"name":"BrowserObject","field":[{"name":"control","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"control"}]},{"name":"BarInfo","field":[{"name":"control","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"control"}]}]},{"name":"WindowsSqlServer","field":[{"name":"is_clustered","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isClustered"},{"name":"sql_authentication_mode","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".com.lansweeper.dp.outbound.v1.WindowsSqlServer.SqlAuthenticationMode","jsonName":"sqlAuthenticationMode"},{"name":"databases","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SqlServerDatabase","jsonName":"databases"},{"name":"services","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SqlServerService","jsonName":"services"},{"name":"service_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"serviceName"},{"name":"display_version","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"displayVersion"},{"name":"version","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"version"},{"name":"sp_level","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"spLevel","proto3Optional":true},{"name":"sku_name","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"skuName","proto3Optional":true},{"name":"language","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"language","proto3Optional":true},{"name":"is_wow64","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":3,"jsonName":"isWow64","proto3Optional":true},{"name":"install_path","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"installPath","proto3Optional":true},{"name":"file_version","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"fileVersion","proto3Optional":true},{"name":"data_path","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"dataPath","proto3Optional":true},{"name":"cluster","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SqlServerCluster","oneofIndex":7,"jsonName":"cluster","proto3Optional":true},{"name":"instance_id","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"instanceId"},{"name":"instance_name","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"instanceName","proto3Optional":true}],"enumType":[{"name":"SqlAuthenticationMode","value":[{"name":"UNKNOWN_MODE","number":0},{"name":"WINDOWS","number":1},{"name":"MIXED","number":2}]}],"oneofDecl":[{"name":"_sp_level"},{"name":"_sku_name"},{"name":"_language"},{"name":"_is_wow64"},{"name":"_install_path"},{"name":"_file_version"},{"name":"_data_path"},{"name":"_cluster"},{"name":"_instance_name"}]},{"name":"SqlServerDatabase","field":[{"name":"data_files_size_kb","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"dataFilesSizeKb","proto3Optional":true},{"name":"log_files_size_kb","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"logFilesSizeKb","proto3Optional":true},{"name":"log_files_used_size_kb","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"logFilesUsedSizeKb","proto3Optional":true},{"name":"name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"name","proto3Optional":true}],"oneofDecl":[{"name":"_data_files_size_kb"},{"name":"_log_files_size_kb"},{"name":"_log_files_used_size_kb"},{"name":"_name"}]},{"name":"SqlServerService","field":[{"name":"state","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".com.lansweeper.dp.outbound.v1.SqlServerService.ServiceState","oneofIndex":0,"jsonName":"state","proto3Optional":true},{"name":"startup_type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".com.lansweeper.dp.outbound.v1.SqlServerService.ServiceStartupType","oneofIndex":1,"jsonName":"startupType","proto3Optional":true},{"name":"name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"name","proto3Optional":true},{"name":"instance_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"instanceId","proto3Optional":true}],"enumType":[{"name":"ServiceState","value":[{"name":"NO_SERVICE_STATE","number":0},{"name":"STOPPED","number":1},{"name":"START_PENDING","number":2},{"name":"STOP_PENDING","number":3},{"name":"RUNNING","number":4},{"name":"CONTINUE_PENDING","number":5},{"name":"PAUSE_PENDING","number":6},{"name":"PAUSED","number":7}]},{"name":"ServiceStartupType","value":[{"name":"NO_SERVICE_STARTUP_TYPE","number":0},{"name":"OTHER_STARTYP_TYPE","number":1},{"name":"AUTOMATIC","number":2},{"name":"MANUAL","number":3},{"name":"DISABLED","number":4}]}],"oneofDecl":[{"name":"_state"},{"name":"_startup_type"},{"name":"_name"},{"name":"_instance_id"}]},{"name":"SqlServerCluster","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"cluster_nodes","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SqlServerClusterNode","jsonName":"clusterNodes"}],"oneofDecl":[{"name":"_name"}]},{"name":"SqlServerClusterNode","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true}],"oneofDecl":[{"name":"_name"}]},{"name":"WindowsSqlServerChangeEvent","field":[{"name":"event_type","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".com.lansweeper.dp.outbound.v1.WindowsSqlServerChangeEvent.EventType","jsonName":"eventType"},{"name":"start","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"start"},{"name":"end","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":0,"jsonName":"end","proto3Optional":true},{"name":"windows_sql_server","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsSqlServer","jsonName":"windowsSqlServer"}],"enumType":[{"name":"EventType","value":[{"name":"INSTALL","number":0},{"name":"UNINSTALL","number":1},{"name":"UPDATE","number":2}]}],"oneofDecl":[{"name":"_end"}]},{"name":"HardwareInfo","field":[{"name":"type_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"typeId","proto3Optional":true},{"name":"make_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"makeId","proto3Optional":true},{"name":"model_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"modelId","proto3Optional":true},{"name":"family_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"familyId","proto3Optional":true},{"name":"is_family","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":4,"jsonName":"isFamily","proto3Optional":true},{"name":"serial","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"serial","proto3Optional":true},{"name":"type_name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"typeName","proto3Optional":true},{"name":"type_caption","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"typeCaption","proto3Optional":true},{"name":"type_group","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"typeGroup","proto3Optional":true},{"name":"make_name","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"makeName","proto3Optional":true},{"name":"model_name","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"modelName","proto3Optional":true},{"name":"family_name","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"familyName","proto3Optional":true},{"name":"cpe","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"cpe","proto3Optional":true},{"name":"rank","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":13,"jsonName":"rank","proto3Optional":true},{"name":"spec","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SpecHardwareInfo","oneofIndex":14,"jsonName":"spec","proto3Optional":true},{"name":"catalog_brand","number":50,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","oneofIndex":15,"jsonName":"catalogBrand","proto3Optional":true},{"name":"catalog_model","number":51,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogModel","oneofIndex":16,"jsonName":"catalogModel","proto3Optional":true},{"name":"catalog_family","number":52,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogModel","oneofIndex":17,"jsonName":"catalogFamily","proto3Optional":true}],"oneofDecl":[{"name":"_type_id"},{"name":"_make_id"},{"name":"_model_id"},{"name":"_family_id"},{"name":"_is_family"},{"name":"_serial"},{"name":"_type_name"},{"name":"_type_caption"},{"name":"_type_group"},{"name":"_make_name"},{"name":"_model_name"},{"name":"_family_name"},{"name":"_cpe"},{"name":"_rank"},{"name":"_spec"},{"name":"_catalog_brand"},{"name":"_catalog_model"},{"name":"_catalog_family"}]},{"name":"SpecHardwareInfo","field":[{"name":"architecture","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"architecture","proto3Optional":true},{"name":"model","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"model","proto3Optional":true},{"name":"manufacturer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"manufacturer","proto3Optional":true},{"name":"serial_number","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"serialNumber","proto3Optional":true},{"name":"system_sku","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"systemSku","proto3Optional":true},{"name":"uptime","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"uptime","proto3Optional":true},{"name":"bus_speed","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"busSpeed","proto3Optional":true},{"name":"boot_rom_version","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"bootRomVersion","proto3Optional":true},{"name":"smc_version_system","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"smcVersionSystem","proto3Optional":true}],"oneofDecl":[{"name":"_architecture"},{"name":"_model"},{"name":"_manufacturer"},{"name":"_serial_number"},{"name":"_system_sku"},{"name":"_uptime"},{"name":"_bus_speed"},{"name":"_boot_rom_version"},{"name":"_smc_version_system"}]},{"name":"OperatingSystem","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"id","proto3Optional":true},{"name":"make_id","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"makeId","proto3Optional":true},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"name","proto3Optional":true},{"name":"version","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"version","proto3Optional":true},{"name":"build","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"build","proto3Optional":true},{"name":"fw_version","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"fwVersion","proto3Optional":true},{"name":"cpe","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"cpe","proto3Optional":true},{"name":"fw_cpe","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"fwCpe","proto3Optional":true},{"name":"rank","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":9,"jsonName":"rank","proto3Optional":true},{"name":"windows","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsOperatingSystemInfo","oneofIndex":0,"jsonName":"windows"},{"name":"mac","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MacOperatingSystemInfo","oneofIndex":0,"jsonName":"mac"},{"name":"linux","number":34,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.LinuxOperatingSystemInfo","oneofIndex":0,"jsonName":"linux"}],"oneofDecl":[{"name":"spec"},{"name":"_id"},{"name":"_make_id"},{"name":"_name"},{"name":"_version"},{"name":"_build"},{"name":"_fw_version"},{"name":"_cpe"},{"name":"_fw_cpe"},{"name":"_rank"}]},{"name":"MacOperatingSystemInfo","field":[{"name":"kernel_caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"kernelCaption","proto3Optional":true},{"name":"system_version","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"systemVersion","proto3Optional":true},{"name":"boot_volume","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"bootVolume","proto3Optional":true},{"name":"boot_mode","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"bootMode","proto3Optional":true},{"name":"computer_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"computerName","proto3Optional":true},{"name":"user_name","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"userName","proto3Optional":true},{"name":"up_time","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"upTime","proto3Optional":true},{"name":"secure_virtual_memory","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"secureVirtualMemory","proto3Optional":true},{"name":"sixty_four_bit_kernel_and_exts","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"sixtyFourBitKernelAndExts","proto3Optional":true},{"name":"system_integrity","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"systemIntegrity","proto3Optional":true}],"oneofDecl":[{"name":"_kernel_caption"},{"name":"_system_version"},{"name":"_boot_volume"},{"name":"_boot_mode"},{"name":"_computer_name"},{"name":"_user_name"},{"name":"_up_time"},{"name":"_secure_virtual_memory"},{"name":"_sixty_four_bit_kernel_and_exts"},{"name":"_system_integrity"}]},{"name":"LinuxOperatingSystemInfo","field":[{"name":"kernel_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"kernelName","proto3Optional":true},{"name":"kernel_release","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"kernelRelease","proto3Optional":true},{"name":"kernel_version","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"kernelVersion","proto3Optional":true},{"name":"distribution","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"distribution","proto3Optional":true},{"name":"os_release","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"osRelease","proto3Optional":true}],"oneofDecl":[{"name":"_kernel_name"},{"name":"_kernel_release"},{"name":"_kernel_version"},{"name":"_distribution"},{"name":"_os_release"}]},{"name":"WindowsOperatingSystemInfo","field":[{"name":"version","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"version","proto3Optional":true},{"name":"service_pack","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":1,"jsonName":"servicePack","proto3Optional":true},{"name":"build","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"build","proto3Optional":true},{"name":"version_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"versionName","proto3Optional":true},{"name":"is_domain_controller","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":4,"jsonName":"isDomainController","proto3Optional":true},{"name":"part_of_domain","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":5,"jsonName":"partOfDomain","proto3Optional":true},{"name":"is_azure_ad_joined","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":6,"jsonName":"isAzureAdJoined","proto3Optional":true},{"name":"os_code","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"osCode","proto3Optional":true},{"name":"boot_device","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"bootDevice","proto3Optional":true},{"name":"build_number","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"buildNumber","proto3Optional":true},{"name":"build_type","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"buildType","proto3Optional":true},{"name":"caption","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"caption","proto3Optional":true},{"name":"code_set","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"codeSet","proto3Optional":true},{"name":"country_code","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"countryCode","proto3Optional":true},{"name":"csd_version","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"csdVersion","proto3Optional":true},{"name":"current_timezone","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":15,"jsonName":"currentTimezone","proto3Optional":true},{"name":"debug","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":16,"jsonName":"debug","proto3Optional":true},{"name":"description","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"description","proto3Optional":true},{"name":"foreground_application_boost","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":18,"jsonName":"foregroundApplicationBoost","proto3Optional":true},{"name":"install_date","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":19,"jsonName":"installDate","proto3Optional":true},{"name":"max_process_memory_size","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":20,"jsonName":"maxProcessMemorySize","proto3Optional":true},{"name":"number_of_licensed_users","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":21,"jsonName":"numberOfLicensedUsers","proto3Optional":true},{"name":"organization","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":22,"jsonName":"organization","proto3Optional":true},{"name":"os_language","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":23,"jsonName":"osLanguage","proto3Optional":true},{"name":"os_product_suite","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":24,"jsonName":"osProductSuite","proto3Optional":true},{"name":"os_type","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":25,"jsonName":"osType","proto3Optional":true},{"name":"plus_product_id","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":26,"jsonName":"plusProductId","proto3Optional":true},{"name":"plus_version_number","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":27,"jsonName":"plusVersionNumber","proto3Optional":true},{"name":"registered_user","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":28,"jsonName":"registeredUser","proto3Optional":true},{"name":"serial_number","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":29,"jsonName":"serialNumber","proto3Optional":true},{"name":"service_pack_major_version","number":34,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":30,"jsonName":"servicePackMajorVersion","proto3Optional":true},{"name":"service_pack_minor_version","number":35,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":31,"jsonName":"servicePackMinorVersion","proto3Optional":true},{"name":"size_stored_in_paging_files","number":36,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":32,"jsonName":"sizeStoredInPagingFiles","proto3Optional":true},{"name":"status","number":37,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":33,"jsonName":"status","proto3Optional":true},{"name":"system_device","number":38,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":34,"jsonName":"systemDevice","proto3Optional":true},{"name":"system_directory","number":39,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":35,"jsonName":"systemDirectory","proto3Optional":true},{"name":"total_virtual_memory_size","number":40,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":36,"jsonName":"totalVirtualMemorySize","proto3Optional":true},{"name":"total_visible_memory_size","number":41,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":37,"jsonName":"totalVisibleMemorySize","proto3Optional":true},{"name":"windows_directory","number":43,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":38,"jsonName":"windowsDirectory","proto3Optional":true},{"name":"total_swap_space_size","number":44,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":39,"jsonName":"totalSwapSpaceSize","proto3Optional":true},{"name":"large_system_cache","number":45,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":40,"jsonName":"largeSystemCache","proto3Optional":true},{"name":"other_type_description","number":46,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":41,"jsonName":"otherTypeDescription","proto3Optional":true},{"name":"product_type","number":47,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":42,"jsonName":"productType","proto3Optional":true},{"name":"suite_mask","number":48,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":43,"jsonName":"suiteMask","proto3Optional":true},{"name":"system_drive","number":49,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":44,"jsonName":"systemDrive","proto3Optional":true},{"name":"encryption_level","number":50,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":45,"jsonName":"encryptionLevel","proto3Optional":true},{"name":"data_execution_prevention32_bit_applications","number":51,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":46,"jsonName":"dataExecutionPrevention32BitApplications","proto3Optional":true},{"name":"is_data_execution_prevention_available","number":52,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":47,"jsonName":"isDataExecutionPreventionAvailable","proto3Optional":true},{"name":"data_execution_prevention_drivers","number":53,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":48,"jsonName":"dataExecutionPreventionDrivers","proto3Optional":true},{"name":"data_execution_prevention_support_policy","number":54,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":49,"jsonName":"dataExecutionPreventionSupportPolicy","proto3Optional":true}],"oneofDecl":[{"name":"_version"},{"name":"_service_pack"},{"name":"_build"},{"name":"_version_name"},{"name":"_is_domain_controller"},{"name":"_part_of_domain"},{"name":"_is_azure_ad_joined"},{"name":"_os_code"},{"name":"_boot_device"},{"name":"_build_number"},{"name":"_build_type"},{"name":"_caption"},{"name":"_code_set"},{"name":"_country_code"},{"name":"_csd_version"},{"name":"_current_timezone"},{"name":"_debug"},{"name":"_description"},{"name":"_foreground_application_boost"},{"name":"_install_date"},{"name":"_max_process_memory_size"},{"name":"_number_of_licensed_users"},{"name":"_organization"},{"name":"_os_language"},{"name":"_os_product_suite"},{"name":"_os_type"},{"name":"_plus_product_id"},{"name":"_plus_version_number"},{"name":"_registered_user"},{"name":"_serial_number"},{"name":"_service_pack_major_version"},{"name":"_service_pack_minor_version"},{"name":"_size_stored_in_paging_files"},{"name":"_status"},{"name":"_system_device"},{"name":"_system_directory"},{"name":"_total_virtual_memory_size"},{"name":"_total_visible_memory_size"},{"name":"_windows_directory"},{"name":"_total_swap_space_size"},{"name":"_large_system_cache"},{"name":"_other_type_description"},{"name":"_product_type"},{"name":"_suite_mask"},{"name":"_system_drive"},{"name":"_encryption_level"},{"name":"_data_execution_prevention32_bit_applications"},{"name":"_is_data_execution_prevention_available"},{"name":"_data_execution_prevention_drivers"},{"name":"_data_execution_prevention_support_policy"}]},{"name":"OperatingSystemChangeEvent","field":[{"name":"event_type","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemChangeEvent.EventType","jsonName":"eventType"},{"name":"start","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"start"},{"name":"end","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":0,"jsonName":"end","proto3Optional":true},{"name":"os","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystem","jsonName":"os"},{"name":"prev_os","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystem","oneofIndex":1,"jsonName":"prevOs","proto3Optional":true}],"enumType":[{"name":"EventType","value":[{"name":"INSTALL","number":0},{"name":"UNINSTALL","number":1},{"name":"UPDATE","number":2}]}],"oneofDecl":[{"name":"_end"},{"name":"_prev_os"}]},{"name":"OperatingSystemFeature","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"caption"}]},{"name":"OperatingSystemPatch","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"type","proto3Optional":true},{"name":"install_date","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":1,"jsonName":"installDate","proto3Optional":true},{"name":"install_by","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"installBy","proto3Optional":true},{"name":"comments","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"comments","proto3Optional":true},{"name":"windows_service_pack","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"windowsServicePack","proto3Optional":true}],"oneofDecl":[{"name":"_type"},{"name":"_install_date"},{"name":"_install_by"},{"name":"_comments"},{"name":"_windows_service_pack"}]},{"name":"NetworkInterfaces","field":[{"name":"timestamp","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"timestamp"},{"name":"interface","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetworkInterface","jsonName":"interface"}]},{"name":"NetworkInterface","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"type"},{"name":"sub_type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"subType"},{"name":"id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"id","proto3Optional":true},{"name":"mac","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"mac","proto3Optional":true},{"name":"dhcp_enabled","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"dhcpEnabled","proto3Optional":true},{"name":"dhcp_server_ip","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"dhcpServerIp","proto3Optional":true},{"name":"ip","number":8,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetIpAddress","jsonName":"ip"},{"name":"gateway_ip","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"gatewayIp","proto3Optional":true},{"name":"gateway_mac","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"gatewayMac","proto3Optional":true},{"name":"dns_server","number":11,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"dnsServer"},{"name":"dns_host_name","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"dnsHostName","proto3Optional":true},{"name":"dns_domain_suffix_search_order","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"dnsDomainSuffixSearchOrder","proto3Optional":true},{"name":"service_name","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"serviceName","proto3Optional":true},{"name":"database_path","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"databasePath","proto3Optional":true}],"oneofDecl":[{"name":"_id"},{"name":"_mac"},{"name":"_dhcp_enabled"},{"name":"_dhcp_server_ip"},{"name":"_gateway_ip"},{"name":"_gateway_mac"},{"name":"_dns_host_name"},{"name":"_dns_domain_suffix_search_order"},{"name":"_service_name"},{"name":"_database_path"}]},{"name":"NetIpAddress","field":[{"name":"ip","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ip"},{"name":"subnet","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"subnet"}]},{"name":"NetworkProtocols","field":[{"name":"protocol","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"protocol"}]},{"name":"PortScan","field":[{"name":"timestamp","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"timestamp"},{"name":"scanned_port","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ScannedPort","jsonName":"scannedPort"}]},{"name":"ScannedPort","field":[{"name":"protocol","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"protocol"},{"name":"port_number","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"portNumber"},{"name":"local_address","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"localAddress","proto3Optional":true},{"name":"process_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"processName","proto3Optional":true},{"name":"banner","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"banner","proto3Optional":true},{"name":"http_server","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.HttpServerInfo","oneofIndex":3,"jsonName":"httpServer","proto3Optional":true}],"oneofDecl":[{"name":"_local_address"},{"name":"_process_name"},{"name":"_banner"},{"name":"_http_server"}]},{"name":"HttpServerInfo","field":[{"name":"port","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"port"},{"name":"ssl","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"ssl","proto3Optional":true},{"name":"server","number":3,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"server"},{"name":"wwwauth","number":4,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"wwwauth"},{"name":"cookie","number":5,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"cookie"},{"name":"title","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"title","proto3Optional":true},{"name":"favicon_md5","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"faviconMd5","proto3Optional":true},{"name":"favicon","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","oneofIndex":3,"jsonName":"favicon","proto3Optional":true},{"name":"certificates","number":9,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.HttpCertificate","jsonName":"certificates"}],"oneofDecl":[{"name":"_ssl"},{"name":"_title"},{"name":"_favicon_md5"},{"name":"_favicon"}]},{"name":"HttpCertificate","field":[{"name":"thumbprint","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"thumbprint","proto3Optional":true},{"name":"serial_number","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"serialNumber","proto3Optional":true},{"name":"x509_issuer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"x509Issuer","proto3Optional":true},{"name":"x509_subject","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"x509Subject","proto3Optional":true},{"name":"effective_date","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":4,"jsonName":"effectiveDate","proto3Optional":true},{"name":"expiration_date","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":5,"jsonName":"expirationDate","proto3Optional":true},{"name":"errors","number":7,"label":"LABEL_REPEATED","type":"TYPE_ENUM","typeName":".com.lansweeper.dp.outbound.v1.HttpCertificate.SslPolicyErrors","jsonName":"errors"}],"enumType":[{"name":"SslPolicyErrors","value":[{"name":"SSL_REMOTE_CERTIFICATE_NOT_AVAILABLE","number":0},{"name":"SSL_REMOTE_CERTIFICATE_NAME_MISMATCH","number":1},{"name":"SSL_REMOTE_CERTIFICATE_CHAIN_ERRORS","number":2}]}],"oneofDecl":[{"name":"_thumbprint"},{"name":"_serial_number"},{"name":"_x509_issuer"},{"name":"_x509_subject"},{"name":"_effective_date"},{"name":"_expiration_date"}]},{"name":"Processor","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"address_sizes","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"addressSizes","proto3Optional":true},{"name":"address_width","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":1,"jsonName":"addressWidth","proto3Optional":true},{"name":"architecture","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"architecture","proto3Optional":true},{"name":"availability","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"availability","proto3Optional":true},{"name":"bogo_mips","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":4,"jsonName":"bogoMips","proto3Optional":true},{"name":"byte_order","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"byteOrder","proto3Optional":true},{"name":"caption","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"caption","proto3Optional":true},{"name":"current_clock_speed","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":7,"jsonName":"currentClockSpeed","proto3Optional":true},{"name":"data_width","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"dataWidth","proto3Optional":true},{"name":"device_id","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"deviceId","proto3Optional":true},{"name":"external_clock_mhz","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":10,"jsonName":"externalClockMhz","proto3Optional":true},{"name":"family","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":11,"jsonName":"family","proto3Optional":true},{"name":"hypervisor_vendor","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"hypervisorVendor","proto3Optional":true},{"name":"l1d_cache_size_kb","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":13,"jsonName":"l1dCacheSizeKb","proto3Optional":true},{"name":"l1i_cache_size_kb","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":14,"jsonName":"l1iCacheSizeKb","proto3Optional":true},{"name":"l2_cache_size_kb","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":15,"jsonName":"l2CacheSizeKb","proto3Optional":true},{"name":"l2_cache_speed_mhz","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"l2CacheSpeedMhz","proto3Optional":true},{"name":"l3_cache_size_kb","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":17,"jsonName":"l3CacheSizeKb","proto3Optional":true},{"name":"level","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":18,"jsonName":"level","proto3Optional":true},{"name":"logical_cores_count","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":19,"jsonName":"logicalCoresCount","proto3Optional":true},{"name":"manufacturer","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":20,"jsonName":"manufacturer","proto3Optional":true},{"name":"max_clock_speed_mhz","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":21,"jsonName":"maxClockSpeedMhz","proto3Optional":true},{"name":"min_clock_speed_mhz","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":22,"jsonName":"minClockSpeedMhz","proto3Optional":true},{"name":"model_number","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":23,"jsonName":"modelNumber","proto3Optional":true},{"name":"op_modes","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":24,"jsonName":"opModes","proto3Optional":true},{"name":"physical_cores_count","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":25,"jsonName":"physicalCoresCount","proto3Optional":true},{"name":"processor_id","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":26,"jsonName":"processorId","proto3Optional":true},{"name":"processor_type","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":27,"jsonName":"processorType","proto3Optional":true},{"name":"revision","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":28,"jsonName":"revision","proto3Optional":true},{"name":"socket_designation","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":29,"jsonName":"socketDesignation","proto3Optional":true},{"name":"sockets","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":30,"jsonName":"sockets","proto3Optional":true},{"name":"status","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":31,"jsonName":"status","proto3Optional":true},{"name":"stepping","number":34,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":32,"jsonName":"stepping","proto3Optional":true},{"name":"threads_per_physical_core_count","number":35,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":33,"jsonName":"threadsPerPhysicalCoreCount","proto3Optional":true},{"name":"unique_id","number":36,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":34,"jsonName":"uniqueId","proto3Optional":true},{"name":"upgrade_method","number":37,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":35,"jsonName":"upgradeMethod","proto3Optional":true},{"name":"version","number":38,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":36,"jsonName":"version","proto3Optional":true},{"name":"virtualization","number":39,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":37,"jsonName":"virtualization","proto3Optional":true},{"name":"voltage_capabilities","number":40,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":38,"jsonName":"voltageCapabilities","proto3Optional":true}],"oneofDecl":[{"name":"_address_sizes"},{"name":"_address_width"},{"name":"_architecture"},{"name":"_availability"},{"name":"_bogo_mips"},{"name":"_byte_order"},{"name":"_caption"},{"name":"_current_clock_speed"},{"name":"_data_width"},{"name":"_device_id"},{"name":"_external_clock_mhz"},{"name":"_family"},{"name":"_hypervisor_vendor"},{"name":"_l1d_cache_size_kb"},{"name":"_l1i_cache_size_kb"},{"name":"_l2_cache_size_kb"},{"name":"_l2_cache_speed_mhz"},{"name":"_l3_cache_size_kb"},{"name":"_level"},{"name":"_logical_cores_count"},{"name":"_manufacturer"},{"name":"_max_clock_speed_mhz"},{"name":"_min_clock_speed_mhz"},{"name":"_model_number"},{"name":"_op_modes"},{"name":"_physical_cores_count"},{"name":"_processor_id"},{"name":"_processor_type"},{"name":"_revision"},{"name":"_socket_designation"},{"name":"_sockets"},{"name":"_status"},{"name":"_stepping"},{"name":"_threads_per_physical_core_count"},{"name":"_unique_id"},{"name":"_upgrade_method"},{"name":"_version"},{"name":"_virtualization"},{"name":"_voltage_capabilities"}]},{"name":"Chassis","field":[{"name":"type","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","jsonName":"type"},{"name":"lock_present","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"lockPresent","proto3Optional":true},{"name":"manufacturer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"manufacturer","proto3Optional":true},{"name":"security_status","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"securityStatus","proto3Optional":true},{"name":"serial_number","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"serialNumber","proto3Optional":true},{"name":"asset_tag","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"assetTag","proto3Optional":true},{"name":"version","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"version","proto3Optional":true},{"name":"bootup_state","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":6,"jsonName":"bootupState","proto3Optional":true}],"oneofDecl":[{"name":"_lock_present"},{"name":"_manufacturer"},{"name":"_security_status"},{"name":"_serial_number"},{"name":"_asset_tag"},{"name":"_version"},{"name":"_bootup_state"}]},{"name":"HardDrive","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"compressed","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"compressed","proto3Optional":true},{"name":"description","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"description","proto3Optional":true},{"name":"device_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"deviceId","proto3Optional":true},{"name":"drive_type","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":4,"jsonName":"driveType","proto3Optional":true},{"name":"file_system","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"fileSystem","proto3Optional":true},{"name":"free_space","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":6,"jsonName":"freeSpace","proto3Optional":true},{"name":"size","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":7,"jsonName":"size","proto3Optional":true},{"name":"volume_name","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"volumeName","proto3Optional":true},{"name":"serial_number","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"serialNumber","proto3Optional":true},{"name":"mounted_on","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"mountedOn","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_compressed"},{"name":"_description"},{"name":"_device_id"},{"name":"_drive_type"},{"name":"_file_system"},{"name":"_free_space"},{"name":"_size"},{"name":"_volume_name"},{"name":"_serial_number"},{"name":"_mounted_on"}]},{"name":"DriveVolume","field":[{"name":"device_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"deviceId","proto3Optional":true},{"name":"path","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"path","proto3Optional":true},{"name":"label","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"label","proto3Optional":true},{"name":"name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"name","proto3Optional":true},{"name":"capacity","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":4,"jsonName":"capacity","proto3Optional":true},{"name":"block_size","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"blockSize","proto3Optional":true},{"name":"free_space","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":6,"jsonName":"freeSpace","proto3Optional":true},{"name":"drive_type","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":7,"jsonName":"driveType","proto3Optional":true},{"name":"protection_status","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":8,"jsonName":"protectionStatus","proto3Optional":true},{"name":"error_description","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"errorDescription","proto3Optional":true},{"name":"error_methodology","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"errorMethodology","proto3Optional":true},{"name":"file_system","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"fileSystem","proto3Optional":true},{"name":"auto_mount","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":12,"jsonName":"autoMount","proto3Optional":true},{"name":"compressed","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":13,"jsonName":"compressed","proto3Optional":true},{"name":"dirty_bit_set","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":14,"jsonName":"dirtyBitSet","proto3Optional":true},{"name":"error_cleared","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":15,"jsonName":"errorCleared","proto3Optional":true},{"name":"indexing_enabled","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":16,"jsonName":"indexingEnabled","proto3Optional":true},{"name":"page_file_present","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":17,"jsonName":"pageFilePresent","proto3Optional":true},{"name":"supports_disk_quotas","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":18,"jsonName":"supportsDiskQuotas","proto3Optional":true},{"name":"supports_file_based_compression","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":19,"jsonName":"supportsFileBasedCompression","proto3Optional":true},{"name":"mounted","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":20,"jsonName":"mounted","proto3Optional":true},{"name":"mount_point","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":21,"jsonName":"mountPoint","proto3Optional":true}],"oneofDecl":[{"name":"_device_id"},{"name":"_path"},{"name":"_label"},{"name":"_name"},{"name":"_capacity"},{"name":"_block_size"},{"name":"_free_space"},{"name":"_drive_type"},{"name":"_protection_status"},{"name":"_error_description"},{"name":"_error_methodology"},{"name":"_file_system"},{"name":"_auto_mount"},{"name":"_compressed"},{"name":"_dirty_bit_set"},{"name":"_error_cleared"},{"name":"_indexing_enabled"},{"name":"_page_file_present"},{"name":"_supports_disk_quotas"},{"name":"_supports_file_based_compression"},{"name":"_mounted"},{"name":"_mount_point"}]},{"name":"NetworkVolume","field":[{"name":"win_mapped_drive","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsMappedDrive","oneofIndex":0,"jsonName":"winMappedDrive"},{"name":"mac_volume","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MacNetworkVolume","oneofIndex":0,"jsonName":"macVolume"},{"name":"name","number":100,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"name","proto3Optional":true}],"oneofDecl":[{"name":"driver"},{"name":"_name"}]},{"name":"WindowsMappedDrive","field":[{"name":"drive_letter","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"driveLetter"},{"name":"user_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"userName","proto3Optional":true},{"name":"user_domain","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"userDomain","proto3Optional":true},{"name":"remote_path","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"remotePath","proto3Optional":true}],"oneofDecl":[{"name":"_user_name"},{"name":"_user_domain"},{"name":"_remote_path"}]},{"name":"MacNetworkVolume","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"auto_mounted","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"autoMounted","proto3Optional":true},{"name":"fsmt_non_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"fsmtNonName","proto3Optional":true},{"name":"fs_type_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"fsTypeName","proto3Optional":true},{"name":"mnt_from_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"mntFromName","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_auto_mounted"},{"name":"_fsmt_non_name"},{"name":"_fs_type_name"},{"name":"_mnt_from_name"}]},{"name":"Keyboard","field":[{"name":"config_manager_error_code","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":0,"jsonName":"configManagerErrorCode","proto3Optional":true},{"name":"config_manager_user_config","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"configManagerUserConfig","proto3Optional":true},{"name":"description","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"description","proto3Optional":true},{"name":"device_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"deviceId","proto3Optional":true},{"name":"layout","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"layout","proto3Optional":true},{"name":"number_of_function_keys","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":5,"jsonName":"numberOfFunctionKeys","proto3Optional":true}],"oneofDecl":[{"name":"_config_manager_error_code"},{"name":"_config_manager_user_config"},{"name":"_description"},{"name":"_device_id"},{"name":"_layout"},{"name":"_number_of_function_keys"}]},{"name":"ComputerBus","field":[{"name":"bus_num","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"busNum","proto3Optional":true},{"name":"bus_type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":1,"jsonName":"busType","proto3Optional":true},{"name":"device_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"deviceId","proto3Optional":true},{"name":"pnp_device_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"pnpDeviceId","proto3Optional":true}],"oneofDecl":[{"name":"_bus_num"},{"name":"_bus_type"},{"name":"_device_id"},{"name":"_pnp_device_id"}]},{"name":"ComputerInfrared","field":[{"name":"availability","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":0,"jsonName":"availability","proto3Optional":true},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"config_manager_error_code","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"configManagerErrorCode","proto3Optional":true},{"name":"config_manager_user_config","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":3,"jsonName":"configManagerUserConfig","proto3Optional":true},{"name":"device_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"deviceId","proto3Optional":true},{"name":"manufacturer","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"manufacturer","proto3Optional":true},{"name":"protocol_supported","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":6,"jsonName":"protocolSupported","proto3Optional":true}],"oneofDecl":[{"name":"_availability"},{"name":"_caption"},{"name":"_config_manager_error_code"},{"name":"_config_manager_user_config"},{"name":"_device_id"},{"name":"_manufacturer"},{"name":"_protocol_supported"}]},{"name":"PointingDevice","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"device_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"deviceId","proto3Optional":true},{"name":"device_interface","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"deviceInterface","proto3Optional":true},{"name":"double_speed_threshold","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"doubleSpeedThreshold","proto3Optional":true},{"name":"handedness","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":4,"jsonName":"handedness","proto3Optional":true},{"name":"inf_file_name","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"infFileName","proto3Optional":true},{"name":"inf_section","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"infSection","proto3Optional":true},{"name":"manufacturer","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"manufacturer","proto3Optional":true},{"name":"number_of_buttons","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"numberOfButtons","proto3Optional":true},{"name":"pointing_type","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":9,"jsonName":"pointingType","proto3Optional":true},{"name":"quad_speed_threshold","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":10,"jsonName":"quadSpeedThreshold","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_device_id"},{"name":"_device_interface"},{"name":"_double_speed_threshold"},{"name":"_handedness"},{"name":"_inf_file_name"},{"name":"_inf_section"},{"name":"_manufacturer"},{"name":"_number_of_buttons"},{"name":"_pointing_type"},{"name":"_quad_speed_threshold"}]},{"name":"AutoRunCommand","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"command","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"command","proto3Optional":true},{"name":"location","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"location","proto3Optional":true},{"name":"name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"name","proto3Optional":true},{"name":"user","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"user","proto3Optional":true},{"name":"user_sid","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"userSid","proto3Optional":true},{"name":"order_preference","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"orderPreference","proto3Optional":true},{"name":"provides","number":8,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"provides"},{"name":"required","number":9,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"required"},{"name":"uses","number":10,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"uses"},{"name":"enabled","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":7,"jsonName":"enabled","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_command"},{"name":"_location"},{"name":"_name"},{"name":"_user"},{"name":"_user_sid"},{"name":"_order_preference"},{"name":"_enabled"}]},{"name":"BootConfig","field":[{"name":"boot_directory","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"bootDirectory","proto3Optional":true},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"name","proto3Optional":true},{"name":"configuration_path","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"configurationPath","proto3Optional":true},{"name":"scratch_directory","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"scratchDirectory","proto3Optional":true},{"name":"temp_directory","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"tempDirectory","proto3Optional":true},{"name":"boot_volume","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"bootVolume","proto3Optional":true},{"name":"boot_mode","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"bootMode","proto3Optional":true}],"oneofDecl":[{"name":"_boot_directory"},{"name":"_caption"},{"name":"_name"},{"name":"_configuration_path"},{"name":"_scratch_directory"},{"name":"_temp_directory"},{"name":"_boot_volume"},{"name":"_boot_mode"}]},{"name":"SharedResource","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"name","proto3Optional":true},{"name":"path","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"path","proto3Optional":true},{"name":"type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":3,"jsonName":"type","proto3Optional":true},{"name":"shared_permission","number":5,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SharedPermission","jsonName":"sharedPermission"}],"oneofDecl":[{"name":"_caption"},{"name":"_name"},{"name":"_path"},{"name":"_type"}]},{"name":"SharedPermission","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"trustee","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"trustee","proto3Optional":true},{"name":"read_access","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"readAccess","proto3Optional":true},{"name":"write_access","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":3,"jsonName":"writeAccess","proto3Optional":true},{"name":"full_access","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":4,"jsonName":"fullAccess","proto3Optional":true},{"name":"deny_access","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"denyAccess","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_trustee"},{"name":"_read_access"},{"name":"_write_access"},{"name":"_full_access"},{"name":"_deny_access"}]},{"name":"RunningProcess","field":[{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"path","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"path","proto3Optional":true},{"name":"threads","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"threads","proto3Optional":true},{"name":"priority","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"priority","proto3Optional":true},{"name":"handle","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"handle","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_path"},{"name":"_threads"},{"name":"_priority"},{"name":"_handle"}]},{"name":"OperatingSystemService","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"pathname","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"pathname","proto3Optional":true},{"name":"start_mode","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"startMode","proto3Optional":true},{"name":"start_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"startName","proto3Optional":true},{"name":"state","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"state","proto3Optional":true},{"name":"started","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":6,"jsonName":"started","proto3Optional":true},{"name":"accept_pause","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":7,"jsonName":"acceptPause","proto3Optional":true},{"name":"accept_stop","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":8,"jsonName":"acceptStop","proto3Optional":true},{"name":"desktop_interact","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":9,"jsonName":"desktopInteract","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_caption"},{"name":"_pathname"},{"name":"_start_mode"},{"name":"_start_name"},{"name":"_state"},{"name":"_started"},{"name":"_accept_pause"},{"name":"_accept_stop"},{"name":"_desktop_interact"}]},{"name":"OperatingSystemRecovery","field":[{"name":"win","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsOsRecovery","oneofIndex":0,"jsonName":"win"}],"oneofDecl":[{"name":"os"}]},{"name":"WindowsOsRecovery","field":[{"name":"auto_reboot","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"autoReboot","proto3Optional":true},{"name":"debug_file_path","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"debugFilePath","proto3Optional":true},{"name":"kernel_dump_only","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"kernelDumpOnly","proto3Optional":true},{"name":"name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"name","proto3Optional":true},{"name":"overwrite_existing_debug_file","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":4,"jsonName":"overwriteExistingDebugFile","proto3Optional":true},{"name":"send_admin_alert","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":5,"jsonName":"sendAdminAlert","proto3Optional":true},{"name":"write_debug_info","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":6,"jsonName":"writeDebugInfo","proto3Optional":true},{"name":"write_to_system_log","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":7,"jsonName":"writeToSystemLog","proto3Optional":true},{"name":"debug_info_type","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":8,"jsonName":"debugInfoType","proto3Optional":true},{"name":"mini_dump_directory","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"miniDumpDirectory","proto3Optional":true}],"oneofDecl":[{"name":"_auto_reboot"},{"name":"_debug_file_path"},{"name":"_kernel_dump_only"},{"name":"_name"},{"name":"_overwrite_existing_debug_file"},{"name":"_send_admin_alert"},{"name":"_write_debug_info"},{"name":"_write_to_system_log"},{"name":"_debug_info_type"},{"name":"_mini_dump_directory"}]},{"name":"Driver","field":[{"name":"win_sys","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsSystemDriver","oneofIndex":0,"jsonName":"winSys"},{"name":"win_pnp","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsPnpSignedDriver","oneofIndex":0,"jsonName":"winPnp"},{"name":"win_printer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsPrinterDriver","oneofIndex":0,"jsonName":"winPrinter"},{"name":"mac_kernel_extension","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MacOsKernelExtension","oneofIndex":0,"jsonName":"macKernelExtension"},{"name":"name","number":100,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"name","proto3Optional":true},{"name":"description","number":101,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"description","proto3Optional":true}],"oneofDecl":[{"name":"driver"},{"name":"_name"},{"name":"_description"}]},{"name":"WindowsSystemDriver","field":[{"name":"accept_pause","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"acceptPause","proto3Optional":true},{"name":"accept_stop","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"acceptStop","proto3Optional":true},{"name":"desktop_interact","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"desktopInteract","proto3Optional":true},{"name":"error_control","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"errorControl","proto3Optional":true},{"name":"exit_code","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":4,"jsonName":"exitCode","proto3Optional":true},{"name":"path_name","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"pathName","proto3Optional":true},{"name":"service_specific_exit_code","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":6,"jsonName":"serviceSpecificExitCode","proto3Optional":true},{"name":"service_type","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"serviceType","proto3Optional":true},{"name":"started","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":8,"jsonName":"started","proto3Optional":true},{"name":"start_mode","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"startMode","proto3Optional":true},{"name":"start_name","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"startName","proto3Optional":true},{"name":"state","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"state","proto3Optional":true},{"name":"status","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"status","proto3Optional":true},{"name":"tag_id","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":13,"jsonName":"tagId","proto3Optional":true},{"name":"name","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"name","proto3Optional":true},{"name":"description","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"description","proto3Optional":true},{"name":"caption","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"caption","proto3Optional":true},{"name":"display_name","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"displayName","proto3Optional":true}],"oneofDecl":[{"name":"_accept_pause"},{"name":"_accept_stop"},{"name":"_desktop_interact"},{"name":"_error_control"},{"name":"_exit_code"},{"name":"_path_name"},{"name":"_service_specific_exit_code"},{"name":"_service_type"},{"name":"_started"},{"name":"_start_mode"},{"name":"_start_name"},{"name":"_state"},{"name":"_status"},{"name":"_tag_id"},{"name":"_name"},{"name":"_description"},{"name":"_caption"},{"name":"_display_name"}]},{"name":"WindowsPnpSignedDriver","field":[{"name":"compat_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"compatId","proto3Optional":true},{"name":"device_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"deviceId","proto3Optional":true},{"name":"dev_loader","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"devLoader","proto3Optional":true},{"name":"driver_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"driverName","proto3Optional":true},{"name":"friendly_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"friendlyName","proto3Optional":true},{"name":"driver_date","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"driverDate"},{"name":"driver_version","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"driverVersion","proto3Optional":true},{"name":"hardware_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"hardwareId","proto3Optional":true},{"name":"inf_name","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"infName","proto3Optional":true},{"name":"is_signed","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":8,"jsonName":"isSigned","proto3Optional":true},{"name":"location","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"location","proto3Optional":true},{"name":"pdo","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"pdo","proto3Optional":true},{"name":"manufacturer","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"manufacturer","proto3Optional":true},{"name":"device_name","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"deviceName","proto3Optional":true},{"name":"device_class","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"deviceClass","proto3Optional":true},{"name":"description","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"description","proto3Optional":true},{"name":"signer","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"signer","proto3Optional":true},{"name":"driver_provider_name","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"driverProviderName","proto3Optional":true}],"oneofDecl":[{"name":"_compat_id"},{"name":"_device_id"},{"name":"_dev_loader"},{"name":"_driver_name"},{"name":"_friendly_name"},{"name":"_driver_version"},{"name":"_hardware_id"},{"name":"_inf_name"},{"name":"_is_signed"},{"name":"_location"},{"name":"_pdo"},{"name":"_manufacturer"},{"name":"_device_name"},{"name":"_device_class"},{"name":"_description"},{"name":"_signer"},{"name":"_driver_provider_name"}]},{"name":"WindowsPrinterDriver","field":[{"name":"config_file","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"configFile","proto3Optional":true},{"name":"data_file","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"dataFile","proto3Optional":true},{"name":"default_data_type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"defaultDataType","proto3Optional":true},{"name":"driver_path","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"driverPath","proto3Optional":true},{"name":"file_path","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"filePath","proto3Optional":true},{"name":"help_file","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"helpFile","proto3Optional":true},{"name":"monitor_name","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"monitorName","proto3Optional":true},{"name":"oem_url","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"oemUrl","proto3Optional":true},{"name":"version","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"version","proto3Optional":true},{"name":"driver_version","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"driverVersion","proto3Optional":true},{"name":"driver_date","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"driverDate","proto3Optional":true},{"name":"hardware_id","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"hardwareId","proto3Optional":true},{"name":"inf_path","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"infPath","proto3Optional":true},{"name":"printer_environment","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"printerEnvironment","proto3Optional":true},{"name":"print_processor","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"printProcessor","proto3Optional":true},{"name":"name","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"name","proto3Optional":true},{"name":"provider","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"provider","proto3Optional":true},{"name":"supported_platform","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"supportedPlatform","proto3Optional":true},{"name":"manufacturer","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"manufacturer","proto3Optional":true}],"oneofDecl":[{"name":"_config_file"},{"name":"_data_file"},{"name":"_default_data_type"},{"name":"_driver_path"},{"name":"_file_path"},{"name":"_help_file"},{"name":"_monitor_name"},{"name":"_oem_url"},{"name":"_version"},{"name":"_driver_version"},{"name":"_driver_date"},{"name":"_hardware_id"},{"name":"_inf_path"},{"name":"_printer_environment"},{"name":"_print_processor"},{"name":"_name"},{"name":"_provider"},{"name":"_supported_platform"},{"name":"_manufacturer"}]},{"name":"MacOsKernelExtension","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"has64_bit_intel_code","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"has64BitIntelCode","proto3Optional":true},{"name":"architectures","number":3,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"architectures"},{"name":"bundle_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"bundleId","proto3Optional":true},{"name":"dependencies","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"dependencies","proto3Optional":true},{"name":"dependency_errors","number":6,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.KernelExtensionErrorType","jsonName":"dependencyErrors"},{"name":"info","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"info","proto3Optional":true},{"name":"last_modified","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":5,"jsonName":"lastModified","proto3Optional":true},{"name":"load_address","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"loadAddress","proto3Optional":true},{"name":"loadable","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"loadable","proto3Optional":true},{"name":"loaded","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"loaded","proto3Optional":true},{"name":"notarized","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"notarized","proto3Optional":true},{"name":"obtained_from","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"obtainedFrom","proto3Optional":true},{"name":"path_location","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"pathLocation","proto3Optional":true},{"name":"runtime_environment","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"runtimeEnvironment","proto3Optional":true},{"name":"signed_by","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"signedBy","proto3Optional":true},{"name":"signing_errors","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"signingErrors","proto3Optional":true},{"name":"validity_errors","number":18,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.KernelExtensionErrorType","jsonName":"validityErrors"},{"name":"version","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"version","proto3Optional":true},{"name":"version_kext","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"versionKext","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_has64_bit_intel_code"},{"name":"_bundle_id"},{"name":"_dependencies"},{"name":"_info"},{"name":"_last_modified"},{"name":"_load_address"},{"name":"_loadable"},{"name":"_loaded"},{"name":"_notarized"},{"name":"_obtained_from"},{"name":"_path_location"},{"name":"_runtime_environment"},{"name":"_signed_by"},{"name":"_signing_errors"},{"name":"_version"},{"name":"_version_kext"}]},{"name":"KernelExtensionErrorType","field":[{"name":"error_type","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"errorType","proto3Optional":true},{"name":"errors","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.KernelExtensionError","jsonName":"errors"}],"oneofDecl":[{"name":"_error_type"}]},{"name":"KernelExtensionError","field":[{"name":"error_description","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"errorDescription","proto3Optional":true},{"name":"values","number":2,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"values"}],"oneofDecl":[{"name":"_error_description"}]},{"name":"ComputerMacAccessibility","field":[{"name":"contrast","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"contrast","proto3Optional":true},{"name":"cursor_mag","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"cursorMag","proto3Optional":true},{"name":"display","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"display","proto3Optional":true},{"name":"flash_screen","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"flashScreen","proto3Optional":true},{"name":"keyboard_zoom","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"keyboardZoom","proto3Optional":true},{"name":"mouse_keys","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"mouseKeys","proto3Optional":true},{"name":"scroll_zoom","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"scrollZoom","proto3Optional":true},{"name":"slow_keys","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"slowKeys","proto3Optional":true},{"name":"sticky_keys","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"stickyKeys","proto3Optional":true},{"name":"voice_over","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"voiceOver","proto3Optional":true},{"name":"zoom_mode","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"zoomMode","proto3Optional":true}],"oneofDecl":[{"name":"_contrast"},{"name":"_cursor_mag"},{"name":"_display"},{"name":"_flash_screen"},{"name":"_keyboard_zoom"},{"name":"_mouse_keys"},{"name":"_scroll_zoom"},{"name":"_slow_keys"},{"name":"_sticky_keys"},{"name":"_voice_over"},{"name":"_zoom_mode"}]},{"name":"SoundCard","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"device_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"deviceId","proto3Optional":true},{"name":"manufacturer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"manufacturer","proto3Optional":true},{"name":"type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"type","proto3Optional":true},{"name":"subsystem_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"subsystemName","proto3Optional":true},{"name":"subsystem_manufacturer","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"subsystemManufacturer","proto3Optional":true},{"name":"parent","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"parent","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_device_id"},{"name":"_manufacturer"},{"name":"_type"},{"name":"_subsystem_name"},{"name":"_subsystem_manufacturer"},{"name":"_parent"}]},{"name":"GraphicsCard","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"color_planes_count","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":1,"jsonName":"colorPlanesCount","proto3Optional":true},{"name":"current_bits_per_pixel","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"currentBitsPerPixel","proto3Optional":true},{"name":"current_horizontal_resolution","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"currentHorizontalResolution","proto3Optional":true},{"name":"current_number_of_colors","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":4,"jsonName":"currentNumberOfColors","proto3Optional":true},{"name":"current_refresh_rate","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":5,"jsonName":"currentRefreshRate","proto3Optional":true},{"name":"current_scan_mode","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":6,"jsonName":"currentScanMode","proto3Optional":true},{"name":"current_vertical_resolution","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":7,"jsonName":"currentVerticalResolution","proto3Optional":true},{"name":"device_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"deviceId","proto3Optional":true},{"name":"device_specific_pens","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":9,"jsonName":"deviceSpecificPens","proto3Optional":true},{"name":"driver_version","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"driverVersion","proto3Optional":true},{"name":"inf_filename","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"infFilename","proto3Optional":true},{"name":"inf_section","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"infSection","proto3Optional":true},{"name":"installed_display_drivers","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"installedDisplayDrivers","proto3Optional":true},{"name":"is_monochrome","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":14,"jsonName":"isMonochrome","proto3Optional":true},{"name":"manufacturer","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"manufacturer","proto3Optional":true},{"name":"max_refresh_rate","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"maxRefreshRate","proto3Optional":true},{"name":"memory","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":17,"jsonName":"memory","proto3Optional":true},{"name":"memory_type","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":18,"jsonName":"memoryType","proto3Optional":true},{"name":"min_refresh_rate","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":19,"jsonName":"minRefreshRate","proto3Optional":true},{"name":"pci_type","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":20,"jsonName":"pciType","proto3Optional":true},{"name":"pnp_device_id","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":21,"jsonName":"pnpDeviceId","proto3Optional":true},{"name":"state","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":22,"jsonName":"state","proto3Optional":true},{"name":"subsystem_manufacturer","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":23,"jsonName":"subsystemManufacturer","proto3Optional":true},{"name":"subsystem_name","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":24,"jsonName":"subsystemName","proto3Optional":true},{"name":"video_architecture","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":25,"jsonName":"videoArchitecture","proto3Optional":true},{"name":"video_mode","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":26,"jsonName":"videoMode","proto3Optional":true},{"name":"video_processor","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":27,"jsonName":"videoProcessor","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_color_planes_count"},{"name":"_current_bits_per_pixel"},{"name":"_current_horizontal_resolution"},{"name":"_current_number_of_colors"},{"name":"_current_refresh_rate"},{"name":"_current_scan_mode"},{"name":"_current_vertical_resolution"},{"name":"_device_id"},{"name":"_device_specific_pens"},{"name":"_driver_version"},{"name":"_inf_filename"},{"name":"_inf_section"},{"name":"_installed_display_drivers"},{"name":"_is_monochrome"},{"name":"_manufacturer"},{"name":"_max_refresh_rate"},{"name":"_memory"},{"name":"_memory_type"},{"name":"_min_refresh_rate"},{"name":"_pci_type"},{"name":"_pnp_device_id"},{"name":"_state"},{"name":"_subsystem_manufacturer"},{"name":"_subsystem_name"},{"name":"_video_architecture"},{"name":"_video_mode"},{"name":"_video_processor"}]},{"name":"Bios","field":[{"name":"win","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsBios","oneofIndex":0,"jsonName":"win"},{"name":"linux","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.LinuxBios","oneofIndex":0,"jsonName":"linux"},{"name":"manufacturer","number":100,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"manufacturer","proto3Optional":true},{"name":"version","number":101,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"version","proto3Optional":true},{"name":"release_date","number":102,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":3,"jsonName":"releaseDate","proto3Optional":true}],"oneofDecl":[{"name":"spec"},{"name":"_manufacturer"},{"name":"_version"},{"name":"_release_date"}]},{"name":"WindowsBios","field":[{"name":"bios_characteristics","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","jsonName":"biosCharacteristics"},{"name":"caption","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"current_language","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"currentLanguage","proto3Optional":true},{"name":"installable_languages","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"installableLanguages","proto3Optional":true},{"name":"manufacturer","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"manufacturer","proto3Optional":true},{"name":"name","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"name","proto3Optional":true},{"name":"primary_bios","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":5,"jsonName":"primaryBios","proto3Optional":true},{"name":"release_date","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":6,"jsonName":"releaseDate","proto3Optional":true},{"name":"serial_number","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"serialNumber","proto3Optional":true},{"name":"smbios_bios_version","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"smbiosBiosVersion","proto3Optional":true},{"name":"smbios_major_version","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":9,"jsonName":"smbiosMajorVersion","proto3Optional":true},{"name":"smbios_minor_version","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":10,"jsonName":"smbiosMinorVersion","proto3Optional":true},{"name":"smbios_present","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":11,"jsonName":"smbiosPresent","proto3Optional":true},{"name":"software_element_id","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"softwareElementId","proto3Optional":true},{"name":"software_element_state","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":13,"jsonName":"softwareElementState","proto3Optional":true},{"name":"status","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"status","proto3Optional":true},{"name":"target_operating_system","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":15,"jsonName":"targetOperatingSystem","proto3Optional":true},{"name":"version","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"version","proto3Optional":true},{"name":"bios_version","number":20,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"biosVersion"}],"oneofDecl":[{"name":"_caption"},{"name":"_current_language"},{"name":"_installable_languages"},{"name":"_manufacturer"},{"name":"_name"},{"name":"_primary_bios"},{"name":"_release_date"},{"name":"_serial_number"},{"name":"_smbios_bios_version"},{"name":"_smbios_major_version"},{"name":"_smbios_minor_version"},{"name":"_smbios_present"},{"name":"_software_element_id"},{"name":"_software_element_state"},{"name":"_status"},{"name":"_target_operating_system"},{"name":"_version"}]},{"name":"LinuxBios","field":[{"name":"version","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"version","proto3Optional":true},{"name":"address","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"address","proto3Optional":true},{"name":"vendor","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"vendor","proto3Optional":true},{"name":"runtime_size","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"runtimeSize","proto3Optional":true},{"name":"rom_size","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":4,"jsonName":"romSize","proto3Optional":true},{"name":"release_date","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":5,"jsonName":"releaseDate","proto3Optional":true}],"oneofDecl":[{"name":"_version"},{"name":"_address"},{"name":"_vendor"},{"name":"_runtime_size"},{"name":"_rom_size"},{"name":"_release_date"}]},{"name":"ComputerBattery","field":[{"name":"win_battery","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsComputerBattery","oneofIndex":0,"jsonName":"winBattery"},{"name":"win_portable","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsPortableBattery","oneofIndex":0,"jsonName":"winPortable"},{"name":"mac_battery","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MacComputerBattery","oneofIndex":0,"jsonName":"macBattery"}],"oneofDecl":[{"name":"spec"}]},{"name":"WindowsComputerBattery","field":[{"name":"availability","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":0,"jsonName":"availability","proto3Optional":true},{"name":"battery_status","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":1,"jsonName":"batteryStatus","proto3Optional":true},{"name":"chemistry","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"chemistry","proto3Optional":true},{"name":"design_capacity","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":3,"jsonName":"designCapacity","proto3Optional":true},{"name":"device_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"deviceId","proto3Optional":true},{"name":"name","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"name","proto3Optional":true},{"name":"power_management_capabilities","number":7,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","jsonName":"powerManagementCapabilities"},{"name":"power_management_supported","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":6,"jsonName":"powerManagementSupported","proto3Optional":true},{"name":"smart_battery_version","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"smartBatteryVersion","proto3Optional":true},{"name":"status","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"status","proto3Optional":true}],"oneofDecl":[{"name":"_availability"},{"name":"_battery_status"},{"name":"_chemistry"},{"name":"_design_capacity"},{"name":"_device_id"},{"name":"_name"},{"name":"_power_management_supported"},{"name":"_smart_battery_version"},{"name":"_status"}]},{"name":"WindowsPortableBattery","field":[{"name":"capacity_multiplier","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"capacityMultiplier","proto3Optional":true},{"name":"chemistry","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":1,"jsonName":"chemistry","proto3Optional":true},{"name":"design_capacity","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"designCapacity","proto3Optional":true},{"name":"design_voltage","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"designVoltage","proto3Optional":true},{"name":"device_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"deviceId","proto3Optional":true},{"name":"location","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"location","proto3Optional":true},{"name":"manufacture_date","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"manufactureDate","proto3Optional":true},{"name":"manufacturer","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"manufacturer","proto3Optional":true},{"name":"max_battery_error","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"maxBatteryError","proto3Optional":true},{"name":"name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"name","proto3Optional":true},{"name":"smart_battery_version","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"smartBatteryVersion","proto3Optional":true}],"oneofDecl":[{"name":"_capacity_multiplier"},{"name":"_chemistry"},{"name":"_design_capacity"},{"name":"_design_voltage"},{"name":"_device_id"},{"name":"_location"},{"name":"_manufacture_date"},{"name":"_manufacturer"},{"name":"_max_battery_error"},{"name":"_name"},{"name":"_smart_battery_version"}]},{"name":"MacComputerBattery","field":[{"name":"disk_sleep_timer","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"diskSleepTimer","proto3Optional":true},{"name":"display_sleep_timer","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":1,"jsonName":"displaySleepTimer","proto3Optional":true},{"name":"hibernate_mode","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"hibernateMode","proto3Optional":true},{"name":"prioritize_network_reachability_over_sleep","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"prioritizeNetworkReachabilityOverSleep","proto3Optional":true},{"name":"sleep_on_power_button","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":4,"jsonName":"sleepOnPowerButton","proto3Optional":true},{"name":"system_sleep_timer","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":5,"jsonName":"systemSleepTimer","proto3Optional":true},{"name":"wake_on_lan","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":6,"jsonName":"wakeOnLan","proto3Optional":true},{"name":"current_power_source","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":7,"jsonName":"currentPowerSource","proto3Optional":true},{"name":"high_power_mode","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"highPowerMode","proto3Optional":true},{"name":"low_power_mode","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":9,"jsonName":"lowPowerMode","proto3Optional":true},{"name":"reduce_brightness","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":10,"jsonName":"reduceBrightness","proto3Optional":true},{"name":"is_at_warn_level","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":11,"jsonName":"isAtWarnLevel","proto3Optional":true},{"name":"is_fully_charged","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":12,"jsonName":"isFullyCharged","proto3Optional":true},{"name":"is_charging","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":13,"jsonName":"isCharging","proto3Optional":true},{"name":"state_of_charge","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":14,"jsonName":"stateOfCharge","proto3Optional":true},{"name":"cycle_count","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":15,"jsonName":"cycleCount","proto3Optional":true},{"name":"health_status","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"healthStatus","proto3Optional":true},{"name":"health_status_maximum_capacity","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"healthStatusMaximumCapacity","proto3Optional":true},{"name":"pcb_lot_code","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"pcbLotCode","proto3Optional":true},{"name":"pack_lot_code","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":19,"jsonName":"packLotCode","proto3Optional":true},{"name":"cell_revision","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":20,"jsonName":"cellRevision","proto3Optional":true},{"name":"device_name","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":21,"jsonName":"deviceName","proto3Optional":true},{"name":"firmware_version","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":22,"jsonName":"firmwareVersion","proto3Optional":true},{"name":"hardware_revision","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":23,"jsonName":"hardwareRevision","proto3Optional":true},{"name":"serial_number","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":24,"jsonName":"serialNumber","proto3Optional":true},{"name":"battery_charger_connected","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":25,"jsonName":"batteryChargerConnected","proto3Optional":true},{"name":"battery_is_charging","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":26,"jsonName":"batteryIsCharging","proto3Optional":true}],"oneofDecl":[{"name":"_disk_sleep_timer"},{"name":"_display_sleep_timer"},{"name":"_hibernate_mode"},{"name":"_prioritize_network_reachability_over_sleep"},{"name":"_sleep_on_power_button"},{"name":"_system_sleep_timer"},{"name":"_wake_on_lan"},{"name":"_current_power_source"},{"name":"_high_power_mode"},{"name":"_low_power_mode"},{"name":"_reduce_brightness"},{"name":"_is_at_warn_level"},{"name":"_is_fully_charged"},{"name":"_is_charging"},{"name":"_state_of_charge"},{"name":"_cycle_count"},{"name":"_health_status"},{"name":"_health_status_maximum_capacity"},{"name":"_pcb_lot_code"},{"name":"_pack_lot_code"},{"name":"_cell_revision"},{"name":"_device_name"},{"name":"_firmware_version"},{"name":"_hardware_revision"},{"name":"_serial_number"},{"name":"_battery_charger_connected"},{"name":"_battery_is_charging"}]},{"name":"OpticalDrive","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"status","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"status","proto3Optional":true},{"name":"bus","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"bus","proto3Optional":true},{"name":"capabilities","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","jsonName":"capabilities"},{"name":"cache_size","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"cacheSize","proto3Optional":true},{"name":"burn_support","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"burnSupport","proto3Optional":true},{"name":"cd_write","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"cdWrite","proto3Optional":true},{"name":"dvd_write","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"dvdWrite","proto3Optional":true},{"name":"read_dvd","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"readDvd","proto3Optional":true},{"name":"drive_path","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"drivePath","proto3Optional":true},{"name":"firmware_version","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"firmwareVersion","proto3Optional":true},{"name":"connection","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"connection","proto3Optional":true},{"name":"is_underrun_protection_enabled","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"isUnderrunProtectionEnabled","proto3Optional":true},{"name":"manufacturer","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"manufacturer","proto3Optional":true},{"name":"mount_point","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"mountPoint","proto3Optional":true},{"name":"write_strategies","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"writeStrategies","proto3Optional":true},{"name":"scsi_bus","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":15,"jsonName":"scsiBus","proto3Optional":true},{"name":"scsi_logical_unit","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"scsiLogicalUnit","proto3Optional":true},{"name":"scsi_port","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":17,"jsonName":"scsiPort","proto3Optional":true},{"name":"scsi_target_id","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":18,"jsonName":"scsiTargetId","proto3Optional":true},{"name":"media_burn_information","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":19,"jsonName":"mediaBurnInformation","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_status"},{"name":"_bus"},{"name":"_cache_size"},{"name":"_burn_support"},{"name":"_cd_write"},{"name":"_dvd_write"},{"name":"_read_dvd"},{"name":"_drive_path"},{"name":"_firmware_version"},{"name":"_connection"},{"name":"_is_underrun_protection_enabled"},{"name":"_manufacturer"},{"name":"_mount_point"},{"name":"_write_strategies"},{"name":"_scsi_bus"},{"name":"_scsi_logical_unit"},{"name":"_scsi_port"},{"name":"_scsi_target_id"},{"name":"_media_burn_information"}]},{"name":"Motherboard","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"config_options","number":2,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"configOptions"},{"name":"is_hosting_board","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"isHostingBoard","proto3Optional":true},{"name":"is_powered_on","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"isPoweredOn","proto3Optional":true},{"name":"location","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"location","proto3Optional":true},{"name":"manufacturer","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"manufacturer","proto3Optional":true},{"name":"serial_number","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"serialNumber","proto3Optional":true},{"name":"tag","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"tag","proto3Optional":true},{"name":"type","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"type","proto3Optional":true},{"name":"version","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"version","proto3Optional":true},{"name":"device","number":12,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MotherboardDevice","jsonName":"device"}],"oneofDecl":[{"name":"_is_hosting_board"},{"name":"_is_powered_on"},{"name":"_location"},{"name":"_manufacturer"},{"name":"_serial_number"},{"name":"_tag"},{"name":"_type"},{"name":"_version"}]},{"name":"MotherboardDevice","field":[{"name":"description","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"description","proto3Optional":true},{"name":"enabled","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"enabled","proto3Optional":true},{"name":"tag","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"tag","proto3Optional":true},{"name":"type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":3,"jsonName":"type","proto3Optional":true}],"oneofDecl":[{"name":"_description"},{"name":"_enabled"},{"name":"_tag"},{"name":"_type"}]},{"name":"Memory","field":[{"name":"installed_size","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"installedSize"},{"name":"physical_memory","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.PhysicalMemory","jsonName":"physicalMemory"},{"name":"memory_array","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MemoryArray","jsonName":"memoryArray"}]},{"name":"PhysicalMemory","field":[{"name":"size","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"size","proto3Optional":true},{"name":"bank_locator","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"bankLocator","proto3Optional":true},{"name":"configured_clock_speed","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"configuredClockSpeed","proto3Optional":true},{"name":"configured_voltage","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"configuredVoltage","proto3Optional":true},{"name":"data_width","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":4,"jsonName":"dataWidth","proto3Optional":true},{"name":"device_locator","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"deviceLocator","proto3Optional":true},{"name":"form_factor","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":6,"jsonName":"formFactor","proto3Optional":true},{"name":"interleave_data_depth","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":7,"jsonName":"interleaveDataDepth","proto3Optional":true},{"name":"interleave_position","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":8,"jsonName":"interleavePosition","proto3Optional":true},{"name":"manufacturer","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"manufacturer","proto3Optional":true},{"name":"name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"name","proto3Optional":true},{"name":"part_number","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"partNumber","proto3Optional":true},{"name":"position_in_row","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":12,"jsonName":"positionInRow","proto3Optional":true},{"name":"serial_number","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"serialNumber","proto3Optional":true},{"name":"set","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"set","proto3Optional":true},{"name":"sku","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"sku","proto3Optional":true},{"name":"speed","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"speed","proto3Optional":true},{"name":"state","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"state","proto3Optional":true},{"name":"total_width","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":18,"jsonName":"totalWidth","proto3Optional":true},{"name":"type","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":19,"jsonName":"type","proto3Optional":true},{"name":"type_detail","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":20,"jsonName":"typeDetail","proto3Optional":true}],"oneofDecl":[{"name":"_size"},{"name":"_bank_locator"},{"name":"_configured_clock_speed"},{"name":"_configured_voltage"},{"name":"_data_width"},{"name":"_device_locator"},{"name":"_form_factor"},{"name":"_interleave_data_depth"},{"name":"_interleave_position"},{"name":"_manufacturer"},{"name":"_name"},{"name":"_part_number"},{"name":"_position_in_row"},{"name":"_serial_number"},{"name":"_set"},{"name":"_sku"},{"name":"_speed"},{"name":"_state"},{"name":"_total_width"},{"name":"_type"},{"name":"_type_detail"}]},{"name":"MemoryArray","field":[{"name":"max_capacity","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"maxCapacity","proto3Optional":true},{"name":"location","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":1,"jsonName":"location","proto3Optional":true},{"name":"memory_devices","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"memoryDevices","proto3Optional":true},{"name":"memory_error_correction","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":3,"jsonName":"memoryErrorCorrection","proto3Optional":true},{"name":"tag","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"tag","proto3Optional":true},{"name":"use","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":5,"jsonName":"use","proto3Optional":true}],"oneofDecl":[{"name":"_max_capacity"},{"name":"_location"},{"name":"_memory_devices"},{"name":"_memory_error_correction"},{"name":"_tag"},{"name":"_use"}]},{"name":"ParallelPort","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"availability","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":1,"jsonName":"availability","proto3Optional":true},{"name":"protocol_supported","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"protocolSupported","proto3Optional":true},{"name":"config_manager_error_code","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":3,"jsonName":"configManagerErrorCode","proto3Optional":true},{"name":"pnp_device_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"pnpDeviceId","proto3Optional":true},{"name":"config_manager_user_config","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":5,"jsonName":"configManagerUserConfig","proto3Optional":true},{"name":"os_auto_discovered","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":6,"jsonName":"osAutoDiscovered","proto3Optional":true},{"name":"power_management_supported","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":7,"jsonName":"powerManagementSupported","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_availability"},{"name":"_protocol_supported"},{"name":"_config_manager_error_code"},{"name":"_pnp_device_id"},{"name":"_config_manager_user_config"},{"name":"_os_auto_discovered"},{"name":"_power_management_supported"}]},{"name":"SerialPort","field":[{"name":"availability","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":0,"jsonName":"availability","proto3Optional":true},{"name":"binary","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"binary","proto3Optional":true},{"name":"caption","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"caption","proto3Optional":true},{"name":"device_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"deviceId","proto3Optional":true},{"name":"max_baud_rate","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":4,"jsonName":"maxBaudRate","proto3Optional":true},{"name":"maximum_input_buffer_size","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":5,"jsonName":"maximumInputBufferSize","proto3Optional":true},{"name":"maximum_output_buffer_size","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":6,"jsonName":"maximumOutputBufferSize","proto3Optional":true},{"name":"os_auto_discovered","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":7,"jsonName":"osAutoDiscovered","proto3Optional":true},{"name":"pnp_device_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"pnpDeviceId","proto3Optional":true},{"name":"provider_type","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"providerType","proto3Optional":true}],"oneofDecl":[{"name":"_availability"},{"name":"_binary"},{"name":"_caption"},{"name":"_device_id"},{"name":"_max_baud_rate"},{"name":"_maximum_input_buffer_size"},{"name":"_maximum_output_buffer_size"},{"name":"_os_auto_discovered"},{"name":"_pnp_device_id"},{"name":"_provider_type"}]},{"name":"PcmciaController","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"protocol_supported","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":1,"jsonName":"protocolSupported","proto3Optional":true},{"name":"config_manager_error_code","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"configManagerErrorCode","proto3Optional":true},{"name":"config_manager_user_config","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":3,"jsonName":"configManagerUserConfig","proto3Optional":true},{"name":"device_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"deviceId","proto3Optional":true},{"name":"manufacturer","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"manufacturer","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_protocol_supported"},{"name":"_config_manager_error_code"},{"name":"_config_manager_user_config"},{"name":"_device_id"},{"name":"_manufacturer"}]},{"name":"PortConnector","field":[{"name":"connector_type","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","jsonName":"connectorType"},{"name":"external_reference_designator","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"externalReferenceDesignator","proto3Optional":true},{"name":"internal_reference_designator","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"internalReferenceDesignator","proto3Optional":true},{"name":"port_type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":2,"jsonName":"portType","proto3Optional":true},{"name":"tag","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"tag","proto3Optional":true}],"oneofDecl":[{"name":"_external_reference_designator"},{"name":"_internal_reference_designator"},{"name":"_port_type"},{"name":"_tag"}]},{"name":"ScsiController","field":[{"name":"availability","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":0,"jsonName":"availability","proto3Optional":true},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"device_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"deviceId","proto3Optional":true},{"name":"driver_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"driverName","proto3Optional":true},{"name":"manufacturer","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"manufacturer","proto3Optional":true},{"name":"protocol_supported","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":5,"jsonName":"protocolSupported","proto3Optional":true}],"oneofDecl":[{"name":"_availability"},{"name":"_caption"},{"name":"_device_id"},{"name":"_driver_name"},{"name":"_manufacturer"},{"name":"_protocol_supported"}]},{"name":"ComputerSystemProduct","field":[{"name":"identifying_number","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"identifyingNumber","proto3Optional":true},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"name","proto3Optional":true},{"name":"uuid","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"uuid","proto3Optional":true},{"name":"vendor","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"vendor","proto3Optional":true},{"name":"version","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"version","proto3Optional":true}],"oneofDecl":[{"name":"_identifying_number"},{"name":"_name"},{"name":"_uuid"},{"name":"_vendor"},{"name":"_version"}]},{"name":"WindowsComputerSystem","field":[{"name":"admin_password_status","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":0,"jsonName":"adminPasswordStatus","proto3Optional":true},{"name":"automatic_reset_boot_option","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"automaticResetBootOption","proto3Optional":true},{"name":"automatic_reset_capability","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"automaticResetCapability","proto3Optional":true},{"name":"boot_option_on_limit","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":3,"jsonName":"bootOptionOnLimit","proto3Optional":true},{"name":"boot_option_on_watch_dog","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":4,"jsonName":"bootOptionOnWatchDog","proto3Optional":true},{"name":"boot_rom_supported","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":5,"jsonName":"bootRomSupported","proto3Optional":true},{"name":"boot_up_state","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"bootUpState","proto3Optional":true},{"name":"chassis_boot_up_state","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":7,"jsonName":"chassisBootUpState","proto3Optional":true},{"name":"current_time_zone","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"currentTimeZone","proto3Optional":true},{"name":"daylight_in_effect","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":9,"jsonName":"daylightInEffect","proto3Optional":true},{"name":"description","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"description","proto3Optional":true},{"name":"domain","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"domain","proto3Optional":true},{"name":"domain_role","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":12,"jsonName":"domainRole","proto3Optional":true},{"name":"front_panel_reset_status","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":13,"jsonName":"frontPanelResetStatus","proto3Optional":true},{"name":"infrared_supported","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":14,"jsonName":"infraredSupported","proto3Optional":true},{"name":"keyboard_password_status","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":15,"jsonName":"keyboardPasswordStatus","proto3Optional":true},{"name":"manufacturer","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"manufacturer","proto3Optional":true},{"name":"name","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"name","proto3Optional":true},{"name":"model","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"model","proto3Optional":true},{"name":"network_server_mode_enabled","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":19,"jsonName":"networkServerModeEnabled","proto3Optional":true},{"name":"number_of_processors","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":20,"jsonName":"numberOfProcessors","proto3Optional":true},{"name":"pause_after_reset","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":21,"jsonName":"pauseAfterReset","proto3Optional":true},{"name":"power_on_password_status","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":22,"jsonName":"powerOnPasswordStatus","proto3Optional":true},{"name":"power_state","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":23,"jsonName":"powerState","proto3Optional":true},{"name":"power_supply_state","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":24,"jsonName":"powerSupplyState","proto3Optional":true},{"name":"primary_owner_name","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":25,"jsonName":"primaryOwnerName","proto3Optional":true},{"name":"reset_capability","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":26,"jsonName":"resetCapability","proto3Optional":true},{"name":"reset_count","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":27,"jsonName":"resetCount","proto3Optional":true},{"name":"reset_limit","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":28,"jsonName":"resetLimit","proto3Optional":true},{"name":"roles","number":31,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"roles"},{"name":"status","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":29,"jsonName":"status","proto3Optional":true},{"name":"system_startup_delay","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":30,"jsonName":"systemStartupDelay","proto3Optional":true},{"name":"system_startup_options","number":34,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"systemStartupOptions"},{"name":"system_type","number":36,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":31,"jsonName":"systemType","proto3Optional":true},{"name":"thermal_state","number":37,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":32,"jsonName":"thermalState","proto3Optional":true},{"name":"total_physical_memory","number":38,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":33,"jsonName":"totalPhysicalMemory","proto3Optional":true},{"name":"wakeup_type","number":39,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":34,"jsonName":"wakeupType","proto3Optional":true},{"name":"enable_daylight_savings_time","number":40,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":35,"jsonName":"enableDaylightSavingsTime","proto3Optional":true},{"name":"part_of_domain","number":41,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":36,"jsonName":"partOfDomain","proto3Optional":true},{"name":"number_of_logical_processors","number":42,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":37,"jsonName":"numberOfLogicalProcessors","proto3Optional":true}],"oneofDecl":[{"name":"_admin_password_status"},{"name":"_automatic_reset_boot_option"},{"name":"_automatic_reset_capability"},{"name":"_boot_option_on_limit"},{"name":"_boot_option_on_watch_dog"},{"name":"_boot_rom_supported"},{"name":"_boot_up_state"},{"name":"_chassis_boot_up_state"},{"name":"_current_time_zone"},{"name":"_daylight_in_effect"},{"name":"_description"},{"name":"_domain"},{"name":"_domain_role"},{"name":"_front_panel_reset_status"},{"name":"_infrared_supported"},{"name":"_keyboard_password_status"},{"name":"_manufacturer"},{"name":"_name"},{"name":"_model"},{"name":"_network_server_mode_enabled"},{"name":"_number_of_processors"},{"name":"_pause_after_reset"},{"name":"_power_on_password_status"},{"name":"_power_state"},{"name":"_power_supply_state"},{"name":"_primary_owner_name"},{"name":"_reset_capability"},{"name":"_reset_count"},{"name":"_reset_limit"},{"name":"_status"},{"name":"_system_startup_delay"},{"name":"_system_type"},{"name":"_thermal_state"},{"name":"_total_physical_memory"},{"name":"_wakeup_type"},{"name":"_enable_daylight_savings_time"},{"name":"_part_of_domain"},{"name":"_number_of_logical_processors"}]},{"name":"TrustedPlatformModule","field":[{"name":"is_initial_value_activated","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"isInitialValueActivated","proto3Optional":true},{"name":"is_initial_value_enabled","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"isInitialValueEnabled","proto3Optional":true},{"name":"is_initial_value_owned","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"isInitialValueOwned","proto3Optional":true},{"name":"spec_version","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"specVersion","proto3Optional":true},{"name":"manufacturer_version","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"manufacturerVersion","proto3Optional":true},{"name":"manufacturer_version_info","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"manufacturerVersionInfo","proto3Optional":true},{"name":"manufacturer_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"manufacturerId","proto3Optional":true},{"name":"manufacturer_version_full20","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"manufacturerVersionFull20","proto3Optional":true},{"name":"manufacturer_id_txt","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"manufacturerIdTxt","proto3Optional":true},{"name":"physical_presence_version_info","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"physicalPresenceVersionInfo","proto3Optional":true}],"oneofDecl":[{"name":"_is_initial_value_activated"},{"name":"_is_initial_value_enabled"},{"name":"_is_initial_value_owned"},{"name":"_spec_version"},{"name":"_manufacturer_version"},{"name":"_manufacturer_version_info"},{"name":"_manufacturer_id"},{"name":"_manufacturer_version_full20"},{"name":"_manufacturer_id_txt"},{"name":"_physical_presence_version_info"}]},{"name":"ComputerConnectedUsbController","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"device_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"deviceId","proto3Optional":true},{"name":"manufacturer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"manufacturer","proto3Optional":true},{"name":"protocol_supported","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":3,"jsonName":"protocolSupported","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_device_id"},{"name":"_manufacturer"},{"name":"_protocol_supported"}]},{"name":"ComputerConnectedUsbDeviceInfo","field":[{"name":"device_key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"deviceKey"},{"name":"device_value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"deviceValue"},{"name":"manufacturer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"manufacturer"}]},{"name":"ComputerConnectedModem","field":[{"name":"attached_to","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"attachedTo","proto3Optional":true},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"country_info","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"countryInfo","proto3Optional":true},{"name":"device_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"deviceId","proto3Optional":true},{"name":"device_type","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"deviceType","proto3Optional":true},{"name":"max_baud_rate_to_phone","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":5,"jsonName":"maxBaudRateToPhone","proto3Optional":true},{"name":"max_baud_rate_to_serial_port","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":6,"jsonName":"maxBaudRateToSerialPort","proto3Optional":true},{"name":"modem_inf_path","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"modemInfPath","proto3Optional":true},{"name":"modem_inf_section","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"modemInfSection","proto3Optional":true},{"name":"provider_name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"providerName","proto3Optional":true},{"name":"hw_version","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"hwVersion","proto3Optional":true},{"name":"interface_type","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"interfaceType","proto3Optional":true},{"name":"model","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"model","proto3Optional":true},{"name":"modulation","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"modulation","proto3Optional":true}],"oneofDecl":[{"name":"_attached_to"},{"name":"_caption"},{"name":"_country_info"},{"name":"_device_id"},{"name":"_device_type"},{"name":"_max_baud_rate_to_phone"},{"name":"_max_baud_rate_to_serial_port"},{"name":"_modem_inf_path"},{"name":"_modem_inf_section"},{"name":"_provider_name"},{"name":"_hw_version"},{"name":"_interface_type"},{"name":"_model"},{"name":"_modulation"}]},{"name":"ComputerConnectedPrinter","field":[{"name":"capability_descriptions","number":2,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"capabilityDescriptions"},{"name":"caption","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"device_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"deviceId","proto3Optional":true},{"name":"location","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"location","proto3Optional":true},{"name":"port_name","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"portName","proto3Optional":true},{"name":"print_job_data_type","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"printJobDataType","proto3Optional":true},{"name":"print_processor","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"printProcessor","proto3Optional":true},{"name":"share_name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"shareName","proto3Optional":true},{"name":"status","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"status","proto3Optional":true},{"name":"comment","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"comment","proto3Optional":true},{"name":"horizontal_resolution","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":9,"jsonName":"horizontalResolution","proto3Optional":true},{"name":"vertical_resolution","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":10,"jsonName":"verticalResolution","proto3Optional":true},{"name":"enable_bidi","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":11,"jsonName":"enableBidi","proto3Optional":true},{"name":"local","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":12,"jsonName":"local","proto3Optional":true},{"name":"network","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":13,"jsonName":"network","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_device_id"},{"name":"_location"},{"name":"_port_name"},{"name":"_print_job_data_type"},{"name":"_print_processor"},{"name":"_share_name"},{"name":"_status"},{"name":"_comment"},{"name":"_horizontal_resolution"},{"name":"_vertical_resolution"},{"name":"_enable_bidi"},{"name":"_local"},{"name":"_network"}]},{"name":"ComputerConnectedTapeDrive","field":[{"name":"availability","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":0,"jsonName":"availability","proto3Optional":true},{"name":"capabilities","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","jsonName":"capabilities"},{"name":"caption","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"compression","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"compression","proto3Optional":true},{"name":"default_block_size","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"defaultBlockSize","proto3Optional":true},{"name":"device_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"deviceId","proto3Optional":true},{"name":"manufacturer","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"manufacturer","proto3Optional":true},{"name":"max_block_size","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":6,"jsonName":"maxBlockSize","proto3Optional":true},{"name":"max_media_size","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":7,"jsonName":"maxMediaSize","proto3Optional":true},{"name":"max_partition_count","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"maxPartitionCount","proto3Optional":true},{"name":"media_type","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"mediaType","proto3Optional":true},{"name":"min_block_size","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":10,"jsonName":"minBlockSize","proto3Optional":true},{"name":"needs_cleaning","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":11,"jsonName":"needsCleaning","proto3Optional":true},{"name":"number_of_media_supported","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":12,"jsonName":"numberOfMediaSupported","proto3Optional":true},{"name":"padding","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":13,"jsonName":"padding","proto3Optional":true}],"oneofDecl":[{"name":"_availability"},{"name":"_caption"},{"name":"_compression"},{"name":"_default_block_size"},{"name":"_device_id"},{"name":"_manufacturer"},{"name":"_max_block_size"},{"name":"_max_media_size"},{"name":"_max_partition_count"},{"name":"_media_type"},{"name":"_min_block_size"},{"name":"_needs_cleaning"},{"name":"_number_of_media_supported"},{"name":"_padding"}]},{"name":"ComputerWindowsSerial","field":[{"name":"product_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"productName","proto3Optional":true},{"name":"product_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"productId","proto3Optional":true},{"name":"product_serial","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"productSerial","proto3Optional":true}],"oneofDecl":[{"name":"_product_name"},{"name":"_product_id"},{"name":"_product_serial"}]},{"name":"ComputerWindowsEnvironment","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"name","proto3Optional":true},{"name":"system_variable","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"systemVariable","proto3Optional":true},{"name":"user_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"userName","proto3Optional":true},{"name":"variable_value","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"variableValue","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_name"},{"name":"_system_variable"},{"name":"_user_name"},{"name":"_variable_value"}]},{"name":"ComputerWindowsComApp","field":[{"name":"app_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"appId","proto3Optional":true},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true}],"oneofDecl":[{"name":"_app_id"},{"name":"_caption"}]},{"name":"ComputerWindowsCodec","field":[{"name":"archive","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"archive","proto3Optional":true},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"compressed","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"compressed","proto3Optional":true},{"name":"compression_method","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"compressionMethod","proto3Optional":true},{"name":"description","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"description","proto3Optional":true},{"name":"drive","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"drive","proto3Optional":true},{"name":"encrypted","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":6,"jsonName":"encrypted","proto3Optional":true},{"name":"encryption_method","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"encryptionMethod","proto3Optional":true},{"name":"extension","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"extension","proto3Optional":true},{"name":"file_name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"fileName","proto3Optional":true},{"name":"file_size","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":10,"jsonName":"fileSize","proto3Optional":true},{"name":"file_type","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"fileType","proto3Optional":true},{"name":"fs_name","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"fsName","proto3Optional":true},{"name":"group","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"group","proto3Optional":true},{"name":"hidden","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":14,"jsonName":"hidden","proto3Optional":true},{"name":"install_date","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":15,"jsonName":"installDate","proto3Optional":true},{"name":"manufacturer","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"manufacturer","proto3Optional":true},{"name":"status","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"status","proto3Optional":true},{"name":"system","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":18,"jsonName":"system","proto3Optional":true},{"name":"version","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":19,"jsonName":"version","proto3Optional":true}],"oneofDecl":[{"name":"_archive"},{"name":"_caption"},{"name":"_compressed"},{"name":"_compression_method"},{"name":"_description"},{"name":"_drive"},{"name":"_encrypted"},{"name":"_encryption_method"},{"name":"_extension"},{"name":"_file_name"},{"name":"_file_size"},{"name":"_file_type"},{"name":"_fs_name"},{"name":"_group"},{"name":"_hidden"},{"name":"_install_date"},{"name":"_manufacturer"},{"name":"_status"},{"name":"_system"},{"name":"_version"}]},{"name":"ComputerWindowsSat","field":[{"name":"time_taken","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"timeTaken","proto3Optional":true},{"name":"win_spr_level","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":1,"jsonName":"winSprLevel","proto3Optional":true},{"name":"win_sat_assessment_state","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":2,"jsonName":"winSatAssessmentState","proto3Optional":true},{"name":"memory_score","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":3,"jsonName":"memoryScore","proto3Optional":true},{"name":"cpu_score","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":4,"jsonName":"cpuScore","proto3Optional":true},{"name":"disk_score","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":5,"jsonName":"diskScore","proto3Optional":true},{"name":"d3d_score","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":6,"jsonName":"d3dScore","proto3Optional":true},{"name":"graphics_score","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":7,"jsonName":"graphicsScore","proto3Optional":true}],"oneofDecl":[{"name":"_time_taken"},{"name":"_win_spr_level"},{"name":"_win_sat_assessment_state"},{"name":"_memory_score"},{"name":"_cpu_score"},{"name":"_disk_score"},{"name":"_d3d_score"},{"name":"_graphics_score"}]},{"name":"ComputerWindowsCertificate","field":[{"name":"enhanced_key_usage","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsCertificateEnhancedKeyUsage","jsonName":"enhancedKeyUsage"},{"name":"key_usage","number":2,"label":"LABEL_REPEATED","type":"TYPE_ENUM","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsCertificate.KeyUsageType","jsonName":"keyUsage"},{"name":"template","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"template"},{"name":"dns_name_list","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"dnsNameList"},{"name":"signature_algorithm","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"signatureAlgorithm","proto3Optional":true},{"name":"version","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"version"},{"name":"has_private_key","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"hasPrivateKey"},{"name":"is_archived","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isArchived"},{"name":"expiration_date","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"expirationDate"},{"name":"start_date","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"startDate"},{"name":"issuer_name","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"issuerName"},{"name":"issuer","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"issuer"},{"name":"subject_alternative_name","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"subjectAlternativeName"},{"name":"subject_name","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"subjectName"},{"name":"subject","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"subject"},{"name":"serial","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"serial"},{"name":"thumbprint","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"thumbprint"},{"name":"friendly_name","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"friendlyName"},{"name":"location","number":19,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsCertificateLocation","jsonName":"location"}],"enumType":[{"name":"KeyUsageType","value":[{"name":"DIGITAL_SIGNATURE","number":0},{"name":"NON_REPUDIATION","number":1},{"name":"KEY_ENCIPHERMENT","number":2},{"name":"DATA_ENCIPHERMENT","number":3},{"name":"KEY_AGREEMENT","number":4},{"name":"KEY_CERT_SIGN","number":5},{"name":"CRL_SIGN","number":6},{"name":"ENCIPHER_ONLY","number":7},{"name":"DECIPHER_ONLY","number":8}]}],"oneofDecl":[{"name":"_signature_algorithm"}]},{"name":"WindowsCertificateEnhancedKeyUsage","field":[{"name":"oid_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"oidName","proto3Optional":true},{"name":"oid_value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"oidValue","proto3Optional":true}],"oneofDecl":[{"name":"_oid_name"},{"name":"_oid_value"}]},{"name":"WindowsCertificateLocation","field":[{"name":"store","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"store"},{"name":"folder","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"folder"}]},{"name":"ComputerMacRegionalSettings","field":[{"name":"user_settings","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MacRegionalUserSettings","oneofIndex":0,"jsonName":"userSettings","proto3Optional":true},{"name":"system_settings","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MacRegionalSystemSettings","oneofIndex":1,"jsonName":"systemSettings","proto3Optional":true},{"name":"recovery_os_settings","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MacRegionalRecoveryOsSettings","oneofIndex":2,"jsonName":"recoveryOsSettings","proto3Optional":true}],"oneofDecl":[{"name":"_user_settings"},{"name":"_system_settings"},{"name":"_recovery_os_settings"}]},{"name":"MacRegionalUserSettings","field":[{"name":"linguistic_data_assets_requested","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"linguisticDataAssetsRequested"},{"name":"user_assistant_language","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"userAssistantLanguage","proto3Optional":true},{"name":"user_assistant_voice_language","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"userAssistantVoiceLanguage","proto3Optional":true},{"name":"user_calendar","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"userCalendar","proto3Optional":true},{"name":"user_country_code","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"userCountryCode","proto3Optional":true},{"name":"user_current_input_source","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"userCurrentInputSource","proto3Optional":true},{"name":"user_language_code","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"userLanguageCode","proto3Optional":true},{"name":"user_locale","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"userLocale","proto3Optional":true},{"name":"user_preferred_interface_languages","number":9,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"userPreferredInterfaceLanguages"},{"name":"user_temperature_unit","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"userTemperatureUnit","proto3Optional":true},{"name":"user_uses_metric_system","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"userUsesMetricSystem","proto3Optional":true}],"oneofDecl":[{"name":"_user_assistant_language"},{"name":"_user_assistant_voice_language"},{"name":"_user_calendar"},{"name":"_user_country_code"},{"name":"_user_current_input_source"},{"name":"_user_language_code"},{"name":"_user_locale"},{"name":"_user_temperature_unit"},{"name":"_user_uses_metric_system"}]},{"name":"MacRegionalSystemSettings","field":[{"name":"system_country","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"systemCountry","proto3Optional":true},{"name":"system_interface_languages","number":2,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"systemInterfaceLanguages"},{"name":"system_languages","number":3,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"systemLanguages"},{"name":"system_locale","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"systemLocale","proto3Optional":true},{"name":"system_text_direction","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"systemTextDirection","proto3Optional":true},{"name":"system_uses_metric_system","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"systemUsesMetricSystem","proto3Optional":true}],"oneofDecl":[{"name":"_system_country"},{"name":"_system_locale"},{"name":"_system_text_direction"},{"name":"_system_uses_metric_system"}]},{"name":"MacRegionalRecoveryOsSettings","field":[{"name":"boot_keyboard_code","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"bootKeyboardCode","proto3Optional":true},{"name":"boot_locale","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"bootLocale","proto3Optional":true}],"oneofDecl":[{"name":"_boot_keyboard_code"},{"name":"_boot_locale"}]},{"name":"ComputerWindowsPageFile","field":[{"name":"single","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsSinglePageFile","oneofIndex":0,"jsonName":"single"},{"name":"combined","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsPageFileCombinedData","oneofIndex":0,"jsonName":"combined"}],"oneofDecl":[{"name":"page_file"}]},{"name":"WindowsSinglePageFile","field":[{"name":"archive","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"archive","proto3Optional":true},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"creation_date","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":2,"jsonName":"creationDate","proto3Optional":true},{"name":"file_size","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","oneofIndex":3,"jsonName":"fileSize","proto3Optional":true},{"name":"hidden","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":4,"jsonName":"hidden","proto3Optional":true},{"name":"initial_size","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":5,"jsonName":"initialSize","proto3Optional":true},{"name":"install_date","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":6,"jsonName":"installDate","proto3Optional":true},{"name":"last_accessed","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":7,"jsonName":"lastAccessed","proto3Optional":true},{"name":"last_modified","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":8,"jsonName":"lastModified","proto3Optional":true},{"name":"maximum_size","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":9,"jsonName":"maximumSize","proto3Optional":true},{"name":"name","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"name","proto3Optional":true},{"name":"path","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"path","proto3Optional":true},{"name":"readable","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":12,"jsonName":"readable","proto3Optional":true},{"name":"system","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":13,"jsonName":"system","proto3Optional":true},{"name":"writeable","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":14,"jsonName":"writeable","proto3Optional":true}],"oneofDecl":[{"name":"_archive"},{"name":"_caption"},{"name":"_creation_date"},{"name":"_file_size"},{"name":"_hidden"},{"name":"_initial_size"},{"name":"_install_date"},{"name":"_last_accessed"},{"name":"_last_modified"},{"name":"_maximum_size"},{"name":"_name"},{"name":"_path"},{"name":"_readable"},{"name":"_system"},{"name":"_writeable"}]},{"name":"WindowsPageFileCombinedData","field":[{"name":"page_file_usages","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsPageFileUsage","jsonName":"pageFileUsages"},{"name":"page_file_settings","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsPageFileSetting","jsonName":"pageFileSettings"}]},{"name":"WindowsPageFileSetting","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"description","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"description","proto3Optional":true},{"name":"initial_size","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":2,"jsonName":"initialSize","proto3Optional":true},{"name":"maximum_size","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":3,"jsonName":"maximumSize","proto3Optional":true},{"name":"name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"name","proto3Optional":true},{"name":"setting_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"settingId","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_description"},{"name":"_initial_size"},{"name":"_maximum_size"},{"name":"_name"},{"name":"_setting_id"}]},{"name":"WindowsPageFileUsage","field":[{"name":"allocated_base_size","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":0,"jsonName":"allocatedBaseSize","proto3Optional":true},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"current_usage","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":2,"jsonName":"currentUsage","proto3Optional":true},{"name":"description","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"description","proto3Optional":true},{"name":"install_date","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":4,"jsonName":"installDate","proto3Optional":true},{"name":"name","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"name","proto3Optional":true},{"name":"peak_usage","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":6,"jsonName":"peakUsage","proto3Optional":true},{"name":"status","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"status","proto3Optional":true},{"name":"temp_page_file","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":8,"jsonName":"tempPageFile","proto3Optional":true}],"oneofDecl":[{"name":"_allocated_base_size"},{"name":"_caption"},{"name":"_current_usage"},{"name":"_description"},{"name":"_install_date"},{"name":"_name"},{"name":"_peak_usage"},{"name":"_status"},{"name":"_temp_page_file"}]},{"name":"ComputerWindowsDesktop","field":[{"name":"border_width","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"borderWidth","proto3Optional":true},{"name":"cool_switch","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"coolSwitch","proto3Optional":true},{"name":"cursor_blink_rate","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"cursorBlinkRate","proto3Optional":true},{"name":"drag_full_windows","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":3,"jsonName":"dragFullWindows","proto3Optional":true},{"name":"grid_granularity","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":4,"jsonName":"gridGranularity","proto3Optional":true},{"name":"icon_spacing","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":5,"jsonName":"iconSpacing","proto3Optional":true},{"name":"icon_title_facename","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"iconTitleFacename","proto3Optional":true},{"name":"icon_title_size","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":7,"jsonName":"iconTitleSize","proto3Optional":true},{"name":"icon_title_wrap","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":8,"jsonName":"iconTitleWrap","proto3Optional":true},{"name":"name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"name","proto3Optional":true},{"name":"pattern","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"pattern","proto3Optional":true},{"name":"screensaver_active","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":11,"jsonName":"screensaverActive","proto3Optional":true},{"name":"screensaver_executable","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"screensaverExecutable","proto3Optional":true},{"name":"screensaver_secure","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":13,"jsonName":"screensaverSecure","proto3Optional":true},{"name":"screensavertimeout","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":14,"jsonName":"screensavertimeout","proto3Optional":true},{"name":"wallpaper","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"wallpaper","proto3Optional":true},{"name":"wallpaper_stretched","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":16,"jsonName":"wallpaperStretched","proto3Optional":true},{"name":"wallpaper_tiled","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":17,"jsonName":"wallpaperTiled","proto3Optional":true}],"oneofDecl":[{"name":"_border_width"},{"name":"_cool_switch"},{"name":"_cursor_blink_rate"},{"name":"_drag_full_windows"},{"name":"_grid_granularity"},{"name":"_icon_spacing"},{"name":"_icon_title_facename"},{"name":"_icon_title_size"},{"name":"_icon_title_wrap"},{"name":"_name"},{"name":"_pattern"},{"name":"_screensaver_active"},{"name":"_screensaver_executable"},{"name":"_screensaver_secure"},{"name":"_screensavertimeout"},{"name":"_wallpaper"},{"name":"_wallpaper_stretched"},{"name":"_wallpaper_tiled"}]},{"name":"ComputerWindowsDisplay","field":[{"name":"bits_per_pel","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"bitsPerPel","proto3Optional":true},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"device_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"deviceName","proto3Optional":true},{"name":"display_flags","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"displayFlags","proto3Optional":true},{"name":"display_frequency","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":4,"jsonName":"displayFrequency","proto3Optional":true},{"name":"driver_version","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"driverVersion","proto3Optional":true},{"name":"log_pixels","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":6,"jsonName":"logPixels","proto3Optional":true},{"name":"pels_height","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":7,"jsonName":"pelsHeight","proto3Optional":true},{"name":"pels_width","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"pelsWidth","proto3Optional":true},{"name":"specification_version","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":9,"jsonName":"specificationVersion","proto3Optional":true}],"oneofDecl":[{"name":"_bits_per_pel"},{"name":"_caption"},{"name":"_device_name"},{"name":"_display_flags"},{"name":"_display_frequency"},{"name":"_driver_version"},{"name":"_log_pixels"},{"name":"_pels_height"},{"name":"_pels_width"},{"name":"_specification_version"}]},{"name":"ComputerWindowsDesktopMonitor","field":[{"name":"availability","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":0,"jsonName":"availability","proto3Optional":true},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"device_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"deviceId","proto3Optional":true},{"name":"monitor_manufacturer","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"monitorManufacturer","proto3Optional":true},{"name":"pixels_per_x_logical_inch","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":4,"jsonName":"pixelsPerXLogicalInch","proto3Optional":true},{"name":"pixels_per_y_logical_inch","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":5,"jsonName":"pixelsPerYLogicalInch","proto3Optional":true},{"name":"pnp_device_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"pnpDeviceId","proto3Optional":true},{"name":"screen_height","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":7,"jsonName":"screenHeight","proto3Optional":true},{"name":"screen_width","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":8,"jsonName":"screenWidth","proto3Optional":true}],"oneofDecl":[{"name":"_availability"},{"name":"_caption"},{"name":"_device_id"},{"name":"_monitor_manufacturer"},{"name":"_pixels_per_x_logical_inch"},{"name":"_pixels_per_y_logical_inch"},{"name":"_pnp_device_id"},{"name":"_screen_height"},{"name":"_screen_width"}]},{"name":"ComputerMacPreferencePane","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"bundle_path_location","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"bundlePathLocation","proto3Optional":true},{"name":"identifier","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"identifier","proto3Optional":true},{"name":"is_visible","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":3,"jsonName":"isVisible","proto3Optional":true},{"name":"kind","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"kind","proto3Optional":true},{"name":"supported_by","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"supportedBy","proto3Optional":true},{"name":"version","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"version","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_bundle_path_location"},{"name":"_identifier"},{"name":"_is_visible"},{"name":"_kind"},{"name":"_supported_by"},{"name":"_version"}]},{"name":"ComputerWindowsDisplayController","field":[{"name":"bits_per_pixel","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"bitsPerPixel","proto3Optional":true},{"name":"caption","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"caption","proto3Optional":true},{"name":"color_planes","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":2,"jsonName":"colorPlanes","proto3Optional":true},{"name":"device_entries_in_a_color_table","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":3,"jsonName":"deviceEntriesInAColorTable","proto3Optional":true},{"name":"device_specific_pens","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":4,"jsonName":"deviceSpecificPens","proto3Optional":true},{"name":"horizontal_resolution","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":5,"jsonName":"horizontalResolution","proto3Optional":true},{"name":"name","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"name","proto3Optional":true},{"name":"refresh_rate","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":7,"jsonName":"refreshRate","proto3Optional":true},{"name":"vertical_resolution","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":8,"jsonName":"verticalResolution","proto3Optional":true},{"name":"video_mode","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"videoMode","proto3Optional":true}],"oneofDecl":[{"name":"_bits_per_pixel"},{"name":"_caption"},{"name":"_color_planes"},{"name":"_device_entries_in_a_color_table"},{"name":"_device_specific_pens"},{"name":"_horizontal_resolution"},{"name":"_name"},{"name":"_refresh_rate"},{"name":"_vertical_resolution"},{"name":"_video_mode"}]},{"name":"ComputerWindowsNetworkClient","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"description","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"description","proto3Optional":true},{"name":"manufacturer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"manufacturer","proto3Optional":true},{"name":"name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"name","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_description"},{"name":"_manufacturer"},{"name":"_name"}]},{"name":"ComputerWindowsIdeController","field":[{"name":"caption","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"caption","proto3Optional":true},{"name":"device_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"deviceId","proto3Optional":true},{"name":"manufacturer","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"manufacturer","proto3Optional":true},{"name":"protocol_supported","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":3,"jsonName":"protocolSupported","proto3Optional":true}],"oneofDecl":[{"name":"_caption"},{"name":"_device_id"},{"name":"_manufacturer"},{"name":"_protocol_supported"}]},{"name":"ComputerWindowsDiskPartition","field":[{"name":"block_size","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"blockSize","proto3Optional":true},{"name":"bootable","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":1,"jsonName":"bootable","proto3Optional":true},{"name":"boot_partition","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"bootPartition","proto3Optional":true},{"name":"device_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"deviceId","proto3Optional":true},{"name":"disk_index","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":4,"jsonName":"diskIndex","proto3Optional":true},{"name":"index","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":5,"jsonName":"index","proto3Optional":true},{"name":"number_of_blocks","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":6,"jsonName":"numberOfBlocks","proto3Optional":true},{"name":"primary_partition","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":7,"jsonName":"primaryPartition","proto3Optional":true},{"name":"size","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":8,"jsonName":"size","proto3Optional":true},{"name":"starting_offset","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":9,"jsonName":"startingOffset","proto3Optional":true},{"name":"type","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"type","proto3Optional":true}],"oneofDecl":[{"name":"_block_size"},{"name":"_bootable"},{"name":"_boot_partition"},{"name":"_device_id"},{"name":"_disk_index"},{"name":"_index"},{"name":"_number_of_blocks"},{"name":"_primary_partition"},{"name":"_size"},{"name":"_starting_offset"},{"name":"_type"}]},{"name":"ComputerWindowsFloppy","field":[{"name":"bytes_per_sector","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":0,"jsonName":"bytesPerSector","proto3Optional":true},{"name":"description","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"description","proto3Optional":true},{"name":"interface_type","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"interfaceType","proto3Optional":true},{"name":"manufacturer","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"manufacturer","proto3Optional":true},{"name":"model","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"model","proto3Optional":true},{"name":"name","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"name","proto3Optional":true},{"name":"partitions","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":6,"jsonName":"partitions","proto3Optional":true},{"name":"pnp_device_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"pnpDeviceId","proto3Optional":true},{"name":"sectors_per_track","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":8,"jsonName":"sectorsPerTrack","proto3Optional":true},{"name":"size","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":9,"jsonName":"size","proto3Optional":true},{"name":"total_cylinders","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":10,"jsonName":"totalCylinders","proto3Optional":true},{"name":"total_heads","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":11,"jsonName":"totalHeads","proto3Optional":true},{"name":"total_sectors","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":12,"jsonName":"totalSectors","proto3Optional":true},{"name":"total_tracks","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":13,"jsonName":"totalTracks","proto3Optional":true},{"name":"tracks_per_cylinder","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","oneofIndex":14,"jsonName":"tracksPerCylinder","proto3Optional":true},{"name":"device_id","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"deviceId","proto3Optional":true},{"name":"status","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"status","proto3Optional":true},{"name":"firmware_revision","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"firmwareRevision","proto3Optional":true},{"name":"serial_number","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"serialNumber","proto3Optional":true}],"oneofDecl":[{"name":"_bytes_per_sector"},{"name":"_description"},{"name":"_interface_type"},{"name":"_manufacturer"},{"name":"_model"},{"name":"_name"},{"name":"_partitions"},{"name":"_pnp_device_id"},{"name":"_sectors_per_track"},{"name":"_size"},{"name":"_total_cylinders"},{"name":"_total_heads"},{"name":"_total_sectors"},{"name":"_total_tracks"},{"name":"_tracks_per_cylinder"},{"name":"_device_id"},{"name":"_status"},{"name":"_firmware_revision"},{"name":"_serial_number"}]},{"name":"PortableBattery","field":[{"name":"capacity_multiplier","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"capacityMultiplier","proto3Optional":true},{"name":"chemistry","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","oneofIndex":1,"jsonName":"chemistry","proto3Optional":true},{"name":"design_capacity","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"designCapacity","proto3Optional":true},{"name":"design_voltage","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"designVoltage","proto3Optional":true},{"name":"device_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"deviceId","proto3Optional":true},{"name":"location","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"location","proto3Optional":true},{"name":"manufacture_date","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"manufactureDate","proto3Optional":true},{"name":"manufacturer","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"manufacturer","proto3Optional":true},{"name":"max_battery_error","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":8,"jsonName":"maxBatteryError","proto3Optional":true},{"name":"name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"name","proto3Optional":true},{"name":"smart_battery_version","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"smartBatteryVersion","proto3Optional":true}],"oneofDecl":[{"name":"_capacity_multiplier"},{"name":"_chemistry"},{"name":"_design_capacity"},{"name":"_design_voltage"},{"name":"_device_id"},{"name":"_location"},{"name":"_manufacture_date"},{"name":"_manufacturer"},{"name":"_max_battery_error"},{"name":"_name"},{"name":"_smart_battery_version"}]},{"name":"ComputerMacOsFramework","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"arch_kind","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"archKind","proto3Optional":true},{"name":"info","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"info","proto3Optional":true},{"name":"last_modified","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":3,"jsonName":"lastModified","proto3Optional":true},{"name":"obtained_from","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"obtainedFrom","proto3Optional":true},{"name":"path_location","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"pathLocation","proto3Optional":true},{"name":"private_framework","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"privateFramework","proto3Optional":true},{"name":"signed_by","number":8,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"signedBy"},{"name":"version","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"version","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_arch_kind"},{"name":"_info"},{"name":"_last_modified"},{"name":"_obtained_from"},{"name":"_path_location"},{"name":"_private_framework"},{"name":"_version"}]},{"name":"MappedValue","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"value"},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true}],"oneofDecl":[{"name":"_name"}]},{"name":"MonitorInventory","field":[{"name":"timestamp","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"timestamp"},{"name":"monitor","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Monitor","jsonName":"monitor"}]},{"name":"Monitor","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"id","proto3Optional":true},{"name":"make_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"makeId","proto3Optional":true},{"name":"make_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"makeName"},{"name":"model_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"modelName"},{"name":"serial_number","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"serialNumber","proto3Optional":true},{"name":"manufacturer_date","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"manufacturerDate"},{"name":"windows","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsMonitorInfo","oneofIndex":0,"jsonName":"windows"},{"name":"catalog_brand","number":50,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","oneofIndex":4,"jsonName":"catalogBrand","proto3Optional":true},{"name":"catalog_monitor","number":51,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogMonitor","oneofIndex":5,"jsonName":"catalogMonitor","proto3Optional":true}],"oneofDecl":[{"name":"spec"},{"name":"_id"},{"name":"_make_id"},{"name":"_serial_number"},{"name":"_catalog_brand"},{"name":"_catalog_monitor"}]},{"name":"WindowsMonitorInfo","field":[{"name":"model","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"model"},{"name":"pnp_device_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"pnpDeviceId","proto3Optional":true},{"name":"serial_number","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"serialNumber","proto3Optional":true},{"name":"serial_hex","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"serialHex","proto3Optional":true},{"name":"vesa_manufacturer","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"vesaManufacturer","proto3Optional":true},{"name":"key_manufacturer","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"keyManufacturer","proto3Optional":true},{"name":"manufacturer_date","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":5,"jsonName":"manufacturerDate","proto3Optional":true},{"name":"device_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"deviceId","proto3Optional":true}],"oneofDecl":[{"name":"_pnp_device_id"},{"name":"_serial_number"},{"name":"_serial_hex"},{"name":"_vesa_manufacturer"},{"name":"_key_manufacturer"},{"name":"_manufacturer_date"},{"name":"_device_id"}]},{"name":"ComputerMacWifiController","field":[{"name":"airport_interfaces","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WiFiInterface","jsonName":"airportInterfaces"},{"name":"software_information","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WiFiSoftware","oneofIndex":0,"jsonName":"softwareInformation","proto3Optional":true}],"oneofDecl":[{"name":"_software_information"}]},{"name":"WiFiInterface","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"airdrop_channel","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"airdropChannel","proto3Optional":true},{"name":"airdrop_supported","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"airdropSupported","proto3Optional":true},{"name":"auto_unlock_supported","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"autoUnlockSupported","proto3Optional":true},{"name":"card_type","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"cardType","proto3Optional":true},{"name":"country_code","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"countryCode","proto3Optional":true},{"name":"firmware_version","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"firmwareVersion","proto3Optional":true},{"name":"locale","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"locale","proto3Optional":true},{"name":"mac_address","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"macAddress","proto3Optional":true},{"name":"status_information","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"statusInformation","proto3Optional":true},{"name":"supported_channels","number":11,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"supportedChannels"},{"name":"supported_phy_modes","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"supportedPhyModes","proto3Optional":true},{"name":"wake_on_wireless_supported","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"wakeOnWirelessSupported","proto3Optional":true},{"name":"current_network","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WiFiNetwork","oneofIndex":12,"jsonName":"currentNetwork","proto3Optional":true},{"name":"other_local_networks","number":15,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WiFiNetwork","jsonName":"otherLocalNetworks"}],"oneofDecl":[{"name":"_name"},{"name":"_airdrop_channel"},{"name":"_airdrop_supported"},{"name":"_auto_unlock_supported"},{"name":"_card_type"},{"name":"_country_code"},{"name":"_firmware_version"},{"name":"_locale"},{"name":"_mac_address"},{"name":"_status_information"},{"name":"_supported_phy_modes"},{"name":"_wake_on_wireless_supported"},{"name":"_current_network"}]},{"name":"WiFiNetwork","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"network_bssid","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"networkBssid","proto3Optional":true},{"name":"network_channel","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"networkChannel","proto3Optional":true},{"name":"network_country_code","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"networkCountryCode","proto3Optional":true},{"name":"network_mcs_index","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"networkMcsIndex","proto3Optional":true},{"name":"network_phy_mode","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"networkPhyMode","proto3Optional":true},{"name":"network_transmit_rate","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"networkTransmitRate","proto3Optional":true},{"name":"network_type","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"networkType","proto3Optional":true},{"name":"security_mode","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"securityMode","proto3Optional":true},{"name":"signal_noise","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"signalNoise","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_network_bssid"},{"name":"_network_channel"},{"name":"_network_country_code"},{"name":"_network_mcs_index"},{"name":"_network_phy_mode"},{"name":"_network_transmit_rate"},{"name":"_network_type"},{"name":"_security_mode"},{"name":"_signal_noise"}]},{"name":"WiFiSoftware","field":[{"name":"airport_utility_version","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"airportUtilityVersion","proto3Optional":true},{"name":"core_wlan_version","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"coreWlanVersion","proto3Optional":true},{"name":"core_wlan_kit_version","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"coreWlanKitVersion","proto3Optional":true},{"name":"diagnostics_version","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"diagnosticsVersion","proto3Optional":true},{"name":"io80211_family_version","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"io80211FamilyVersion","proto3Optional":true},{"name":"menu_extra_version","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"menuExtraVersion","proto3Optional":true},{"name":"system_information_version","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"systemInformationVersion","proto3Optional":true}],"oneofDecl":[{"name":"_airport_utility_version"},{"name":"_core_wlan_version"},{"name":"_core_wlan_kit_version"},{"name":"_diagnostics_version"},{"name":"_io80211_family_version"},{"name":"_menu_extra_version"},{"name":"_system_information_version"}]},{"name":"AntivirusSoftware","field":[{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"guid","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"guid","proto3Optional":true},{"name":"enabled","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"enabled","proto3Optional":true},{"name":"up_to_date","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":3,"jsonName":"upToDate","proto3Optional":true},{"name":"software","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Software","oneofIndex":4,"jsonName":"software","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_guid"},{"name":"_enabled"},{"name":"_up_to_date"},{"name":"_software"}]},{"name":"IpInfo","field":[{"name":"address","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"address"},{"name":"hostname","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"hostname","proto3Optional":true},{"name":"timezone","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"timezone","proto3Optional":true},{"name":"continent_code","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"continentCode","proto3Optional":true},{"name":"country_code","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"countryCode","proto3Optional":true},{"name":"region_code","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"regionCode","proto3Optional":true},{"name":"country_city","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"countryCity","proto3Optional":true},{"name":"isp","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"isp","proto3Optional":true},{"name":"organization","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"organization","proto3Optional":true}],"oneofDecl":[{"name":"_hostname"},{"name":"_timezone"},{"name":"_continent_code"},{"name":"_country_code"},{"name":"_region_code"},{"name":"_country_city"},{"name":"_isp"},{"name":"_organization"}]},{"name":"SoftwareInventory","field":[{"name":"timestamp","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"timestamp"},{"name":"software","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Software","jsonName":"software"}],"reservedRange":[{"start":3,"end":4}]},{"name":"Software","field":[{"name":"rank","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":0,"jsonName":"rank","proto3Optional":true},{"name":"type_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"typeId","proto3Optional":true},{"name":"cat_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"catId","proto3Optional":true},{"name":"make_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"makeId","proto3Optional":true},{"name":"sw_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":4,"jsonName":"swId","proto3Optional":true},{"name":"parent_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"parentId","proto3Optional":true},{"name":"type_name","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"typeName","proto3Optional":true},{"name":"cat_name","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"catName","proto3Optional":true},{"name":"make_name","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"makeName","proto3Optional":true},{"name":"name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"name","proto3Optional":true},{"name":"version","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"version","proto3Optional":true},{"name":"market_ver","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"marketVer","proto3Optional":true},{"name":"edition","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"edition","proto3Optional":true},{"name":"build","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"build","proto3Optional":true},{"name":"arch","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"arch","proto3Optional":true},{"name":"lang","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"lang","proto3Optional":true},{"name":"cpe","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"cpe","proto3Optional":true},{"name":"raw","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.RawSoftware","jsonName":"raw"},{"name":"raw_hash","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"rawHash","proto3Optional":true},{"name":"nre_hash","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"nreHash","proto3Optional":true},{"name":"catalog_brand","number":50,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","oneofIndex":19,"jsonName":"catalogBrand","proto3Optional":true},{"name":"catalog_software","number":51,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogSoftware","oneofIndex":20,"jsonName":"catalogSoftware","proto3Optional":true},{"name":"catalog_parent","number":52,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogSoftware","oneofIndex":21,"jsonName":"catalogParent","proto3Optional":true}],"oneofDecl":[{"name":"_rank"},{"name":"_type_id"},{"name":"_cat_id"},{"name":"_make_id"},{"name":"_sw_id"},{"name":"_parent_id"},{"name":"_type_name"},{"name":"_cat_name"},{"name":"_make_name"},{"name":"_name"},{"name":"_version"},{"name":"_market_ver"},{"name":"_edition"},{"name":"_build"},{"name":"_arch"},{"name":"_lang"},{"name":"_cpe"},{"name":"_raw_hash"},{"name":"_nre_hash"},{"name":"_catalog_brand"},{"name":"_catalog_software"},{"name":"_catalog_parent"}]},{"name":"RawSoftware","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"vendor","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"vendor","proto3Optional":true},{"name":"version","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"version","proto3Optional":true},{"name":"info","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"info","proto3Optional":true},{"name":"exe_path","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"exePath","proto3Optional":true},{"name":"arch","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"arch","proto3Optional":true},{"name":"install_date","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":5,"jsonName":"installDate","proto3Optional":true},{"name":"source_type","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"sourceType","proto3Optional":true},{"name":"sw_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"swId","proto3Optional":true},{"name":"is_current_user","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":8,"jsonName":"isCurrentUser","proto3Optional":true}],"oneofDecl":[{"name":"_vendor"},{"name":"_version"},{"name":"_info"},{"name":"_exe_path"},{"name":"_arch"},{"name":"_install_date"},{"name":"_source_type"},{"name":"_sw_id"},{"name":"_is_current_user"}]},{"name":"SoftwareChangeEvent","field":[{"name":"event_type","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".com.lansweeper.dp.outbound.v1.SoftwareChangeEvent.EventType","jsonName":"eventType"},{"name":"start","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"start"},{"name":"end","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":0,"jsonName":"end","proto3Optional":true},{"name":"software","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Software","jsonName":"software"},{"name":"prev_software","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Software","oneofIndex":1,"jsonName":"prevSoftware","proto3Optional":true}],"enumType":[{"name":"EventType","value":[{"name":"INSTALL","number":0},{"name":"UNINSTALL","number":1},{"name":"UPDATE","number":2}]}],"oneofDecl":[{"name":"_end"},{"name":"_prev_software"}]},{"name":"ComputerMacInstallHistory","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"name","proto3Optional":true},{"name":"install_date","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":1,"jsonName":"installDate","proto3Optional":true},{"name":"install_version","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"installVersion","proto3Optional":true},{"name":"package_source","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"packageSource","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_install_date"},{"name":"_install_version"},{"name":"_package_source"}]},{"name":"CatalogBrand","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"make_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"makeName"},{"name":"parent_id","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"parentId","proto3Optional":true},{"name":"last_update_time","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":1,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"country_code","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"countryCode","proto3Optional":true},{"name":"logo_image_url","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"logoImageUrl","proto3Optional":true},{"name":"banner_image_url","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"bannerImageUrl","proto3Optional":true},{"name":"wikipedia_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"wikipediaId","proto3Optional":true},{"name":"wikipedia_lang_code","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"wikipediaLangCode","proto3Optional":true},{"name":"website_url","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"websiteUrl","proto3Optional":true},{"name":"support_url","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"supportUrl","proto3Optional":true},{"name":"support_phone","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"supportPhone","proto3Optional":true},{"name":"facebook_account","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"facebookAccount","proto3Optional":true},{"name":"twitter_account","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"twitterAccount","proto3Optional":true},{"name":"warranty_url","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"warrantyUrl","proto3Optional":true},{"name":"warranty_direct_url","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"warrantyDirectUrl","proto3Optional":true},{"name":"community_url","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"communityUrl","proto3Optional":true},{"name":"linkedin_account","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"linkedinAccount","proto3Optional":true},{"name":"instagram_account","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"instagramAccount","proto3Optional":true},{"name":"youtube_account","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"youtubeAccount","proto3Optional":true},{"name":"pinterest_account","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"pinterestAccount","proto3Optional":true},{"name":"tiktok_account","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":19,"jsonName":"tiktokAccount","proto3Optional":true},{"name":"class_hardware","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":20,"jsonName":"classHardware","proto3Optional":true},{"name":"class_software","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":21,"jsonName":"classSoftware","proto3Optional":true},{"name":"class_consumer","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":22,"jsonName":"classConsumer","proto3Optional":true},{"name":"class_enterprise","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":23,"jsonName":"classEnterprise","proto3Optional":true},{"name":"class_industrial","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":24,"jsonName":"classIndustrial","proto3Optional":true},{"name":"class_individual","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":25,"jsonName":"classIndividual","proto3Optional":true},{"name":"match_score","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":26,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_parent_id"},{"name":"_last_update_time"},{"name":"_country_code"},{"name":"_logo_image_url"},{"name":"_banner_image_url"},{"name":"_wikipedia_id"},{"name":"_wikipedia_lang_code"},{"name":"_website_url"},{"name":"_support_url"},{"name":"_support_phone"},{"name":"_facebook_account"},{"name":"_twitter_account"},{"name":"_warranty_url"},{"name":"_warranty_direct_url"},{"name":"_community_url"},{"name":"_linkedin_account"},{"name":"_instagram_account"},{"name":"_youtube_account"},{"name":"_pinterest_account"},{"name":"_tiktok_account"},{"name":"_class_hardware"},{"name":"_class_software"},{"name":"_class_consumer"},{"name":"_class_enterprise"},{"name":"_class_industrial"},{"name":"_class_individual"},{"name":"_match_score"}]},{"name":"CatalogModel","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"make_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"makeId"},{"name":"device_model","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"deviceModel"},{"name":"device_type_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":0,"jsonName":"deviceTypeId","proto3Optional":true},{"name":"device_model_code","number":6,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"deviceModelCode"},{"name":"family_id","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"familyId","proto3Optional":true},{"name":"is_family","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":2,"jsonName":"isFamily","proto3Optional":true},{"name":"manual_url","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"manualUrl","proto3Optional":true},{"name":"faq_url","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"faqUrl","proto3Optional":true},{"name":"release_date","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":5,"jsonName":"releaseDate","proto3Optional":true},{"name":"disc_date","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":6,"jsonName":"discDate","proto3Optional":true},{"name":"eos_date","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":7,"jsonName":"eosDate","proto3Optional":true},{"name":"lifecyle_confidence","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"lifecyleConfidence","proto3Optional":true},{"name":"price_class","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"priceClass","proto3Optional":true},{"name":"product_class","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"productClass","proto3Optional":true},{"name":"sh_ifttt_handle","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"shIftttHandle","proto3Optional":true},{"name":"sh_google_ass_langs","number":18,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"shGoogleAssLangs"},{"name":"sh_alexa_langs","number":19,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"shAlexaLangs"},{"name":"sh_hass_handle","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"shHassHandle","proto3Optional":true},{"name":"sh_apple_home_kit","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":13,"jsonName":"shAppleHomeKit","proto3Optional":true},{"name":"sh_open_hab_handle","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"shOpenHabHandle","proto3Optional":true},{"name":"nist_cpe","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"nistCpe","proto3Optional":true},{"name":"popularity","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":16,"jsonName":"popularity","proto3Optional":true},{"name":"last_update_time","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":17,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"match_score","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":18,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_device_type_id"},{"name":"_family_id"},{"name":"_is_family"},{"name":"_manual_url"},{"name":"_faq_url"},{"name":"_release_date"},{"name":"_disc_date"},{"name":"_eos_date"},{"name":"_lifecyle_confidence"},{"name":"_price_class"},{"name":"_product_class"},{"name":"_sh_ifttt_handle"},{"name":"_sh_hass_handle"},{"name":"_sh_apple_home_kit"},{"name":"_sh_open_hab_handle"},{"name":"_nist_cpe"},{"name":"_popularity"},{"name":"_last_update_time"},{"name":"_match_score"}]},{"name":"CatalogOs","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"os_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"osName"},{"name":"os_version","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"osVersion","proto3Optional":true},{"name":"os_build","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"osBuild","proto3Optional":true},{"name":"os_version_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"osVersionName","proto3Optional":true},{"name":"override_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":3,"jsonName":"overrideId","proto3Optional":true},{"name":"make_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":4,"jsonName":"makeId","proto3Optional":true},{"name":"parent_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"parentId","proto3Optional":true},{"name":"release_date","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":6,"jsonName":"releaseDate","proto3Optional":true},{"name":"eol_date","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":7,"jsonName":"eolDate","proto3Optional":true},{"name":"eos_date","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":8,"jsonName":"eosDate","proto3Optional":true},{"name":"eosx_date","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":9,"jsonName":"eosxDate","proto3Optional":true},{"name":"lifecyle_confidence","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"lifecyleConfidence","proto3Optional":true},{"name":"logo_image_url","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"logoImageUrl","proto3Optional":true},{"name":"banner_image_url","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":12,"jsonName":"bannerImageUrl","proto3Optional":true},{"name":"wikipedia_id","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"wikipediaId","proto3Optional":true},{"name":"wikipedia_lang_code","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"wikipediaLangCode","proto3Optional":true},{"name":"website_url","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":15,"jsonName":"websiteUrl","proto3Optional":true},{"name":"support_url","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":16,"jsonName":"supportUrl","proto3Optional":true},{"name":"support_phone","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"supportPhone","proto3Optional":true},{"name":"facebook_account","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":18,"jsonName":"facebookAccount","proto3Optional":true},{"name":"twitter_account","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":19,"jsonName":"twitterAccount","proto3Optional":true},{"name":"nist_cpe","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":20,"jsonName":"nistCpe","proto3Optional":true},{"name":"last_update_time","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":21,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"match_score","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":22,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_os_version"},{"name":"_os_build"},{"name":"_os_version_name"},{"name":"_override_id"},{"name":"_make_id"},{"name":"_parent_id"},{"name":"_release_date"},{"name":"_eol_date"},{"name":"_eos_date"},{"name":"_eosx_date"},{"name":"_lifecyle_confidence"},{"name":"_logo_image_url"},{"name":"_banner_image_url"},{"name":"_wikipedia_id"},{"name":"_wikipedia_lang_code"},{"name":"_website_url"},{"name":"_support_url"},{"name":"_support_phone"},{"name":"_facebook_account"},{"name":"_twitter_account"},{"name":"_nist_cpe"},{"name":"_last_update_time"},{"name":"_match_score"}]},{"name":"CatalogSoftware","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"sw_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"swName"},{"name":"sw_version","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"swVersion","proto3Optional":true},{"name":"sw_market_ver","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"swMarketVer","proto3Optional":true},{"name":"sw_edition","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"swEdition","proto3Optional":true},{"name":"sw_lang","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"swLang","proto3Optional":true},{"name":"sw_build","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"swBuild","proto3Optional":true},{"name":"make_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":5,"jsonName":"makeId","proto3Optional":true},{"name":"parent_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":6,"jsonName":"parentId","proto3Optional":true},{"name":"latest_id","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":7,"jsonName":"latestId","proto3Optional":true},{"name":"sw_type","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"swType","proto3Optional":true},{"name":"sw_category","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"swCategory","proto3Optional":true},{"name":"release_date","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":10,"jsonName":"releaseDate","proto3Optional":true},{"name":"eol_date","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":11,"jsonName":"eolDate","proto3Optional":true},{"name":"eos_date","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":12,"jsonName":"eosDate","proto3Optional":true},{"name":"eosx_date","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":13,"jsonName":"eosxDate","proto3Optional":true},{"name":"lifecyle_confidence","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":14,"jsonName":"lifecyleConfidence","proto3Optional":true},{"name":"flag_latest","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":15,"jsonName":"flagLatest","proto3Optional":true},{"name":"flag_widespread","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":16,"jsonName":"flagWidespread","proto3Optional":true},{"name":"flag_deprecated","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":17,"jsonName":"flagDeprecated","proto3Optional":true},{"name":"last_update_time","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":18,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"match_score","number":100,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":19,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_sw_version"},{"name":"_sw_market_ver"},{"name":"_sw_edition"},{"name":"_sw_lang"},{"name":"_sw_build"},{"name":"_make_id"},{"name":"_parent_id"},{"name":"_latest_id"},{"name":"_sw_type"},{"name":"_sw_category"},{"name":"_release_date"},{"name":"_eol_date"},{"name":"_eos_date"},{"name":"_eosx_date"},{"name":"_lifecyle_confidence"},{"name":"_flag_latest"},{"name":"_flag_widespread"},{"name":"_flag_deprecated"},{"name":"_last_update_time"},{"name":"_match_score"}]},{"name":"CatalogMonitor","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"id"},{"name":"model","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"model"},{"name":"vendor_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"vendorId","proto3Optional":true},{"name":"make_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":1,"jsonName":"makeId","proto3Optional":true},{"name":"family_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","oneofIndex":2,"jsonName":"familyId","proto3Optional":true},{"name":"is_family","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":3,"jsonName":"isFamily","proto3Optional":true},{"name":"official_page","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"officialPage","proto3Optional":true},{"name":"support_page","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"supportPage","proto3Optional":true},{"name":"size_inch","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":6,"jsonName":"sizeInch","proto3Optional":true},{"name":"max_resolution","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"maxResolution","proto3Optional":true},{"name":"aspect_ratio","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"aspectRatio","proto3Optional":true},{"name":"response_time_ms","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":9,"jsonName":"responseTimeMs","proto3Optional":true},{"name":"hd_type","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"hdType","proto3Optional":true},{"name":"display_tech","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":11,"jsonName":"displayTech","proto3Optional":true},{"name":"refresh_rate","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":12,"jsonName":"refreshRate","proto3Optional":true},{"name":"panel","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":13,"jsonName":"panel","proto3Optional":true},{"name":"height_cm","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":14,"jsonName":"heightCm","proto3Optional":true},{"name":"width_cm","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":15,"jsonName":"widthCm","proto3Optional":true},{"name":"diagonal_cm","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":16,"jsonName":"diagonalCm","proto3Optional":true},{"name":"usb_upstream","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":17,"jsonName":"usbUpstream","proto3Optional":true},{"name":"nr_usb_upstream","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":18,"jsonName":"nrUsbUpstream","proto3Optional":true},{"name":"nr_usb_type_a_downstream","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":19,"jsonName":"nrUsbTypeADownstream","proto3Optional":true},{"name":"nr_hdmi","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":20,"jsonName":"nrHdmi","proto3Optional":true},{"name":"nr_vga","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":21,"jsonName":"nrVga","proto3Optional":true},{"name":"nr_dvi","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":22,"jsonName":"nrDvi","proto3Optional":true},{"name":"hdmi_version","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":23,"jsonName":"hdmiVersion","proto3Optional":true},{"name":"nr_display_ports","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":24,"jsonName":"nrDisplayPorts","proto3Optional":true},{"name":"display_port_version","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":25,"jsonName":"displayPortVersion","proto3Optional":true},{"name":"energy_class","number":30,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":26,"jsonName":"energyClass","proto3Optional":true},{"name":"sdr_per_1000_u","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":27,"jsonName":"sdrPer1000U","proto3Optional":true},{"name":"average_watt_usage","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":28,"jsonName":"averageWattUsage","proto3Optional":true},{"name":"max_watt_usage","number":33,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":29,"jsonName":"maxWattUsage","proto3Optional":true},{"name":"watt_usage_standby","number":34,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":30,"jsonName":"wattUsageStandby","proto3Optional":true},{"name":"watt_power_save","number":35,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":31,"jsonName":"wattPowerSave","proto3Optional":true},{"name":"ac_voltage","number":36,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":32,"jsonName":"acVoltage","proto3Optional":true},{"name":"ac_freq_hz","number":37,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":33,"jsonName":"acFreqHz","proto3Optional":true},{"name":"current_a","number":38,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","oneofIndex":34,"jsonName":"currentA","proto3Optional":true},{"name":"feature_aio","number":39,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":35,"jsonName":"featureAio","proto3Optional":true},{"name":"feature_camera","number":40,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":36,"jsonName":"featureCamera","proto3Optional":true},{"name":"feature_speakers","number":41,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":37,"jsonName":"featureSpeakers","proto3Optional":true},{"name":"feature_hdmi","number":42,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":38,"jsonName":"featureHdmi","proto3Optional":true},{"name":"feature_eth","number":43,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":39,"jsonName":"featureEth","proto3Optional":true},{"name":"feature_portrait","number":44,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":40,"jsonName":"featurePortrait","proto3Optional":true},{"name":"feature_curved","number":45,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":41,"jsonName":"featureCurved","proto3Optional":true},{"name":"last_update_time","number":46,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":42,"jsonName":"lastUpdateTime","proto3Optional":true},{"name":"match_score","number":100,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":43,"jsonName":"matchScore","proto3Optional":true}],"oneofDecl":[{"name":"_vendor_id"},{"name":"_make_id"},{"name":"_family_id"},{"name":"_is_family"},{"name":"_official_page"},{"name":"_support_page"},{"name":"_size_inch"},{"name":"_max_resolution"},{"name":"_aspect_ratio"},{"name":"_response_time_ms"},{"name":"_hd_type"},{"name":"_display_tech"},{"name":"_refresh_rate"},{"name":"_panel"},{"name":"_height_cm"},{"name":"_width_cm"},{"name":"_diagonal_cm"},{"name":"_usb_upstream"},{"name":"_nr_usb_upstream"},{"name":"_nr_usb_type_a_downstream"},{"name":"_nr_hdmi"},{"name":"_nr_vga"},{"name":"_nr_dvi"},{"name":"_hdmi_version"},{"name":"_nr_display_ports"},{"name":"_display_port_version"},{"name":"_energy_class"},{"name":"_sdr_per_1000_u"},{"name":"_average_watt_usage"},{"name":"_max_watt_usage"},{"name":"_watt_usage_standby"},{"name":"_watt_power_save"},{"name":"_ac_voltage"},{"name":"_ac_freq_hz"},{"name":"_current_a"},{"name":"_feature_aio"},{"name":"_feature_camera"},{"name":"_feature_speakers"},{"name":"_feature_hdmi"},{"name":"_feature_eth"},{"name":"_feature_portrait"},{"name":"_feature_curved"},{"name":"_last_update_time"},{"name":"_match_score"}]},{"name":"IpLocationConfig","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"local_ip_cidr","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"localIpCidr","proto3Optional":true},{"name":"local_ip_start","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"localIpStart","proto3Optional":true},{"name":"local_ip_end","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"localIpEnd","proto3Optional":true},{"name":"source_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":3,"jsonName":"sourceId","proto3Optional":true},{"name":"internet_ip_cidr","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":4,"jsonName":"internetIpCidr","proto3Optional":true},{"name":"internet_country_code","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":5,"jsonName":"internetCountryCode","proto3Optional":true},{"name":"internet_country_city","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":6,"jsonName":"internetCountryCity","proto3Optional":true}],"oneofDecl":[{"name":"_local_ip_cidr"},{"name":"_local_ip_start"},{"name":"_local_ip_end"},{"name":"_source_id"},{"name":"_internet_ip_cidr"},{"name":"_internet_country_code"},{"name":"_internet_country_city"}]}],"service":[{"name":"DataCoreOutboundService","method":[{"name":"GetEntity","inputType":".com.lansweeper.dp.outbound.v1.GetEntityRequest","outputType":".com.lansweeper.dp.outbound.v1.GetEntityResponse","options":{}},{"name":"ListEntities","inputType":".com.lansweeper.dp.outbound.v1.ListEntityRequest","outputType":".com.lansweeper.dp.outbound.v1.ListEntityResponse","options":{},"serverStreaming":true},{"name":"CatalogLookup","inputType":".com.lansweeper.dp.outbound.v1.CatalogLookupRequest","outputType":".com.lansweeper.dp.outbound.v1.CatalogLookupResponse","options":{}},{"name":"GetIpLocationConfig","inputType":".com.lansweeper.dp.outbound.v1.GetIpLocationConfigRequest","outputType":".com.lansweeper.dp.outbound.v1.GetIpLocationConfigResponse","options":{}},{"name":"SetIpLocationConfig","inputType":".com.lansweeper.dp.outbound.v1.SetIpLocationConfigRequest","outputType":".com.lansweeper.dp.outbound.v1.SetIpLocationConfigResponse","options":{}}]}],"options":{"javaMultipleFiles":true,"goPackage":"./generated-go"},"sourceCodeInfo":{"location":[{"span":[7,0,2852,1]},{"path":[12],"span":[7,0,18],"leadingComments":"\n Copyright Lansweeper (c)\n\n This files contains the Data Access API and the definition of outbound model\n\n N.B. This file has been documented using the specification available here: https://github.com/pseudomuto/protoc-gen-doc\n"},{"path":[2],"span":[8,0,38]},{"path":[8],"span":[10,0,37]},{"path":[8,11],"span":[10,0,37]},{"path":[8],"span":[11,0,34]},{"path":[8,10],"span":[11,0,34]},{"path":[3,0],"span":[13,0,41]},{"path":[3,1],"span":[14,0,35]},{"path":[6,0],"span":[23,0,52,1],"leadingComments":"\n GRPC Service. Currently supported operation:\n - Get Entity\n - Stream Entities\n","leadingDetachedComments":[" ----- Service Part ------\n"]},{"path":[6,0,1],"span":[23,8,31]},{"path":[6,0,2,0],"span":[30,2,65],"leadingComments":" Retrieve a single entity by site/inst-id/type/id\n","leadingDetachedComments":[" ----------------------------------------\n ACCESS API\n ----------------------------------------\n"]},{"path":[6,0,2,0,1],"span":[30,6,15]},{"path":[6,0,2,0,2],"span":[30,17,33]},{"path":[6,0,2,0,3],"span":[30,44,61]},{"path":[6,0,2,1],"span":[33,2,76],"leadingComments":" lists entities for a site or site/type\n"},{"path":[6,0,2,1,1],"span":[33,6,18]},{"path":[6,0,2,1,2],"span":[33,19,36]},{"path":[6,0,2,1,6],"span":[33,47,53]},{"path":[6,0,2,1,3],"span":[33,54,72]},{"path":[6,0,2,2],"span":[40,2,77],"leadingComments":" Retrieve a single entity by site/inst-id/type/id\n","leadingDetachedComments":[" ----------------------------------------\n ENRICHMENT API\n ----------------------------------------\n"]},{"path":[6,0,2,2,1],"span":[40,6,19]},{"path":[6,0,2,2,2],"span":[40,21,41]},{"path":[6,0,2,2,3],"span":[40,52,73]},{"path":[6,0,2,3],"span":[47,2,94],"leadingComments":" Get IP Location config (BY SITE)\n","leadingDetachedComments":[" ----------------------------------------\n CONFIG API\n ----------------------------------------\n"]},{"path":[6,0,2,3,1],"span":[47,6,25]},{"path":[6,0,2,3,2],"span":[47,26,52]},{"path":[6,0,2,3,3],"span":[47,63,90]},{"path":[6,0,2,4],"span":[50,2,94],"leadingComments":" Set IP Location Config far a Site\n"},{"path":[6,0,2,4,1],"span":[50,6,25]},{"path":[6,0,2,4,2],"span":[50,26,52]},{"path":[6,0,2,4,3],"span":[50,63,90]},{"path":[4,0],"span":[58,0,61,1],"leadingComments":"\n Retrieve an Entity through his path\n"},{"path":[4,0,1],"span":[58,8,24]},{"path":[4,0,2,0],"span":[59,2,29],"trailingComments":" bool send_related = 2; // send also related entities\n"},{"path":[4,0,2,0,6],"span":[59,2,12]},{"path":[4,0,2,0,1],"span":[59,13,24]},{"path":[4,0,2,0,3],"span":[59,27,28]},{"path":[4,1],"span":[63,0,69,1]},{"path":[4,1,1],"span":[63,8,25]},{"path":[4,1,2,0],"span":[64,2,19]},{"path":[4,1,2,0,5],"span":[64,2,6]},{"path":[4,1,2,0,1],"span":[64,7,14]},{"path":[4,1,2,0,3],"span":[64,17,18]},{"path":[4,1,2,1],"span":[65,2,40]},{"path":[4,1,2,1,4],"span":[65,2,10]},{"path":[4,1,2,1,5],"span":[65,11,17]},{"path":[4,1,2,1,1],"span":[65,18,35]},{"path":[4,1,2,1,3],"span":[65,38,39]},{"path":[4,1,2,2],"span":[67,2,29]},{"path":[4,1,2,2,4],"span":[67,2,10]},{"path":[4,1,2,2,6],"span":[67,11,17]},{"path":[4,1,2,2,1],"span":[67,18,24]},{"path":[4,1,2,2,3],"span":[67,27,28]},{"path":[4,1,2,3],"span":[68,2,30]},{"path":[4,1,2,3,4],"span":[68,2,10]},{"path":[4,1,2,3,6],"span":[68,11,17]},{"path":[4,1,2,3,1],"span":[68,18,25]},{"path":[4,1,2,3,3],"span":[68,28,29]},{"path":[4,2],"span":[71,0,73,1]},{"path":[4,2,1],"span":[71,8,25]},{"path":[4,2,2,0],"span":[72,2,24],"trailingComments":" minimum is for a site\n"},{"path":[4,2,2,0,6],"span":[72,2,12]},{"path":[4,2,2,0,1],"span":[72,13,19]},{"path":[4,2,2,0,3],"span":[72,22,23]},{"path":[4,3],"span":[75,0,78,1]},{"path":[4,3,1],"span":[75,8,26]},{"path":[4,3,2,0],"span":[76,2,20]},{"path":[4,3,2,0,6],"span":[76,2,8]},{"path":[4,3,2,0,1],"span":[76,9,15]},{"path":[4,3,2,0,3],"span":[76,18,19]},{"path":[4,3,2,1],"span":[77,2,30]},{"path":[4,3,2,1,4],"span":[77,2,10]},{"path":[4,3,2,1,6],"span":[77,11,17]},{"path":[4,3,2,1,1],"span":[77,18,25]},{"path":[4,3,2,1,3],"span":[77,28,29]},{"path":[4,4],"span":[80,0,88,1]},{"path":[4,4,1],"span":[80,8,28]},{"path":[4,4,2,0],"span":[81,2,30]},{"path":[4,4,2,0,4],"span":[81,2,10]},{"path":[4,4,2,0,5],"span":[81,11,16]},{"path":[4,4,2,0,1],"span":[81,17,25]},{"path":[4,4,2,0,3],"span":[81,28,29]},{"path":[4,4,2,1],"span":[82,2,30]},{"path":[4,4,2,1,4],"span":[82,2,10]},{"path":[4,4,2,1,5],"span":[82,11,16]},{"path":[4,4,2,1,1],"span":[82,17,25]},{"path":[4,4,2,1,3],"span":[82,28,29]},{"path":[4,4,2,2],"span":[83,2,27]},{"path":[4,4,2,2,4],"span":[83,2,10]},{"path":[4,4,2,2,5],"span":[83,11,16]},{"path":[4,4,2,2,1],"span":[83,17,22]},{"path":[4,4,2,2,3],"span":[83,25,26]},{"path":[4,4,2,3],"span":[84,2,27]},{"path":[4,4,2,3,4],"span":[84,2,10]},{"path":[4,4,2,3,5],"span":[84,11,16]},{"path":[4,4,2,3,1],"span":[84,17,22]},{"path":[4,4,2,3,3],"span":[84,25,26]},{"path":[4,4,2,4],"span":[85,2,32]},{"path":[4,4,2,4,4],"span":[85,2,10]},{"path":[4,4,2,4,5],"span":[85,11,16]},{"path":[4,4,2,4,1],"span":[85,17,27]},{"path":[4,4,2,4,3],"span":[85,30,31]},{"path":[4,4,2,5],"span":[87,2,36],"trailingComments":" false by default: to avoid to get full path\n"},{"path":[4,4,2,5,4],"span":[87,2,10]},{"path":[4,4,2,5,5],"span":[87,11,15]},{"path":[4,4,2,5,1],"span":[87,16,30]},{"path":[4,4,2,5,3],"span":[87,33,35]},{"path":[4,5],"span":[90,0,98,1]},{"path":[4,5,1],"span":[90,8,29]},{"path":[4,5,2,0],"span":[91,2,34]},{"path":[4,5,2,0,4],"span":[91,2,10]},{"path":[4,5,2,0,6],"span":[91,11,23]},{"path":[4,5,2,0,1],"span":[91,24,29]},{"path":[4,5,2,0,3],"span":[91,32,33]},{"path":[4,5,2,1],"span":[92,2,34]},{"path":[4,5,2,1,4],"span":[92,2,10]},{"path":[4,5,2,1,6],"span":[92,11,23]},{"path":[4,5,2,1,1],"span":[92,24,29]},{"path":[4,5,2,1,3],"span":[92,32,33]},{"path":[4,5,2,2],"span":[93,2,28]},{"path":[4,5,2,2,4],"span":[93,2,10]},{"path":[4,5,2,2,6],"span":[93,11,20]},{"path":[4,5,2,2,1],"span":[93,21,23]},{"path":[4,5,2,2,3],"span":[93,26,27]},{"path":[4,5,2,3],"span":[94,2,34]},{"path":[4,5,2,3,4],"span":[94,2,10]},{"path":[4,5,2,3,6],"span":[94,11,26]},{"path":[4,5,2,3,1],"span":[94,27,29]},{"path":[4,5,2,3,3],"span":[94,32,33]},{"path":[4,5,2,4],"span":[95,2,38]},{"path":[4,5,2,4,4],"span":[95,2,10]},{"path":[4,5,2,4,6],"span":[95,11,25]},{"path":[4,5,2,4,1],"span":[95,26,33]},{"path":[4,5,2,4,3],"span":[95,36,37]},{"path":[4,5,2,5],"span":[96,2,28]},{"path":[4,5,2,5,4],"span":[96,2,10]},{"path":[4,5,2,5,5],"span":[96,11,15]},{"path":[4,5,2,5,1],"span":[96,16,23]},{"path":[4,5,2,5,3],"span":[96,26,27]},{"path":[4,5,2,6],"span":[97,2,40]},{"path":[4,5,2,6,4],"span":[97,2,10]},{"path":[4,5,2,6,5],"span":[97,11,17]},{"path":[4,5,2,6,1],"span":[97,18,35]},{"path":[4,5,2,6,3],"span":[97,38,39]},{"path":[4,6],"span":[103,0,105,1],"leadingComments":"\n IP location management\n"},{"path":[4,6,1],"span":[103,8,34]},{"path":[4,6,2,0],"span":[104,2,21]},{"path":[4,6,2,0,5],"span":[104,2,8]},{"path":[4,6,2,0,1],"span":[104,9,16]},{"path":[4,6,2,0,3],"span":[104,19,20]},{"path":[4,7],"span":[107,0,109,1]},{"path":[4,7,1],"span":[107,8,35]},{"path":[4,7,2,0],"span":[108,2,39]},{"path":[4,7,2,0,4],"span":[108,2,10]},{"path":[4,7,2,0,6],"span":[108,11,27]},{"path":[4,7,2,0,1],"span":[108,28,34]},{"path":[4,7,2,0,3],"span":[108,37,38]},{"path":[4,8],"span":[111,0,114,1]},{"path":[4,8,1],"span":[111,8,34]},{"path":[4,8,2,0],"span":[112,2,21]},{"path":[4,8,2,0,5],"span":[112,2,8]},{"path":[4,8,2,0,1],"span":[112,9,16]},{"path":[4,8,2,0,3],"span":[112,19,20]},{"path":[4,8,2,1],"span":[113,2,39]},{"path":[4,8,2,1,4],"span":[113,2,10]},{"path":[4,8,2,1,6],"span":[113,11,27]},{"path":[4,8,2,1,1],"span":[113,28,34]},{"path":[4,8,2,1,3],"span":[113,37,38]},{"path":[4,9],"span":[116,0,119,1]},{"path":[4,9,1],"span":[116,8,35]},{"path":[4,9,2,0],"span":[117,2,14]},{"path":[4,9,2,0,5],"span":[117,2,6]},{"path":[4,9,2,0,1],"span":[117,7,9]},{"path":[4,9,2,0,3],"span":[117,12,13]},{"path":[4,9,2,1],"span":[118,2,31]},{"path":[4,9,2,1,5],"span":[118,2,8]},{"path":[4,9,2,1,1],"span":[118,9,26]},{"path":[4,9,2,1,3],"span":[118,29,30]},{"path":[4,10],"span":[123,0,129,1],"leadingDetachedComments":[" ----- Data Part ------\n"]},{"path":[4,10,1],"span":[123,8,18]},{"path":[4,10,2,0],"span":[124,2,21]},{"path":[4,10,2,0,5],"span":[124,2,8]},{"path":[4,10,2,0,1],"span":[124,9,16]},{"path":[4,10,2,0,3],"span":[124,19,20]},{"path":[4,10,2,1],"span":[125,2,32]},{"path":[4,10,2,1,4],"span":[125,2,10]},{"path":[4,10,2,1,5],"span":[125,11,17]},{"path":[4,10,2,1,1],"span":[125,18,27]},{"path":[4,10,2,1,3],"span":[125,30,31]},{"path":[4,10,2,2],"span":[126,2,34],"trailingComments":" IT, OT, CDK, 3rdParty\n"},{"path":[4,10,2,2,4],"span":[126,2,10]},{"path":[4,10,2,2,5],"span":[126,11,17]},{"path":[4,10,2,2,1],"span":[126,18,29]},{"path":[4,10,2,2,3],"span":[126,32,33]},{"path":[4,10,2,3],"span":[127,2,34],"trailingComments":" \"asset\" \"user\" etc\n"},{"path":[4,10,2,3,4],"span":[127,2,10]},{"path":[4,10,2,3,5],"span":[127,11,17]},{"path":[4,10,2,3,1],"span":[127,18,29]},{"path":[4,10,2,3,3],"span":[127,32,33]},{"path":[4,10,2,4],"span":[128,2,32]},{"path":[4,10,2,4,4],"span":[128,2,10]},{"path":[4,10,2,4,5],"span":[128,11,17]},{"path":[4,10,2,4,1],"span":[128,18,27]},{"path":[4,10,2,4,3],"span":[128,30,31]},{"path":[4,11],"span":[132,0,138,1],"leadingComments":" Main Entity object: variant "},{"path":[4,11,1],"span":[132,8,14]},{"path":[4,11,8,0],"span":[133,2,137,3]},{"path":[4,11,8,0,1],"span":[133,8,14]},{"path":[4,11,2,0],"span":[134,4,20],"trailingComments":" User user = 2;\n Other ...\n"},{"path":[4,11,2,0,6],"span":[134,4,9]},{"path":[4,11,2,0,1],"span":[134,10,15]},{"path":[4,11,2,0,3],"span":[134,18,19]},{"path":[4,12],"span":[143,0,202,1],"leadingComments":" Asset object: IT/OT/CDR "},{"path":[4,12,1],"span":[143,8,13]},{"path":[4,12,2,0],"span":[145,2,20]},{"path":[4,12,2,0,6],"span":[145,2,12]},{"path":[4,12,2,0,1],"span":[145,13,15]},{"path":[4,12,2,0,3],"span":[145,18,19]},{"path":[4,12,2,1],"span":[147,2,44]},{"path":[4,12,2,1,6],"span":[147,2,27]},{"path":[4,12,2,1,1],"span":[147,28,39]},{"path":[4,12,2,1,3],"span":[147,42,43]},{"path":[4,12,2,2],"span":[148,2,43]},{"path":[4,12,2,2,6],"span":[148,2,27]},{"path":[4,12,2,2,1],"span":[148,28,38]},{"path":[4,12,2,2,3],"span":[148,41,42]},{"path":[4,12,2,3],"span":[149,2,45]},{"path":[4,12,2,3,6],"span":[149,2,27]},{"path":[4,12,2,3,1],"span":[149,28,40]},{"path":[4,12,2,3,3],"span":[149,43,44]},{"path":[4,12,2,4],"span":[150,2,46]},{"path":[4,12,2,4,6],"span":[150,2,27]},{"path":[4,12,2,4,1],"span":[150,28,41]},{"path":[4,12,2,4,3],"span":[150,44,45]},{"path":[4,12,2,5],"span":[152,2,48],"trailingComments":" last synced source agent name and version\n"},{"path":[4,12,2,5,4],"span":[152,2,10]},{"path":[4,12,2,5,5],"span":[152,11,17]},{"path":[4,12,2,5,1],"span":[152,18,42]},{"path":[4,12,2,5,3],"span":[152,45,47]},{"path":[4,12,2,6],"span":[153,2,47],"trailingComments":" last synced source name\n"},{"path":[4,12,2,6,4],"span":[153,2,10]},{"path":[4,12,2,6,5],"span":[153,11,17]},{"path":[4,12,2,6,1],"span":[153,18,41]},{"path":[4,12,2,6,3],"span":[153,44,46]},{"path":[4,12,2,7],"span":[160,2,39],"leadingComments":"\n Every source that contributed sending a scan for this asset is listed here.\n The source_info is a actually a map by source type/id, keeping history of scans.\n If the asset was discovered by a single sources, it's redudant with info already in main asset msg.\n"},{"path":[4,12,2,7,4],"span":[160,2,10]},{"path":[4,12,2,7,6],"span":[160,11,21]},{"path":[4,12,2,7,1],"span":[160,22,33]},{"path":[4,12,2,7,3],"span":[160,36,38]},{"path":[4,12,2,8],"span":[168,2,34],"leadingComments":"\n This is unique and source of UUID asset_id. Kept also in verbose key format for debug/future use.\n The key is not globally unique across sites, but it's made up with strongest attributes of the asset.\n Like e.g.: brand/model/serial of a Windows PC.\n Like e.g.: MAC address of CDR devices (if present).\n"},{"path":[4,12,2,8,4],"span":[168,2,10]},{"path":[4,12,2,8,5],"span":[168,11,17]},{"path":[4,12,2,8,1],"span":[168,18,28]},{"path":[4,12,2,8,3],"span":[168,31,33]},{"path":[4,12,2,9],"span":[170,2,37]},{"path":[4,12,2,9,4],"span":[170,2,10]},{"path":[4,12,2,9,6],"span":[170,11,20]},{"path":[4,12,2,9,1],"span":[170,21,31]},{"path":[4,12,2,9,3],"span":[170,34,36]},{"path":[4,12,2,10],"span":[172,2,35],"trailingComments":" Internet IP and related geo-location info, when available\n"},{"path":[4,12,2,10,4],"span":[172,2,10]},{"path":[4,12,2,10,6],"span":[172,11,17]},{"path":[4,12,2,10,1],"span":[172,18,29]},{"path":[4,12,2,10,3],"span":[172,32,34]},{"path":[4,12,2,11],"span":[174,2,24]},{"path":[4,12,2,11,4],"span":[174,2,10]},{"path":[4,12,2,11,6],"span":[174,11,14]},{"path":[4,12,2,11,1],"span":[174,15,18]},{"path":[4,12,2,11,3],"span":[174,21,23]},{"path":[4,12,2,12],"span":[175,2,34],"trailingComments":" e.g. relations to and from OT parent module to sub-modules\n"},{"path":[4,12,2,12,4],"span":[175,2,10]},{"path":[4,12,2,12,6],"span":[175,11,19]},{"path":[4,12,2,12,1],"span":[175,20,28]},{"path":[4,12,2,12,3],"span":[175,31,33]},{"path":[4,12,2,13],"span":[177,2,53],"trailingComments":" correlation fields needed and used by reconciliation engine\n"},{"path":[4,12,2,13,4],"span":[177,2,10]},{"path":[4,12,2,13,6],"span":[177,11,28]},{"path":[4,12,2,13,1],"span":[177,29,47]},{"path":[4,12,2,13,3],"span":[177,50,52]},{"path":[4,12,2,14],"span":[178,2,50]},{"path":[4,12,2,14,4],"span":[178,2,10]},{"path":[4,12,2,14,6],"span":[178,11,29]},{"path":[4,12,2,14,1],"span":[178,30,44]},{"path":[4,12,2,14,3],"span":[178,47,49]},{"path":[4,12,2,15],"span":[180,2,22]},{"path":[4,12,2,15,6],"span":[180,2,12]},{"path":[4,12,2,15,1],"span":[180,13,17]},{"path":[4,12,2,15,3],"span":[180,20,21]},{"path":[4,12,2,16],"span":[182,2,31]},{"path":[4,12,2,16,4],"span":[182,2,10]},{"path":[4,12,2,16,6],"span":[182,11,23]},{"path":[4,12,2,16,1],"span":[182,24,26]},{"path":[4,12,2,16,3],"span":[182,29,30]},{"path":[4,12,2,17],"span":[183,2,34]},{"path":[4,12,2,17,4],"span":[183,2,10]},{"path":[4,12,2,17,6],"span":[183,11,26]},{"path":[4,12,2,17,1],"span":[183,27,29]},{"path":[4,12,2,17,3],"span":[183,32,33]},{"path":[4,12,2,18],"span":[185,2,51]},{"path":[4,12,2,18,4],"span":[185,2,10]},{"path":[4,12,2,18,6],"span":[185,11,27]},{"path":[4,12,2,18,1],"span":[185,28,45]},{"path":[4,12,2,18,3],"span":[185,48,50]},{"path":[4,12,2,19],"span":[186,2,53]},{"path":[4,12,2,19,4],"span":[186,2,10]},{"path":[4,12,2,19,6],"span":[186,11,28]},{"path":[4,12,2,19,1],"span":[186,29,47]},{"path":[4,12,2,19,3],"span":[186,50,52]},{"path":[4,12,2,20],"span":[187,2,51]},{"path":[4,12,2,20,4],"span":[187,2,10]},{"path":[4,12,2,20,6],"span":[187,11,27]},{"path":[4,12,2,20,1],"span":[187,28,45]},{"path":[4,12,2,20,3],"span":[187,48,50]},{"path":[4,12,2,21],"span":[188,2,35]},{"path":[4,12,2,21,4],"span":[188,2,10]},{"path":[4,12,2,21,6],"span":[188,11,19]},{"path":[4,12,2,21,1],"span":[188,20,29]},{"path":[4,12,2,21,3],"span":[188,32,34]},{"path":[4,12,2,22],"span":[190,2,43]},{"path":[4,12,2,22,4],"span":[190,2,10]},{"path":[4,12,2,22,6],"span":[190,11,23]},{"path":[4,12,2,22,1],"span":[190,24,37]},{"path":[4,12,2,22,3],"span":[190,40,42]},{"path":[4,12,9],"span":[193,2,69],"leadingComments":" list of deprecated fields, now moved to computer message\n"},{"path":[4,12,9,0],"span":[193,11,12]},{"path":[4,12,9,0,1],"span":[193,11,12]},{"path":[4,12,9,1],"span":[193,14,16]},{"path":[4,12,9,1,1],"span":[193,14,16]},{"path":[4,12,9,2],"span":[193,18,20]},{"path":[4,12,9,2,1],"span":[193,18,20]},{"path":[4,12,9,3],"span":[193,22,24]},{"path":[4,12,9,3,1],"span":[193,22,24]},{"path":[4,12,9,4],"span":[193,26,28]},{"path":[4,12,9,4,1],"span":[193,26,28]},{"path":[4,12,9,5],"span":[193,30,32]},{"path":[4,12,9,5,1],"span":[193,30,32]},{"path":[4,12,9,6],"span":[193,34,36]},{"path":[4,12,9,6,1],"span":[193,34,36]},{"path":[4,12,9,7],"span":[193,38,40]},{"path":[4,12,9,7,1],"span":[193,38,40]},{"path":[4,12,9,8],"span":[193,42,44]},{"path":[4,12,9,8,1],"span":[193,42,44]},{"path":[4,12,9,9],"span":[193,46,48]},{"path":[4,12,9,9,1],"span":[193,46,48]},{"path":[4,12,9,10],"span":[193,50,52]},{"path":[4,12,9,10,1],"span":[193,50,52]},{"path":[4,12,9,11],"span":[193,54,56]},{"path":[4,12,9,11,1],"span":[193,54,56]},{"path":[4,12,9,12],"span":[193,58,60]},{"path":[4,12,9,12,1],"span":[193,58,60]},{"path":[4,12,9,13],"span":[193,62,64]},{"path":[4,12,9,13,1],"span":[193,62,64]},{"path":[4,12,9,14],"span":[193,66,68]},{"path":[4,12,9,14,1],"span":[193,66,68]},{"path":[4,12,2,23],"span":[195,2,34]},{"path":[4,12,2,23,4],"span":[195,2,10]},{"path":[4,12,2,23,6],"span":[195,11,19]},{"path":[4,12,2,23,1],"span":[195,20,28]},{"path":[4,12,2,23,3],"span":[195,31,33]},{"path":[4,12,2,24],"span":[197,2,35],"trailingComments":" OT specific module info when asset type is 'OT'\n"},{"path":[4,12,2,24,4],"span":[197,2,10]},{"path":[4,12,2,24,6],"span":[197,11,19]},{"path":[4,12,2,24,1],"span":[197,20,29]},{"path":[4,12,2,24,3],"span":[197,32,34]},{"path":[4,12,2,25],"span":[199,2,34]},{"path":[4,12,2,25,4],"span":[199,2,10]},{"path":[4,12,2,25,6],"span":[199,11,22]},{"path":[4,12,2,25,1],"span":[199,23,28]},{"path":[4,12,2,25,3],"span":[199,31,33]},{"path":[4,12,2,26],"span":[201,2,44]},{"path":[4,12,2,26,4],"span":[201,2,10]},{"path":[4,12,2,26,6],"span":[201,11,27]},{"path":[4,12,2,26,1],"span":[201,28,38]},{"path":[4,12,2,26,3],"span":[201,41,43]},{"path":[4,13],"span":[208,0,215,1],"leadingComments":"\n Asset change event log.\n"},{"path":[4,13,1],"span":[208,8,24]},{"path":[4,13,2,0],"span":[209,2,42]},{"path":[4,13,2,0,6],"span":[209,2,27]},{"path":[4,13,2,0,1],"span":[209,28,37]},{"path":[4,13,2,0,3],"span":[209,40,41]},{"path":[4,13,8,0],"span":[210,2,214,3]},{"path":[4,13,8,0,1],"span":[210,8,13]},{"path":[4,13,2,1],"span":[211,4,31]},{"path":[4,13,2,1,6],"span":[211,4,23]},{"path":[4,13,2,1,1],"span":[211,24,26]},{"path":[4,13,2,1,3],"span":[211,29,30]},{"path":[4,13,2,2],"span":[212,4,38]},{"path":[4,13,2,2,6],"span":[212,4,30]},{"path":[4,13,2,2,1],"span":[212,31,33]},{"path":[4,13,2,2,3],"span":[212,36,37]},{"path":[4,13,2,3],"span":[213,4,47],"trailingComments":" specific to SQL server on Windows\n"},{"path":[4,13,2,3,6],"span":[213,4,31]},{"path":[4,13,2,3,1],"span":[213,32,42]},{"path":[4,13,2,3,3],"span":[213,45,46]},{"path":[4,14],"span":[220,0,230,1],"leadingComments":"\n Warranty information.\n"},{"path":[4,14,1],"span":[220,8,20]},{"path":[4,14,2,0],"span":[221,2,42]},{"path":[4,14,2,0,6],"span":[221,2,27]},{"path":[4,14,2,0,1],"span":[221,28,37]},{"path":[4,14,2,0,3],"span":[221,40,41]},{"path":[4,14,2,1],"span":[222,2,52]},{"path":[4,14,2,1,4],"span":[222,2,10]},{"path":[4,14,2,1,6],"span":[222,11,36]},{"path":[4,14,2,1,1],"span":[222,37,47]},{"path":[4,14,2,1,3],"span":[222,50,51]},{"path":[4,14,2,2],"span":[223,2,50]},{"path":[4,14,2,2,4],"span":[223,2,10]},{"path":[4,14,2,2,6],"span":[223,11,36]},{"path":[4,14,2,2,1],"span":[223,37,45]},{"path":[4,14,2,2,3],"span":[223,48,49]},{"path":[4,14,2,3],"span":[224,2,51]},{"path":[4,14,2,3,4],"span":[224,2,10]},{"path":[4,14,2,3,6],"span":[224,11,36]},{"path":[4,14,2,3,1],"span":[224,37,46]},{"path":[4,14,2,3,3],"span":[224,49,50]},{"path":[4,14,2,4],"span":[226,2,35]},{"path":[4,14,2,4,4],"span":[226,2,10]},{"path":[4,14,2,4,5],"span":[226,11,17]},{"path":[4,14,2,4,1],"span":[226,18,30]},{"path":[4,14,2,4,3],"span":[226,33,34]},{"path":[4,14,2,5],"span":[227,2,39]},{"path":[4,14,2,5,4],"span":[227,2,10]},{"path":[4,14,2,5,5],"span":[227,11,17]},{"path":[4,14,2,5,1],"span":[227,18,34]},{"path":[4,14,2,5,3],"span":[227,37,38]},{"path":[4,14,2,6],"span":[229,2,23],"trailingComments":" from is_silly\n"},{"path":[4,14,2,6,5],"span":[229,2,6]},{"path":[4,14,2,6,1],"span":[229,7,18]},{"path":[4,14,2,6,3],"span":[229,21,22]},{"path":[4,15],"span":[235,0,314,1],"leadingComments":"\n Computer message keeping all sections of asset.computer.\n"},{"path":[4,15,1],"span":[235,8,16]},{"path":[4,15,2,0],"span":[237,2,31],"leadingComments":" HW\n"},{"path":[4,15,2,0,4],"span":[237,2,10]},{"path":[4,15,2,0,6],"span":[237,11,18]},{"path":[4,15,2,0,1],"span":[237,19,26]},{"path":[4,15,2,0,3],"span":[237,29,30]},{"path":[4,15,2,1],"span":[238,2,39]},{"path":[4,15,2,1,4],"span":[238,2,10]},{"path":[4,15,2,1,6],"span":[238,11,22]},{"path":[4,15,2,1,1],"span":[238,23,34]},{"path":[4,15,2,1,3],"span":[238,37,38]},{"path":[4,15,2,2],"span":[239,2,35]},{"path":[4,15,2,2,4],"span":[239,2,10]},{"path":[4,15,2,2,6],"span":[239,11,20]},{"path":[4,15,2,2,1],"span":[239,21,30]},{"path":[4,15,2,2,3],"span":[239,33,34]},{"path":[4,15,2,3],"span":[240,2,29]},{"path":[4,15,2,3,4],"span":[240,2,10]},{"path":[4,15,2,3,6],"span":[240,11,17]},{"path":[4,15,2,3,1],"span":[240,18,24]},{"path":[4,15,2,3,3],"span":[240,27,28]},{"path":[4,15,2,4],"span":[241,2,42]},{"path":[4,15,2,4,4],"span":[241,2,10]},{"path":[4,15,2,4,6],"span":[241,11,23]},{"path":[4,15,2,4,1],"span":[241,24,37]},{"path":[4,15,2,4,3],"span":[241,40,41]},{"path":[4,15,2,5],"span":[242,2,36]},{"path":[4,15,2,5,4],"span":[242,2,10]},{"path":[4,15,2,5,6],"span":[242,11,20]},{"path":[4,15,2,5,1],"span":[242,21,31]},{"path":[4,15,2,5,3],"span":[242,34,35]},{"path":[4,15,2,6],"span":[243,2,33]},{"path":[4,15,2,6,4],"span":[243,2,10]},{"path":[4,15,2,6,6],"span":[243,11,19]},{"path":[4,15,2,6,1],"span":[243,20,28]},{"path":[4,15,2,6,3],"span":[243,31,32]},{"path":[4,15,2,7],"span":[244,2,46]},{"path":[4,15,2,7,4],"span":[244,2,10]},{"path":[4,15,2,7,6],"span":[244,11,25]},{"path":[4,15,2,7,1],"span":[244,26,41]},{"path":[4,15,2,7,3],"span":[244,44,45]},{"path":[4,15,2,8],"span":[245,2,40]},{"path":[4,15,2,8,4],"span":[245,2,10]},{"path":[4,15,2,8,6],"span":[245,11,22]},{"path":[4,15,2,8,1],"span":[245,23,35]},{"path":[4,15,2,8,3],"span":[245,38,39]},{"path":[4,15,2,9],"span":[246,2,51]},{"path":[4,15,2,9,4],"span":[246,2,10]},{"path":[4,15,2,9,6],"span":[246,11,27]},{"path":[4,15,2,9,1],"span":[246,28,45]},{"path":[4,15,2,9,3],"span":[246,48,50]},{"path":[4,15,2,10],"span":[247,2,43]},{"path":[4,15,2,10,4],"span":[247,2,10]},{"path":[4,15,2,10,6],"span":[247,11,23]},{"path":[4,15,2,10,1],"span":[247,24,37]},{"path":[4,15,2,10,3],"span":[247,40,42]},{"path":[4,15,2,11],"span":[248,2,39]},{"path":[4,15,2,11,4],"span":[248,2,10]},{"path":[4,15,2,11,6],"span":[248,11,21]},{"path":[4,15,2,11,1],"span":[248,22,33]},{"path":[4,15,2,11,3],"span":[248,36,38]},{"path":[4,15,2,12],"span":[249,2,40]},{"path":[4,15,2,12,4],"span":[249,2,10]},{"path":[4,15,2,12,6],"span":[249,11,27]},{"path":[4,15,2,12,1],"span":[249,28,34]},{"path":[4,15,2,12,3],"span":[249,37,39]},{"path":[4,15,2,13],"span":[250,2,45]},{"path":[4,15,2,13,4],"span":[250,2,10]},{"path":[4,15,2,13,6],"span":[250,11,24]},{"path":[4,15,2,13,1],"span":[250,25,39]},{"path":[4,15,2,13,3],"span":[250,42,44]},{"path":[4,15,2,14],"span":[251,2,47]},{"path":[4,15,2,14,4],"span":[251,2,10]},{"path":[4,15,2,14,6],"span":[251,11,25]},{"path":[4,15,2,14,1],"span":[251,26,41]},{"path":[4,15,2,14,3],"span":[251,44,46]},{"path":[4,15,2,15],"span":[252,2,49]},{"path":[4,15,2,15,4],"span":[252,2,10]},{"path":[4,15,2,15,6],"span":[252,11,26]},{"path":[4,15,2,15,1],"span":[252,27,43]},{"path":[4,15,2,15,3],"span":[252,46,48]},{"path":[4,15,2,16],"span":[253,2,49]},{"path":[4,15,2,16,4],"span":[253,2,10]},{"path":[4,15,2,16,6],"span":[253,11,26]},{"path":[4,15,2,16,1],"span":[253,27,43]},{"path":[4,15,2,16,3],"span":[253,46,48]},{"path":[4,15,2,17],"span":[254,2,43]},{"path":[4,15,2,17,4],"span":[254,2,10]},{"path":[4,15,2,17,6],"span":[254,11,23]},{"path":[4,15,2,17,1],"span":[254,24,37]},{"path":[4,15,2,17,3],"span":[254,40,42]},{"path":[4,15,2,18],"span":[255,2,37]},{"path":[4,15,2,18,4],"span":[255,2,10]},{"path":[4,15,2,18,6],"span":[255,11,20]},{"path":[4,15,2,18,1],"span":[255,21,31]},{"path":[4,15,2,18,3],"span":[255,34,36]},{"path":[4,15,2,19],"span":[256,2,41]},{"path":[4,15,2,19,4],"span":[256,2,10]},{"path":[4,15,2,19,6],"span":[256,11,22]},{"path":[4,15,2,19,1],"span":[256,23,35]},{"path":[4,15,2,19,3],"span":[256,38,40]},{"path":[4,15,2,20],"span":[257,2,42]},{"path":[4,15,2,20,4],"span":[257,2,10]},{"path":[4,15,2,20,6],"span":[257,11,32]},{"path":[4,15,2,20,1],"span":[257,33,36]},{"path":[4,15,2,20,3],"span":[257,39,41]},{"path":[4,15,2,21],"span":[258,2,62]},{"path":[4,15,2,21,4],"span":[258,2,10]},{"path":[4,15,2,21,6],"span":[258,11,41]},{"path":[4,15,2,21,1],"span":[258,42,56]},{"path":[4,15,2,21,3],"span":[258,59,61]},{"path":[4,15,2,22],"span":[259,2,63]},{"path":[4,15,2,22,4],"span":[259,2,10]},{"path":[4,15,2,22,6],"span":[259,11,41]},{"path":[4,15,2,22,1],"span":[259,42,57]},{"path":[4,15,2,22,3],"span":[259,60,62]},{"path":[4,15,2,23],"span":[260,2,45]},{"path":[4,15,2,23,4],"span":[260,2,10]},{"path":[4,15,2,23,6],"span":[260,11,33]},{"path":[4,15,2,23,1],"span":[260,34,39]},{"path":[4,15,2,23,3],"span":[260,42,44]},{"path":[4,15,2,24],"span":[261,2,49]},{"path":[4,15,2,24,4],"span":[261,2,10]},{"path":[4,15,2,24,6],"span":[261,11,35]},{"path":[4,15,2,24,1],"span":[261,36,43]},{"path":[4,15,2,24,3],"span":[261,46,48]},{"path":[4,15,2,25],"span":[262,2,54]},{"path":[4,15,2,25,4],"span":[262,2,10]},{"path":[4,15,2,25,6],"span":[262,11,37]},{"path":[4,15,2,25,1],"span":[262,38,48]},{"path":[4,15,2,25,3],"span":[262,51,53]},{"path":[4,15,2,26],"span":[263,2,53]},{"path":[4,15,2,26,4],"span":[263,2,10]},{"path":[4,15,2,26,6],"span":[263,11,32]},{"path":[4,15,2,26,1],"span":[263,33,47]},{"path":[4,15,2,26,3],"span":[263,50,52]},{"path":[4,15,2,27],"span":[264,2,55]},{"path":[4,15,2,27,4],"span":[264,2,10]},{"path":[4,15,2,27,6],"span":[264,11,33]},{"path":[4,15,2,27,1],"span":[264,34,49]},{"path":[4,15,2,27,3],"span":[264,52,54]},{"path":[4,15,2,28],"span":[265,2,70]},{"path":[4,15,2,28,4],"span":[265,2,10]},{"path":[4,15,2,28,6],"span":[265,11,40]},{"path":[4,15,2,28,1],"span":[265,41,64]},{"path":[4,15,2,28,3],"span":[265,67,69]},{"path":[4,15,2,29],"span":[266,2,55]},{"path":[4,15,2,29,4],"span":[266,2,10]},{"path":[4,15,2,29,6],"span":[266,11,33]},{"path":[4,15,2,29,1],"span":[266,34,49]},{"path":[4,15,2,29,3],"span":[266,52,54]},{"path":[4,15,2,30],"span":[267,2,76]},{"path":[4,15,2,30,4],"span":[267,2,10]},{"path":[4,15,2,30,6],"span":[267,11,43]},{"path":[4,15,2,30,1],"span":[267,44,70]},{"path":[4,15,2,30,3],"span":[267,73,75]},{"path":[4,15,2,31],"span":[268,2,68]},{"path":[4,15,2,31,4],"span":[268,2,10]},{"path":[4,15,2,31,6],"span":[268,11,39]},{"path":[4,15,2,31,1],"span":[268,40,62]},{"path":[4,15,2,31,3],"span":[268,65,67]},{"path":[4,15,2,32],"span":[269,2,68]},{"path":[4,15,2,32,4],"span":[269,2,10]},{"path":[4,15,2,32,6],"span":[269,11,39]},{"path":[4,15,2,32,1],"span":[269,40,62]},{"path":[4,15,2,32,3],"span":[269,65,67]},{"path":[4,15,2,33],"span":[270,2,62]},{"path":[4,15,2,33,4],"span":[270,2,10]},{"path":[4,15,2,33,6],"span":[270,11,36]},{"path":[4,15,2,33,1],"span":[270,37,56]},{"path":[4,15,2,33,3],"span":[270,59,61]},{"path":[4,15,2,34],"span":[274,2,27],"leadingComments":" OS\n"},{"path":[4,15,2,34,4],"span":[274,2,10]},{"path":[4,15,2,34,6],"span":[274,11,15]},{"path":[4,15,2,34,1],"span":[274,16,20]},{"path":[4,15,2,34,3],"span":[274,23,26]},{"path":[4,15,2,35],"span":[275,2,47]},{"path":[4,15,2,35,4],"span":[275,2,10]},{"path":[4,15,2,35,6],"span":[275,11,31]},{"path":[4,15,2,35,1],"span":[275,32,40]},{"path":[4,15,2,35,3],"span":[275,43,46]},{"path":[4,15,2,36],"span":[276,2,51]},{"path":[4,15,2,36,4],"span":[276,2,10]},{"path":[4,15,2,36,6],"span":[276,11,33]},{"path":[4,15,2,36,1],"span":[276,34,44]},{"path":[4,15,2,36,3],"span":[276,47,50]},{"path":[4,15,2,37],"span":[277,2,53]},{"path":[4,15,2,37,4],"span":[277,2,10]},{"path":[4,15,2,37,6],"span":[277,11,34]},{"path":[4,15,2,37,1],"span":[277,35,46]},{"path":[4,15,2,37,3],"span":[277,49,52]},{"path":[4,15,2,38],"span":[278,2,51]},{"path":[4,15,2,38,4],"span":[278,2,10]},{"path":[4,15,2,38,6],"span":[278,11,33]},{"path":[4,15,2,38,1],"span":[278,34,44]},{"path":[4,15,2,38,3],"span":[278,47,50]},{"path":[4,15,2,39],"span":[279,2,63]},{"path":[4,15,2,39,4],"span":[279,2,10]},{"path":[4,15,2,39,6],"span":[279,11,32]},{"path":[4,15,2,39,1],"span":[279,33,56]},{"path":[4,15,2,39,3],"span":[279,59,62]},{"path":[4,15,2,40],"span":[280,2,51]},{"path":[4,15,2,40,4],"span":[280,2,10]},{"path":[4,15,2,40,6],"span":[280,11,34]},{"path":[4,15,2,40,1],"span":[280,35,44]},{"path":[4,15,2,40,3],"span":[280,47,50]},{"path":[4,15,2,41],"span":[281,2,55]},{"path":[4,15,2,41,4],"span":[281,2,10]},{"path":[4,15,2,41,6],"span":[281,11,32]},{"path":[4,15,2,41,1],"span":[281,33,48]},{"path":[4,15,2,41,3],"span":[281,51,54]},{"path":[4,15,2,42],"span":[284,2,54],"leadingComments":" SW\n"},{"path":[4,15,2,42,4],"span":[284,2,10]},{"path":[4,15,2,42,6],"span":[284,11,28]},{"path":[4,15,2,42,1],"span":[284,29,47]},{"path":[4,15,2,42,3],"span":[284,50,53]},{"path":[4,15,2,43],"span":[285,2,45]},{"path":[4,15,2,43,4],"span":[285,2,10]},{"path":[4,15,2,43,6],"span":[285,11,28]},{"path":[4,15,2,43,1],"span":[285,29,38]},{"path":[4,15,2,43,3],"span":[285,41,44]},{"path":[4,15,2,44],"span":[286,2,49]},{"path":[4,15,2,44,4],"span":[286,2,10]},{"path":[4,15,2,44,6],"span":[286,11,25]},{"path":[4,15,2,44,1],"span":[286,26,42]},{"path":[4,15,2,44,3],"span":[286,45,48]},{"path":[4,15,2,45],"span":[287,2,40]},{"path":[4,15,2,45,4],"span":[287,2,10]},{"path":[4,15,2,45,6],"span":[287,11,21]},{"path":[4,15,2,45,1],"span":[287,22,33]},{"path":[4,15,2,45,3],"span":[287,36,39]},{"path":[4,15,2,46],"span":[288,2,31]},{"path":[4,15,2,46,4],"span":[288,2,10]},{"path":[4,15,2,46,6],"span":[288,11,17]},{"path":[4,15,2,46,1],"span":[288,18,24]},{"path":[4,15,2,46,3],"span":[288,27,30]},{"path":[4,15,2,47],"span":[289,2,48]},{"path":[4,15,2,47,4],"span":[289,2,10]},{"path":[4,15,2,47,6],"span":[289,11,25]},{"path":[4,15,2,47,1],"span":[289,26,41]},{"path":[4,15,2,47,3],"span":[289,44,47]},{"path":[4,15,2,48],"span":[290,2,48]},{"path":[4,15,2,48,4],"span":[290,2,10]},{"path":[4,15,2,48,6],"span":[290,11,25]},{"path":[4,15,2,48,1],"span":[290,26,41]},{"path":[4,15,2,48,3],"span":[290,44,47]},{"path":[4,15,2,49],"span":[291,2,52],"trailingComments":" specific to IE on Windows\n"},{"path":[4,15,2,49,4],"span":[291,2,10]},{"path":[4,15,2,49,6],"span":[291,11,27]},{"path":[4,15,2,49,1],"span":[291,28,45]},{"path":[4,15,2,49,3],"span":[291,48,51]},{"path":[4,15,2,50],"span":[292,2,53],"trailingComments":" specific to SQL server on Windows\n"},{"path":[4,15,2,50,4],"span":[292,2,10]},{"path":[4,15,2,50,6],"span":[292,11,27]},{"path":[4,15,2,50,1],"span":[292,28,46]},{"path":[4,15,2,50,3],"span":[292,49,52]},{"path":[4,15,2,51],"span":[293,2,69]},{"path":[4,15,2,51,4],"span":[293,2,10]},{"path":[4,15,2,51,6],"span":[293,11,39]},{"path":[4,15,2,51,1],"span":[293,40,62]},{"path":[4,15,2,51,3],"span":[293,65,68]},{"path":[4,15,2,52],"span":[294,2,46]},{"path":[4,15,2,52,4],"span":[294,2,10]},{"path":[4,15,2,52,6],"span":[294,11,24]},{"path":[4,15,2,52,1],"span":[294,25,39]},{"path":[4,15,2,52,3],"span":[294,42,45]},{"path":[4,15,2,53],"span":[295,2,57]},{"path":[4,15,2,53,4],"span":[295,2,10]},{"path":[4,15,2,53,6],"span":[295,11,37]},{"path":[4,15,2,53,1],"span":[295,38,50]},{"path":[4,15,2,53,3],"span":[295,53,56]},{"path":[4,15,2,54],"span":[296,2,54]},{"path":[4,15,2,54,4],"span":[296,2,10]},{"path":[4,15,2,54,6],"span":[296,11,32]},{"path":[4,15,2,54,1],"span":[296,33,47]},{"path":[4,15,2,54,3],"span":[296,50,53]},{"path":[4,15,2,55],"span":[297,2,52]},{"path":[4,15,2,55,4],"span":[297,2,10]},{"path":[4,15,2,55,6],"span":[297,11,37]},{"path":[4,15,2,55,1],"span":[297,38,45]},{"path":[4,15,2,55,3],"span":[297,48,51]},{"path":[4,15,2,56],"span":[298,2,58]},{"path":[4,15,2,56,4],"span":[298,2,10]},{"path":[4,15,2,56,6],"span":[298,11,32]},{"path":[4,15,2,56,1],"span":[298,33,51]},{"path":[4,15,2,56,3],"span":[298,54,57]},{"path":[4,15,2,57],"span":[299,2,59]},{"path":[4,15,2,57,4],"span":[299,2,10]},{"path":[4,15,2,57,6],"span":[299,11,32]},{"path":[4,15,2,57,1],"span":[299,33,52]},{"path":[4,15,2,57,3],"span":[299,55,58]},{"path":[4,15,2,58],"span":[300,2,64]},{"path":[4,15,2,58,4],"span":[300,2,10]},{"path":[4,15,2,58,6],"span":[300,11,32]},{"path":[4,15,2,58,1],"span":[300,33,57]},{"path":[4,15,2,58,3],"span":[300,60,63]},{"path":[4,15,2,59],"span":[301,2,48]},{"path":[4,15,2,59,4],"span":[301,2,10]},{"path":[4,15,2,59,6],"span":[301,11,29]},{"path":[4,15,2,59,1],"span":[301,30,41]},{"path":[4,15,2,59,3],"span":[301,44,47]},{"path":[4,15,2,60],"span":[302,2,52]},{"path":[4,15,2,60,4],"span":[302,2,10]},{"path":[4,15,2,60,6],"span":[302,11,31]},{"path":[4,15,2,60,1],"span":[302,32,45]},{"path":[4,15,2,60,3],"span":[302,48,51]},{"path":[4,15,2,61],"span":[303,2,60]},{"path":[4,15,2,61,4],"span":[303,2,10]},{"path":[4,15,2,61,6],"span":[303,11,35]},{"path":[4,15,2,61,1],"span":[303,36,53]},{"path":[4,15,2,61,3],"span":[303,56,59]},{"path":[4,15,2,62],"span":[304,2,54]},{"path":[4,15,2,62,4],"span":[304,2,10]},{"path":[4,15,2,62,6],"span":[304,11,33]},{"path":[4,15,2,62,1],"span":[304,34,47]},{"path":[4,15,2,62,3],"span":[304,50,53]},{"path":[4,15,2,63],"span":[305,2,63]},{"path":[4,15,2,63,4],"span":[305,2,10]},{"path":[4,15,2,63,6],"span":[305,11,36]},{"path":[4,15,2,63,1],"span":[305,37,56]},{"path":[4,15,2,63,3],"span":[305,59,62]},{"path":[4,15,2,64],"span":[306,2,67]},{"path":[4,15,2,64,4],"span":[306,2,10]},{"path":[4,15,2,64,6],"span":[306,11,38]},{"path":[4,15,2,64,1],"span":[306,39,60]},{"path":[4,15,2,64,3],"span":[306,63,66]},{"path":[4,15,2,65],"span":[307,2,63]},{"path":[4,15,2,65,4],"span":[307,2,10]},{"path":[4,15,2,65,6],"span":[307,11,36]},{"path":[4,15,2,65,1],"span":[307,37,56]},{"path":[4,15,2,65,3],"span":[307,59,62]},{"path":[4,15,2,66],"span":[310,2,36],"leadingComments":" USERS AND ACCOUNT\n","trailingComments":" i.e. computer current user\n"},{"path":[4,15,2,66,4],"span":[310,2,10]},{"path":[4,15,2,66,6],"span":[310,11,19]},{"path":[4,15,2,66,1],"span":[310,20,29]},{"path":[4,15,2,66,3],"span":[310,32,35]},{"path":[4,15,2,67],"span":[311,2,34]},{"path":[4,15,2,67,4],"span":[311,2,10]},{"path":[4,15,2,67,6],"span":[311,11,22]},{"path":[4,15,2,67,1],"span":[311,23,27]},{"path":[4,15,2,67,3],"span":[311,30,33]},{"path":[4,15,2,68],"span":[312,2,38]},{"path":[4,15,2,68,4],"span":[312,2,10]},{"path":[4,15,2,68,6],"span":[312,11,20]},{"path":[4,15,2,68,1],"span":[312,21,31]},{"path":[4,15,2,68,3],"span":[312,34,37]},{"path":[4,15,2,69],"span":[313,2,43]},{"path":[4,15,2,69,4],"span":[313,2,10]},{"path":[4,15,2,69,6],"span":[313,11,22]},{"path":[4,15,2,69,1],"span":[313,23,36]},{"path":[4,15,2,69,3],"span":[313,39,42]},{"path":[4,16],"span":[334,0,337,1],"leadingComments":"\n A key/value tag, also known as a key-value pair or simply a tag: a key and a corresponding value.\n It is used to associate metadata or additional information with an entity or data element.\n The key represents the identifier or name of the tag, while the value contains the associated data or information.\n The key serves as a unique label or reference that can be used to retrieve or manipulate the value associated with it.\n In this context, the key can be thought of as a variable name or a dictionary key, and the value can be any data type or object.\n\n Among other things we also use this to mark the Source.\n * E.g.: Source: LS/IT/CDR\n * E.g.: Source: LS/IT/Scan-WMI\n * E.g.: Source: LS/IT/Scan-MAC\n * E.g.: Source: LS/IT/Scan-Linux\n * E.g.: Source: LS/IT/OT (OT like this?)\n * E.g.: Source: LS/CDK (cloud discovery?)\n * E.g.: Source: LS/DataCore (reconciliation)\n"},{"path":[4,16,1],"span":[334,8,11]},{"path":[4,16,2,0],"span":[335,2,17]},{"path":[4,16,2,0,5],"span":[335,2,8]},{"path":[4,16,2,0,1],"span":[335,9,12]},{"path":[4,16,2,0,3],"span":[335,15,16]},{"path":[4,16,2,1],"span":[336,2,28]},{"path":[4,16,2,1,4],"span":[336,2,10]},{"path":[4,16,2,1,5],"span":[336,11,17]},{"path":[4,16,2,1,1],"span":[336,18,23]},{"path":[4,16,2,1,3],"span":[336,26,27]},{"path":[4,17],"span":[344,0,351,1],"leadingComments":"\n A relation between two entities refers to the connection, association, or interaction that exists between them.\n It signifies the way in which these entities are related or linked to each other based on certain characteristics,\n attributes, behaviors, dependencies, or roles they share.\n"},{"path":[4,17,1],"span":[344,8,16]},{"path":[4,17,2,0],"span":[345,2,31],"trailingComments":" if missing, 'self' assumed\n"},{"path":[4,17,2,0,4],"span":[345,2,10]},{"path":[4,17,2,0,6],"span":[345,11,21]},{"path":[4,17,2,0,1],"span":[345,22,26]},{"path":[4,17,2,0,3],"span":[345,29,30]},{"path":[4,17,2,1],"span":[346,2,29],"trailingComments":" if missing, 'self' assumed\n"},{"path":[4,17,2,1,4],"span":[346,2,10]},{"path":[4,17,2,1,6],"span":[346,11,21]},{"path":[4,17,2,1,1],"span":[346,22,24]},{"path":[4,17,2,1,3],"span":[346,27,28]},{"path":[4,17,2,2],"span":[347,2,38]},{"path":[4,17,2,2,6],"span":[347,2,27]},{"path":[4,17,2,2,1],"span":[347,28,33]},{"path":[4,17,2,2,3],"span":[347,36,37]},{"path":[4,17,2,3],"span":[348,2,45],"trailingComments":" if end is marked, it's over\n"},{"path":[4,17,2,3,4],"span":[348,2,10]},{"path":[4,17,2,3,6],"span":[348,11,36]},{"path":[4,17,2,3,1],"span":[348,37,40]},{"path":[4,17,2,3,3],"span":[348,43,44]},{"path":[4,17,2,4],"span":[349,2,18]},{"path":[4,17,2,4,5],"span":[349,2,8]},{"path":[4,17,2,4,1],"span":[349,9,13]},{"path":[4,17,2,4,3],"span":[349,16,17]},{"path":[4,17,2,5],"span":[350,2,23]},{"path":[4,17,2,5,4],"span":[350,2,10]},{"path":[4,17,2,5,6],"span":[350,11,14]},{"path":[4,17,2,5,1],"span":[350,15,18]},{"path":[4,17,2,5,3],"span":[350,21,22]},{"path":[4,18],"span":[356,0,360,1],"leadingComments":"\n Correlation fields used by reconciliation/correlation engine.\n"},{"path":[4,18,1],"span":[356,8,25]},{"path":[4,18,2,0],"span":[358,4,33],"leadingComments":" version or timestamp here...\n"},{"path":[4,18,2,0,4],"span":[358,4,12]},{"path":[4,18,2,0,6],"span":[358,13,22]},{"path":[4,18,2,0,1],"span":[358,23,28]},{"path":[4,18,2,0,3],"span":[358,31,32]},{"path":[4,19],"span":[362,0,365,1]},{"path":[4,19,1],"span":[362,8,17]},{"path":[4,19,2,0],"span":[363,4,19]},{"path":[4,19,2,0,5],"span":[363,4,10]},{"path":[4,19,2,0,1],"span":[363,11,14]},{"path":[4,19,2,0,3],"span":[363,17,18]},{"path":[4,19,2,1],"span":[364,4,30]},{"path":[4,19,2,1,4],"span":[364,4,12]},{"path":[4,19,2,1,5],"span":[364,13,19]},{"path":[4,19,2,1,1],"span":[364,20,25]},{"path":[4,19,2,1,3],"span":[364,28,29]},{"path":[4,20],"span":[370,0,393,1],"leadingComments":"\n ReconciliationInfo fields used by reconciliation/correlation engine.\n"},{"path":[4,20,1],"span":[370,8,26]},{"path":[4,20,4,0],"span":[371,3,374,4]},{"path":[4,20,4,0,1],"span":[371,8,18]},{"path":[4,20,4,0,2,0],"span":[372,5,16]},{"path":[4,20,4,0,2,0,1],"span":[372,5,11]},{"path":[4,20,4,0,2,0,2],"span":[372,14,15]},{"path":[4,20,4,0,2,1],"span":[373,5,15]},{"path":[4,20,4,0,2,1,1],"span":[373,5,10]},{"path":[4,20,4,0,2,1,2],"span":[373,13,14]},{"path":[4,20,4,1],"span":[376,2,379,3]},{"path":[4,20,4,1,1],"span":[376,7,17]},{"path":[4,20,4,1,2,0],"span":[377,4,15]},{"path":[4,20,4,1,2,0,1],"span":[377,4,10]},{"path":[4,20,4,1,2,0,2],"span":[377,13,14]},{"path":[4,20,4,1,2,1],"span":[378,4,13]},{"path":[4,20,4,1,2,1,1],"span":[378,4,8]},{"path":[4,20,4,1,2,1,2],"span":[378,11,12]},{"path":[4,20,2,0],"span":[381,2,49]},{"path":[4,20,2,0,6],"span":[381,2,27]},{"path":[4,20,2,0,1],"span":[381,28,44]},{"path":[4,20,2,0,3],"span":[381,47,48]},{"path":[4,20,2,1],"span":[382,2,23]},{"path":[4,20,2,1,6],"span":[382,2,12]},{"path":[4,20,2,1,1],"span":[382,13,18]},{"path":[4,20,2,1,3],"span":[382,21,22]},{"path":[4,20,2,2],"span":[383,2,38],"trailingComments":" NULL | ENGINE | USER\n"},{"path":[4,20,2,2,4],"span":[383,2,10]},{"path":[4,20,2,2,6],"span":[383,11,21]},{"path":[4,20,2,2,1],"span":[383,22,33]},{"path":[4,20,2,2,3],"span":[383,36,37]},{"path":[4,20,2,3],"span":[385,2,33],"trailingComments":" NULL if GOLDEN / Filled with ID of master if overriden\n"},{"path":[4,20,2,3,4],"span":[385,2,10]},{"path":[4,20,2,3,6],"span":[385,11,21]},{"path":[4,20,2,3,1],"span":[385,22,28]},{"path":[4,20,2,3,3],"span":[385,31,32]},{"path":[4,20,2,4],"span":[386,2,36],"trailingComments":" Filled by ENGINE with the Master ID chosen, if any: To preserve history of engine decisions vs user decisions.\n"},{"path":[4,20,2,4,4],"span":[386,2,10]},{"path":[4,20,2,4,6],"span":[386,11,21]},{"path":[4,20,2,4,1],"span":[386,22,31]},{"path":[4,20,2,4,3],"span":[386,34,35]},{"path":[4,20,2,5],"span":[387,2,32],"trailingComments":" Master is keeping a link to all aliases\n"},{"path":[4,20,2,5,4],"span":[387,2,10]},{"path":[4,20,2,5,6],"span":[387,11,21]},{"path":[4,20,2,5,1],"span":[387,22,27]},{"path":[4,20,2,5,3],"span":[387,30,31]},{"path":[4,20,2,6],"span":[389,2,32],"trailingComments":" Numeric value 0-100 of correlation confidence.\n"},{"path":[4,20,2,6,4],"span":[389,2,10]},{"path":[4,20,2,6,5],"span":[389,11,16]},{"path":[4,20,2,6,1],"span":[389,17,27]},{"path":[4,20,2,6,3],"span":[389,30,31]},{"path":[4,20,2,7],"span":[392,2,35],"leadingComments":" For future use of correlation leads that brought to merge.\n"},{"path":[4,20,2,7,4],"span":[392,2,10]},{"path":[4,20,2,7,5],"span":[392,11,17]},{"path":[4,20,2,7,1],"span":[392,18,30]},{"path":[4,20,2,7,3],"span":[392,33,34]},{"path":[4,21],"span":[404,0,411,1],"leadingComments":"\n Cloud entity coming from CDK scanner.\n This could be extended later on to become more than a carrier of opaque info.\n I.e. the any object contains objects as defined in discovery_cloud.proto\n Only objects needing to be mapped into common/core asset fields are handled\n the rest is fast-forwarded ahead to the chain to allow us to avoid useless\n early heavy mapping and post-pone it only where/when it's needed.\n"},{"path":[4,21,1],"span":[404,8,19]},{"path":[4,21,2,0],"span":[405,2,31]},{"path":[4,21,2,0,6],"span":[405,2,21]},{"path":[4,21,2,0,1],"span":[405,22,26]},{"path":[4,21,2,0,3],"span":[405,29,30]},{"path":[4,21,2,1],"span":[406,2,28]},{"path":[4,21,2,1,5],"span":[406,2,8]},{"path":[4,21,2,1,1],"span":[406,9,23]},{"path":[4,21,2,1,3],"span":[406,26,27]},{"path":[4,21,2,2],"span":[407,2,28]},{"path":[4,21,2,2,5],"span":[407,2,8]},{"path":[4,21,2,2,1],"span":[407,9,23]},{"path":[4,21,2,2,3],"span":[407,26,27]},{"path":[4,21,2,3],"span":[408,2,32]},{"path":[4,21,2,3,4],"span":[408,2,10]},{"path":[4,21,2,3,5],"span":[408,11,17]},{"path":[4,21,2,3,1],"span":[408,18,27]},{"path":[4,21,2,3,3],"span":[408,30,31]},{"path":[4,21,2,4],"span":[409,2,30]},{"path":[4,21,2,4,5],"span":[409,2,8]},{"path":[4,21,2,4,1],"span":[409,9,25]},{"path":[4,21,2,4,3],"span":[409,28,29]},{"path":[4,21,2,5],"span":[410,2,22]},{"path":[4,21,2,5,5],"span":[410,2,8]},{"path":[4,21,2,5,1],"span":[410,9,17]},{"path":[4,21,2,5,3],"span":[410,20,21]},{"path":[4,22],"span":[421,0,439,1],"leadingComments":"\n OT module/card specific info.\n Information about belonging rack and:\n - if it's main module, reference to all sub-modules\n - if it's sub-module, reference to parent main\n HW info: in HW standard section.\n OS info: in OS standard section.\n"},{"path":[4,22,1],"span":[421,8,16]},{"path":[4,22,2,0],"span":[422,2,37]},{"path":[4,22,2,0,4],"span":[422,2,10]},{"path":[4,22,2,0,5],"span":[422,11,17]},{"path":[4,22,2,0,1],"span":[422,18,32]},{"path":[4,22,2,0,3],"span":[422,35,36]},{"path":[4,22,2,1],"span":[423,2,38],"trailingComments":" a module can have one bus-config for each rack/bus it's part of\n"},{"path":[4,22,2,1,4],"span":[423,2,10]},{"path":[4,22,2,1,6],"span":[423,11,22]},{"path":[4,22,2,1,1],"span":[423,23,33]},{"path":[4,22,2,1,3],"span":[423,36,37]},{"path":[4,22,2,2],"span":[425,2,26]},{"path":[4,22,2,2,5],"span":[425,2,6]},{"path":[4,22,2,2,1],"span":[425,7,21]},{"path":[4,22,2,2,3],"span":[425,24,25]},{"path":[4,22,2,3],"span":[426,2,29],"trailingComments":" main module only: total buses including children\n"},{"path":[4,22,2,3,5],"span":[426,2,7]},{"path":[4,22,2,3,1],"span":[426,8,23]},{"path":[4,22,2,3,3],"span":[426,26,28]},{"path":[4,22,2,4],"span":[427,2,28],"trailingComments":" main module only: super total number of modules in all buses\n"},{"path":[4,22,2,4,5],"span":[427,2,7]},{"path":[4,22,2,4,1],"span":[427,8,22]},{"path":[4,22,2,4,3],"span":[427,25,27]},{"path":[4,22,2,5],"span":[428,2,27],"trailingComments":" main module only: max number of bus levels\n"},{"path":[4,22,2,5,5],"span":[428,2,7]},{"path":[4,22,2,5,1],"span":[428,8,21]},{"path":[4,22,2,5,3],"span":[428,24,26]},{"path":[4,22,2,6],"span":[430,2,34]},{"path":[4,22,2,6,4],"span":[430,2,10]},{"path":[4,22,2,6,5],"span":[430,11,17]},{"path":[4,22,2,6,1],"span":[430,18,29]},{"path":[4,22,2,6,3],"span":[430,32,33]},{"path":[4,22,2,7],"span":[431,2,40]},{"path":[4,22,2,7,4],"span":[431,2,10]},{"path":[4,22,2,7,6],"span":[431,11,26]},{"path":[4,22,2,7,1],"span":[431,27,35]},{"path":[4,22,2,7,3],"span":[431,38,39]},{"path":[4,22,2,8],"span":[433,2,33]},{"path":[4,22,2,8,4],"span":[433,2,10]},{"path":[4,22,2,8,5],"span":[433,11,17]},{"path":[4,22,2,8,1],"span":[433,18,28]},{"path":[4,22,2,8,3],"span":[433,31,32]},{"path":[4,22,2,9],"span":[435,2,27]},{"path":[4,22,2,9,5],"span":[435,2,6]},{"path":[4,22,2,9,1],"span":[435,7,22]},{"path":[4,22,2,9,3],"span":[435,25,26]},{"path":[4,22,2,10],"span":[436,2,36]},{"path":[4,22,2,10,4],"span":[436,2,10]},{"path":[4,22,2,10,5],"span":[436,11,17]},{"path":[4,22,2,10,1],"span":[436,18,31]},{"path":[4,22,2,10,3],"span":[436,34,35]},{"path":[4,22,2,11],"span":[437,2,36]},{"path":[4,22,2,11,4],"span":[437,2,10]},{"path":[4,22,2,11,6],"span":[437,11,21]},{"path":[4,22,2,11,1],"span":[437,22,31]},{"path":[4,22,2,11,3],"span":[437,34,35]},{"path":[4,22,2,12],"span":[438,2,45]},{"path":[4,22,2,12,4],"span":[438,2,10]},{"path":[4,22,2,12,6],"span":[438,11,28]},{"path":[4,22,2,12,1],"span":[438,29,39]},{"path":[4,22,2,12,3],"span":[438,42,44]},{"path":[4,23],"span":[442,0,451,1],"leadingComments":" Information about the OT rack the module is plugged into\n"},{"path":[4,23,1],"span":[442,8,19]},{"path":[4,23,2,0],"span":[443,2,19]},{"path":[4,23,2,0,5],"span":[443,2,7]},{"path":[4,23,2,0,1],"span":[443,8,14]},{"path":[4,23,2,0,3],"span":[443,17,18]},{"path":[4,23,2,1],"span":[444,2,27]},{"path":[4,23,2,1,4],"span":[444,2,10]},{"path":[4,23,2,1,5],"span":[444,11,17]},{"path":[4,23,2,1,1],"span":[444,18,22]},{"path":[4,23,2,1,3],"span":[444,25,26]},{"path":[4,23,2,2],"span":[445,2,27]},{"path":[4,23,2,2,4],"span":[445,2,10]},{"path":[4,23,2,2,5],"span":[445,11,17]},{"path":[4,23,2,2,1],"span":[445,18,22]},{"path":[4,23,2,2,3],"span":[445,25,26]},{"path":[4,23,2,3],"span":[446,2,17]},{"path":[4,23,2,3,5],"span":[446,2,7]},{"path":[4,23,2,3,1],"span":[446,8,12]},{"path":[4,23,2,3,3],"span":[446,15,16]},{"path":[4,23,2,4],"span":[447,2,24]},{"path":[4,23,2,4,5],"span":[447,2,7]},{"path":[4,23,2,4,1],"span":[447,8,19]},{"path":[4,23,2,4,3],"span":[447,22,23]},{"path":[4,23,2,5],"span":[448,2,30],"trailingComments":" the specific slot number for this module in the rack\n"},{"path":[4,23,2,5,4],"span":[448,2,10]},{"path":[4,23,2,5,5],"span":[448,11,16]},{"path":[4,23,2,5,1],"span":[448,17,25]},{"path":[4,23,2,5,3],"span":[448,28,29]},{"path":[4,23,2,6],"span":[449,2,27],"trailingComments":" the specific slot width for this module in the rack\n"},{"path":[4,23,2,6,4],"span":[449,2,10]},{"path":[4,23,2,6,5],"span":[449,11,16]},{"path":[4,23,2,6,1],"span":[449,17,22]},{"path":[4,23,2,6,3],"span":[449,25,26]},{"path":[4,23,2,7],"span":[450,2,35]},{"path":[4,23,2,7,4],"span":[450,2,10]},{"path":[4,23,2,7,5],"span":[450,11,15]},{"path":[4,23,2,7,1],"span":[450,16,30]},{"path":[4,23,2,7,3],"span":[450,33,34]},{"path":[4,24],"span":[453,0,456,1]},{"path":[4,24,1],"span":[453,8,23]},{"path":[4,24,2,0],"span":[454,2,17]},{"path":[4,24,2,0,5],"span":[454,2,8]},{"path":[4,24,2,0,1],"span":[454,9,12]},{"path":[4,24,2,0,3],"span":[454,15,16]},{"path":[4,24,2,1],"span":[455,2,19]},{"path":[4,24,2,1,5],"span":[455,2,8]},{"path":[4,24,2,1,1],"span":[455,9,14]},{"path":[4,24,2,1,3],"span":[455,17,18]},{"path":[4,25],"span":[459,0,470,1],"leadingComments":" Information about the Scan config and last run of OT scan\n"},{"path":[4,25,1],"span":[459,8,18]},{"path":[4,25,2,0],"span":[460,2,37]},{"path":[4,25,2,0,4],"span":[460,2,10]},{"path":[4,25,2,0,5],"span":[460,11,17]},{"path":[4,25,2,0,1],"span":[460,18,32]},{"path":[4,25,2,0,3],"span":[460,35,36]},{"path":[4,25,2,1],"span":[461,2,39]},{"path":[4,25,2,1,4],"span":[461,2,10]},{"path":[4,25,2,1,5],"span":[461,11,17]},{"path":[4,25,2,1,1],"span":[461,18,34]},{"path":[4,25,2,1,3],"span":[461,37,38]},{"path":[4,25,2,2],"span":[462,2,32]},{"path":[4,25,2,2,4],"span":[462,2,10]},{"path":[4,25,2,2,5],"span":[462,11,17]},{"path":[4,25,2,2,1],"span":[462,18,27]},{"path":[4,25,2,2,3],"span":[462,30,31]},{"path":[4,25,2,3],"span":[463,2,34]},{"path":[4,25,2,3,4],"span":[463,2,10]},{"path":[4,25,2,3,5],"span":[463,11,17]},{"path":[4,25,2,3,1],"span":[463,18,29]},{"path":[4,25,2,3,3],"span":[463,32,33]},{"path":[4,25,2,4],"span":[464,2,34]},{"path":[4,25,2,4,4],"span":[464,2,10]},{"path":[4,25,2,4,5],"span":[464,11,17]},{"path":[4,25,2,4,1],"span":[464,18,29]},{"path":[4,25,2,4,3],"span":[464,32,33]},{"path":[4,25,2,5],"span":[465,2,36]},{"path":[4,25,2,5,4],"span":[465,2,10]},{"path":[4,25,2,5,5],"span":[465,11,17]},{"path":[4,25,2,5,1],"span":[465,18,31]},{"path":[4,25,2,5,3],"span":[465,34,35]},{"path":[4,25,2,6],"span":[466,2,26]},{"path":[4,25,2,6,4],"span":[466,2,10]},{"path":[4,25,2,6,5],"span":[466,11,16]},{"path":[4,25,2,6,1],"span":[466,17,21]},{"path":[4,25,2,6,3],"span":[466,24,25]},{"path":[4,25,2,7],"span":[467,2,39]},{"path":[4,25,2,7,4],"span":[467,2,10]},{"path":[4,25,2,7,5],"span":[467,11,17]},{"path":[4,25,2,7,1],"span":[467,18,34]},{"path":[4,25,2,7,3],"span":[467,37,38]},{"path":[4,25,2,8],"span":[468,2,52]},{"path":[4,25,2,8,4],"span":[468,2,10]},{"path":[4,25,2,8,6],"span":[468,11,36]},{"path":[4,25,2,8,1],"span":[468,37,47]},{"path":[4,25,2,8,3],"span":[468,50,51]},{"path":[4,25,2,9],"span":[469,2,52]},{"path":[4,25,2,9,4],"span":[469,2,10]},{"path":[4,25,2,9,6],"span":[469,11,36]},{"path":[4,25,2,9,1],"span":[469,37,46]},{"path":[4,25,2,9,3],"span":[469,49,51]},{"path":[4,26],"span":[473,0,477,1],"leadingComments":" Information about OT firmware history\n"},{"path":[4,26,1],"span":[473,8,25]},{"path":[4,26,2,0],"span":[474,2,22]},{"path":[4,26,2,0,5],"span":[474,2,8]},{"path":[4,26,2,0,1],"span":[474,9,17]},{"path":[4,26,2,0,3],"span":[474,20,21]},{"path":[4,26,2,1],"span":[475,2,37]},{"path":[4,26,2,1,6],"span":[475,2,27]},{"path":[4,26,2,1,1],"span":[475,28,32]},{"path":[4,26,2,1,3],"span":[475,35,36]},{"path":[4,26,2,2],"span":[476,2,38]},{"path":[4,26,2,2,6],"span":[476,2,27]},{"path":[4,26,2,2,1],"span":[476,28,33]},{"path":[4,26,2,2,3],"span":[476,36,37]},{"path":[4,27],"span":[483,0,491,1],"leadingComments":"\n Asset Type enables customers to manage the settings for a\n category of information in a centralized, reusable way.\n"},{"path":[4,27,1],"span":[483,8,17]},{"path":[4,27,2,0],"span":[485,2,21],"leadingComments":" Lansweeper Asset Type. Full list available here: /lansweeperapis/packages/model/masterData/content/masterData.json\n"},{"path":[4,27,2,0,5],"span":[485,2,8]},{"path":[4,27,2,0,1],"span":[485,9,16]},{"path":[4,27,2,0,3],"span":[485,19,20]},{"path":[4,27,2,1],"span":[487,2,18],"leadingComments":" Lansweeper type ID\n"},{"path":[4,27,2,1,5],"span":[487,2,7]},{"path":[4,27,2,1,1],"span":[487,8,13]},{"path":[4,27,2,1,3],"span":[487,16,17]},{"path":[4,27,2,2],"span":[489,2,32],"leadingComments":" Fing Type\n"},{"path":[4,27,2,2,4],"span":[489,2,10]},{"path":[4,27,2,2,5],"span":[489,11,17]},{"path":[4,27,2,2,1],"span":[489,18,27]},{"path":[4,27,2,2,3],"span":[489,30,31]},{"path":[4,27,2,3],"span":[490,2,31],"trailingComments":" sub type for OT and CDK\n"},{"path":[4,27,2,3,4],"span":[490,2,10]},{"path":[4,27,2,3,5],"span":[490,11,17]},{"path":[4,27,2,3,1],"span":[490,18,26]},{"path":[4,27,2,3,3],"span":[490,29,30]},{"path":[4,28],"span":[498,0,506,1],"leadingComments":"\n Detailed Source information for each source (aka installation in legacy terms)\n that at least once contributed to sending a scan about this asset.\n"},{"path":[4,28,1],"span":[498,8,18]},{"path":[4,28,2,0],"span":[499,2,23],"trailingComments":" source id, like installation id of IT\n"},{"path":[4,28,2,0,5],"span":[499,2,8]},{"path":[4,28,2,0,1],"span":[499,9,18]},{"path":[4,28,2,0,3],"span":[499,21,22]},{"path":[4,28,2,1],"span":[500,2,25],"trailingComments":" source type like e.g. IT\n"},{"path":[4,28,2,1,5],"span":[500,2,8]},{"path":[4,28,2,1,1],"span":[500,9,20]},{"path":[4,28,2,1,3],"span":[500,23,24]},{"path":[4,28,2,2],"span":[501,2,35],"trailingComments":" source agent name and version\n"},{"path":[4,28,2,2,4],"span":[501,2,10]},{"path":[4,28,2,2,5],"span":[501,11,17]},{"path":[4,28,2,2,1],"span":[501,18,30]},{"path":[4,28,2,2,3],"span":[501,33,34]},{"path":[4,28,2,3],"span":[502,2,34],"trailingComments":" source name\n"},{"path":[4,28,2,3,4],"span":[502,2,10]},{"path":[4,28,2,3,5],"span":[502,11,17]},{"path":[4,28,2,3,1],"span":[502,18,29]},{"path":[4,28,2,3,3],"span":[502,32,33]},{"path":[4,28,2,4],"span":[503,2,20],"trailingComments":" entity/asset raw id for source\n"},{"path":[4,28,2,4,5],"span":[503,2,8]},{"path":[4,28,2,4,1],"span":[503,9,15]},{"path":[4,28,2,4,3],"span":[503,18,19]},{"path":[4,28,2,5],"span":[504,2,44],"trailingComments":" later here we could also have a summary of errors, if needed to keep history\n"},{"path":[4,28,2,5,6],"span":[504,2,27]},{"path":[4,28,2,5,1],"span":[504,28,39]},{"path":[4,28,2,5,3],"span":[504,42,43]},{"path":[4,29],"span":[511,0,517,1],"leadingComments":"\n Scan errors.\n"},{"path":[4,29,1],"span":[511,8,17]},{"path":[4,29,2,0],"span":[512,2,21],"trailingComments":" name of section\n"},{"path":[4,29,2,0,5],"span":[512,2,8]},{"path":[4,29,2,0,1],"span":[512,9,16]},{"path":[4,29,2,0,3],"span":[512,19,20]},{"path":[4,29,2,1],"span":[513,2,19],"trailingComments":" error descr\n"},{"path":[4,29,2,1,5],"span":[513,2,8]},{"path":[4,29,2,1,1],"span":[513,9,14]},{"path":[4,29,2,1,3],"span":[513,17,18]},{"path":[4,29,2,2],"span":[514,2,29],"trailingComments":" e.g. \"WMI\"\n"},{"path":[4,29,2,2,4],"span":[514,2,10]},{"path":[4,29,2,2,5],"span":[514,11,17]},{"path":[4,29,2,2,1],"span":[514,18,24]},{"path":[4,29,2,2,3],"span":[514,27,28]},{"path":[4,29,2,3],"span":[515,2,51]},{"path":[4,29,2,3,4],"span":[515,2,10]},{"path":[4,29,2,3,6],"span":[515,11,36]},{"path":[4,29,2,3,1],"span":[515,37,46]},{"path":[4,29,2,3,3],"span":[515,49,50]},{"path":[4,29,2,4],"span":[516,2,30]},{"path":[4,29,2,4,4],"span":[516,2,10]},{"path":[4,29,2,4,5],"span":[516,11,16]},{"path":[4,29,2,4,1],"span":[516,17,25]},{"path":[4,29,2,4,3],"span":[516,28,29]},{"path":[4,30],"span":[522,0,539,1],"leadingComments":"\n Core Fields for all Assets.\n"},{"path":[4,30,1],"span":[522,8,18]},{"path":[4,30,2,0],"span":[523,2,21]},{"path":[4,30,2,0,6],"span":[523,2,11]},{"path":[4,30,2,0,1],"span":[523,12,16]},{"path":[4,30,2,0,3],"span":[523,19,20]},{"path":[4,30,2,1],"span":[524,2,18]},{"path":[4,30,2,1,5],"span":[524,2,8]},{"path":[4,30,2,1,1],"span":[524,9,13]},{"path":[4,30,2,1,3],"span":[524,16,17]},{"path":[4,30,2,2],"span":[525,2,29]},{"path":[4,30,2,2,4],"span":[525,2,10]},{"path":[4,30,2,2,5],"span":[525,11,17]},{"path":[4,30,2,2,1],"span":[525,18,24]},{"path":[4,30,2,2,3],"span":[525,27,28]},{"path":[4,30,2,3],"span":[526,2,33]},{"path":[4,30,2,3,4],"span":[526,2,10]},{"path":[4,30,2,3,5],"span":[526,11,17]},{"path":[4,30,2,3,1],"span":[526,18,28]},{"path":[4,30,2,3,3],"span":[526,31,32]},{"path":[4,30,2,4],"span":[527,2,29]},{"path":[4,30,2,4,4],"span":[527,2,10]},{"path":[4,30,2,4,5],"span":[527,11,17]},{"path":[4,30,2,4,1],"span":[527,18,24]},{"path":[4,30,2,4,3],"span":[527,27,28]},{"path":[4,30,2,5],"span":[528,2,26]},{"path":[4,30,2,5,4],"span":[528,2,10]},{"path":[4,30,2,5,5],"span":[528,11,17]},{"path":[4,30,2,5,1],"span":[528,18,21]},{"path":[4,30,2,5,3],"span":[528,24,25]},{"path":[4,30,2,6],"span":[529,2,33]},{"path":[4,30,2,6,4],"span":[529,2,10]},{"path":[4,30,2,6,5],"span":[529,11,17]},{"path":[4,30,2,6,1],"span":[529,18,28]},{"path":[4,30,2,6,3],"span":[529,31,32]},{"path":[4,30,2,7],"span":[530,2,32]},{"path":[4,30,2,7,4],"span":[530,2,10]},{"path":[4,30,2,7,5],"span":[530,11,17]},{"path":[4,30,2,7,1],"span":[530,18,27]},{"path":[4,30,2,7,3],"span":[530,30,31]},{"path":[4,30,2,8],"span":[531,2,27]},{"path":[4,30,2,8,4],"span":[531,2,10]},{"path":[4,30,2,8,5],"span":[531,11,17]},{"path":[4,30,2,8,1],"span":[531,18,22]},{"path":[4,30,2,8,3],"span":[531,25,26]},{"path":[4,30,2,9],"span":[538,2,24],"leadingComments":"\n Asset confidence 1-100:\n - 100 is for credential-scan assets by LS internal scanners\n - <100 is for e.g. CDR or imported data from 3rd parties\n"},{"path":[4,30,2,9,5],"span":[538,2,7]},{"path":[4,30,2,9,1],"span":[538,8,18]},{"path":[4,30,2,9,3],"span":[538,21,23]},{"path":[4,31],"span":[541,0,546,1]},{"path":[4,31,1],"span":[541,8,16]},{"path":[4,31,2,0],"span":[542,4,25]},{"path":[4,31,2,0,5],"span":[542,4,10]},{"path":[4,31,2,0,1],"span":[542,11,20]},{"path":[4,31,2,0,3],"span":[542,23,24]},{"path":[4,31,2,1],"span":[543,4,34]},{"path":[4,31,2,1,4],"span":[543,4,12]},{"path":[4,31,2,1,5],"span":[543,13,19]},{"path":[4,31,2,1,1],"span":[543,20,29]},{"path":[4,31,2,1,3],"span":[543,32,33]},{"path":[4,31,2,2],"span":[544,4,28]},{"path":[4,31,2,2,4],"span":[544,4,12]},{"path":[4,31,2,2,5],"span":[544,13,19]},{"path":[4,31,2,2,1],"span":[544,20,23]},{"path":[4,31,2,2,3],"span":[544,26,27]},{"path":[4,31,2,3],"span":[545,4,28]},{"path":[4,31,2,3,4],"span":[545,4,12]},{"path":[4,31,2,3,5],"span":[545,13,19]},{"path":[4,31,2,3,1],"span":[545,20,23]},{"path":[4,31,2,3,3],"span":[545,26,27]},{"path":[4,32],"span":[551,0,578,1],"leadingComments":"\n User account: from Windows.WindowsUser and Unix.Users.\n"},{"path":[4,32,1],"span":[551,8,19]},{"path":[4,32,2,0],"span":[552,2,27],"trailingComments":" unix:user_name\n"},{"path":[4,32,2,0,4],"span":[552,2,10]},{"path":[4,32,2,0,5],"span":[552,11,17]},{"path":[4,32,2,0,1],"span":[552,18,22]},{"path":[4,32,2,0,3],"span":[552,25,26]},{"path":[4,32,2,1],"span":[553,2,29]},{"path":[4,32,2,1,4],"span":[553,2,10]},{"path":[4,32,2,1,5],"span":[553,11,17]},{"path":[4,32,2,1,1],"span":[553,18,24]},{"path":[4,32,2,1,3],"span":[553,27,28]},{"path":[4,32,2,2],"span":[554,2,30]},{"path":[4,32,2,2,4],"span":[554,2,10]},{"path":[4,32,2,2,5],"span":[554,11,17]},{"path":[4,32,2,2,1],"span":[554,18,25]},{"path":[4,32,2,2,3],"span":[554,28,29]},{"path":[4,32,2,3],"span":[555,2,34],"trailingComments":" unix:comment\n"},{"path":[4,32,2,3,4],"span":[555,2,10]},{"path":[4,32,2,3,5],"span":[555,11,17]},{"path":[4,32,2,3,1],"span":[555,18,29]},{"path":[4,32,2,3,3],"span":[555,32,33]},{"path":[4,32,2,4],"span":[556,2,32]},{"path":[4,32,2,4,4],"span":[556,2,10]},{"path":[4,32,2,4,5],"span":[556,11,17]},{"path":[4,32,2,4,1],"span":[556,18,27]},{"path":[4,32,2,4,3],"span":[556,30,31]},{"path":[4,32,2,5],"span":[558,2,40],"trailingComments":" unix:type\n"},{"path":[4,32,2,5,4],"span":[558,2,10]},{"path":[4,32,2,5,6],"span":[558,11,22]},{"path":[4,32,2,5,1],"span":[558,23,35]},{"path":[4,32,2,5,3],"span":[558,38,39]},{"path":[4,32,2,6],"span":[560,2,26]},{"path":[4,32,2,6,4],"span":[560,2,10]},{"path":[4,32,2,6,5],"span":[560,11,17]},{"path":[4,32,2,6,1],"span":[560,18,21]},{"path":[4,32,2,6,3],"span":[560,24,25]},{"path":[4,32,2,7],"span":[561,2,36]},{"path":[4,32,2,7,4],"span":[561,2,10]},{"path":[4,32,2,7,6],"span":[561,11,22]},{"path":[4,32,2,7,1],"span":[561,23,31]},{"path":[4,32,2,7,3],"span":[561,34,35]},{"path":[4,32,2,8],"span":[563,2,34]},{"path":[4,32,2,8,4],"span":[563,2,10]},{"path":[4,32,2,8,5],"span":[563,11,15]},{"path":[4,32,2,8,1],"span":[563,16,29]},{"path":[4,32,2,8,3],"span":[563,32,33]},{"path":[4,32,2,9],"span":[564,2,30]},{"path":[4,32,2,9,4],"span":[564,2,10]},{"path":[4,32,2,9,5],"span":[564,11,15]},{"path":[4,32,2,9,1],"span":[564,16,24]},{"path":[4,32,2,9,3],"span":[564,27,29]},{"path":[4,32,2,10],"span":[565,2,29]},{"path":[4,32,2,10,4],"span":[565,2,10]},{"path":[4,32,2,10,5],"span":[565,11,15]},{"path":[4,32,2,10,1],"span":[565,16,23]},{"path":[4,32,2,10,3],"span":[565,26,28]},{"path":[4,32,2,11],"span":[566,2,41]},{"path":[4,32,2,11,4],"span":[566,2,10]},{"path":[4,32,2,11,5],"span":[566,11,15]},{"path":[4,32,2,11,1],"span":[566,16,35]},{"path":[4,32,2,11,3],"span":[566,38,40]},{"path":[4,32,2,12],"span":[567,2,38]},{"path":[4,32,2,12,4],"span":[567,2,10]},{"path":[4,32,2,12,5],"span":[567,11,15]},{"path":[4,32,2,12,1],"span":[567,16,32]},{"path":[4,32,2,12,3],"span":[567,35,37]},{"path":[4,32,2,13],"span":[568,2,39]},{"path":[4,32,2,13,4],"span":[568,2,10]},{"path":[4,32,2,13,5],"span":[568,11,15]},{"path":[4,32,2,13,1],"span":[568,16,33]},{"path":[4,32,2,13,3],"span":[568,36,38]},{"path":[4,32,2,14],"span":[570,2,30]},{"path":[4,32,2,14,4],"span":[570,2,10]},{"path":[4,32,2,14,5],"span":[570,11,17]},{"path":[4,32,2,14,1],"span":[570,18,24]},{"path":[4,32,2,14,3],"span":[570,27,29]},{"path":[4,32,2,15],"span":[573,2,30],"leadingComments":" unix specific\n"},{"path":[4,32,2,15,4],"span":[573,2,10]},{"path":[4,32,2,15,5],"span":[573,11,16]},{"path":[4,32,2,15,1],"span":[573,17,24]},{"path":[4,32,2,15,3],"span":[573,27,29]},{"path":[4,32,2,16],"span":[574,2,31]},{"path":[4,32,2,16,4],"span":[574,2,10]},{"path":[4,32,2,16,5],"span":[574,11,16]},{"path":[4,32,2,16,1],"span":[574,17,25]},{"path":[4,32,2,16,3],"span":[574,28,30]},{"path":[4,32,2,17],"span":[576,2,38]},{"path":[4,32,2,17,4],"span":[576,2,10]},{"path":[4,32,2,17,5],"span":[576,11,17]},{"path":[4,32,2,17,1],"span":[576,18,32]},{"path":[4,32,2,17,3],"span":[576,35,37]},{"path":[4,32,2,18],"span":[577,2,35]},{"path":[4,32,2,18,4],"span":[577,2,10]},{"path":[4,32,2,18,5],"span":[577,11,17]},{"path":[4,32,2,18,1],"span":[577,18,29]},{"path":[4,32,2,18,3],"span":[577,32,34]},{"path":[4,33],"span":[584,0,596,1],"leadingComments":"\n User group, from Windows.WindowsGroup and Unix.GroupEntry.\n Note that Unix.user_names are not here but programmatically mapped to UserInGroup.\n"},{"path":[4,33,1],"span":[584,8,17]},{"path":[4,33,2,0],"span":[585,2,27]},{"path":[4,33,2,0,4],"span":[585,2,10]},{"path":[4,33,2,0,5],"span":[585,11,17]},{"path":[4,33,2,0,1],"span":[585,18,22]},{"path":[4,33,2,0,3],"span":[585,25,26]},{"path":[4,33,2,1],"span":[586,2,30]},{"path":[4,33,2,1,4],"span":[586,2,10]},{"path":[4,33,2,1,5],"span":[586,11,17]},{"path":[4,33,2,1,1],"span":[586,18,25]},{"path":[4,33,2,1,3],"span":[586,28,29]},{"path":[4,33,2,2],"span":[587,2,34]},{"path":[4,33,2,2,4],"span":[587,2,10]},{"path":[4,33,2,2,5],"span":[587,11,17]},{"path":[4,33,2,2,1],"span":[587,18,29]},{"path":[4,33,2,2,3],"span":[587,32,33]},{"path":[4,33,2,3],"span":[588,2,29]},{"path":[4,33,2,3,4],"span":[588,2,10]},{"path":[4,33,2,3,5],"span":[588,11,17]},{"path":[4,33,2,3,1],"span":[588,18,24]},{"path":[4,33,2,3,3],"span":[588,27,28]},{"path":[4,33,2,4],"span":[590,2,26]},{"path":[4,33,2,4,4],"span":[590,2,10]},{"path":[4,33,2,4,5],"span":[590,11,17]},{"path":[4,33,2,4,1],"span":[590,18,21]},{"path":[4,33,2,4,3],"span":[590,24,25]},{"path":[4,33,2,5],"span":[591,2,34]},{"path":[4,33,2,5,4],"span":[591,2,10]},{"path":[4,33,2,5,5],"span":[591,11,15]},{"path":[4,33,2,5,1],"span":[591,16,29]},{"path":[4,33,2,5,3],"span":[591,32,33]},{"path":[4,33,2,6],"span":[594,2,30],"leadingComments":" unix specific\n"},{"path":[4,33,2,6,4],"span":[594,2,10]},{"path":[4,33,2,6,5],"span":[594,11,16]},{"path":[4,33,2,6,1],"span":[594,17,25]},{"path":[4,33,2,6,3],"span":[594,28,29]},{"path":[4,33,2,7],"span":[595,2,27]},{"path":[4,33,2,7,4],"span":[595,2,10]},{"path":[4,33,2,7,5],"span":[595,11,17]},{"path":[4,33,2,7,1],"span":[595,18,22]},{"path":[4,33,2,7,3],"span":[595,25,26]},{"path":[4,34],"span":[603,0,610,1],"leadingComments":"\n Many to many relationship between users and groups and related relation properties.\n Windows: direct mapping mapped from WindowsUserInGroupInfo.\n Unix: created from parsing of Unix.GroupEntry.user_names\n"},{"path":[4,34,1],"span":[603,8,19]},{"path":[4,34,2,0],"span":[604,2,33]},{"path":[4,34,2,0,4],"span":[604,2,10]},{"path":[4,34,2,0,5],"span":[604,11,17]},{"path":[4,34,2,0,1],"span":[604,18,28]},{"path":[4,34,2,0,3],"span":[604,31,32]},{"path":[4,34,2,1],"span":[605,2,32]},{"path":[4,34,2,1,4],"span":[605,2,10]},{"path":[4,34,2,1,5],"span":[605,11,17]},{"path":[4,34,2,1,1],"span":[605,18,27]},{"path":[4,34,2,1,3],"span":[605,30,31]},{"path":[4,34,2,2],"span":[606,2,39]},{"path":[4,34,2,2,4],"span":[606,2,10]},{"path":[4,34,2,2,5],"span":[606,11,17]},{"path":[4,34,2,2,1],"span":[606,18,34]},{"path":[4,34,2,2,3],"span":[606,37,38]},{"path":[4,34,2,3],"span":[607,2,35]},{"path":[4,34,2,3,4],"span":[607,2,10]},{"path":[4,34,2,3,5],"span":[607,11,17]},{"path":[4,34,2,3,1],"span":[607,18,30]},{"path":[4,34,2,3,3],"span":[607,33,34]},{"path":[4,34,2,4],"span":[609,2,35]},{"path":[4,34,2,4,4],"span":[609,2,10]},{"path":[4,34,2,4,5],"span":[609,11,15]},{"path":[4,34,2,4,1],"span":[609,16,30]},{"path":[4,34,2,4,3],"span":[609,33,34]},{"path":[4,35],"span":[617,0,654,1],"leadingComments":"\n IE on Windows. Very specific.\n From sections: WindowsActiveX, WindowsInternetExplorerBarInfo,\n WindowsInternetExplorerBrowserObjectInfo, WindowsInternetExplorerExtensionInfo.\n"},{"path":[4,35,1],"span":[617,8,24]},{"path":[4,35,3,0],"span":[619,4,624,5],"leadingComments":" from WindowsActiveX\n"},{"path":[4,35,3,0,1],"span":[619,12,19]},{"path":[4,35,3,0,2,0],"span":[620,6,34]},{"path":[4,35,3,0,2,0,4],"span":[620,6,14]},{"path":[4,35,3,0,2,0,5],"span":[620,15,21]},{"path":[4,35,3,0,2,0,1],"span":[620,22,29]},{"path":[4,35,3,0,2,0,3],"span":[620,32,33]},{"path":[4,35,3,0,2,1],"span":[621,6,36]},{"path":[4,35,3,0,2,1,4],"span":[621,6,14]},{"path":[4,35,3,0,2,1,5],"span":[621,15,21]},{"path":[4,35,3,0,2,1,1],"span":[621,22,31]},{"path":[4,35,3,0,2,1,3],"span":[621,34,35]},{"path":[4,35,3,0,2,2],"span":[622,6,31]},{"path":[4,35,3,0,2,2,4],"span":[622,6,14]},{"path":[4,35,3,0,2,2,5],"span":[622,15,21]},{"path":[4,35,3,0,2,2,1],"span":[622,22,26]},{"path":[4,35,3,0,2,2,3],"span":[622,29,30]},{"path":[4,35,3,0,2,3],"span":[623,6,30]},{"path":[4,35,3,0,2,3,4],"span":[623,6,14]},{"path":[4,35,3,0,2,3,5],"span":[623,15,21]},{"path":[4,35,3,0,2,3,1],"span":[623,22,25]},{"path":[4,35,3,0,2,3,3],"span":[623,28,29]},{"path":[4,35,3,1],"span":[627,4,637,5],"leadingComments":" InternetExplorerExtensionInfo\n"},{"path":[4,35,3,1,1],"span":[627,12,21]},{"path":[4,35,3,1,2,0],"span":[628,6,34]},{"path":[4,35,3,1,2,0,4],"span":[628,6,14]},{"path":[4,35,3,1,2,0,5],"span":[628,15,21]},{"path":[4,35,3,1,2,0,1],"span":[628,22,29]},{"path":[4,35,3,1,2,0,3],"span":[628,32,33]},{"path":[4,35,3,1,2,1],"span":[629,6,38]},{"path":[4,35,3,1,2,1,4],"span":[629,6,14]},{"path":[4,35,3,1,2,1,5],"span":[629,15,21]},{"path":[4,35,3,1,2,1,1],"span":[629,22,33]},{"path":[4,35,3,1,2,1,3],"span":[629,36,37]},{"path":[4,35,3,1,2,2],"span":[630,6,33]},{"path":[4,35,3,1,2,2,4],"span":[630,6,14]},{"path":[4,35,3,1,2,2,5],"span":[630,15,21]},{"path":[4,35,3,1,2,2,1],"span":[630,22,28]},{"path":[4,35,3,1,2,2,3],"span":[630,31,32]},{"path":[4,35,3,1,2,3],"span":[631,6,42]},{"path":[4,35,3,1,2,3,4],"span":[631,6,14]},{"path":[4,35,3,1,2,3,5],"span":[631,15,21]},{"path":[4,35,3,1,2,3,1],"span":[631,22,37]},{"path":[4,35,3,1,2,3,3],"span":[631,40,41]},{"path":[4,35,3,1,2,4],"span":[632,6,31]},{"path":[4,35,3,1,2,4,4],"span":[632,6,14]},{"path":[4,35,3,1,2,4,5],"span":[632,15,21]},{"path":[4,35,3,1,2,4,1],"span":[632,22,26]},{"path":[4,35,3,1,2,4,3],"span":[632,29,30]},{"path":[4,35,3,1,2,5],"span":[633,6,35]},{"path":[4,35,3,1,2,5,4],"span":[633,6,14]},{"path":[4,35,3,1,2,5,5],"span":[633,15,21]},{"path":[4,35,3,1,2,5,1],"span":[633,22,30]},{"path":[4,35,3,1,2,5,3],"span":[633,33,34]},{"path":[4,35,3,1,2,6],"span":[634,6,31]},{"path":[4,35,3,1,2,6,4],"span":[634,6,14]},{"path":[4,35,3,1,2,6,5],"span":[634,15,21]},{"path":[4,35,3,1,2,6,1],"span":[634,22,26]},{"path":[4,35,3,1,2,6,3],"span":[634,29,30]},{"path":[4,35,3,1,2,7],"span":[635,6,36]},{"path":[4,35,3,1,2,7,4],"span":[635,6,14]},{"path":[4,35,3,1,2,7,5],"span":[635,15,21]},{"path":[4,35,3,1,2,7,1],"span":[635,22,31]},{"path":[4,35,3,1,2,7,3],"span":[635,34,35]},{"path":[4,35,3,1,2,8],"span":[636,6,34]},{"path":[4,35,3,1,2,8,4],"span":[636,6,14]},{"path":[4,35,3,1,2,8,5],"span":[636,15,21]},{"path":[4,35,3,1,2,8,1],"span":[636,22,29]},{"path":[4,35,3,1,2,8,3],"span":[636,32,33]},{"path":[4,35,3,2],"span":[640,2,642,3],"leadingComments":" from InternetExplorerBrowserObjectInfo\n"},{"path":[4,35,3,2,1],"span":[640,10,23]},{"path":[4,35,3,2,2,0],"span":[641,4,23]},{"path":[4,35,3,2,2,0,5],"span":[641,4,10]},{"path":[4,35,3,2,2,0,1],"span":[641,11,18]},{"path":[4,35,3,2,2,0,3],"span":[641,21,22]},{"path":[4,35,3,3],"span":[645,2,647,3],"leadingComments":" from WindowsInternetExplorerBarInfo\n"},{"path":[4,35,3,3,1],"span":[645,10,17]},{"path":[4,35,3,3,2,0],"span":[646,4,23]},{"path":[4,35,3,3,2,0,5],"span":[646,4,10]},{"path":[4,35,3,3,2,0,1],"span":[646,11,18]},{"path":[4,35,3,3,2,0,3],"span":[646,21,22]},{"path":[4,35,2,0],"span":[650,2,32]},{"path":[4,35,2,0,4],"span":[650,2,10]},{"path":[4,35,2,0,6],"span":[650,11,18]},{"path":[4,35,2,0,1],"span":[650,19,27]},{"path":[4,35,2,0,3],"span":[650,30,31]},{"path":[4,35,2,1],"span":[651,2,33]},{"path":[4,35,2,1,4],"span":[651,2,10]},{"path":[4,35,2,1,6],"span":[651,11,24]},{"path":[4,35,2,1,1],"span":[651,25,28]},{"path":[4,35,2,1,3],"span":[651,31,32]},{"path":[4,35,2,2],"span":[652,2,44]},{"path":[4,35,2,2,4],"span":[652,2,10]},{"path":[4,35,2,2,6],"span":[652,11,24]},{"path":[4,35,2,2,1],"span":[652,25,39]},{"path":[4,35,2,2,3],"span":[652,42,43]},{"path":[4,35,2,3],"span":[653,2,35]},{"path":[4,35,2,3,4],"span":[653,2,10]},{"path":[4,35,2,3,6],"span":[653,11,20]},{"path":[4,35,2,3,1],"span":[653,21,30]},{"path":[4,35,2,3,3],"span":[653,33,34]},{"path":[4,36],"span":[659,0,683,1],"leadingComments":"\n SQL Server extended information on Windows Computers.\n"},{"path":[4,36,1],"span":[659,8,24]},{"path":[4,36,4,0],"span":[660,2,664,3]},{"path":[4,36,4,0,1],"span":[660,7,28]},{"path":[4,36,4,0,2,0],"span":[661,4,21]},{"path":[4,36,4,0,2,0,1],"span":[661,4,16]},{"path":[4,36,4,0,2,0,2],"span":[661,19,20]},{"path":[4,36,4,0,2,1],"span":[662,4,16]},{"path":[4,36,4,0,2,1,1],"span":[662,4,11]},{"path":[4,36,4,0,2,1,2],"span":[662,14,15]},{"path":[4,36,4,0,2,2],"span":[663,4,14]},{"path":[4,36,4,0,2,2,1],"span":[663,4,9]},{"path":[4,36,4,0,2,2,2],"span":[663,12,13]},{"path":[4,36,2,0],"span":[666,4,26]},{"path":[4,36,2,0,5],"span":[666,4,8]},{"path":[4,36,2,0,1],"span":[666,9,21]},{"path":[4,36,2,0,3],"span":[666,24,25]},{"path":[4,36,2,1],"span":[667,4,54]},{"path":[4,36,2,1,6],"span":[667,4,25]},{"path":[4,36,2,1,1],"span":[667,26,49]},{"path":[4,36,2,1,3],"span":[667,52,53]},{"path":[4,36,2,2],"span":[668,4,45]},{"path":[4,36,2,2,4],"span":[668,4,12]},{"path":[4,36,2,2,6],"span":[668,13,30]},{"path":[4,36,2,2,1],"span":[668,31,40]},{"path":[4,36,2,2,3],"span":[668,43,44]},{"path":[4,36,2,3],"span":[669,4,43]},{"path":[4,36,2,3,4],"span":[669,4,12]},{"path":[4,36,2,3,6],"span":[669,13,29]},{"path":[4,36,2,3,1],"span":[669,30,38]},{"path":[4,36,2,3,3],"span":[669,41,42]},{"path":[4,36,2,4],"span":[670,4,28]},{"path":[4,36,2,4,5],"span":[670,4,10]},{"path":[4,36,2,4,1],"span":[670,11,23]},{"path":[4,36,2,4,3],"span":[670,26,27]},{"path":[4,36,2,5],"span":[671,4,31]},{"path":[4,36,2,5,5],"span":[671,4,10]},{"path":[4,36,2,5,1],"span":[671,11,26]},{"path":[4,36,2,5,3],"span":[671,29,30]},{"path":[4,36,2,6],"span":[672,4,23]},{"path":[4,36,2,6,5],"span":[672,4,10]},{"path":[4,36,2,6,1],"span":[672,11,18]},{"path":[4,36,2,6,3],"span":[672,21,22]},{"path":[4,36,2,7],"span":[673,4,32]},{"path":[4,36,2,7,4],"span":[673,4,12]},{"path":[4,36,2,7,5],"span":[673,13,18]},{"path":[4,36,2,7,1],"span":[673,19,27]},{"path":[4,36,2,7,3],"span":[673,30,31]},{"path":[4,36,2,8],"span":[674,4,33]},{"path":[4,36,2,8,4],"span":[674,4,12]},{"path":[4,36,2,8,5],"span":[674,13,19]},{"path":[4,36,2,8,1],"span":[674,20,28]},{"path":[4,36,2,8,3],"span":[674,31,32]},{"path":[4,36,2,9],"span":[675,4,39]},{"path":[4,36,2,9,4],"span":[675,4,12]},{"path":[4,36,2,9,6],"span":[675,13,24]},{"path":[4,36,2,9,1],"span":[675,25,33]},{"path":[4,36,2,9,3],"span":[675,36,38]},{"path":[4,36,2,10],"span":[676,4,32]},{"path":[4,36,2,10,4],"span":[676,4,12]},{"path":[4,36,2,10,5],"span":[676,13,17]},{"path":[4,36,2,10,1],"span":[676,18,26]},{"path":[4,36,2,10,3],"span":[676,29,31]},{"path":[4,36,2,11],"span":[677,4,38]},{"path":[4,36,2,11,4],"span":[677,4,12]},{"path":[4,36,2,11,5],"span":[677,13,19]},{"path":[4,36,2,11,1],"span":[677,20,32]},{"path":[4,36,2,11,3],"span":[677,35,37]},{"path":[4,36,2,12],"span":[678,4,38]},{"path":[4,36,2,12,4],"span":[678,4,12]},{"path":[4,36,2,12,5],"span":[678,13,19]},{"path":[4,36,2,12,1],"span":[678,20,32]},{"path":[4,36,2,12,3],"span":[678,35,37]},{"path":[4,36,2,13],"span":[679,4,35]},{"path":[4,36,2,13,4],"span":[679,4,12]},{"path":[4,36,2,13,5],"span":[679,13,19]},{"path":[4,36,2,13,1],"span":[679,20,29]},{"path":[4,36,2,13,3],"span":[679,32,34]},{"path":[4,36,2,14],"span":[680,4,43]},{"path":[4,36,2,14,4],"span":[680,4,12]},{"path":[4,36,2,14,6],"span":[680,13,29]},{"path":[4,36,2,14,1],"span":[680,30,37]},{"path":[4,36,2,14,3],"span":[680,40,42]},{"path":[4,36,2,15],"span":[681,4,28]},{"path":[4,36,2,15,5],"span":[681,4,10]},{"path":[4,36,2,15,1],"span":[681,11,22]},{"path":[4,36,2,15,3],"span":[681,25,27]},{"path":[4,36,2,16],"span":[682,4,39]},{"path":[4,36,2,16,4],"span":[682,4,12]},{"path":[4,36,2,16,5],"span":[682,13,19]},{"path":[4,36,2,16,1],"span":[682,20,33]},{"path":[4,36,2,16,3],"span":[682,36,38]},{"path":[4,37],"span":[686,0,691,1]},{"path":[4,37,1],"span":[686,8,25]},{"path":[4,37,2,0],"span":[687,2,40]},{"path":[4,37,2,0,4],"span":[687,2,10]},{"path":[4,37,2,0,5],"span":[687,11,16]},{"path":[4,37,2,0,1],"span":[687,17,35]},{"path":[4,37,2,0,3],"span":[687,38,39]},{"path":[4,37,2,1],"span":[688,2,39]},{"path":[4,37,2,1,4],"span":[688,2,10]},{"path":[4,37,2,1,5],"span":[688,11,16]},{"path":[4,37,2,1,1],"span":[688,17,34]},{"path":[4,37,2,1,3],"span":[688,37,38]},{"path":[4,37,2,2],"span":[689,2,44]},{"path":[4,37,2,2,4],"span":[689,2,10]},{"path":[4,37,2,2,5],"span":[689,11,16]},{"path":[4,37,2,2,1],"span":[689,17,39]},{"path":[4,37,2,2,3],"span":[689,42,43]},{"path":[4,37,2,3],"span":[690,2,27]},{"path":[4,37,2,3,4],"span":[690,2,10]},{"path":[4,37,2,3,5],"span":[690,11,17]},{"path":[4,37,2,3,1],"span":[690,18,22]},{"path":[4,37,2,3,3],"span":[690,25,26]},{"path":[4,38],"span":[693,0,717,1]},{"path":[4,38,1],"span":[693,8,24]},{"path":[4,38,4,0],"span":[694,2,703,3]},{"path":[4,38,4,0,1],"span":[694,7,19]},{"path":[4,38,4,0,2,0],"span":[695,4,25]},{"path":[4,38,4,0,2,0,1],"span":[695,4,20]},{"path":[4,38,4,0,2,0,2],"span":[695,23,24]},{"path":[4,38,4,0,2,1],"span":[696,4,16]},{"path":[4,38,4,0,2,1,1],"span":[696,4,11]},{"path":[4,38,4,0,2,1,2],"span":[696,14,15]},{"path":[4,38,4,0,2,2],"span":[697,4,22]},{"path":[4,38,4,0,2,2,1],"span":[697,4,17]},{"path":[4,38,4,0,2,2,2],"span":[697,20,21]},{"path":[4,38,4,0,2,3],"span":[698,4,21]},{"path":[4,38,4,0,2,3,1],"span":[698,4,16]},{"path":[4,38,4,0,2,3,2],"span":[698,19,20]},{"path":[4,38,4,0,2,4],"span":[699,4,16]},{"path":[4,38,4,0,2,4,1],"span":[699,4,11]},{"path":[4,38,4,0,2,4,2],"span":[699,14,15]},{"path":[4,38,4,0,2,5],"span":[700,4,25]},{"path":[4,38,4,0,2,5,1],"span":[700,4,20]},{"path":[4,38,4,0,2,5,2],"span":[700,23,24]},{"path":[4,38,4,0,2,6],"span":[701,4,22]},{"path":[4,38,4,0,2,6,1],"span":[701,4,17]},{"path":[4,38,4,0,2,6,2],"span":[701,20,21]},{"path":[4,38,4,0,2,7],"span":[702,4,15]},{"path":[4,38,4,0,2,7,1],"span":[702,4,10]},{"path":[4,38,4,0,2,7,2],"span":[702,13,14]},{"path":[4,38,4,1],"span":[705,2,711,3]},{"path":[4,38,4,1,1],"span":[705,7,25]},{"path":[4,38,4,1,2,0],"span":[706,4,32]},{"path":[4,38,4,1,2,0,1],"span":[706,4,27]},{"path":[4,38,4,1,2,0,2],"span":[706,30,31]},{"path":[4,38,4,1,2,1],"span":[707,4,27]},{"path":[4,38,4,1,2,1,1],"span":[707,4,22]},{"path":[4,38,4,1,2,1,2],"span":[707,25,26]},{"path":[4,38,4,1,2,2],"span":[708,4,18]},{"path":[4,38,4,1,2,2,1],"span":[708,4,13]},{"path":[4,38,4,1,2,2,2],"span":[708,16,17]},{"path":[4,38,4,1,2,3],"span":[709,4,15]},{"path":[4,38,4,1,2,3,1],"span":[709,4,10]},{"path":[4,38,4,1,2,3,2],"span":[709,13,14]},{"path":[4,38,4,1,2,4],"span":[710,4,17]},{"path":[4,38,4,1,2,4,1],"span":[710,4,12]},{"path":[4,38,4,1,2,4,2],"span":[710,15,16]},{"path":[4,38,2,0],"span":[713,2,34]},{"path":[4,38,2,0,4],"span":[713,2,10]},{"path":[4,38,2,0,6],"span":[713,11,23]},{"path":[4,38,2,0,1],"span":[713,24,29]},{"path":[4,38,2,0,3],"span":[713,32,33]},{"path":[4,38,2,1],"span":[714,2,47]},{"path":[4,38,2,1,4],"span":[714,2,10]},{"path":[4,38,2,1,6],"span":[714,11,29]},{"path":[4,38,2,1,1],"span":[714,30,42]},{"path":[4,38,2,1,3],"span":[714,45,46]},{"path":[4,38,2,2],"span":[715,2,27]},{"path":[4,38,2,2,4],"span":[715,2,10]},{"path":[4,38,2,2,5],"span":[715,11,17]},{"path":[4,38,2,2,1],"span":[715,18,22]},{"path":[4,38,2,2,3],"span":[715,25,26]},{"path":[4,38,2,3],"span":[716,2,34]},{"path":[4,38,2,3,4],"span":[716,2,10]},{"path":[4,38,2,3,5],"span":[716,11,17]},{"path":[4,38,2,3,1],"span":[716,18,29]},{"path":[4,38,2,3,3],"span":[716,32,33]},{"path":[4,39],"span":[719,0,722,1]},{"path":[4,39,1],"span":[719,8,24]},{"path":[4,39,2,0],"span":[720,2,27]},{"path":[4,39,2,0,4],"span":[720,2,10]},{"path":[4,39,2,0,5],"span":[720,11,17]},{"path":[4,39,2,0,1],"span":[720,18,22]},{"path":[4,39,2,0,3],"span":[720,25,26]},{"path":[4,39,2,1],"span":[721,2,50]},{"path":[4,39,2,1,4],"span":[721,2,10]},{"path":[4,39,2,1,6],"span":[721,11,31]},{"path":[4,39,2,1,1],"span":[721,32,45]},{"path":[4,39,2,1,3],"span":[721,48,49]},{"path":[4,40],"span":[724,0,726,1]},{"path":[4,40,1],"span":[724,8,28]},{"path":[4,40,2,0],"span":[725,2,27]},{"path":[4,40,2,0,4],"span":[725,2,10]},{"path":[4,40,2,0,5],"span":[725,11,17]},{"path":[4,40,2,0,1],"span":[725,18,22]},{"path":[4,40,2,0,3],"span":[725,25,26]},{"path":[4,41],"span":[731,1,744,1],"leadingComments":"\n Log entry for windows sql server change log, tracking install, uninstall and update.\n"},{"path":[4,41,1],"span":[731,9,36]},{"path":[4,41,4,0],"span":[732,2,736,3]},{"path":[4,41,4,0,1],"span":[732,7,16]},{"path":[4,41,4,0,2,0],"span":[733,4,16]},{"path":[4,41,4,0,2,0,1],"span":[733,4,11]},{"path":[4,41,4,0,2,0,2],"span":[733,14,15]},{"path":[4,41,4,0,2,1],"span":[734,4,18]},{"path":[4,41,4,0,2,1,1],"span":[734,4,13]},{"path":[4,41,4,0,2,1,2],"span":[734,16,17]},{"path":[4,41,4,0,2,2],"span":[735,4,15]},{"path":[4,41,4,0,2,2,1],"span":[735,4,10]},{"path":[4,41,4,0,2,2,2],"span":[735,13,14]},{"path":[4,41,2,0],"span":[738,2,27]},{"path":[4,41,2,0,6],"span":[738,2,11]},{"path":[4,41,2,0,1],"span":[738,12,22]},{"path":[4,41,2,0,3],"span":[738,25,26]},{"path":[4,41,2,1],"span":[740,2,38]},{"path":[4,41,2,1,6],"span":[740,2,27]},{"path":[4,41,2,1,1],"span":[740,28,33]},{"path":[4,41,2,1,3],"span":[740,36,37]},{"path":[4,41,2,2],"span":[741,2,45]},{"path":[4,41,2,2,4],"span":[741,2,10]},{"path":[4,41,2,2,6],"span":[741,11,36]},{"path":[4,41,2,2,1],"span":[741,37,40]},{"path":[4,41,2,2,3],"span":[741,43,44]},{"path":[4,41,2,3],"span":[743,2,42]},{"path":[4,41,2,3,6],"span":[743,2,18]},{"path":[4,41,2,3,1],"span":[743,19,37]},{"path":[4,41,2,3,3],"span":[743,40,41]},{"path":[4,42],"span":[749,0,783,1],"leadingComments":"\n General section for any HW, normalized and with raw data.\n"},{"path":[4,42,1],"span":[749,8,20]},{"path":[4,42,2,0],"span":[750,2,29]},{"path":[4,42,2,0,4],"span":[750,2,10]},{"path":[4,42,2,0,5],"span":[750,11,16]},{"path":[4,42,2,0,1],"span":[750,17,24]},{"path":[4,42,2,0,3],"span":[750,27,28]},{"path":[4,42,2,1],"span":[753,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,42,2,1,4],"span":[753,2,10]},{"path":[4,42,2,1,5],"span":[753,11,16]},{"path":[4,42,2,1,1],"span":[753,17,24]},{"path":[4,42,2,1,3],"span":[753,27,28]},{"path":[4,42,2,2],"span":[756,2,30],"leadingComments":" catalog id of: CatalogModel\n"},{"path":[4,42,2,2,4],"span":[756,2,10]},{"path":[4,42,2,2,5],"span":[756,11,16]},{"path":[4,42,2,2,1],"span":[756,17,25]},{"path":[4,42,2,2,3],"span":[756,28,29]},{"path":[4,42,2,3],"span":[759,2,31],"leadingComments":" catalog id of: CatalogModel\n"},{"path":[4,42,2,3,4],"span":[759,2,10]},{"path":[4,42,2,3,5],"span":[759,11,16]},{"path":[4,42,2,3,1],"span":[759,17,26]},{"path":[4,42,2,3,3],"span":[759,29,30]},{"path":[4,42,2,4],"span":[761,2,30]},{"path":[4,42,2,4,4],"span":[761,2,10]},{"path":[4,42,2,4,5],"span":[761,11,15]},{"path":[4,42,2,4,1],"span":[761,16,25]},{"path":[4,42,2,4,3],"span":[761,28,29]},{"path":[4,42,2,5],"span":[762,2,29]},{"path":[4,42,2,5,4],"span":[762,2,10]},{"path":[4,42,2,5,5],"span":[762,11,17]},{"path":[4,42,2,5,1],"span":[762,18,24]},{"path":[4,42,2,5,3],"span":[762,27,28]},{"path":[4,42,2,6],"span":[764,2,33],"trailingComments":" e.g.: \"SMART_HOME\"\n"},{"path":[4,42,2,6,4],"span":[764,2,10]},{"path":[4,42,2,6,5],"span":[764,11,17]},{"path":[4,42,2,6,1],"span":[764,18,27]},{"path":[4,42,2,6,3],"span":[764,30,32]},{"path":[4,42,2,7],"span":[765,2,36],"trailingComments":" e.g.: \"Smart Device\"\n"},{"path":[4,42,2,7,4],"span":[765,2,10]},{"path":[4,42,2,7,5],"span":[765,11,17]},{"path":[4,42,2,7,1],"span":[765,18,30]},{"path":[4,42,2,7,3],"span":[765,33,35]},{"path":[4,42,2,8],"span":[766,2,34],"trailingComments":" e.g.: \"Smart Home\"\n"},{"path":[4,42,2,8,4],"span":[766,2,10]},{"path":[4,42,2,8,5],"span":[766,11,17]},{"path":[4,42,2,8,1],"span":[766,18,28]},{"path":[4,42,2,8,3],"span":[766,31,33]},{"path":[4,42,2,9],"span":[768,2,33]},{"path":[4,42,2,9,4],"span":[768,2,10]},{"path":[4,42,2,9,5],"span":[768,11,17]},{"path":[4,42,2,9,1],"span":[768,18,27]},{"path":[4,42,2,9,3],"span":[768,30,32]},{"path":[4,42,2,10],"span":[769,2,34]},{"path":[4,42,2,10,4],"span":[769,2,10]},{"path":[4,42,2,10,5],"span":[769,11,17]},{"path":[4,42,2,10,1],"span":[769,18,28]},{"path":[4,42,2,10,3],"span":[769,31,33]},{"path":[4,42,2,11],"span":[770,2,35]},{"path":[4,42,2,11,4],"span":[770,2,10]},{"path":[4,42,2,11,5],"span":[770,11,17]},{"path":[4,42,2,11,1],"span":[770,18,29]},{"path":[4,42,2,11,3],"span":[770,32,34]},{"path":[4,42,2,12],"span":[772,2,27]},{"path":[4,42,2,12,4],"span":[772,2,10]},{"path":[4,42,2,12,5],"span":[772,11,17]},{"path":[4,42,2,12,1],"span":[772,18,21]},{"path":[4,42,2,12,3],"span":[772,24,26]},{"path":[4,42,2,13],"span":[773,2,27]},{"path":[4,42,2,13,4],"span":[773,2,10]},{"path":[4,42,2,13,5],"span":[773,11,16]},{"path":[4,42,2,13,1],"span":[773,17,21]},{"path":[4,42,2,13,3],"span":[773,24,26]},{"path":[4,42,2,14],"span":[775,2,38]},{"path":[4,42,2,14,4],"span":[775,2,10]},{"path":[4,42,2,14,6],"span":[775,11,27]},{"path":[4,42,2,14,1],"span":[775,28,32]},{"path":[4,42,2,14,3],"span":[775,35,37]},{"path":[4,42,2,15],"span":[778,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,42,2,15,4],"span":[778,2,10]},{"path":[4,42,2,15,6],"span":[778,11,23]},{"path":[4,42,2,15,1],"span":[778,24,37]},{"path":[4,42,2,15,3],"span":[778,40,42]},{"path":[4,42,2,16],"span":[780,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,42,2,16,4],"span":[780,2,10]},{"path":[4,42,2,16,6],"span":[780,11,23]},{"path":[4,42,2,16,1],"span":[780,24,37]},{"path":[4,42,2,16,3],"span":[780,40,42]},{"path":[4,42,2,17],"span":[782,2,44],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,42,2,17,4],"span":[782,2,10]},{"path":[4,42,2,17,6],"span":[782,11,23]},{"path":[4,42,2,17,1],"span":[782,24,38]},{"path":[4,42,2,17,3],"span":[782,41,43]},{"path":[4,43],"span":[785,0,796,1]},{"path":[4,43,1],"span":[785,8,24]},{"path":[4,43,2,0],"span":[786,2,35]},{"path":[4,43,2,0,4],"span":[786,2,10]},{"path":[4,43,2,0,5],"span":[786,11,17]},{"path":[4,43,2,0,1],"span":[786,18,30]},{"path":[4,43,2,0,3],"span":[786,33,34]},{"path":[4,43,2,1],"span":[787,2,28]},{"path":[4,43,2,1,4],"span":[787,2,10]},{"path":[4,43,2,1,5],"span":[787,11,17]},{"path":[4,43,2,1,1],"span":[787,18,23]},{"path":[4,43,2,1,3],"span":[787,26,27]},{"path":[4,43,2,2],"span":[788,2,35]},{"path":[4,43,2,2,4],"span":[788,2,10]},{"path":[4,43,2,2,5],"span":[788,11,17]},{"path":[4,43,2,2,1],"span":[788,18,30]},{"path":[4,43,2,2,3],"span":[788,33,34]},{"path":[4,43,2,3],"span":[789,2,36]},{"path":[4,43,2,3,4],"span":[789,2,10]},{"path":[4,43,2,3,5],"span":[789,11,17]},{"path":[4,43,2,3,1],"span":[789,18,31]},{"path":[4,43,2,3,3],"span":[789,34,35]},{"path":[4,43,2,4],"span":[790,2,33]},{"path":[4,43,2,4,4],"span":[790,2,10]},{"path":[4,43,2,4,5],"span":[790,11,17]},{"path":[4,43,2,4,1],"span":[790,18,28]},{"path":[4,43,2,4,3],"span":[790,31,32]},{"path":[4,43,2,5],"span":[791,2,29]},{"path":[4,43,2,5,4],"span":[791,2,10]},{"path":[4,43,2,5,5],"span":[791,11,16]},{"path":[4,43,2,5,1],"span":[791,18,24]},{"path":[4,43,2,5,3],"span":[791,27,28]},{"path":[4,43,2,6],"span":[792,2,32],"trailingComments":" mac\n"},{"path":[4,43,2,6,4],"span":[792,2,10]},{"path":[4,43,2,6,5],"span":[792,11,17]},{"path":[4,43,2,6,1],"span":[792,18,27]},{"path":[4,43,2,6,3],"span":[792,30,31]},{"path":[4,43,2,7],"span":[793,2,39],"trailingComments":" mac\n"},{"path":[4,43,2,7,4],"span":[793,2,10]},{"path":[4,43,2,7,5],"span":[793,11,17]},{"path":[4,43,2,7,1],"span":[793,18,34]},{"path":[4,43,2,7,3],"span":[793,37,38]},{"path":[4,43,2,8],"span":[794,2,41],"trailingComments":" mac\n"},{"path":[4,43,2,8,4],"span":[794,2,10]},{"path":[4,43,2,8,5],"span":[794,11,17]},{"path":[4,43,2,8,1],"span":[794,18,36]},{"path":[4,43,2,8,3],"span":[794,39,40]},{"path":[4,44],"span":[800,0,823,1]},{"path":[4,44,1],"span":[800,8,23]},{"path":[4,44,2,0],"span":[802,2,24],"leadingComments":" catalog id of: CatalogOs\n"},{"path":[4,44,2,0,4],"span":[802,2,10]},{"path":[4,44,2,0,5],"span":[802,11,16]},{"path":[4,44,2,0,1],"span":[802,17,19]},{"path":[4,44,2,0,3],"span":[802,22,23]},{"path":[4,44,2,1],"span":[805,2,30],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,44,2,1,4],"span":[805,2,10]},{"path":[4,44,2,1,5],"span":[805,11,16]},{"path":[4,44,2,1,1],"span":[805,17,24]},{"path":[4,44,2,1,3],"span":[805,27,29]},{"path":[4,44,2,2],"span":[807,2,27]},{"path":[4,44,2,2,4],"span":[807,2,10]},{"path":[4,44,2,2,5],"span":[807,11,17]},{"path":[4,44,2,2,1],"span":[807,18,22]},{"path":[4,44,2,2,3],"span":[807,25,26]},{"path":[4,44,2,3],"span":[808,2,30]},{"path":[4,44,2,3,4],"span":[808,2,10]},{"path":[4,44,2,3,5],"span":[808,11,17]},{"path":[4,44,2,3,1],"span":[808,18,25]},{"path":[4,44,2,3,3],"span":[808,28,29]},{"path":[4,44,2,4],"span":[809,2,28]},{"path":[4,44,2,4,4],"span":[809,2,10]},{"path":[4,44,2,4,5],"span":[809,11,17]},{"path":[4,44,2,4,1],"span":[809,18,23]},{"path":[4,44,2,4,3],"span":[809,26,27]},{"path":[4,44,2,5],"span":[811,2,33]},{"path":[4,44,2,5,4],"span":[811,2,10]},{"path":[4,44,2,5,5],"span":[811,11,17]},{"path":[4,44,2,5,1],"span":[811,18,28]},{"path":[4,44,2,5,3],"span":[811,31,32]},{"path":[4,44,2,6],"span":[813,2,26]},{"path":[4,44,2,6,4],"span":[813,2,10]},{"path":[4,44,2,6,5],"span":[813,11,17]},{"path":[4,44,2,6,1],"span":[813,18,21]},{"path":[4,44,2,6,3],"span":[813,24,25]},{"path":[4,44,2,7],"span":[814,2,29]},{"path":[4,44,2,7,4],"span":[814,2,10]},{"path":[4,44,2,7,5],"span":[814,11,17]},{"path":[4,44,2,7,1],"span":[814,18,24]},{"path":[4,44,2,7,3],"span":[814,27,28]},{"path":[4,44,2,8],"span":[816,2,26]},{"path":[4,44,2,8,4],"span":[816,2,10]},{"path":[4,44,2,8,5],"span":[816,11,16]},{"path":[4,44,2,8,1],"span":[816,17,21]},{"path":[4,44,2,8,3],"span":[816,24,25]},{"path":[4,44,8,0],"span":[818,2,822,3]},{"path":[4,44,8,0,1],"span":[818,8,12]},{"path":[4,44,2,9],"span":[819,4,44]},{"path":[4,44,2,9,6],"span":[819,4,30]},{"path":[4,44,2,9,1],"span":[819,31,38]},{"path":[4,44,2,9,3],"span":[819,41,43]},{"path":[4,44,2,10],"span":[820,4,36]},{"path":[4,44,2,10,6],"span":[820,4,26]},{"path":[4,44,2,10,1],"span":[820,27,30]},{"path":[4,44,2,10,3],"span":[820,33,35]},{"path":[4,44,2,11],"span":[821,4,40]},{"path":[4,44,2,11,6],"span":[821,4,28]},{"path":[4,44,2,11,1],"span":[821,29,34]},{"path":[4,44,2,11,3],"span":[821,37,39]},{"path":[4,45],"span":[825,0,836,1]},{"path":[4,45,1],"span":[825,8,30]},{"path":[4,45,2,0],"span":[826,2,37]},{"path":[4,45,2,0,4],"span":[826,2,10]},{"path":[4,45,2,0,5],"span":[826,11,17]},{"path":[4,45,2,0,1],"span":[826,18,32]},{"path":[4,45,2,0,3],"span":[826,35,36]},{"path":[4,45,2,1],"span":[827,2,37]},{"path":[4,45,2,1,4],"span":[827,2,10]},{"path":[4,45,2,1,5],"span":[827,11,17]},{"path":[4,45,2,1,1],"span":[827,18,32]},{"path":[4,45,2,1,3],"span":[827,35,36]},{"path":[4,45,2,2],"span":[828,2,34]},{"path":[4,45,2,2,4],"span":[828,2,10]},{"path":[4,45,2,2,5],"span":[828,11,17]},{"path":[4,45,2,2,1],"span":[828,18,29]},{"path":[4,45,2,2,3],"span":[828,32,33]},{"path":[4,45,2,3],"span":[829,2,32]},{"path":[4,45,2,3,4],"span":[829,2,10]},{"path":[4,45,2,3,5],"span":[829,11,17]},{"path":[4,45,2,3,1],"span":[829,18,27]},{"path":[4,45,2,3,3],"span":[829,30,31]},{"path":[4,45,2,4],"span":[830,2,36]},{"path":[4,45,2,4,4],"span":[830,2,10]},{"path":[4,45,2,4,5],"span":[830,11,17]},{"path":[4,45,2,4,1],"span":[830,18,31]},{"path":[4,45,2,4,3],"span":[830,34,35]},{"path":[4,45,2,5],"span":[831,2,32]},{"path":[4,45,2,5,4],"span":[831,2,10]},{"path":[4,45,2,5,5],"span":[831,11,17]},{"path":[4,45,2,5,1],"span":[831,18,27]},{"path":[4,45,2,5,3],"span":[831,30,31]},{"path":[4,45,2,6],"span":[832,2,30]},{"path":[4,45,2,6,4],"span":[832,2,10]},{"path":[4,45,2,6,5],"span":[832,11,17]},{"path":[4,45,2,6,1],"span":[832,18,25]},{"path":[4,45,2,6,3],"span":[832,28,29]},{"path":[4,45,2,7],"span":[833,2,44]},{"path":[4,45,2,7,4],"span":[833,2,10]},{"path":[4,45,2,7,5],"span":[833,11,17]},{"path":[4,45,2,7,1],"span":[833,18,39]},{"path":[4,45,2,7,3],"span":[833,42,43]},{"path":[4,45,2,8],"span":[834,2,53]},{"path":[4,45,2,8,4],"span":[834,2,10]},{"path":[4,45,2,8,5],"span":[834,11,17]},{"path":[4,45,2,8,1],"span":[834,18,48]},{"path":[4,45,2,8,3],"span":[834,51,52]},{"path":[4,45,2,9],"span":[835,2,40]},{"path":[4,45,2,9,4],"span":[835,2,10]},{"path":[4,45,2,9,5],"span":[835,11,17]},{"path":[4,45,2,9,1],"span":[835,18,34]},{"path":[4,45,2,9,3],"span":[835,37,39]},{"path":[4,46],"span":[838,0,844,1]},{"path":[4,46,1],"span":[838,8,32]},{"path":[4,46,2,0],"span":[839,2,34]},{"path":[4,46,2,0,4],"span":[839,2,10]},{"path":[4,46,2,0,5],"span":[839,11,17]},{"path":[4,46,2,0,1],"span":[839,18,29]},{"path":[4,46,2,0,3],"span":[839,32,33]},{"path":[4,46,2,1],"span":[840,2,37]},{"path":[4,46,2,1,4],"span":[840,2,10]},{"path":[4,46,2,1,5],"span":[840,11,17]},{"path":[4,46,2,1,1],"span":[840,18,32]},{"path":[4,46,2,1,3],"span":[840,35,36]},{"path":[4,46,2,2],"span":[841,2,37]},{"path":[4,46,2,2,4],"span":[841,2,10]},{"path":[4,46,2,2,5],"span":[841,11,17]},{"path":[4,46,2,2,1],"span":[841,18,32]},{"path":[4,46,2,2,3],"span":[841,35,36]},{"path":[4,46,2,3],"span":[842,2,35]},{"path":[4,46,2,3,4],"span":[842,2,10]},{"path":[4,46,2,3,5],"span":[842,11,17]},{"path":[4,46,2,3,1],"span":[842,18,30]},{"path":[4,46,2,3,3],"span":[842,33,34]},{"path":[4,46,2,4],"span":[843,2,33]},{"path":[4,46,2,4,4],"span":[843,2,10]},{"path":[4,46,2,4,5],"span":[843,11,17]},{"path":[4,46,2,4,1],"span":[843,18,28]},{"path":[4,46,2,4,3],"span":[843,31,32]},{"path":[4,47],"span":[846,0,899,1]},{"path":[4,47,1],"span":[846,8,34]},{"path":[4,47,2,0],"span":[847,2,30]},{"path":[4,47,2,0,4],"span":[847,2,10]},{"path":[4,47,2,0,5],"span":[847,11,17]},{"path":[4,47,2,0,1],"span":[847,18,25]},{"path":[4,47,2,0,3],"span":[847,28,29]},{"path":[4,47,2,1],"span":[848,2,34]},{"path":[4,47,2,1,4],"span":[848,2,10]},{"path":[4,47,2,1,5],"span":[848,11,16]},{"path":[4,47,2,1,1],"span":[848,17,29]},{"path":[4,47,2,1,3],"span":[848,32,33]},{"path":[4,47,2,2],"span":[849,2,28],"trailingComments":" \"WindowsVersion\": \"10.0.19045\"\n"},{"path":[4,47,2,2,4],"span":[849,2,10]},{"path":[4,47,2,2,5],"span":[849,11,17]},{"path":[4,47,2,2,1],"span":[849,18,23]},{"path":[4,47,2,2,3],"span":[849,26,27]},{"path":[4,47,2,3],"span":[850,2,35],"trailingComments":" OsVersion\": \"22H2\",\n"},{"path":[4,47,2,3,4],"span":[850,2,10]},{"path":[4,47,2,3,5],"span":[850,11,17]},{"path":[4,47,2,3,1],"span":[850,18,30]},{"path":[4,47,2,3,3],"span":[850,33,34]},{"path":[4,47,2,4],"span":[851,2,41]},{"path":[4,47,2,4,4],"span":[851,2,10]},{"path":[4,47,2,4,5],"span":[851,11,15]},{"path":[4,47,2,4,1],"span":[851,16,36]},{"path":[4,47,2,4,3],"span":[851,39,40]},{"path":[4,47,2,5],"span":[852,2,35]},{"path":[4,47,2,5,4],"span":[852,2,10]},{"path":[4,47,2,5,5],"span":[852,11,15]},{"path":[4,47,2,5,1],"span":[852,16,30]},{"path":[4,47,2,5,3],"span":[852,33,34]},{"path":[4,47,2,6],"span":[853,2,39]},{"path":[4,47,2,6,4],"span":[853,2,10]},{"path":[4,47,2,6,5],"span":[853,11,15]},{"path":[4,47,2,6,1],"span":[853,16,34]},{"path":[4,47,2,6,3],"span":[853,37,38]},{"path":[4,47,2,7],"span":[855,2,31],"trailingComments":" \"OsCode\": \"10.0.19045\" - with S if server\n"},{"path":[4,47,2,7,4],"span":[855,2,10]},{"path":[4,47,2,7,5],"span":[855,11,17]},{"path":[4,47,2,7,1],"span":[855,18,25]},{"path":[4,47,2,7,3],"span":[855,28,30]},{"path":[4,47,2,8],"span":[857,2,35]},{"path":[4,47,2,8,4],"span":[857,2,10]},{"path":[4,47,2,8,5],"span":[857,11,17]},{"path":[4,47,2,8,1],"span":[857,18,29]},{"path":[4,47,2,8,3],"span":[857,32,34]},{"path":[4,47,2,9],"span":[858,2,36],"trailingComments":" \"OsBuildNumber\": \"2486\",\n"},{"path":[4,47,2,9,4],"span":[858,2,10]},{"path":[4,47,2,9,5],"span":[858,11,17]},{"path":[4,47,2,9,1],"span":[858,18,30]},{"path":[4,47,2,9,3],"span":[858,33,35]},{"path":[4,47,2,10],"span":[859,2,34]},{"path":[4,47,2,10,4],"span":[859,2,10]},{"path":[4,47,2,10,5],"span":[859,11,17]},{"path":[4,47,2,10,1],"span":[859,18,28]},{"path":[4,47,2,10,3],"span":[859,31,33]},{"path":[4,47,2,11],"span":[860,2,31]},{"path":[4,47,2,11,4],"span":[860,2,10]},{"path":[4,47,2,11,5],"span":[860,11,17]},{"path":[4,47,2,11,1],"span":[860,18,25]},{"path":[4,47,2,11,3],"span":[860,28,30]},{"path":[4,47,2,12],"span":[861,2,32]},{"path":[4,47,2,12,4],"span":[861,2,10]},{"path":[4,47,2,12,5],"span":[861,11,17]},{"path":[4,47,2,12,1],"span":[861,18,26]},{"path":[4,47,2,12,3],"span":[861,29,31]},{"path":[4,47,2,13],"span":[862,2,36]},{"path":[4,47,2,13,4],"span":[862,2,10]},{"path":[4,47,2,13,5],"span":[862,11,17]},{"path":[4,47,2,13,1],"span":[862,18,30]},{"path":[4,47,2,13,3],"span":[862,33,35]},{"path":[4,47,2,14],"span":[863,2,35]},{"path":[4,47,2,14,4],"span":[863,2,10]},{"path":[4,47,2,14,5],"span":[863,11,17]},{"path":[4,47,2,14,1],"span":[863,18,29]},{"path":[4,47,2,14,3],"span":[863,32,34]},{"path":[4,47,2,15],"span":[864,2,39]},{"path":[4,47,2,15,4],"span":[864,2,10]},{"path":[4,47,2,15,5],"span":[864,11,16]},{"path":[4,47,2,15,1],"span":[864,17,33]},{"path":[4,47,2,15,3],"span":[864,36,38]},{"path":[4,47,2,16],"span":[865,2,27]},{"path":[4,47,2,16,4],"span":[865,2,10]},{"path":[4,47,2,16,5],"span":[865,11,15]},{"path":[4,47,2,16,1],"span":[865,16,21]},{"path":[4,47,2,16,3],"span":[865,24,26]},{"path":[4,47,2,17],"span":[866,2,35]},{"path":[4,47,2,17,4],"span":[866,2,10]},{"path":[4,47,2,17,5],"span":[866,11,17]},{"path":[4,47,2,17,1],"span":[866,18,29]},{"path":[4,47,2,17,3],"span":[866,32,34]},{"path":[4,47,2,18],"span":[867,2,52]},{"path":[4,47,2,18,4],"span":[867,2,10]},{"path":[4,47,2,18,5],"span":[867,11,17]},{"path":[4,47,2,18,1],"span":[867,18,46]},{"path":[4,47,2,18,3],"span":[867,49,51]},{"path":[4,47,2,19],"span":[868,2,55]},{"path":[4,47,2,19,4],"span":[868,2,10]},{"path":[4,47,2,19,6],"span":[868,11,36]},{"path":[4,47,2,19,1],"span":[868,37,49]},{"path":[4,47,2,19,3],"span":[868,52,54]},{"path":[4,47,2,20],"span":[869,2,47]},{"path":[4,47,2,20,4],"span":[869,2,10]},{"path":[4,47,2,20,5],"span":[869,11,17]},{"path":[4,47,2,20,1],"span":[869,18,41]},{"path":[4,47,2,20,3],"span":[869,44,46]},{"path":[4,47,2,21],"span":[870,2,48]},{"path":[4,47,2,21,4],"span":[870,2,10]},{"path":[4,47,2,21,5],"span":[870,11,17]},{"path":[4,47,2,21,1],"span":[870,18,42]},{"path":[4,47,2,21,3],"span":[870,45,47]},{"path":[4,47,2,22],"span":[871,2,36]},{"path":[4,47,2,22,4],"span":[871,2,10]},{"path":[4,47,2,22,5],"span":[871,11,17]},{"path":[4,47,2,22,1],"span":[871,18,30]},{"path":[4,47,2,22,3],"span":[871,33,35]},{"path":[4,47,2,23],"span":[872,2,40]},{"path":[4,47,2,23,4],"span":[872,2,10]},{"path":[4,47,2,23,6],"span":[872,11,22]},{"path":[4,47,2,23,1],"span":[872,23,34]},{"path":[4,47,2,23,3],"span":[872,37,39]},{"path":[4,47,2,24],"span":[873,2,45]},{"path":[4,47,2,24,4],"span":[873,2,10]},{"path":[4,47,2,24,6],"span":[873,11,22]},{"path":[4,47,2,24,1],"span":[873,23,39]},{"path":[4,47,2,24,3],"span":[873,42,44]},{"path":[4,47,2,25],"span":[874,2,36]},{"path":[4,47,2,25,4],"span":[874,2,10]},{"path":[4,47,2,25,6],"span":[874,11,22]},{"path":[4,47,2,25,1],"span":[874,23,30]},{"path":[4,47,2,25,3],"span":[874,33,35]},{"path":[4,47,2,26],"span":[875,2,39]},{"path":[4,47,2,26,4],"span":[875,2,10]},{"path":[4,47,2,26,5],"span":[875,11,17]},{"path":[4,47,2,26,1],"span":[875,18,33]},{"path":[4,47,2,26,3],"span":[875,36,38]},{"path":[4,47,2,27],"span":[876,2,43]},{"path":[4,47,2,27,4],"span":[876,2,10]},{"path":[4,47,2,27,5],"span":[876,11,17]},{"path":[4,47,2,27,1],"span":[876,18,37]},{"path":[4,47,2,27,3],"span":[876,40,42]},{"path":[4,47,2,28],"span":[877,2,39]},{"path":[4,47,2,28,4],"span":[877,2,10]},{"path":[4,47,2,28,5],"span":[877,11,17]},{"path":[4,47,2,28,1],"span":[877,18,33]},{"path":[4,47,2,28,3],"span":[877,36,38]},{"path":[4,47,2,29],"span":[878,2,37]},{"path":[4,47,2,29,4],"span":[878,2,10]},{"path":[4,47,2,29,5],"span":[878,11,17]},{"path":[4,47,2,29,1],"span":[878,18,31]},{"path":[4,47,2,29,3],"span":[878,34,36]},{"path":[4,47,2,30],"span":[879,2,50]},{"path":[4,47,2,30,4],"span":[879,2,10]},{"path":[4,47,2,30,5],"span":[879,11,17]},{"path":[4,47,2,30,1],"span":[879,18,44]},{"path":[4,47,2,30,3],"span":[879,47,49]},{"path":[4,47,2,31],"span":[880,2,50]},{"path":[4,47,2,31,4],"span":[880,2,10]},{"path":[4,47,2,31,5],"span":[880,11,17]},{"path":[4,47,2,31,1],"span":[880,18,44]},{"path":[4,47,2,31,3],"span":[880,47,49]},{"path":[4,47,2,32],"span":[881,2,51]},{"path":[4,47,2,32,4],"span":[881,2,10]},{"path":[4,47,2,32,5],"span":[881,11,17]},{"path":[4,47,2,32,1],"span":[881,18,45]},{"path":[4,47,2,32,3],"span":[881,48,50]},{"path":[4,47,2,33],"span":[882,2,30]},{"path":[4,47,2,33,4],"span":[882,2,10]},{"path":[4,47,2,33,5],"span":[882,11,17]},{"path":[4,47,2,33,1],"span":[882,18,24]},{"path":[4,47,2,33,3],"span":[882,27,29]},{"path":[4,47,2,34],"span":[883,2,37]},{"path":[4,47,2,34,4],"span":[883,2,10]},{"path":[4,47,2,34,5],"span":[883,11,17]},{"path":[4,47,2,34,1],"span":[883,18,31]},{"path":[4,47,2,34,3],"span":[883,34,36]},{"path":[4,47,2,35],"span":[884,2,40]},{"path":[4,47,2,35,4],"span":[884,2,10]},{"path":[4,47,2,35,5],"span":[884,11,17]},{"path":[4,47,2,35,1],"span":[884,18,34]},{"path":[4,47,2,35,3],"span":[884,37,39]},{"path":[4,47,2,36],"span":[885,2,49]},{"path":[4,47,2,36,4],"span":[885,2,10]},{"path":[4,47,2,36,5],"span":[885,11,17]},{"path":[4,47,2,36,1],"span":[885,18,43]},{"path":[4,47,2,36,3],"span":[885,46,48]},{"path":[4,47,2,37],"span":[886,2,49]},{"path":[4,47,2,37,4],"span":[886,2,10]},{"path":[4,47,2,37,5],"span":[886,11,17]},{"path":[4,47,2,37,1],"span":[886,18,43]},{"path":[4,47,2,37,3],"span":[886,46,48]},{"path":[4,47,2,38],"span":[887,2,41]},{"path":[4,47,2,38,4],"span":[887,2,10]},{"path":[4,47,2,38,5],"span":[887,11,17]},{"path":[4,47,2,38,1],"span":[887,18,35]},{"path":[4,47,2,38,3],"span":[887,38,40]},{"path":[4,47,2,39],"span":[888,2,45]},{"path":[4,47,2,39,4],"span":[888,2,10]},{"path":[4,47,2,39,5],"span":[888,11,17]},{"path":[4,47,2,39,1],"span":[888,18,39]},{"path":[4,47,2,39,3],"span":[888,42,44]},{"path":[4,47,2,40],"span":[889,2,42]},{"path":[4,47,2,40,4],"span":[889,2,10]},{"path":[4,47,2,40,5],"span":[889,11,17]},{"path":[4,47,2,40,1],"span":[889,18,36]},{"path":[4,47,2,40,3],"span":[889,39,41]},{"path":[4,47,2,41],"span":[890,2,46]},{"path":[4,47,2,41,4],"span":[890,2,10]},{"path":[4,47,2,41,5],"span":[890,11,17]},{"path":[4,47,2,41,1],"span":[890,18,40]},{"path":[4,47,2,41,3],"span":[890,43,45]},{"path":[4,47,2,42],"span":[891,2,41]},{"path":[4,47,2,42,4],"span":[891,2,10]},{"path":[4,47,2,42,6],"span":[891,11,22]},{"path":[4,47,2,42,1],"span":[891,23,35]},{"path":[4,47,2,42,3],"span":[891,38,40]},{"path":[4,47,2,43],"span":[892,2,34]},{"path":[4,47,2,43,4],"span":[892,2,10]},{"path":[4,47,2,43,5],"span":[892,11,17]},{"path":[4,47,2,43,1],"span":[892,18,28]},{"path":[4,47,2,43,3],"span":[892,31,33]},{"path":[4,47,2,44],"span":[893,2,36]},{"path":[4,47,2,44,4],"span":[893,2,10]},{"path":[4,47,2,44,5],"span":[893,11,17]},{"path":[4,47,2,44,1],"span":[893,18,30]},{"path":[4,47,2,44,3],"span":[893,33,35]},{"path":[4,47,2,45],"span":[894,2,40]},{"path":[4,47,2,45,4],"span":[894,2,10]},{"path":[4,47,2,45,5],"span":[894,11,17]},{"path":[4,47,2,45,1],"span":[894,18,34]},{"path":[4,47,2,45,3],"span":[894,37,39]},{"path":[4,47,2,46],"span":[895,2,66]},{"path":[4,47,2,46,4],"span":[895,2,10]},{"path":[4,47,2,46,5],"span":[895,11,15]},{"path":[4,47,2,46,1],"span":[895,16,60]},{"path":[4,47,2,46,3],"span":[895,63,65]},{"path":[4,47,2,47],"span":[896,2,60]},{"path":[4,47,2,47,4],"span":[896,2,10]},{"path":[4,47,2,47,5],"span":[896,11,15]},{"path":[4,47,2,47,1],"span":[896,16,54]},{"path":[4,47,2,47,3],"span":[896,57,59]},{"path":[4,47,2,48],"span":[897,2,55]},{"path":[4,47,2,48,4],"span":[897,2,10]},{"path":[4,47,2,48,5],"span":[897,11,15]},{"path":[4,47,2,48,1],"span":[897,16,49]},{"path":[4,47,2,48,3],"span":[897,52,54]},{"path":[4,47,2,49],"span":[898,2,64]},{"path":[4,47,2,49,4],"span":[898,2,10]},{"path":[4,47,2,49,5],"span":[898,11,17]},{"path":[4,47,2,49,1],"span":[898,18,58]},{"path":[4,47,2,49,3],"span":[898,61,63]},{"path":[4,48],"span":[904,0,919,1],"leadingComments":"\n Log entry for OS change log, tracking install, uninstall and update.\n"},{"path":[4,48,1],"span":[904,8,34]},{"path":[4,48,4,0],"span":[905,2,909,3]},{"path":[4,48,4,0,1],"span":[905,7,16]},{"path":[4,48,4,0,2,0],"span":[906,4,16]},{"path":[4,48,4,0,2,0,1],"span":[906,4,11]},{"path":[4,48,4,0,2,0,2],"span":[906,14,15]},{"path":[4,48,4,0,2,1],"span":[907,4,18]},{"path":[4,48,4,0,2,1,1],"span":[907,4,13]},{"path":[4,48,4,0,2,1,2],"span":[907,16,17]},{"path":[4,48,4,0,2,2],"span":[908,4,15]},{"path":[4,48,4,0,2,2,1],"span":[908,4,10]},{"path":[4,48,4,0,2,2,2],"span":[908,13,14]},{"path":[4,48,2,0],"span":[911,2,27]},{"path":[4,48,2,0,6],"span":[911,2,11]},{"path":[4,48,2,0,1],"span":[911,12,22]},{"path":[4,48,2,0,3],"span":[911,25,26]},{"path":[4,48,2,1],"span":[913,2,38]},{"path":[4,48,2,1,6],"span":[913,2,27]},{"path":[4,48,2,1,1],"span":[913,28,33]},{"path":[4,48,2,1,3],"span":[913,36,37]},{"path":[4,48,2,2],"span":[914,2,45]},{"path":[4,48,2,2,4],"span":[914,2,10]},{"path":[4,48,2,2,6],"span":[914,11,36]},{"path":[4,48,2,2,1],"span":[914,37,40]},{"path":[4,48,2,2,3],"span":[914,43,44]},{"path":[4,48,2,3],"span":[916,2,25]},{"path":[4,48,2,3,6],"span":[916,2,17]},{"path":[4,48,2,3,1],"span":[916,18,20]},{"path":[4,48,2,3,3],"span":[916,23,24]},{"path":[4,48,2,4],"span":[917,2,39]},{"path":[4,48,2,4,4],"span":[917,2,10]},{"path":[4,48,2,4,6],"span":[917,11,26]},{"path":[4,48,2,4,1],"span":[917,27,34]},{"path":[4,48,2,4,3],"span":[917,37,38]},{"path":[4,49],"span":[922,0,925,1],"leadingComments":" OS Feature, i.e. WindowsFeature "},{"path":[4,49,1],"span":[922,8,30]},{"path":[4,49,2,0],"span":[923,2,18]},{"path":[4,49,2,0,5],"span":[923,2,8]},{"path":[4,49,2,0,1],"span":[923,9,13]},{"path":[4,49,2,0,3],"span":[923,16,17]},{"path":[4,49,2,1],"span":[924,2,21]},{"path":[4,49,2,1,5],"span":[924,2,8]},{"path":[4,49,2,1,1],"span":[924,9,16]},{"path":[4,49,2,1,3],"span":[924,19,20]},{"path":[4,50],"span":[928,0,944,1],"leadingComments":" OS Patch, i.e. Windows KB's, aka Hotfix, aka QuickFixEngieering "},{"path":[4,50,1],"span":[928,8,28]},{"path":[4,50,2,0],"span":[930,2,16],"leadingComments":" from hot_fix_id, e.g.: \"KB4570334\"\n"},{"path":[4,50,2,0,5],"span":[930,2,8]},{"path":[4,50,2,0,1],"span":[930,9,11]},{"path":[4,50,2,0,3],"span":[930,14,15]},{"path":[4,50,2,1],"span":[933,2,27],"leadingComments":" from description, e.g.: Security Update\n"},{"path":[4,50,2,1,4],"span":[933,2,10]},{"path":[4,50,2,1,5],"span":[933,11,17]},{"path":[4,50,2,1,1],"span":[933,18,22]},{"path":[4,50,2,1,3],"span":[933,25,26]},{"path":[4,50,2,2],"span":[935,2,54]},{"path":[4,50,2,2,4],"span":[935,2,10]},{"path":[4,50,2,2,6],"span":[935,11,36]},{"path":[4,50,2,2,1],"span":[935,37,49]},{"path":[4,50,2,2,3],"span":[935,52,53]},{"path":[4,50,2,3],"span":[938,2,33],"leadingComments":" e.g.: \"NT AUTHORITY\\\\SYSTEM\"\n"},{"path":[4,50,2,3,4],"span":[938,2,10]},{"path":[4,50,2,3,5],"span":[938,11,17]},{"path":[4,50,2,3,1],"span":[938,18,28]},{"path":[4,50,2,3,3],"span":[938,31,32]},{"path":[4,50,2,4],"span":[940,2,31]},{"path":[4,50,2,4,4],"span":[940,2,10]},{"path":[4,50,2,4,5],"span":[940,11,17]},{"path":[4,50,2,4,1],"span":[940,18,26]},{"path":[4,50,2,4,3],"span":[940,29,30]},{"path":[4,50,2,5],"span":[942,2,43]},{"path":[4,50,2,5,4],"span":[942,2,10]},{"path":[4,50,2,5,5],"span":[942,11,17]},{"path":[4,50,2,5,1],"span":[942,18,38]},{"path":[4,50,2,5,3],"span":[942,41,42]},{"path":[4,51],"span":[947,0,950,1],"leadingComments":" Network Interface cards "},{"path":[4,51,1],"span":[947,8,25]},{"path":[4,51,2,0],"span":[948,2,42]},{"path":[4,51,2,0,6],"span":[948,2,27]},{"path":[4,51,2,0,1],"span":[948,28,37]},{"path":[4,51,2,0,3],"span":[948,40,41]},{"path":[4,51,2,1],"span":[949,2,42]},{"path":[4,51,2,1,4],"span":[949,2,10]},{"path":[4,51,2,1,6],"span":[949,11,27]},{"path":[4,51,2,1,1],"span":[949,28,37]},{"path":[4,51,2,1,3],"span":[949,40,41]},{"path":[4,52],"span":[952,0,975,1]},{"path":[4,52,1],"span":[952,8,24]},{"path":[4,52,2,0],"span":[953,2,18]},{"path":[4,52,2,0,5],"span":[953,2,8]},{"path":[4,52,2,0,1],"span":[953,9,13]},{"path":[4,52,2,0,3],"span":[953,16,17]},{"path":[4,52,2,1],"span":[954,2,18]},{"path":[4,52,2,1,5],"span":[954,2,8]},{"path":[4,52,2,1,1],"span":[954,9,13]},{"path":[4,52,2,1,3],"span":[954,16,17]},{"path":[4,52,2,2],"span":[955,2,22]},{"path":[4,52,2,2,5],"span":[955,2,8]},{"path":[4,52,2,2,1],"span":[955,9,17]},{"path":[4,52,2,2,3],"span":[955,20,21]},{"path":[4,52,2,3],"span":[957,2,25]},{"path":[4,52,2,3,4],"span":[957,2,10]},{"path":[4,52,2,3,5],"span":[957,11,17]},{"path":[4,52,2,3,1],"span":[957,18,20]},{"path":[4,52,2,3,3],"span":[957,23,24]},{"path":[4,52,2,4],"span":[959,2,26]},{"path":[4,52,2,4,4],"span":[959,2,10]},{"path":[4,52,2,4,5],"span":[959,11,17]},{"path":[4,52,2,4,1],"span":[959,18,21]},{"path":[4,52,2,4,3],"span":[959,24,25]},{"path":[4,52,2,5],"span":[961,2,33]},{"path":[4,52,2,5,4],"span":[961,2,10]},{"path":[4,52,2,5,5],"span":[961,11,15]},{"path":[4,52,2,5,1],"span":[961,16,28]},{"path":[4,52,2,5,3],"span":[961,31,32]},{"path":[4,52,2,6],"span":[962,2,37]},{"path":[4,52,2,6,4],"span":[962,2,10]},{"path":[4,52,2,6,5],"span":[962,11,17]},{"path":[4,52,2,6,1],"span":[962,18,32]},{"path":[4,52,2,6,3],"span":[962,35,36]},{"path":[4,52,2,7],"span":[964,2,31]},{"path":[4,52,2,7,4],"span":[964,2,10]},{"path":[4,52,2,7,6],"span":[964,11,23]},{"path":[4,52,2,7,1],"span":[964,24,26]},{"path":[4,52,2,7,3],"span":[964,29,30]},{"path":[4,52,2,8],"span":[966,2,33]},{"path":[4,52,2,8,4],"span":[966,2,10]},{"path":[4,52,2,8,5],"span":[966,11,17]},{"path":[4,52,2,8,1],"span":[966,18,28]},{"path":[4,52,2,8,3],"span":[966,31,32]},{"path":[4,52,2,9],"span":[967,2,35]},{"path":[4,52,2,9,4],"span":[967,2,10]},{"path":[4,52,2,9,5],"span":[967,11,17]},{"path":[4,52,2,9,1],"span":[967,18,29]},{"path":[4,52,2,9,3],"span":[967,32,34]},{"path":[4,52,2,10],"span":[969,2,34]},{"path":[4,52,2,10,4],"span":[969,2,10]},{"path":[4,52,2,10,5],"span":[969,11,17]},{"path":[4,52,2,10,1],"span":[969,18,28]},{"path":[4,52,2,10,3],"span":[969,31,33]},{"path":[4,52,2,11],"span":[970,2,37]},{"path":[4,52,2,11,4],"span":[970,2,10]},{"path":[4,52,2,11,5],"span":[970,11,17]},{"path":[4,52,2,11,1],"span":[970,18,31]},{"path":[4,52,2,11,3],"span":[970,34,36]},{"path":[4,52,2,12],"span":[971,2,54]},{"path":[4,52,2,12,4],"span":[971,2,10]},{"path":[4,52,2,12,5],"span":[971,11,17]},{"path":[4,52,2,12,1],"span":[971,18,48]},{"path":[4,52,2,12,3],"span":[971,51,53]},{"path":[4,52,2,13],"span":[973,2,36]},{"path":[4,52,2,13,4],"span":[973,2,10]},{"path":[4,52,2,13,5],"span":[973,11,17]},{"path":[4,52,2,13,1],"span":[973,18,30]},{"path":[4,52,2,13,3],"span":[973,33,35]},{"path":[4,52,2,14],"span":[974,2,37]},{"path":[4,52,2,14,4],"span":[974,2,10]},{"path":[4,52,2,14,5],"span":[974,11,17]},{"path":[4,52,2,14,1],"span":[974,18,31]},{"path":[4,52,2,14,3],"span":[974,34,36]},{"path":[4,53],"span":[978,0,981,1],"leadingComments":" Network IP address with IP and subnet "},{"path":[4,53,1],"span":[978,8,20]},{"path":[4,53,2,0],"span":[979,2,16]},{"path":[4,53,2,0,5],"span":[979,2,8]},{"path":[4,53,2,0,1],"span":[979,9,11]},{"path":[4,53,2,0,3],"span":[979,14,15]},{"path":[4,53,2,1],"span":[980,2,20]},{"path":[4,53,2,1,5],"span":[980,2,8]},{"path":[4,53,2,1,1],"span":[980,9,15]},{"path":[4,53,2,1,3],"span":[980,18,19]},{"path":[4,54],"span":[986,0,991,1],"leadingComments":"\n Network protocols, summary and detailed info.\n"},{"path":[4,54,1],"span":[986,8,24]},{"path":[4,54,2,0],"span":[987,4,33],"trailingComments":" summary list of protocols and data points available\n"},{"path":[4,54,2,0,4],"span":[987,4,12]},{"path":[4,54,2,0,5],"span":[987,13,19]},{"path":[4,54,2,0,1],"span":[987,20,28]},{"path":[4,54,2,0,3],"span":[987,31,32]},{"path":[4,55],"span":[996,0,999,1],"leadingComments":"\n Full port scan.\n"},{"path":[4,55,1],"span":[996,8,16]},{"path":[4,55,2,0],"span":[997,2,42]},{"path":[4,55,2,0,6],"span":[997,2,27]},{"path":[4,55,2,0,1],"span":[997,28,37]},{"path":[4,55,2,0,3],"span":[997,40,41]},{"path":[4,55,2,1],"span":[998,2,40]},{"path":[4,55,2,1,4],"span":[998,2,10]},{"path":[4,55,2,1,6],"span":[998,11,22]},{"path":[4,55,2,1,1],"span":[998,23,35]},{"path":[4,55,2,1,3],"span":[998,38,39]},{"path":[4,56],"span":[1001,0,1010,1]},{"path":[4,56,1],"span":[1001,8,19]},{"path":[4,56,2,0],"span":[1002,2,22]},{"path":[4,56,2,0,5],"span":[1002,2,8]},{"path":[4,56,2,0,1],"span":[1002,9,17]},{"path":[4,56,2,0,3],"span":[1002,20,21]},{"path":[4,56,2,1],"span":[1003,2,24]},{"path":[4,56,2,1,5],"span":[1003,2,7]},{"path":[4,56,2,1,1],"span":[1003,8,19]},{"path":[4,56,2,1,3],"span":[1003,22,23]},{"path":[4,56,2,2],"span":[1004,2,36]},{"path":[4,56,2,2,4],"span":[1004,2,10]},{"path":[4,56,2,2,5],"span":[1004,11,17]},{"path":[4,56,2,2,1],"span":[1004,18,31]},{"path":[4,56,2,2,3],"span":[1004,34,35]},{"path":[4,56,2,3],"span":[1005,2,35]},{"path":[4,56,2,3,4],"span":[1005,2,10]},{"path":[4,56,2,3,5],"span":[1005,11,17]},{"path":[4,56,2,3,1],"span":[1005,18,30]},{"path":[4,56,2,3,3],"span":[1005,33,34]},{"path":[4,56,2,4],"span":[1007,2,29]},{"path":[4,56,2,4,4],"span":[1007,2,10]},{"path":[4,56,2,4,5],"span":[1007,11,17]},{"path":[4,56,2,4,1],"span":[1007,18,24]},{"path":[4,56,2,4,3],"span":[1007,27,28]},{"path":[4,56,2,5],"span":[1008,2,42]},{"path":[4,56,2,5,4],"span":[1008,2,10]},{"path":[4,56,2,5,6],"span":[1008,11,25]},{"path":[4,56,2,5,1],"span":[1008,26,37]},{"path":[4,56,2,5,3],"span":[1008,40,41]},{"path":[4,57],"span":[1012,0,1025,1]},{"path":[4,57,1],"span":[1012,8,22]},{"path":[4,57,2,0],"span":[1013,2,17]},{"path":[4,57,2,0,5],"span":[1013,2,7]},{"path":[4,57,2,0,1],"span":[1013,8,12]},{"path":[4,57,2,0,3],"span":[1013,15,16]},{"path":[4,57,2,1],"span":[1014,2,24]},{"path":[4,57,2,1,4],"span":[1014,2,10]},{"path":[4,57,2,1,5],"span":[1014,11,15]},{"path":[4,57,2,1,1],"span":[1014,16,19]},{"path":[4,57,2,1,3],"span":[1014,22,23]},{"path":[4,57,2,2],"span":[1016,2,29],"trailingComments":" http_header.server\n"},{"path":[4,57,2,2,4],"span":[1016,2,10]},{"path":[4,57,2,2,5],"span":[1016,11,17]},{"path":[4,57,2,2,1],"span":[1016,18,24]},{"path":[4,57,2,2,3],"span":[1016,27,28]},{"path":[4,57,2,3],"span":[1017,2,30],"trailingComments":" http_header.wwwauth\n"},{"path":[4,57,2,3,4],"span":[1017,2,10]},{"path":[4,57,2,3,5],"span":[1017,11,17]},{"path":[4,57,2,3,1],"span":[1017,18,25]},{"path":[4,57,2,3,3],"span":[1017,28,29]},{"path":[4,57,2,4],"span":[1018,2,29],"trailingComments":" http_header.cookie\n"},{"path":[4,57,2,4,4],"span":[1018,2,10]},{"path":[4,57,2,4,5],"span":[1018,11,17]},{"path":[4,57,2,4,1],"span":[1018,18,24]},{"path":[4,57,2,4,3],"span":[1018,27,28]},{"path":[4,57,2,5],"span":[1020,2,28],"trailingComments":" html_title\n"},{"path":[4,57,2,5,4],"span":[1020,2,10]},{"path":[4,57,2,5,5],"span":[1020,11,17]},{"path":[4,57,2,5,1],"span":[1020,18,23]},{"path":[4,57,2,5,3],"span":[1020,26,27]},{"path":[4,57,2,6],"span":[1021,2,34],"trailingComments":" favicon.md5\n"},{"path":[4,57,2,6,4],"span":[1021,2,10]},{"path":[4,57,2,6,5],"span":[1021,11,17]},{"path":[4,57,2,6,1],"span":[1021,18,29]},{"path":[4,57,2,6,3],"span":[1021,32,33]},{"path":[4,57,2,7],"span":[1022,2,29],"trailingComments":" in case at some point we want to store full\n"},{"path":[4,57,2,7,4],"span":[1022,2,10]},{"path":[4,57,2,7,5],"span":[1022,11,16]},{"path":[4,57,2,7,1],"span":[1022,17,24]},{"path":[4,57,2,7,3],"span":[1022,27,28]},{"path":[4,57,2,8],"span":[1024,2,44],"trailingComments":" Captured certificates\n"},{"path":[4,57,2,8,4],"span":[1024,2,10]},{"path":[4,57,2,8,6],"span":[1024,11,26]},{"path":[4,57,2,8,1],"span":[1024,27,39]},{"path":[4,57,2,8,3],"span":[1024,42,43]},{"path":[4,58],"span":[1027,0,1042,1]},{"path":[4,58,1],"span":[1027,8,23]},{"path":[4,58,2,0],"span":[1028,2,33],"trailingComments":" thumbprint\n"},{"path":[4,58,2,0,4],"span":[1028,2,10]},{"path":[4,58,2,0,5],"span":[1028,11,17]},{"path":[4,58,2,0,1],"span":[1028,18,28]},{"path":[4,58,2,0,3],"span":[1028,31,32]},{"path":[4,58,2,1],"span":[1029,2,36],"trailingComments":" serial_number (as a big-endian hexadecimal string)\n"},{"path":[4,58,2,1,4],"span":[1029,2,10]},{"path":[4,58,2,1,5],"span":[1029,11,17]},{"path":[4,58,2,1,1],"span":[1029,18,31]},{"path":[4,58,2,1,3],"span":[1029,34,35]},{"path":[4,58,2,2],"span":[1030,2,34],"trailingComments":" x509.issuer\n"},{"path":[4,58,2,2,4],"span":[1030,2,10]},{"path":[4,58,2,2,5],"span":[1030,11,17]},{"path":[4,58,2,2,1],"span":[1030,18,29]},{"path":[4,58,2,2,3],"span":[1030,32,33]},{"path":[4,58,2,3],"span":[1031,2,35],"trailingComments":" x509.subject\n"},{"path":[4,58,2,3,4],"span":[1031,2,10]},{"path":[4,58,2,3,5],"span":[1031,11,17]},{"path":[4,58,2,3,1],"span":[1031,18,30]},{"path":[4,58,2,3,3],"span":[1031,33,34]},{"path":[4,58,2,4],"span":[1032,2,56],"trailingComments":" not_before\n"},{"path":[4,58,2,4,4],"span":[1032,2,10]},{"path":[4,58,2,4,6],"span":[1032,11,36]},{"path":[4,58,2,4,1],"span":[1032,37,51]},{"path":[4,58,2,4,3],"span":[1032,54,55]},{"path":[4,58,2,5],"span":[1033,2,57],"trailingComments":" not_after\n"},{"path":[4,58,2,5,4],"span":[1033,2,10]},{"path":[4,58,2,5,6],"span":[1033,11,36]},{"path":[4,58,2,5,1],"span":[1033,37,52]},{"path":[4,58,2,5,3],"span":[1033,55,56]},{"path":[4,58,4,0],"span":[1035,2,1039,3]},{"path":[4,58,4,0,1],"span":[1035,7,22]},{"path":[4,58,4,0,2,0],"span":[1036,4,45]},{"path":[4,58,4,0,2,0,1],"span":[1036,4,40]},{"path":[4,58,4,0,2,0,2],"span":[1036,43,44]},{"path":[4,58,4,0,2,1],"span":[1037,4,45]},{"path":[4,58,4,0,2,1,1],"span":[1037,4,40]},{"path":[4,58,4,0,2,1,2],"span":[1037,43,44]},{"path":[4,58,4,0,2,2],"span":[1038,4,44]},{"path":[4,58,4,0,2,2,1],"span":[1038,4,39]},{"path":[4,58,4,0,2,2,2],"span":[1038,42,43]},{"path":[4,58,2,6],"span":[1041,2,38],"trailingComments":" ssl errors\n"},{"path":[4,58,2,6,4],"span":[1041,2,10]},{"path":[4,58,2,6,6],"span":[1041,11,26]},{"path":[4,58,2,6,1],"span":[1041,27,33]},{"path":[4,58,2,6,3],"span":[1041,36,37]},{"path":[4,59],"span":[1046,0,1087,1],"leadingComments":" Processor *"},{"path":[4,59,1],"span":[1046,8,17]},{"path":[4,59,2,0],"span":[1047,2,21]},{"path":[4,59,2,0,5],"span":[1047,2,8]},{"path":[4,59,2,0,1],"span":[1047,10,14]},{"path":[4,59,2,0,3],"span":[1047,17,18]},{"path":[4,59,2,1],"span":[1048,2,36],"trailingComments":" Linux-only\n"},{"path":[4,59,2,1,4],"span":[1048,2,10]},{"path":[4,59,2,1,5],"span":[1048,11,17]},{"path":[4,59,2,1,1],"span":[1048,18,31]},{"path":[4,59,2,1,3],"span":[1048,34,35]},{"path":[4,59,2,2],"span":[1049,2,35],"trailingComments":" Windows-only\n"},{"path":[4,59,2,2,4],"span":[1049,2,10]},{"path":[4,59,2,2,5],"span":[1049,11,16]},{"path":[4,59,2,2,1],"span":[1049,17,30]},{"path":[4,59,2,2,3],"span":[1049,33,34]},{"path":[4,59,2,3],"span":[1050,2,40],"trailingComments":" Consolidate on-prem fields into single numeric list with translations\n"},{"path":[4,59,2,3,4],"span":[1050,2,10]},{"path":[4,59,2,3,6],"span":[1050,11,22]},{"path":[4,59,2,3,1],"span":[1050,23,35]},{"path":[4,59,2,3,3],"span":[1050,38,39]},{"path":[4,59,2,4],"span":[1051,2,34],"trailingComments":" Windows-only\n"},{"path":[4,59,2,4,4],"span":[1051,2,10]},{"path":[4,59,2,4,5],"span":[1051,11,16]},{"path":[4,59,2,4,1],"span":[1051,17,29]},{"path":[4,59,2,4,3],"span":[1051,32,33]},{"path":[4,59,2,5],"span":[1052,2,32],"trailingComments":" Standardize to numeric\n"},{"path":[4,59,2,5,4],"span":[1052,2,10]},{"path":[4,59,2,5,5],"span":[1052,11,17]},{"path":[4,59,2,5,1],"span":[1052,18,27]},{"path":[4,59,2,5,3],"span":[1052,30,31]},{"path":[4,59,2,6],"span":[1053,2,33],"trailingComments":" Linux-only\n"},{"path":[4,59,2,6,4],"span":[1053,2,10]},{"path":[4,59,2,6,5],"span":[1053,11,17]},{"path":[4,59,2,6,1],"span":[1053,18,28]},{"path":[4,59,2,6,3],"span":[1053,31,32]},{"path":[4,59,2,7],"span":[1054,2,30],"trailingComments":" Windows-only\n"},{"path":[4,59,2,7,4],"span":[1054,2,10]},{"path":[4,59,2,7,5],"span":[1054,11,17]},{"path":[4,59,2,7,1],"span":[1054,18,25]},{"path":[4,59,2,7,3],"span":[1054,28,29]},{"path":[4,59,2,8],"span":[1055,2,41],"trailingComments":" Standardize values to numeric (MHz)\n"},{"path":[4,59,2,8,4],"span":[1055,2,10]},{"path":[4,59,2,8,5],"span":[1055,11,16]},{"path":[4,59,2,8,1],"span":[1055,17,36]},{"path":[4,59,2,8,3],"span":[1055,39,40]},{"path":[4,59,2,9],"span":[1056,2,33],"trailingComments":" Windows-only\n"},{"path":[4,59,2,9,4],"span":[1056,2,10]},{"path":[4,59,2,9,5],"span":[1056,11,16]},{"path":[4,59,2,9,1],"span":[1056,17,27]},{"path":[4,59,2,9,3],"span":[1056,30,32]},{"path":[4,59,2,10],"span":[1057,2,33],"trailingComments":" Windows-only\n"},{"path":[4,59,2,10,4],"span":[1057,2,10]},{"path":[4,59,2,10,5],"span":[1057,11,17]},{"path":[4,59,2,10,1],"span":[1057,18,27]},{"path":[4,59,2,10,3],"span":[1057,30,32]},{"path":[4,59,2,11],"span":[1058,2,41],"trailingComments":" Windows-only\n"},{"path":[4,59,2,11,4],"span":[1058,2,10]},{"path":[4,59,2,11,5],"span":[1058,11,16]},{"path":[4,59,2,11,1],"span":[1058,17,35]},{"path":[4,59,2,11,3],"span":[1058,38,40]},{"path":[4,59,2,12],"span":[1059,2,35],"trailingComments":" Consolidate on-prem fields into single numeric list with translations\n"},{"path":[4,59,2,12,4],"span":[1059,2,10]},{"path":[4,59,2,12,6],"span":[1059,11,22]},{"path":[4,59,2,12,1],"span":[1059,23,29]},{"path":[4,59,2,12,3],"span":[1059,32,34]},{"path":[4,59,2,13],"span":[1060,2,41],"trailingComments":" Linux-only\n"},{"path":[4,59,2,13,4],"span":[1060,2,10]},{"path":[4,59,2,13,5],"span":[1060,11,17]},{"path":[4,59,2,13,1],"span":[1060,18,35]},{"path":[4,59,2,13,3],"span":[1060,38,40]},{"path":[4,59,2,14],"span":[1061,2,40],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,59,2,14,4],"span":[1061,2,10]},{"path":[4,59,2,14,5],"span":[1061,11,16]},{"path":[4,59,2,14,1],"span":[1061,17,34]},{"path":[4,59,2,14,3],"span":[1061,37,39]},{"path":[4,59,2,15],"span":[1062,2,40],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,59,2,15,4],"span":[1062,2,10]},{"path":[4,59,2,15,5],"span":[1062,11,16]},{"path":[4,59,2,15,1],"span":[1062,17,34]},{"path":[4,59,2,15,3],"span":[1062,37,39]},{"path":[4,59,2,16],"span":[1063,2,39],"trailingComments":" Standardize values to int (kilobytes)\n"},{"path":[4,59,2,16,4],"span":[1063,2,10]},{"path":[4,59,2,16,5],"span":[1063,11,16]},{"path":[4,59,2,16,1],"span":[1063,17,33]},{"path":[4,59,2,16,3],"span":[1063,36,38]},{"path":[4,59,2,17],"span":[1064,2,41],"trailingComments":" Windows-only\n"},{"path":[4,59,2,17,4],"span":[1064,2,10]},{"path":[4,59,2,17,5],"span":[1064,11,16]},{"path":[4,59,2,17,1],"span":[1064,17,35]},{"path":[4,59,2,17,3],"span":[1064,38,40]},{"path":[4,59,2,18],"span":[1065,2,39],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,59,2,18,4],"span":[1065,2,10]},{"path":[4,59,2,18,5],"span":[1065,11,16]},{"path":[4,59,2,18,1],"span":[1065,17,33]},{"path":[4,59,2,18,3],"span":[1065,36,38]},{"path":[4,59,2,19],"span":[1066,2,28],"trailingComments":" Windows-only, unclear meaning\n"},{"path":[4,59,2,19,4],"span":[1066,2,10]},{"path":[4,59,2,19,5],"span":[1066,11,16]},{"path":[4,59,2,19,1],"span":[1066,17,22]},{"path":[4,59,2,19,3],"span":[1066,25,27]},{"path":[4,59,2,20],"span":[1067,2,44]},{"path":[4,59,2,20,4],"span":[1067,2,10]},{"path":[4,59,2,20,5],"span":[1067,11,16]},{"path":[4,59,2,20,1],"span":[1067,17,36]},{"path":[4,59,2,20,3],"span":[1067,39,41]},{"path":[4,59,2,21],"span":[1068,2,38]},{"path":[4,59,2,21,4],"span":[1068,2,10]},{"path":[4,59,2,21,5],"span":[1068,11,17]},{"path":[4,59,2,21,1],"span":[1068,18,30]},{"path":[4,59,2,21,3],"span":[1068,33,35]},{"path":[4,59,2,22],"span":[1069,2,42],"trailingComments":" Standardize Linux values to int (MHz)\n"},{"path":[4,59,2,22,4],"span":[1069,2,10]},{"path":[4,59,2,22,5],"span":[1069,11,16]},{"path":[4,59,2,22,1],"span":[1069,17,36]},{"path":[4,59,2,22,3],"span":[1069,39,41]},{"path":[4,59,2,23],"span":[1070,2,42],"trailingComments":" Linux-only, standardize to numeric (MHz)\n"},{"path":[4,59,2,23,4],"span":[1070,2,10]},{"path":[4,59,2,23,5],"span":[1070,11,16]},{"path":[4,59,2,23,1],"span":[1070,17,36]},{"path":[4,59,2,23,3],"span":[1070,39,41]},{"path":[4,59,2,24],"span":[1071,2,35],"trailingComments":" Linux-only, standardize to numeric\n"},{"path":[4,59,2,24,4],"span":[1071,2,10]},{"path":[4,59,2,24,5],"span":[1071,11,16]},{"path":[4,59,2,24,1],"span":[1071,17,29]},{"path":[4,59,2,24,3],"span":[1071,32,34]},{"path":[4,59,2,25],"span":[1072,2,32],"trailingComments":" Linux-only\n"},{"path":[4,59,2,25,4],"span":[1072,2,10]},{"path":[4,59,2,25,5],"span":[1072,11,17]},{"path":[4,59,2,25,1],"span":[1072,18,26]},{"path":[4,59,2,25,3],"span":[1072,29,31]},{"path":[4,59,2,26],"span":[1073,2,45]},{"path":[4,59,2,26,4],"span":[1073,2,10]},{"path":[4,59,2,26,5],"span":[1073,11,16]},{"path":[4,59,2,26,1],"span":[1073,17,37]},{"path":[4,59,2,26,3],"span":[1073,40,42]},{"path":[4,59,2,27],"span":[1074,2,36],"trailingComments":" Windows-only, probably not used much by customers due to its complexity\n"},{"path":[4,59,2,27,4],"span":[1074,2,10]},{"path":[4,59,2,27,5],"span":[1074,11,17]},{"path":[4,59,2,27,1],"span":[1074,18,30]},{"path":[4,59,2,27,3],"span":[1074,33,35]},{"path":[4,59,2,28],"span":[1075,2,43],"trailingComments":" Windows-only\n"},{"path":[4,59,2,28,4],"span":[1075,2,10]},{"path":[4,59,2,28,6],"span":[1075,11,22]},{"path":[4,59,2,28,1],"span":[1075,23,37]},{"path":[4,59,2,28,3],"span":[1075,40,42]},{"path":[4,59,2,29],"span":[1076,2,31],"trailingComments":" Windows-only\n"},{"path":[4,59,2,29,4],"span":[1076,2,10]},{"path":[4,59,2,29,5],"span":[1076,11,16]},{"path":[4,59,2,29,1],"span":[1076,17,25]},{"path":[4,59,2,29,3],"span":[1076,28,30]},{"path":[4,59,2,30],"span":[1077,2,42],"trailingComments":" Windows-only\n"},{"path":[4,59,2,30,4],"span":[1077,2,10]},{"path":[4,59,2,30,5],"span":[1077,11,17]},{"path":[4,59,2,30,1],"span":[1077,18,36]},{"path":[4,59,2,30,3],"span":[1077,39,41]},{"path":[4,59,2,31],"span":[1078,2,31],"trailingComments":" Linux-only\n"},{"path":[4,59,2,31,4],"span":[1078,2,10]},{"path":[4,59,2,31,5],"span":[1078,11,16]},{"path":[4,59,2,31,1],"span":[1078,18,25]},{"path":[4,59,2,31,3],"span":[1078,28,30]},{"path":[4,59,2,32],"span":[1079,2,35],"trailingComments":" Windows-only\n"},{"path":[4,59,2,32,4],"span":[1079,2,10]},{"path":[4,59,2,32,6],"span":[1079,11,22]},{"path":[4,59,2,32,1],"span":[1079,23,29]},{"path":[4,59,2,32,3],"span":[1079,32,34]},{"path":[4,59,2,33],"span":[1080,2,31],"trailingComments":" Consolidate on-prem fields into single numeric list\n"},{"path":[4,59,2,33,4],"span":[1080,2,10]},{"path":[4,59,2,33,5],"span":[1080,11,16]},{"path":[4,59,2,33,1],"span":[1080,17,25]},{"path":[4,59,2,33,3],"span":[1080,28,30]},{"path":[4,59,2,34],"span":[1081,2,54],"trailingComments":" Linux-only\n"},{"path":[4,59,2,34,4],"span":[1081,2,10]},{"path":[4,59,2,34,5],"span":[1081,11,16]},{"path":[4,59,2,34,1],"span":[1081,17,48]},{"path":[4,59,2,34,3],"span":[1081,51,53]},{"path":[4,59,2,35],"span":[1082,2,33],"trailingComments":" Windows-only\n"},{"path":[4,59,2,35,4],"span":[1082,2,10]},{"path":[4,59,2,35,5],"span":[1082,11,17]},{"path":[4,59,2,35,1],"span":[1082,18,27]},{"path":[4,59,2,35,3],"span":[1082,30,32]},{"path":[4,59,2,36],"span":[1083,2,43],"trailingComments":" Windows-only\n"},{"path":[4,59,2,36,4],"span":[1083,2,10]},{"path":[4,59,2,36,6],"span":[1083,11,22]},{"path":[4,59,2,36,1],"span":[1083,23,37]},{"path":[4,59,2,36,3],"span":[1083,40,42]},{"path":[4,59,2,37],"span":[1084,2,31],"trailingComments":" Windows-only\n"},{"path":[4,59,2,37,4],"span":[1084,2,10]},{"path":[4,59,2,37,5],"span":[1084,11,17]},{"path":[4,59,2,37,1],"span":[1084,18,25]},{"path":[4,59,2,37,3],"span":[1084,28,30]},{"path":[4,59,2,38],"span":[1085,2,38],"trailingComments":" Linux-only\n"},{"path":[4,59,2,38,4],"span":[1085,2,10]},{"path":[4,59,2,38,5],"span":[1085,11,17]},{"path":[4,59,2,38,1],"span":[1085,18,32]},{"path":[4,59,2,38,3],"span":[1085,35,37]},{"path":[4,59,2,39],"span":[1086,2,49],"trailingComments":" Windows-only\n"},{"path":[4,59,2,39,4],"span":[1086,2,10]},{"path":[4,59,2,39,6],"span":[1086,11,22]},{"path":[4,59,2,39,1],"span":[1086,23,43]},{"path":[4,59,2,39,3],"span":[1086,46,48]},{"path":[4,60],"span":[1090,0,1100,1],"leadingComments":" Chassis *"},{"path":[4,60,1],"span":[1090,8,15]},{"path":[4,60,2,0],"span":[1092,2,25]},{"path":[4,60,2,0,6],"span":[1092,2,13]},{"path":[4,60,2,0,1],"span":[1092,16,20]},{"path":[4,60,2,0,3],"span":[1092,23,24]},{"path":[4,60,2,1],"span":[1093,2,33]},{"path":[4,60,2,1,4],"span":[1093,2,10]},{"path":[4,60,2,1,5],"span":[1093,11,15]},{"path":[4,60,2,1,1],"span":[1093,16,28]},{"path":[4,60,2,1,3],"span":[1093,31,32]},{"path":[4,60,2,2],"span":[1094,2,41]},{"path":[4,60,2,2,4],"span":[1094,2,10]},{"path":[4,60,2,2,5],"span":[1094,11,17]},{"path":[4,60,2,2,1],"span":[1094,24,36]},{"path":[4,60,2,2,3],"span":[1094,39,40]},{"path":[4,60,2,3],"span":[1095,2,43]},{"path":[4,60,2,3,4],"span":[1095,2,10]},{"path":[4,60,2,3,6],"span":[1095,11,22]},{"path":[4,60,2,3,1],"span":[1095,23,38]},{"path":[4,60,2,3,3],"span":[1095,41,42]},{"path":[4,60,2,4],"span":[1096,2,42]},{"path":[4,60,2,4,4],"span":[1096,2,10]},{"path":[4,60,2,4,5],"span":[1096,11,17]},{"path":[4,60,2,4,1],"span":[1096,24,37]},{"path":[4,60,2,4,3],"span":[1096,40,41]},{"path":[4,60,2,5],"span":[1097,2,38]},{"path":[4,60,2,5,4],"span":[1097,2,10]},{"path":[4,60,2,5,5],"span":[1097,11,17]},{"path":[4,60,2,5,1],"span":[1097,24,33]},{"path":[4,60,2,5,3],"span":[1097,36,37]},{"path":[4,60,2,6],"span":[1098,2,36]},{"path":[4,60,2,6,4],"span":[1098,2,10]},{"path":[4,60,2,6,5],"span":[1098,11,17]},{"path":[4,60,2,6,1],"span":[1098,24,31]},{"path":[4,60,2,6,3],"span":[1098,34,35]},{"path":[4,60,2,7],"span":[1099,2,40]},{"path":[4,60,2,7,4],"span":[1099,2,10]},{"path":[4,60,2,7,6],"span":[1099,11,22]},{"path":[4,60,2,7,1],"span":[1099,23,35]},{"path":[4,60,2,7,3],"span":[1099,38,39]},{"path":[4,61],"span":[1105,0,1117,1],"leadingComments":"\n Hard drive for computers: Windows.WindowsHardDisk, Unix.HardDisks, Mac.MacHardDisk\n"},{"path":[4,61,1],"span":[1105,8,17]},{"path":[4,61,2,0],"span":[1106,2,30]},{"path":[4,61,2,0,4],"span":[1106,2,10]},{"path":[4,61,2,0,5],"span":[1106,11,17]},{"path":[4,61,2,0,1],"span":[1106,18,25]},{"path":[4,61,2,0,3],"span":[1106,28,29]},{"path":[4,61,2,1],"span":[1107,2,31]},{"path":[4,61,2,1,4],"span":[1107,2,10]},{"path":[4,61,2,1,5],"span":[1107,11,15]},{"path":[4,61,2,1,1],"span":[1107,16,26]},{"path":[4,61,2,1,3],"span":[1107,29,30]},{"path":[4,61,2,2],"span":[1108,2,34]},{"path":[4,61,2,2,4],"span":[1108,2,10]},{"path":[4,61,2,2,5],"span":[1108,11,17]},{"path":[4,61,2,2,1],"span":[1108,18,29]},{"path":[4,61,2,2,3],"span":[1108,32,33]},{"path":[4,61,2,3],"span":[1109,2,32]},{"path":[4,61,2,3,4],"span":[1109,2,10]},{"path":[4,61,2,3,5],"span":[1109,11,17]},{"path":[4,61,2,3,1],"span":[1109,18,27]},{"path":[4,61,2,3,3],"span":[1109,30,31]},{"path":[4,61,2,4],"span":[1110,2,38]},{"path":[4,61,2,4,4],"span":[1110,2,10]},{"path":[4,61,2,4,6],"span":[1110,11,22]},{"path":[4,61,2,4,1],"span":[1110,23,33]},{"path":[4,61,2,4,3],"span":[1110,36,37]},{"path":[4,61,2,5],"span":[1111,2,34]},{"path":[4,61,2,5,4],"span":[1111,2,10]},{"path":[4,61,2,5,5],"span":[1111,11,17]},{"path":[4,61,2,5,1],"span":[1111,18,29]},{"path":[4,61,2,5,3],"span":[1111,32,33]},{"path":[4,61,2,6],"span":[1112,2,32]},{"path":[4,61,2,6,4],"span":[1112,2,10]},{"path":[4,61,2,6,5],"span":[1112,11,16]},{"path":[4,61,2,6,1],"span":[1112,17,27]},{"path":[4,61,2,6,3],"span":[1112,30,31]},{"path":[4,61,2,7],"span":[1113,2,26]},{"path":[4,61,2,7,4],"span":[1113,2,10]},{"path":[4,61,2,7,5],"span":[1113,11,16]},{"path":[4,61,2,7,1],"span":[1113,17,21]},{"path":[4,61,2,7,3],"span":[1113,24,25]},{"path":[4,61,2,8],"span":[1114,2,34]},{"path":[4,61,2,8,4],"span":[1114,2,10]},{"path":[4,61,2,8,5],"span":[1114,11,17]},{"path":[4,61,2,8,1],"span":[1114,18,29]},{"path":[4,61,2,8,3],"span":[1114,32,33]},{"path":[4,61,2,9],"span":[1115,2,37]},{"path":[4,61,2,9,4],"span":[1115,2,10]},{"path":[4,61,2,9,5],"span":[1115,11,17]},{"path":[4,61,2,9,1],"span":[1115,18,31]},{"path":[4,61,2,9,3],"span":[1115,34,36]},{"path":[4,61,2,10],"span":[1116,2,34]},{"path":[4,61,2,10,4],"span":[1116,2,10]},{"path":[4,61,2,10,5],"span":[1116,11,17]},{"path":[4,61,2,10,1],"span":[1116,18,28]},{"path":[4,61,2,10,3],"span":[1116,31,33]},{"path":[4,62],"span":[1122,0,1152,1],"leadingComments":"\n Volumes for Computers: Windows.Volume+Windows.EncryptableVolumes and Unix.Volumes\n"},{"path":[4,62,1],"span":[1122,8,19]},{"path":[4,62,2,0],"span":[1123,2,32]},{"path":[4,62,2,0,4],"span":[1123,2,10]},{"path":[4,62,2,0,5],"span":[1123,11,17]},{"path":[4,62,2,0,1],"span":[1123,18,27]},{"path":[4,62,2,0,3],"span":[1123,30,31]},{"path":[4,62,2,1],"span":[1124,2,27],"trailingComments":" unix path, windows drive_letter\n"},{"path":[4,62,2,1,4],"span":[1124,2,10]},{"path":[4,62,2,1,5],"span":[1124,11,17]},{"path":[4,62,2,1,1],"span":[1124,18,22]},{"path":[4,62,2,1,3],"span":[1124,25,26]},{"path":[4,62,2,2],"span":[1125,2,28],"trailingComments":" win and linux\n"},{"path":[4,62,2,2,4],"span":[1125,2,10]},{"path":[4,62,2,2,5],"span":[1125,11,17]},{"path":[4,62,2,2,1],"span":[1125,18,23]},{"path":[4,62,2,2,3],"span":[1125,26,27]},{"path":[4,62,2,3],"span":[1126,2,27]},{"path":[4,62,2,3,4],"span":[1126,2,10]},{"path":[4,62,2,3,5],"span":[1126,11,17]},{"path":[4,62,2,3,1],"span":[1126,18,22]},{"path":[4,62,2,3,3],"span":[1126,25,26]},{"path":[4,62,2,4],"span":[1128,2,30],"trailingComments":" windows capacity, size in unix\n"},{"path":[4,62,2,4,4],"span":[1128,2,10]},{"path":[4,62,2,4,5],"span":[1128,11,16]},{"path":[4,62,2,4,1],"span":[1128,17,25]},{"path":[4,62,2,4,3],"span":[1128,28,29]},{"path":[4,62,2,5],"span":[1129,2,32]},{"path":[4,62,2,5,4],"span":[1129,2,10]},{"path":[4,62,2,5,5],"span":[1129,11,16]},{"path":[4,62,2,5,1],"span":[1129,17,27]},{"path":[4,62,2,5,3],"span":[1129,30,31]},{"path":[4,62,2,6],"span":[1130,2,32]},{"path":[4,62,2,6,4],"span":[1130,2,10]},{"path":[4,62,2,6,5],"span":[1130,11,16]},{"path":[4,62,2,6,1],"span":[1130,17,27]},{"path":[4,62,2,6,3],"span":[1130,30,31]},{"path":[4,62,2,7],"span":[1132,2,38],"trailingComments":" Windows: WMI mapped, Unix: string\n"},{"path":[4,62,2,7,4],"span":[1132,2,10]},{"path":[4,62,2,7,6],"span":[1132,11,22]},{"path":[4,62,2,7,1],"span":[1132,23,33]},{"path":[4,62,2,7,3],"span":[1132,36,37]},{"path":[4,62,2,8],"span":[1133,2,45],"trailingComments":" from Windows if encrypted: Windows.EncryptableVolumes\n"},{"path":[4,62,2,8,4],"span":[1133,2,10]},{"path":[4,62,2,8,6],"span":[1133,11,22]},{"path":[4,62,2,8,1],"span":[1133,23,40]},{"path":[4,62,2,8,3],"span":[1133,43,44]},{"path":[4,62,2,9],"span":[1135,2,41]},{"path":[4,62,2,9,4],"span":[1135,2,10]},{"path":[4,62,2,9,5],"span":[1135,11,17]},{"path":[4,62,2,9,1],"span":[1135,18,35]},{"path":[4,62,2,9,3],"span":[1135,38,40]},{"path":[4,62,2,10],"span":[1136,2,41]},{"path":[4,62,2,10,4],"span":[1136,2,10]},{"path":[4,62,2,10,5],"span":[1136,11,17]},{"path":[4,62,2,10,1],"span":[1136,18,35]},{"path":[4,62,2,10,3],"span":[1136,38,40]},{"path":[4,62,2,11],"span":[1137,2,35]},{"path":[4,62,2,11,4],"span":[1137,2,10]},{"path":[4,62,2,11,5],"span":[1137,11,17]},{"path":[4,62,2,11,1],"span":[1137,18,29]},{"path":[4,62,2,11,3],"span":[1137,32,34]},{"path":[4,62,2,12],"span":[1139,2,32]},{"path":[4,62,2,12,4],"span":[1139,2,10]},{"path":[4,62,2,12,5],"span":[1139,11,15]},{"path":[4,62,2,12,1],"span":[1139,16,26]},{"path":[4,62,2,12,3],"span":[1139,29,31]},{"path":[4,62,2,13],"span":[1140,2,32]},{"path":[4,62,2,13,4],"span":[1140,2,10]},{"path":[4,62,2,13,5],"span":[1140,11,15]},{"path":[4,62,2,13,1],"span":[1140,16,26]},{"path":[4,62,2,13,3],"span":[1140,29,31]},{"path":[4,62,2,14],"span":[1141,2,35]},{"path":[4,62,2,14,4],"span":[1141,2,10]},{"path":[4,62,2,14,5],"span":[1141,11,15]},{"path":[4,62,2,14,1],"span":[1141,16,29]},{"path":[4,62,2,14,3],"span":[1141,32,34]},{"path":[4,62,2,15],"span":[1142,2,35]},{"path":[4,62,2,15,4],"span":[1142,2,10]},{"path":[4,62,2,15,5],"span":[1142,11,15]},{"path":[4,62,2,15,1],"span":[1142,16,29]},{"path":[4,62,2,15,3],"span":[1142,32,34]},{"path":[4,62,2,16],"span":[1143,2,38]},{"path":[4,62,2,16,4],"span":[1143,2,10]},{"path":[4,62,2,16,5],"span":[1143,11,15]},{"path":[4,62,2,16,1],"span":[1143,16,32]},{"path":[4,62,2,16,3],"span":[1143,35,37]},{"path":[4,62,2,17],"span":[1144,2,39]},{"path":[4,62,2,17,4],"span":[1144,2,10]},{"path":[4,62,2,17,5],"span":[1144,11,15]},{"path":[4,62,2,17,1],"span":[1144,16,33]},{"path":[4,62,2,17,3],"span":[1144,36,38]},{"path":[4,62,2,18],"span":[1145,2,42]},{"path":[4,62,2,18,4],"span":[1145,2,10]},{"path":[4,62,2,18,5],"span":[1145,11,15]},{"path":[4,62,2,18,1],"span":[1145,16,36]},{"path":[4,62,2,18,3],"span":[1145,39,41]},{"path":[4,62,2,19],"span":[1146,2,53]},{"path":[4,62,2,19,4],"span":[1146,2,10]},{"path":[4,62,2,19,5],"span":[1146,11,15]},{"path":[4,62,2,19,1],"span":[1146,16,47]},{"path":[4,62,2,19,3],"span":[1146,50,52]},{"path":[4,62,2,20],"span":[1149,2,31],"leadingComments":" unix\n"},{"path":[4,62,2,20,4],"span":[1149,2,10]},{"path":[4,62,2,20,5],"span":[1149,11,17]},{"path":[4,62,2,20,1],"span":[1149,18,25]},{"path":[4,62,2,20,3],"span":[1149,28,30]},{"path":[4,62,2,21],"span":[1150,2,35]},{"path":[4,62,2,21,4],"span":[1150,2,10]},{"path":[4,62,2,21,5],"span":[1150,11,17]},{"path":[4,62,2,21,1],"span":[1150,18,29]},{"path":[4,62,2,21,3],"span":[1150,32,34]},{"path":[4,63],"span":[1157,0,1164,1],"leadingComments":"\n Network drives/volumes for Computers: Windows.MappedDrive and Mac.NetworkVolume\n"},{"path":[4,63,1],"span":[1157,8,21]},{"path":[4,63,8,0],"span":[1158,2,1161,5]},{"path":[4,63,8,0,1],"span":[1158,8,14]},{"path":[4,63,2,0],"span":[1159,4,44]},{"path":[4,63,2,0,6],"span":[1159,4,22]},{"path":[4,63,2,0,1],"span":[1159,23,39]},{"path":[4,63,2,0,3],"span":[1159,42,43]},{"path":[4,63,2,1],"span":[1160,4,36]},{"path":[4,63,2,1,6],"span":[1160,4,20]},{"path":[4,63,2,1,1],"span":[1160,21,31]},{"path":[4,63,2,1,3],"span":[1160,34,35]},{"path":[4,63,2,2],"span":[1163,2,29]},{"path":[4,63,2,2,4],"span":[1163,2,10]},{"path":[4,63,2,2,5],"span":[1163,11,17]},{"path":[4,63,2,2,1],"span":[1163,18,22]},{"path":[4,63,2,2,3],"span":[1163,25,28]},{"path":[4,64],"span":[1167,0,1172,1],"leadingComments":" Network drive for Windows: Mapped drive.\n"},{"path":[4,64,1],"span":[1167,8,26]},{"path":[4,64,2,0],"span":[1168,2,26]},{"path":[4,64,2,0,5],"span":[1168,2,8]},{"path":[4,64,2,0,1],"span":[1168,9,21]},{"path":[4,64,2,0,3],"span":[1168,24,25]},{"path":[4,64,2,1],"span":[1169,2,32]},{"path":[4,64,2,1,4],"span":[1169,2,10]},{"path":[4,64,2,1,5],"span":[1169,11,17]},{"path":[4,64,2,1,1],"span":[1169,18,27]},{"path":[4,64,2,1,3],"span":[1169,30,31]},{"path":[4,64,2,2],"span":[1170,2,34]},{"path":[4,64,2,2,4],"span":[1170,2,10]},{"path":[4,64,2,2,5],"span":[1170,11,17]},{"path":[4,64,2,2,1],"span":[1170,18,29]},{"path":[4,64,2,2,3],"span":[1170,32,33]},{"path":[4,64,2,3],"span":[1171,2,34]},{"path":[4,64,2,3,4],"span":[1171,2,10]},{"path":[4,64,2,3,5],"span":[1171,11,17]},{"path":[4,64,2,3,1],"span":[1171,18,29]},{"path":[4,64,2,3,3],"span":[1171,32,33]},{"path":[4,65],"span":[1175,0,1181,1],"leadingComments":" Network volume for Mac: NetworkVolume.\n"},{"path":[4,65,1],"span":[1175,8,24]},{"path":[4,65,2,0],"span":[1176,2,27]},{"path":[4,65,2,0,4],"span":[1176,2,10]},{"path":[4,65,2,0,5],"span":[1176,11,17]},{"path":[4,65,2,0,1],"span":[1176,18,22]},{"path":[4,65,2,0,3],"span":[1176,25,26]},{"path":[4,65,2,1],"span":[1177,2,35]},{"path":[4,65,2,1,4],"span":[1177,2,10]},{"path":[4,65,2,1,5],"span":[1177,11,17]},{"path":[4,65,2,1,1],"span":[1177,18,30]},{"path":[4,65,2,1,3],"span":[1177,33,34]},{"path":[4,65,2,2],"span":[1178,2,36]},{"path":[4,65,2,2,4],"span":[1178,2,10]},{"path":[4,65,2,2,5],"span":[1178,11,17]},{"path":[4,65,2,2,1],"span":[1178,18,31]},{"path":[4,65,2,2,3],"span":[1178,34,35]},{"path":[4,65,2,3],"span":[1179,2,35]},{"path":[4,65,2,3,4],"span":[1179,2,10]},{"path":[4,65,2,3,5],"span":[1179,11,17]},{"path":[4,65,2,3,1],"span":[1179,18,30]},{"path":[4,65,2,3,3],"span":[1179,33,34]},{"path":[4,65,2,4],"span":[1180,2,36]},{"path":[4,65,2,4,4],"span":[1180,2,10]},{"path":[4,65,2,4,5],"span":[1180,11,17]},{"path":[4,65,2,4,1],"span":[1180,18,31]},{"path":[4,65,2,4,3],"span":[1180,34,35]},{"path":[4,66],"span":[1186,0,1193,1],"leadingComments":"\n Keyboard for computers: Windows.Keyboards\n"},{"path":[4,66,1],"span":[1186,8,16]},{"path":[4,66,2,0],"span":[1187,2,53]},{"path":[4,66,2,0,4],"span":[1187,2,10]},{"path":[4,66,2,0,6],"span":[1187,11,22]},{"path":[4,66,2,0,1],"span":[1187,23,48]},{"path":[4,66,2,0,3],"span":[1187,51,52]},{"path":[4,66,2,1],"span":[1188,2,47]},{"path":[4,66,2,1,4],"span":[1188,2,10]},{"path":[4,66,2,1,5],"span":[1188,11,15]},{"path":[4,66,2,1,1],"span":[1188,16,42]},{"path":[4,66,2,1,3],"span":[1188,45,46]},{"path":[4,66,2,2],"span":[1189,2,34]},{"path":[4,66,2,2,4],"span":[1189,2,10]},{"path":[4,66,2,2,5],"span":[1189,11,17]},{"path":[4,66,2,2,1],"span":[1189,18,29]},{"path":[4,66,2,2,3],"span":[1189,32,33]},{"path":[4,66,2,3],"span":[1190,2,32]},{"path":[4,66,2,3,4],"span":[1190,2,10]},{"path":[4,66,2,3,5],"span":[1190,11,17]},{"path":[4,66,2,3,1],"span":[1190,18,27]},{"path":[4,66,2,3,3],"span":[1190,30,31]},{"path":[4,66,2,4],"span":[1191,2,29]},{"path":[4,66,2,4,4],"span":[1191,2,10]},{"path":[4,66,2,4,5],"span":[1191,11,17]},{"path":[4,66,2,4,1],"span":[1191,18,24]},{"path":[4,66,2,4,3],"span":[1191,27,28]},{"path":[4,66,2,5],"span":[1192,2,45]},{"path":[4,66,2,5,4],"span":[1192,2,10]},{"path":[4,66,2,5,5],"span":[1192,11,16]},{"path":[4,66,2,5,1],"span":[1192,17,40]},{"path":[4,66,2,5,3],"span":[1192,43,44]},{"path":[4,67],"span":[1199,0,1204,1],"leadingComments":"\n Computer Bus: from Windows.Bus\n WMI mappings from https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-bus\n"},{"path":[4,67,1],"span":[1199,8,19]},{"path":[4,67,2,0],"span":[1200,2,29]},{"path":[4,67,2,0,4],"span":[1200,2,10]},{"path":[4,67,2,0,5],"span":[1200,11,16]},{"path":[4,67,2,0,1],"span":[1200,17,24]},{"path":[4,67,2,0,3],"span":[1200,27,28]},{"path":[4,67,2,1],"span":[1201,2,36]},{"path":[4,67,2,1,4],"span":[1201,2,10]},{"path":[4,67,2,1,6],"span":[1201,11,22]},{"path":[4,67,2,1,1],"span":[1201,23,31]},{"path":[4,67,2,1,3],"span":[1201,34,35]},{"path":[4,67,2,2],"span":[1202,2,32]},{"path":[4,67,2,2,4],"span":[1202,2,10]},{"path":[4,67,2,2,5],"span":[1202,11,17]},{"path":[4,67,2,2,1],"span":[1202,18,27]},{"path":[4,67,2,2,3],"span":[1202,30,31]},{"path":[4,67,2,3],"span":[1203,2,36]},{"path":[4,67,2,3,4],"span":[1203,2,10]},{"path":[4,67,2,3,5],"span":[1203,11,17]},{"path":[4,67,2,3,1],"span":[1203,18,31]},{"path":[4,67,2,3,3],"span":[1203,34,35]},{"path":[4,68],"span":[1210,0,1218,1],"leadingComments":"\n Computer Infrared: from Windows.Infrared\n WMI mappings from https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-infrareddevice\n"},{"path":[4,68,1],"span":[1210,8,24]},{"path":[4,68,2,0],"span":[1211,2,40]},{"path":[4,68,2,0,4],"span":[1211,2,10]},{"path":[4,68,2,0,6],"span":[1211,11,22]},{"path":[4,68,2,0,1],"span":[1211,23,35]},{"path":[4,68,2,0,3],"span":[1211,38,39]},{"path":[4,68,2,1],"span":[1212,2,30]},{"path":[4,68,2,1,4],"span":[1212,2,10]},{"path":[4,68,2,1,5],"span":[1212,11,17]},{"path":[4,68,2,1,1],"span":[1212,18,25]},{"path":[4,68,2,1,3],"span":[1212,28,29]},{"path":[4,68,2,2],"span":[1213,2,53]},{"path":[4,68,2,2,4],"span":[1213,2,10]},{"path":[4,68,2,2,6],"span":[1213,11,22]},{"path":[4,68,2,2,1],"span":[1213,23,48]},{"path":[4,68,2,2,3],"span":[1213,51,52]},{"path":[4,68,2,3],"span":[1214,2,47]},{"path":[4,68,2,3,4],"span":[1214,2,10]},{"path":[4,68,2,3,5],"span":[1214,11,15]},{"path":[4,68,2,3,1],"span":[1214,16,42]},{"path":[4,68,2,3,3],"span":[1214,45,46]},{"path":[4,68,2,4],"span":[1215,2,32]},{"path":[4,68,2,4,4],"span":[1215,2,10]},{"path":[4,68,2,4,5],"span":[1215,11,17]},{"path":[4,68,2,4,1],"span":[1215,18,27]},{"path":[4,68,2,4,3],"span":[1215,30,31]},{"path":[4,68,2,5],"span":[1216,2,35]},{"path":[4,68,2,5,4],"span":[1216,2,10]},{"path":[4,68,2,5,5],"span":[1216,11,17]},{"path":[4,68,2,5,1],"span":[1216,18,30]},{"path":[4,68,2,5,3],"span":[1216,33,34]},{"path":[4,68,2,6],"span":[1217,2,46]},{"path":[4,68,2,6,4],"span":[1217,2,10]},{"path":[4,68,2,6,6],"span":[1217,11,22]},{"path":[4,68,2,6,1],"span":[1217,23,41]},{"path":[4,68,2,6,3],"span":[1217,44,45]},{"path":[4,69],"span":[1224,0,1236,1],"leadingComments":"\n Pointing Device for computers, like mouse or trackpad: Windows.PointingDevice\n"},{"path":[4,69,1],"span":[1224,8,22]},{"path":[4,69,2,0],"span":[1225,2,30]},{"path":[4,69,2,0,4],"span":[1225,2,10]},{"path":[4,69,2,0,5],"span":[1225,11,17]},{"path":[4,69,2,0,1],"span":[1225,18,25]},{"path":[4,69,2,0,3],"span":[1225,28,29]},{"path":[4,69,2,1],"span":[1226,2,32]},{"path":[4,69,2,1,4],"span":[1226,2,10]},{"path":[4,69,2,1,5],"span":[1226,11,17]},{"path":[4,69,2,1,1],"span":[1226,18,27]},{"path":[4,69,2,1,3],"span":[1226,30,31]},{"path":[4,69,2,2],"span":[1227,2,44]},{"path":[4,69,2,2,4],"span":[1227,2,10]},{"path":[4,69,2,2,6],"span":[1227,11,22]},{"path":[4,69,2,2,1],"span":[1227,23,39]},{"path":[4,69,2,2,3],"span":[1227,42,43]},{"path":[4,69,2,3],"span":[1228,2,45]},{"path":[4,69,2,3,4],"span":[1228,2,10]},{"path":[4,69,2,3,5],"span":[1228,11,16]},{"path":[4,69,2,3,1],"span":[1228,18,40]},{"path":[4,69,2,3,3],"span":[1228,43,44]},{"path":[4,69,2,4],"span":[1229,2,38]},{"path":[4,69,2,4,4],"span":[1229,2,10]},{"path":[4,69,2,4,6],"span":[1229,11,22]},{"path":[4,69,2,4,1],"span":[1229,23,33]},{"path":[4,69,2,4,3],"span":[1229,36,37]},{"path":[4,69,2,5],"span":[1230,2,36]},{"path":[4,69,2,5,4],"span":[1230,2,10]},{"path":[4,69,2,5,5],"span":[1230,11,17]},{"path":[4,69,2,5,1],"span":[1230,18,31]},{"path":[4,69,2,5,3],"span":[1230,34,35]},{"path":[4,69,2,6],"span":[1231,2,34]},{"path":[4,69,2,6,4],"span":[1231,2,10]},{"path":[4,69,2,6,5],"span":[1231,11,17]},{"path":[4,69,2,6,1],"span":[1231,18,29]},{"path":[4,69,2,6,3],"span":[1231,32,33]},{"path":[4,69,2,7],"span":[1232,2,35]},{"path":[4,69,2,7,4],"span":[1232,2,10]},{"path":[4,69,2,7,5],"span":[1232,11,17]},{"path":[4,69,2,7,1],"span":[1232,18,30]},{"path":[4,69,2,7,3],"span":[1232,33,34]},{"path":[4,69,2,8],"span":[1233,2,40]},{"path":[4,69,2,8,4],"span":[1233,2,10]},{"path":[4,69,2,8,5],"span":[1233,11,16]},{"path":[4,69,2,8,1],"span":[1233,18,35]},{"path":[4,69,2,8,3],"span":[1233,38,39]},{"path":[4,69,2,9],"span":[1234,2,42]},{"path":[4,69,2,9,4],"span":[1234,2,10]},{"path":[4,69,2,9,6],"span":[1234,11,22]},{"path":[4,69,2,9,1],"span":[1234,23,36]},{"path":[4,69,2,9,3],"span":[1234,39,41]},{"path":[4,69,2,10],"span":[1235,2,44]},{"path":[4,69,2,10,4],"span":[1235,2,10]},{"path":[4,69,2,10,5],"span":[1235,11,16]},{"path":[4,69,2,10,1],"span":[1235,18,38]},{"path":[4,69,2,10,3],"span":[1235,41,43]},{"path":[4,70],"span":[1241,0,1253,1],"leadingComments":"\n AutoRunCommand: Windows.Autorun and Mac - MacStartupItems\n"},{"path":[4,70,1],"span":[1241,8,22]},{"path":[4,70,2,0],"span":[1242,2,30]},{"path":[4,70,2,0,4],"span":[1242,2,10]},{"path":[4,70,2,0,5],"span":[1242,11,17]},{"path":[4,70,2,0,1],"span":[1242,18,25]},{"path":[4,70,2,0,3],"span":[1242,28,29]},{"path":[4,70,2,1],"span":[1243,2,30]},{"path":[4,70,2,1,4],"span":[1243,2,10]},{"path":[4,70,2,1,5],"span":[1243,11,17]},{"path":[4,70,2,1,1],"span":[1243,18,25]},{"path":[4,70,2,1,3],"span":[1243,28,29]},{"path":[4,70,2,2],"span":[1244,2,31]},{"path":[4,70,2,2,4],"span":[1244,2,10]},{"path":[4,70,2,2,5],"span":[1244,11,17]},{"path":[4,70,2,2,1],"span":[1244,18,26]},{"path":[4,70,2,2,3],"span":[1244,29,30]},{"path":[4,70,2,3],"span":[1245,2,27]},{"path":[4,70,2,3,4],"span":[1245,2,10]},{"path":[4,70,2,3,5],"span":[1245,11,17]},{"path":[4,70,2,3,1],"span":[1245,18,22]},{"path":[4,70,2,3,3],"span":[1245,25,26]},{"path":[4,70,2,4],"span":[1246,2,27],"trailingComments":" Windows Only\n"},{"path":[4,70,2,4,4],"span":[1246,2,10]},{"path":[4,70,2,4,5],"span":[1246,11,17]},{"path":[4,70,2,4,1],"span":[1246,18,22]},{"path":[4,70,2,4,3],"span":[1246,25,26]},{"path":[4,70,2,5],"span":[1247,2,31],"trailingComments":" Windows Only\n"},{"path":[4,70,2,5,4],"span":[1247,2,10]},{"path":[4,70,2,5,5],"span":[1247,11,17]},{"path":[4,70,2,5,1],"span":[1247,18,26]},{"path":[4,70,2,5,3],"span":[1247,29,30]},{"path":[4,70,2,6],"span":[1248,2,39],"trailingComments":" macOS only\n"},{"path":[4,70,2,6,4],"span":[1248,2,10]},{"path":[4,70,2,6,5],"span":[1248,11,17]},{"path":[4,70,2,6,1],"span":[1248,18,34]},{"path":[4,70,2,6,3],"span":[1248,37,38]},{"path":[4,70,2,7],"span":[1249,2,31],"trailingComments":" macOS only\n"},{"path":[4,70,2,7,4],"span":[1249,2,10]},{"path":[4,70,2,7,5],"span":[1249,11,17]},{"path":[4,70,2,7,1],"span":[1249,18,26]},{"path":[4,70,2,7,3],"span":[1249,29,30]},{"path":[4,70,2,8],"span":[1250,2,31],"trailingComments":" macOS only\n"},{"path":[4,70,2,8,4],"span":[1250,2,10]},{"path":[4,70,2,8,5],"span":[1250,11,17]},{"path":[4,70,2,8,1],"span":[1250,18,26]},{"path":[4,70,2,8,3],"span":[1250,29,30]},{"path":[4,70,2,9],"span":[1251,2,28],"trailingComments":" macOS only\n"},{"path":[4,70,2,9,4],"span":[1251,2,10]},{"path":[4,70,2,9,5],"span":[1251,11,17]},{"path":[4,70,2,9,1],"span":[1251,18,22]},{"path":[4,70,2,9,3],"span":[1251,25,27]},{"path":[4,70,2,10],"span":[1252,2,29],"trailingComments":" macOS only\n"},{"path":[4,70,2,10,4],"span":[1252,2,10]},{"path":[4,70,2,10,5],"span":[1252,11,15]},{"path":[4,70,2,10,1],"span":[1252,16,23]},{"path":[4,70,2,10,3],"span":[1252,26,28]},{"path":[4,71],"span":[1258,0,1269,1],"leadingComments":"\n BootConfig: Windows.BootConfig \n"},{"path":[4,71,1],"span":[1258,8,18]},{"path":[4,71,2,0],"span":[1259,2,37]},{"path":[4,71,2,0,4],"span":[1259,2,10]},{"path":[4,71,2,0,5],"span":[1259,11,17]},{"path":[4,71,2,0,1],"span":[1259,18,32]},{"path":[4,71,2,0,3],"span":[1259,35,36]},{"path":[4,71,2,1],"span":[1260,2,30]},{"path":[4,71,2,1,4],"span":[1260,2,10]},{"path":[4,71,2,1,5],"span":[1260,11,17]},{"path":[4,71,2,1,1],"span":[1260,18,25]},{"path":[4,71,2,1,3],"span":[1260,28,29]},{"path":[4,71,2,2],"span":[1261,2,27]},{"path":[4,71,2,2,4],"span":[1261,2,10]},{"path":[4,71,2,2,5],"span":[1261,11,17]},{"path":[4,71,2,2,1],"span":[1261,18,22]},{"path":[4,71,2,2,3],"span":[1261,25,26]},{"path":[4,71,2,3],"span":[1262,2,41]},{"path":[4,71,2,3,4],"span":[1262,2,10]},{"path":[4,71,2,3,5],"span":[1262,11,17]},{"path":[4,71,2,3,1],"span":[1262,18,36]},{"path":[4,71,2,3,3],"span":[1262,39,40]},{"path":[4,71,2,4],"span":[1263,2,40]},{"path":[4,71,2,4,4],"span":[1263,2,10]},{"path":[4,71,2,4,5],"span":[1263,11,17]},{"path":[4,71,2,4,1],"span":[1263,18,35]},{"path":[4,71,2,4,3],"span":[1263,38,39]},{"path":[4,71,2,5],"span":[1264,2,37]},{"path":[4,71,2,5,4],"span":[1264,2,10]},{"path":[4,71,2,5,5],"span":[1264,11,17]},{"path":[4,71,2,5,1],"span":[1264,18,32]},{"path":[4,71,2,5,3],"span":[1264,35,36]},{"path":[4,71,2,6],"span":[1267,2,34],"leadingComments":" from mac\n"},{"path":[4,71,2,6,4],"span":[1267,2,10]},{"path":[4,71,2,6,5],"span":[1267,11,17]},{"path":[4,71,2,6,1],"span":[1267,18,29]},{"path":[4,71,2,6,3],"span":[1267,32,33]},{"path":[4,71,2,7],"span":[1268,2,32]},{"path":[4,71,2,7,4],"span":[1268,2,10]},{"path":[4,71,2,7,5],"span":[1268,11,17]},{"path":[4,71,2,7,1],"span":[1268,18,27]},{"path":[4,71,2,7,3],"span":[1268,30,31]},{"path":[4,72],"span":[1274,0,1280,1],"leadingComments":"\n SharedResource: windows WindowsShare.\n"},{"path":[4,72,1],"span":[1274,8,22]},{"path":[4,72,2,0],"span":[1275,2,30]},{"path":[4,72,2,0,4],"span":[1275,2,10]},{"path":[4,72,2,0,5],"span":[1275,11,17]},{"path":[4,72,2,0,1],"span":[1275,18,25]},{"path":[4,72,2,0,3],"span":[1275,28,29]},{"path":[4,72,2,1],"span":[1276,2,28]},{"path":[4,72,2,1,4],"span":[1276,2,10]},{"path":[4,72,2,1,5],"span":[1276,11,17]},{"path":[4,72,2,1,1],"span":[1276,18,22]},{"path":[4,72,2,1,3],"span":[1276,26,27]},{"path":[4,72,2,2],"span":[1277,2,27]},{"path":[4,72,2,2,4],"span":[1277,2,10]},{"path":[4,72,2,2,5],"span":[1277,11,17]},{"path":[4,72,2,2,1],"span":[1277,18,22]},{"path":[4,72,2,2,3],"span":[1277,25,26]},{"path":[4,72,2,3],"span":[1278,2,32]},{"path":[4,72,2,3,4],"span":[1278,2,10]},{"path":[4,72,2,3,6],"span":[1278,11,22]},{"path":[4,72,2,3,1],"span":[1278,23,27]},{"path":[4,72,2,3,3],"span":[1278,30,31]},{"path":[4,72,2,4],"span":[1279,2,50]},{"path":[4,72,2,4,4],"span":[1279,2,10]},{"path":[4,72,2,4,6],"span":[1279,11,27]},{"path":[4,72,2,4,1],"span":[1279,28,45]},{"path":[4,72,2,4,3],"span":[1279,48,49]},{"path":[4,73],"span":[1285,1,1292,1],"leadingComments":"\n SharedPermission: windows SharePermissionInfo.\n"},{"path":[4,73,1],"span":[1285,9,25]},{"path":[4,73,2,0],"span":[1286,2,27]},{"path":[4,73,2,0,4],"span":[1286,2,10]},{"path":[4,73,2,0,5],"span":[1286,11,17]},{"path":[4,73,2,0,1],"span":[1286,18,22]},{"path":[4,73,2,0,3],"span":[1286,25,26]},{"path":[4,73,2,1],"span":[1287,2,31]},{"path":[4,73,2,1,4],"span":[1287,2,10]},{"path":[4,73,2,1,5],"span":[1287,11,17]},{"path":[4,73,2,1,1],"span":[1287,18,25]},{"path":[4,73,2,1,3],"span":[1287,29,30]},{"path":[4,73,2,2],"span":[1288,2,32]},{"path":[4,73,2,2,4],"span":[1288,2,10]},{"path":[4,73,2,2,5],"span":[1288,11,15]},{"path":[4,73,2,2,1],"span":[1288,16,27]},{"path":[4,73,2,2,3],"span":[1288,30,31]},{"path":[4,73,2,3],"span":[1289,2,33]},{"path":[4,73,2,3,4],"span":[1289,2,10]},{"path":[4,73,2,3,5],"span":[1289,11,15]},{"path":[4,73,2,3,1],"span":[1289,16,28]},{"path":[4,73,2,3,3],"span":[1289,31,32]},{"path":[4,73,2,4],"span":[1290,2,32]},{"path":[4,73,2,4,4],"span":[1290,2,10]},{"path":[4,73,2,4,5],"span":[1290,11,15]},{"path":[4,73,2,4,1],"span":[1290,16,27]},{"path":[4,73,2,4,3],"span":[1290,30,31]},{"path":[4,73,2,5],"span":[1291,2,34]},{"path":[4,73,2,5,4],"span":[1291,2,10]},{"path":[4,73,2,5,5],"span":[1291,11,17]},{"path":[4,73,2,5,1],"span":[1291,18,29]},{"path":[4,73,2,5,3],"span":[1291,32,33]},{"path":[4,74],"span":[1297,0,1303,1],"leadingComments":"\n RunningProcess: computer running processes. Windows.WindowsProcess\n"},{"path":[4,74,1],"span":[1297,8,22]},{"path":[4,74,2,0],"span":[1298,2,27],"trailingComments":" caption\n"},{"path":[4,74,2,0,4],"span":[1298,2,10]},{"path":[4,74,2,0,5],"span":[1298,11,17]},{"path":[4,74,2,0,1],"span":[1298,18,22]},{"path":[4,74,2,0,3],"span":[1298,25,26]},{"path":[4,74,2,1],"span":[1299,2,27],"trailingComments":" executable_path\n"},{"path":[4,74,2,1,4],"span":[1299,2,10]},{"path":[4,74,2,1,5],"span":[1299,11,17]},{"path":[4,74,2,1,1],"span":[1299,18,22]},{"path":[4,74,2,1,3],"span":[1299,25,26]},{"path":[4,74,2,2],"span":[1300,2,29]},{"path":[4,74,2,2,4],"span":[1300,2,10]},{"path":[4,74,2,2,5],"span":[1300,11,16]},{"path":[4,74,2,2,1],"span":[1300,17,24]},{"path":[4,74,2,2,3],"span":[1300,27,28]},{"path":[4,74,2,3],"span":[1301,2,30],"trailingComments":" windows: 0 = LOWEST , 31 = HIGHEST, as per table: https://learn.microsoft.com/en-us/windows/win32/procthread/scheduling-priorities\n"},{"path":[4,74,2,3,4],"span":[1301,2,10]},{"path":[4,74,2,3,5],"span":[1301,11,16]},{"path":[4,74,2,3,1],"span":[1301,17,25]},{"path":[4,74,2,3,3],"span":[1301,28,29]},{"path":[4,74,2,4],"span":[1302,2,29]},{"path":[4,74,2,4,4],"span":[1302,2,10]},{"path":[4,74,2,4,5],"span":[1302,11,17]},{"path":[4,74,2,4,1],"span":[1302,18,24]},{"path":[4,74,2,4,3],"span":[1302,27,28]},{"path":[4,75],"span":[1308,0,1319,1],"leadingComments":"\n Operating System Service: WindowsService.\n"},{"path":[4,75,1],"span":[1308,8,30]},{"path":[4,75,2,0],"span":[1309,2,27]},{"path":[4,75,2,0,4],"span":[1309,2,10]},{"path":[4,75,2,0,5],"span":[1309,11,17]},{"path":[4,75,2,0,1],"span":[1309,18,22]},{"path":[4,75,2,0,3],"span":[1309,25,26]},{"path":[4,75,2,1],"span":[1310,2,30]},{"path":[4,75,2,1,4],"span":[1310,2,10]},{"path":[4,75,2,1,5],"span":[1310,11,17]},{"path":[4,75,2,1,1],"span":[1310,18,25]},{"path":[4,75,2,1,3],"span":[1310,28,29]},{"path":[4,75,2,2],"span":[1311,2,31]},{"path":[4,75,2,2,4],"span":[1311,2,10]},{"path":[4,75,2,2,5],"span":[1311,11,17]},{"path":[4,75,2,2,1],"span":[1311,18,26]},{"path":[4,75,2,2,3],"span":[1311,29,30]},{"path":[4,75,2,3],"span":[1312,2,33]},{"path":[4,75,2,3,4],"span":[1312,2,10]},{"path":[4,75,2,3,5],"span":[1312,11,17]},{"path":[4,75,2,3,1],"span":[1312,18,28]},{"path":[4,75,2,3,3],"span":[1312,31,32]},{"path":[4,75,2,4],"span":[1313,2,33]},{"path":[4,75,2,4,4],"span":[1313,2,10]},{"path":[4,75,2,4,5],"span":[1313,11,17]},{"path":[4,75,2,4,1],"span":[1313,18,28]},{"path":[4,75,2,4,3],"span":[1313,31,32]},{"path":[4,75,2,5],"span":[1314,2,28]},{"path":[4,75,2,5,4],"span":[1314,2,10]},{"path":[4,75,2,5,5],"span":[1314,11,17]},{"path":[4,75,2,5,1],"span":[1314,18,23]},{"path":[4,75,2,5,3],"span":[1314,26,27]},{"path":[4,75,2,6],"span":[1315,2,28]},{"path":[4,75,2,6,4],"span":[1315,2,10]},{"path":[4,75,2,6,5],"span":[1315,11,15]},{"path":[4,75,2,6,1],"span":[1315,16,23]},{"path":[4,75,2,6,3],"span":[1315,26,27]},{"path":[4,75,2,7],"span":[1316,2,33]},{"path":[4,75,2,7,4],"span":[1316,2,10]},{"path":[4,75,2,7,5],"span":[1316,11,15]},{"path":[4,75,2,7,1],"span":[1316,16,28]},{"path":[4,75,2,7,3],"span":[1316,31,32]},{"path":[4,75,2,8],"span":[1317,2,32]},{"path":[4,75,2,8,4],"span":[1317,2,10]},{"path":[4,75,2,8,5],"span":[1317,11,15]},{"path":[4,75,2,8,1],"span":[1317,16,27]},{"path":[4,75,2,8,3],"span":[1317,30,31]},{"path":[4,75,2,9],"span":[1318,2,38]},{"path":[4,75,2,9,4],"span":[1318,2,10]},{"path":[4,75,2,9,5],"span":[1318,11,15]},{"path":[4,75,2,9,1],"span":[1318,16,32]},{"path":[4,75,2,9,3],"span":[1318,35,37]},{"path":[4,76],"span":[1324,0,1328,1],"leadingComments":"\n Operating System Recovery: only windows atm.\n"},{"path":[4,76,1],"span":[1324,8,31]},{"path":[4,76,8,0],"span":[1325,2,1327,3]},{"path":[4,76,8,0,1],"span":[1325,8,10]},{"path":[4,76,2,0],"span":[1326,6,32]},{"path":[4,76,2,0,6],"span":[1326,6,23]},{"path":[4,76,2,0,1],"span":[1326,24,27]},{"path":[4,76,2,0,3],"span":[1326,30,31]},{"path":[4,77],"span":[1333,0,1344,1],"leadingComments":"\n Windows WindowsOsRecovery.\n"},{"path":[4,77,1],"span":[1333,8,25]},{"path":[4,77,2,0],"span":[1334,2,32]},{"path":[4,77,2,0,4],"span":[1334,2,10]},{"path":[4,77,2,0,5],"span":[1334,11,15]},{"path":[4,77,2,0,1],"span":[1334,16,27]},{"path":[4,77,2,0,3],"span":[1334,30,31]},{"path":[4,77,2,1],"span":[1335,2,38]},{"path":[4,77,2,1,4],"span":[1335,2,10]},{"path":[4,77,2,1,5],"span":[1335,11,17]},{"path":[4,77,2,1,1],"span":[1335,18,33]},{"path":[4,77,2,1,3],"span":[1335,36,37]},{"path":[4,77,2,2],"span":[1336,2,37]},{"path":[4,77,2,2,4],"span":[1336,2,10]},{"path":[4,77,2,2,5],"span":[1336,11,15]},{"path":[4,77,2,2,1],"span":[1336,16,32]},{"path":[4,77,2,2,3],"span":[1336,35,36]},{"path":[4,77,2,3],"span":[1337,2,27]},{"path":[4,77,2,3,4],"span":[1337,2,10]},{"path":[4,77,2,3,5],"span":[1337,11,17]},{"path":[4,77,2,3,1],"span":[1337,18,22]},{"path":[4,77,2,3,3],"span":[1337,25,26]},{"path":[4,77,2,4],"span":[1338,2,50]},{"path":[4,77,2,4,4],"span":[1338,2,10]},{"path":[4,77,2,4,5],"span":[1338,11,15]},{"path":[4,77,2,4,1],"span":[1338,16,45]},{"path":[4,77,2,4,3],"span":[1338,48,49]},{"path":[4,77,2,5],"span":[1339,2,37]},{"path":[4,77,2,5,4],"span":[1339,2,10]},{"path":[4,77,2,5,5],"span":[1339,11,15]},{"path":[4,77,2,5,1],"span":[1339,16,32]},{"path":[4,77,2,5,3],"span":[1339,35,36]},{"path":[4,77,2,6],"span":[1340,2,37]},{"path":[4,77,2,6,4],"span":[1340,2,10]},{"path":[4,77,2,6,5],"span":[1340,11,15]},{"path":[4,77,2,6,1],"span":[1340,16,32]},{"path":[4,77,2,6,3],"span":[1340,35,36]},{"path":[4,77,2,7],"span":[1341,2,40]},{"path":[4,77,2,7,4],"span":[1341,2,10]},{"path":[4,77,2,7,5],"span":[1341,11,15]},{"path":[4,77,2,7,1],"span":[1341,16,35]},{"path":[4,77,2,7,3],"span":[1341,38,39]},{"path":[4,77,2,8],"span":[1342,2,44]},{"path":[4,77,2,8,4],"span":[1342,2,10]},{"path":[4,77,2,8,6],"span":[1342,11,22]},{"path":[4,77,2,8,1],"span":[1342,23,38]},{"path":[4,77,2,8,3],"span":[1342,41,43]},{"path":[4,77,2,9],"span":[1343,2,43]},{"path":[4,77,2,9,4],"span":[1343,2,10]},{"path":[4,77,2,9,5],"span":[1343,11,17]},{"path":[4,77,2,9,1],"span":[1343,18,37]},{"path":[4,77,2,9,3],"span":[1343,40,42]},{"path":[4,78],"span":[1350,0,1360,1],"leadingComments":"\n Driver: computer drivers.\n"},{"path":[4,78,1],"span":[1350,8,14]},{"path":[4,78,8,0],"span":[1351,2,1356,3]},{"path":[4,78,8,0,1],"span":[1351,8,14]},{"path":[4,78,2,0],"span":[1352,4,36]},{"path":[4,78,2,0,6],"span":[1352,4,23]},{"path":[4,78,2,0,1],"span":[1352,24,31]},{"path":[4,78,2,0,3],"span":[1352,34,35]},{"path":[4,78,2,1],"span":[1353,4,39]},{"path":[4,78,2,1,6],"span":[1353,4,26]},{"path":[4,78,2,1,1],"span":[1353,27,34]},{"path":[4,78,2,1,3],"span":[1353,37,38]},{"path":[4,78,2,2],"span":[1354,4,41]},{"path":[4,78,2,2,6],"span":[1354,4,24]},{"path":[4,78,2,2,1],"span":[1354,25,36]},{"path":[4,78,2,2,3],"span":[1354,39,40]},{"path":[4,78,2,3],"span":[1355,4,50]},{"path":[4,78,2,3,6],"span":[1355,4,24]},{"path":[4,78,2,3,1],"span":[1355,25,45]},{"path":[4,78,2,3,3],"span":[1355,48,49]},{"path":[4,78,2,4],"span":[1358,2,29]},{"path":[4,78,2,4,4],"span":[1358,2,10]},{"path":[4,78,2,4,5],"span":[1358,11,17]},{"path":[4,78,2,4,1],"span":[1358,18,22]},{"path":[4,78,2,4,3],"span":[1358,25,28]},{"path":[4,78,2,5],"span":[1359,2,36]},{"path":[4,78,2,5,4],"span":[1359,2,10]},{"path":[4,78,2,5,5],"span":[1359,11,17]},{"path":[4,78,2,5,1],"span":[1359,18,29]},{"path":[4,78,2,5,3],"span":[1359,32,35]},{"path":[4,79],"span":[1365,0,1384,1],"leadingComments":"\n WindowsSystemDriver: Windows.SystemDriver\n"},{"path":[4,79,1],"span":[1365,8,27]},{"path":[4,79,2,0],"span":[1366,2,34]},{"path":[4,79,2,0,4],"span":[1366,2,10]},{"path":[4,79,2,0,5],"span":[1366,11,15]},{"path":[4,79,2,0,1],"span":[1366,17,29]},{"path":[4,79,2,0,3],"span":[1366,32,33]},{"path":[4,79,2,1],"span":[1367,2,33]},{"path":[4,79,2,1,4],"span":[1367,2,10]},{"path":[4,79,2,1,5],"span":[1367,11,15]},{"path":[4,79,2,1,1],"span":[1367,17,28]},{"path":[4,79,2,1,3],"span":[1367,31,32]},{"path":[4,79,2,2],"span":[1368,2,38]},{"path":[4,79,2,2,4],"span":[1368,2,10]},{"path":[4,79,2,2,5],"span":[1368,11,15]},{"path":[4,79,2,2,1],"span":[1368,17,33]},{"path":[4,79,2,2,3],"span":[1368,36,37]},{"path":[4,79,2,3],"span":[1369,2,36]},{"path":[4,79,2,3,4],"span":[1369,2,10]},{"path":[4,79,2,3,5],"span":[1369,11,17]},{"path":[4,79,2,3,1],"span":[1369,18,31]},{"path":[4,79,2,3,3],"span":[1369,34,35]},{"path":[4,79,2,4],"span":[1370,2,32]},{"path":[4,79,2,4,4],"span":[1370,2,10]},{"path":[4,79,2,4,5],"span":[1370,11,16]},{"path":[4,79,2,4,1],"span":[1370,18,27]},{"path":[4,79,2,4,3],"span":[1370,30,31]},{"path":[4,79,2,5],"span":[1371,2,32]},{"path":[4,79,2,5,4],"span":[1371,2,10]},{"path":[4,79,2,5,5],"span":[1371,11,17]},{"path":[4,79,2,5,1],"span":[1371,18,27]},{"path":[4,79,2,5,3],"span":[1371,30,31]},{"path":[4,79,2,6],"span":[1372,2,49]},{"path":[4,79,2,6,4],"span":[1372,2,10]},{"path":[4,79,2,6,5],"span":[1372,11,16]},{"path":[4,79,2,6,1],"span":[1372,18,44]},{"path":[4,79,2,6,3],"span":[1372,47,48]},{"path":[4,79,2,7],"span":[1373,2,34]},{"path":[4,79,2,7,4],"span":[1373,2,10]},{"path":[4,79,2,7,5],"span":[1373,11,17]},{"path":[4,79,2,7,1],"span":[1373,18,30]},{"path":[4,79,2,7,3],"span":[1373,32,33]},{"path":[4,79,2,8],"span":[1374,2,29]},{"path":[4,79,2,8,4],"span":[1374,2,10]},{"path":[4,79,2,8,5],"span":[1374,11,15]},{"path":[4,79,2,8,1],"span":[1374,17,24]},{"path":[4,79,2,8,3],"span":[1374,27,28]},{"path":[4,79,2,9],"span":[1375,2,34]},{"path":[4,79,2,9,4],"span":[1375,2,10]},{"path":[4,79,2,9,5],"span":[1375,11,17]},{"path":[4,79,2,9,1],"span":[1375,18,28]},{"path":[4,79,2,9,3],"span":[1375,31,33]},{"path":[4,79,2,10],"span":[1376,2,34]},{"path":[4,79,2,10,4],"span":[1376,2,10]},{"path":[4,79,2,10,5],"span":[1376,11,17]},{"path":[4,79,2,10,1],"span":[1376,18,28]},{"path":[4,79,2,10,3],"span":[1376,31,33]},{"path":[4,79,2,11],"span":[1377,2,29]},{"path":[4,79,2,11,4],"span":[1377,2,10]},{"path":[4,79,2,11,5],"span":[1377,11,17]},{"path":[4,79,2,11,1],"span":[1377,18,23]},{"path":[4,79,2,11,3],"span":[1377,26,28]},{"path":[4,79,2,12],"span":[1378,2,30]},{"path":[4,79,2,12,4],"span":[1378,2,10]},{"path":[4,79,2,12,5],"span":[1378,11,17]},{"path":[4,79,2,12,1],"span":[1378,18,24]},{"path":[4,79,2,12,3],"span":[1378,27,29]},{"path":[4,79,2,13],"span":[1379,2,30]},{"path":[4,79,2,13,4],"span":[1379,2,10]},{"path":[4,79,2,13,5],"span":[1379,11,16]},{"path":[4,79,2,13,1],"span":[1379,18,24]},{"path":[4,79,2,13,3],"span":[1379,27,29]},{"path":[4,79,2,14],"span":[1380,2,28]},{"path":[4,79,2,14,4],"span":[1380,2,10]},{"path":[4,79,2,14,5],"span":[1380,11,17]},{"path":[4,79,2,14,1],"span":[1380,18,22]},{"path":[4,79,2,14,3],"span":[1380,25,27]},{"path":[4,79,2,15],"span":[1381,2,35]},{"path":[4,79,2,15,4],"span":[1381,2,10]},{"path":[4,79,2,15,5],"span":[1381,11,17]},{"path":[4,79,2,15,1],"span":[1381,18,29]},{"path":[4,79,2,15,3],"span":[1381,32,34]},{"path":[4,79,2,16],"span":[1382,2,31]},{"path":[4,79,2,16,4],"span":[1382,2,10]},{"path":[4,79,2,16,5],"span":[1382,11,17]},{"path":[4,79,2,16,1],"span":[1382,18,25]},{"path":[4,79,2,16,3],"span":[1382,28,30]},{"path":[4,79,2,17],"span":[1383,2,36]},{"path":[4,79,2,17,4],"span":[1383,2,10]},{"path":[4,79,2,17,5],"span":[1383,11,17]},{"path":[4,79,2,17,1],"span":[1383,18,30]},{"path":[4,79,2,17,3],"span":[1383,33,35]},{"path":[4,80],"span":[1389,0,1408,1],"leadingComments":"\n WindowsPnpSignedDriver: Windows.PnpSignedDriver\n"},{"path":[4,80,1],"span":[1389,8,30]},{"path":[4,80,2,0],"span":[1390,2,32]},{"path":[4,80,2,0,4],"span":[1390,2,10]},{"path":[4,80,2,0,5],"span":[1390,11,17]},{"path":[4,80,2,0,1],"span":[1390,18,27]},{"path":[4,80,2,0,3],"span":[1390,30,31]},{"path":[4,80,2,1],"span":[1391,2,32]},{"path":[4,80,2,1,4],"span":[1391,2,10]},{"path":[4,80,2,1,5],"span":[1391,11,17]},{"path":[4,80,2,1,1],"span":[1391,18,27]},{"path":[4,80,2,1,3],"span":[1391,30,31]},{"path":[4,80,2,2],"span":[1392,2,33]},{"path":[4,80,2,2,4],"span":[1392,2,10]},{"path":[4,80,2,2,5],"span":[1392,11,17]},{"path":[4,80,2,2,1],"span":[1392,18,28]},{"path":[4,80,2,2,3],"span":[1392,31,32]},{"path":[4,80,2,3],"span":[1393,2,34]},{"path":[4,80,2,3,4],"span":[1393,2,10]},{"path":[4,80,2,3,5],"span":[1393,11,17]},{"path":[4,80,2,3,1],"span":[1393,18,29]},{"path":[4,80,2,3,3],"span":[1393,32,33]},{"path":[4,80,2,4],"span":[1394,2,36]},{"path":[4,80,2,4,4],"span":[1394,2,10]},{"path":[4,80,2,4,5],"span":[1394,11,17]},{"path":[4,80,2,4,1],"span":[1394,18,31]},{"path":[4,80,2,4,3],"span":[1394,34,35]},{"path":[4,80,2,5],"span":[1395,2,44]},{"path":[4,80,2,5,6],"span":[1395,2,27]},{"path":[4,80,2,5,1],"span":[1395,28,39]},{"path":[4,80,2,5,3],"span":[1395,42,43]},{"path":[4,80,2,6],"span":[1396,2,37]},{"path":[4,80,2,6,4],"span":[1396,2,10]},{"path":[4,80,2,6,5],"span":[1396,11,17]},{"path":[4,80,2,6,1],"span":[1396,18,32]},{"path":[4,80,2,6,3],"span":[1396,35,36]},{"path":[4,80,2,7],"span":[1397,2,34]},{"path":[4,80,2,7,4],"span":[1397,2,10]},{"path":[4,80,2,7,5],"span":[1397,11,17]},{"path":[4,80,2,7,1],"span":[1397,18,29]},{"path":[4,80,2,7,3],"span":[1397,32,33]},{"path":[4,80,2,8],"span":[1398,2,31]},{"path":[4,80,2,8,4],"span":[1398,2,10]},{"path":[4,80,2,8,5],"span":[1398,11,17]},{"path":[4,80,2,8,1],"span":[1398,18,26]},{"path":[4,80,2,8,3],"span":[1398,29,30]},{"path":[4,80,2,9],"span":[1399,2,32]},{"path":[4,80,2,9,4],"span":[1399,2,10]},{"path":[4,80,2,9,5],"span":[1399,11,15]},{"path":[4,80,2,9,1],"span":[1399,17,26]},{"path":[4,80,2,9,3],"span":[1399,29,31]},{"path":[4,80,2,10],"span":[1400,2,32]},{"path":[4,80,2,10,4],"span":[1400,2,10]},{"path":[4,80,2,10,5],"span":[1400,11,17]},{"path":[4,80,2,10,1],"span":[1400,18,26]},{"path":[4,80,2,10,3],"span":[1400,29,31]},{"path":[4,80,2,11],"span":[1401,2,27]},{"path":[4,80,2,11,4],"span":[1401,2,10]},{"path":[4,80,2,11,5],"span":[1401,11,17]},{"path":[4,80,2,11,1],"span":[1401,18,21]},{"path":[4,80,2,11,3],"span":[1401,24,26]},{"path":[4,80,2,12],"span":[1402,2,36]},{"path":[4,80,2,12,4],"span":[1402,2,10]},{"path":[4,80,2,12,5],"span":[1402,11,17]},{"path":[4,80,2,12,1],"span":[1402,18,30]},{"path":[4,80,2,12,3],"span":[1402,33,35]},{"path":[4,80,2,13],"span":[1403,2,35]},{"path":[4,80,2,13,4],"span":[1403,2,10]},{"path":[4,80,2,13,5],"span":[1403,11,17]},{"path":[4,80,2,13,1],"span":[1403,18,29]},{"path":[4,80,2,13,3],"span":[1403,32,34]},{"path":[4,80,2,14],"span":[1404,2,36]},{"path":[4,80,2,14,4],"span":[1404,2,10]},{"path":[4,80,2,14,5],"span":[1404,11,17]},{"path":[4,80,2,14,1],"span":[1404,18,30]},{"path":[4,80,2,14,3],"span":[1404,33,35]},{"path":[4,80,2,15],"span":[1405,2,35]},{"path":[4,80,2,15,4],"span":[1405,2,10]},{"path":[4,80,2,15,5],"span":[1405,11,17]},{"path":[4,80,2,15,1],"span":[1405,18,29]},{"path":[4,80,2,15,3],"span":[1405,32,34]},{"path":[4,80,2,16],"span":[1406,2,30]},{"path":[4,80,2,16,4],"span":[1406,2,10]},{"path":[4,80,2,16,5],"span":[1406,11,17]},{"path":[4,80,2,16,1],"span":[1406,18,24]},{"path":[4,80,2,16,3],"span":[1406,27,29]},{"path":[4,80,2,17],"span":[1407,2,44]},{"path":[4,80,2,17,4],"span":[1407,2,10]},{"path":[4,80,2,17,5],"span":[1407,11,17]},{"path":[4,80,2,17,1],"span":[1407,18,38]},{"path":[4,80,2,17,3],"span":[1407,41,43]},{"path":[4,81],"span":[1413,0,1433,1],"leadingComments":"\n WindowsPrinterDriver: Windows.PrinterDriver\n"},{"path":[4,81,1],"span":[1413,8,28]},{"path":[4,81,2,0],"span":[1414,2,34]},{"path":[4,81,2,0,4],"span":[1414,2,10]},{"path":[4,81,2,0,5],"span":[1414,11,17]},{"path":[4,81,2,0,1],"span":[1414,18,29]},{"path":[4,81,2,0,3],"span":[1414,32,33]},{"path":[4,81,2,1],"span":[1415,2,32]},{"path":[4,81,2,1,4],"span":[1415,2,10]},{"path":[4,81,2,1,5],"span":[1415,11,17]},{"path":[4,81,2,1,1],"span":[1415,18,27]},{"path":[4,81,2,1,3],"span":[1415,30,31]},{"path":[4,81,2,2],"span":[1416,2,40]},{"path":[4,81,2,2,4],"span":[1416,2,10]},{"path":[4,81,2,2,5],"span":[1416,11,17]},{"path":[4,81,2,2,1],"span":[1416,18,35]},{"path":[4,81,2,2,3],"span":[1416,38,39]},{"path":[4,81,2,3],"span":[1417,2,34]},{"path":[4,81,2,3,4],"span":[1417,2,10]},{"path":[4,81,2,3,5],"span":[1417,11,17]},{"path":[4,81,2,3,1],"span":[1417,18,29]},{"path":[4,81,2,3,3],"span":[1417,32,33]},{"path":[4,81,2,4],"span":[1418,2,32]},{"path":[4,81,2,4,4],"span":[1418,2,10]},{"path":[4,81,2,4,5],"span":[1418,11,17]},{"path":[4,81,2,4,1],"span":[1418,18,27]},{"path":[4,81,2,4,3],"span":[1418,30,31]},{"path":[4,81,2,5],"span":[1419,2,32]},{"path":[4,81,2,5,4],"span":[1419,2,10]},{"path":[4,81,2,5,5],"span":[1419,11,17]},{"path":[4,81,2,5,1],"span":[1419,18,27]},{"path":[4,81,2,5,3],"span":[1419,30,31]},{"path":[4,81,2,6],"span":[1420,2,35]},{"path":[4,81,2,6,4],"span":[1420,2,10]},{"path":[4,81,2,6,5],"span":[1420,11,17]},{"path":[4,81,2,6,1],"span":[1420,18,30]},{"path":[4,81,2,6,3],"span":[1420,33,34]},{"path":[4,81,2,7],"span":[1421,2,30]},{"path":[4,81,2,7,4],"span":[1421,2,10]},{"path":[4,81,2,7,5],"span":[1421,11,17]},{"path":[4,81,2,7,1],"span":[1421,18,25]},{"path":[4,81,2,7,3],"span":[1421,28,29]},{"path":[4,81,2,8],"span":[1422,2,30]},{"path":[4,81,2,8,4],"span":[1422,2,10]},{"path":[4,81,2,8,5],"span":[1422,11,16]},{"path":[4,81,2,8,1],"span":[1422,18,25]},{"path":[4,81,2,8,3],"span":[1422,28,29]},{"path":[4,81,2,9],"span":[1423,2,38]},{"path":[4,81,2,9,4],"span":[1423,2,10]},{"path":[4,81,2,9,5],"span":[1423,11,17]},{"path":[4,81,2,9,1],"span":[1423,18,32]},{"path":[4,81,2,9,3],"span":[1423,35,37]},{"path":[4,81,2,10],"span":[1424,2,35]},{"path":[4,81,2,10,4],"span":[1424,2,10]},{"path":[4,81,2,10,5],"span":[1424,11,17]},{"path":[4,81,2,10,1],"span":[1424,18,29]},{"path":[4,81,2,10,3],"span":[1424,32,34]},{"path":[4,81,2,11],"span":[1425,2,35]},{"path":[4,81,2,11,4],"span":[1425,2,10]},{"path":[4,81,2,11,5],"span":[1425,11,17]},{"path":[4,81,2,11,1],"span":[1425,18,29]},{"path":[4,81,2,11,3],"span":[1425,32,34]},{"path":[4,81,2,12],"span":[1426,2,32]},{"path":[4,81,2,12,4],"span":[1426,2,10]},{"path":[4,81,2,12,5],"span":[1426,11,17]},{"path":[4,81,2,12,1],"span":[1426,18,26]},{"path":[4,81,2,12,3],"span":[1426,29,31]},{"path":[4,81,2,13],"span":[1427,2,43]},{"path":[4,81,2,13,4],"span":[1427,2,10]},{"path":[4,81,2,13,5],"span":[1427,11,17]},{"path":[4,81,2,13,1],"span":[1427,18,37]},{"path":[4,81,2,13,3],"span":[1427,40,42]},{"path":[4,81,2,14],"span":[1428,2,39]},{"path":[4,81,2,14,4],"span":[1428,2,10]},{"path":[4,81,2,14,5],"span":[1428,11,17]},{"path":[4,81,2,14,1],"span":[1428,18,33]},{"path":[4,81,2,14,3],"span":[1428,36,38]},{"path":[4,81,2,15],"span":[1429,2,28]},{"path":[4,81,2,15,4],"span":[1429,2,10]},{"path":[4,81,2,15,5],"span":[1429,11,17]},{"path":[4,81,2,15,1],"span":[1429,18,22]},{"path":[4,81,2,15,3],"span":[1429,25,27]},{"path":[4,81,2,16],"span":[1430,2,32]},{"path":[4,81,2,16,4],"span":[1430,2,10]},{"path":[4,81,2,16,5],"span":[1430,11,17]},{"path":[4,81,2,16,1],"span":[1430,18,26]},{"path":[4,81,2,16,3],"span":[1430,29,31]},{"path":[4,81,2,17],"span":[1431,2,42]},{"path":[4,81,2,17,4],"span":[1431,2,10]},{"path":[4,81,2,17,5],"span":[1431,11,17]},{"path":[4,81,2,17,1],"span":[1431,18,36]},{"path":[4,81,2,17,3],"span":[1431,39,41]},{"path":[4,81,2,18],"span":[1432,2,36]},{"path":[4,81,2,18,4],"span":[1432,2,10]},{"path":[4,81,2,18,5],"span":[1432,11,17]},{"path":[4,81,2,18,1],"span":[1432,18,30]},{"path":[4,81,2,18,3],"span":[1432,33,35]},{"path":[4,82],"span":[1436,0,1457,1],"leadingComments":" Mac OS Kernel Extension. From MacOs.Extension inbound model\n"},{"path":[4,82,1],"span":[1436,8,28]},{"path":[4,82,2,0],"span":[1437,2,27]},{"path":[4,82,2,0,4],"span":[1437,2,10]},{"path":[4,82,2,0,5],"span":[1437,11,17]},{"path":[4,82,2,0,1],"span":[1437,18,22]},{"path":[4,82,2,0,3],"span":[1437,25,26]},{"path":[4,82,2,1],"span":[1438,2,43]},{"path":[4,82,2,1,4],"span":[1438,2,10]},{"path":[4,82,2,1,5],"span":[1438,11,17]},{"path":[4,82,2,1,1],"span":[1438,18,38]},{"path":[4,82,2,1,3],"span":[1438,41,42]},{"path":[4,82,2,2],"span":[1439,2,36]},{"path":[4,82,2,2,4],"span":[1439,2,10]},{"path":[4,82,2,2,5],"span":[1439,11,17]},{"path":[4,82,2,2,1],"span":[1439,18,31]},{"path":[4,82,2,2,3],"span":[1439,34,35]},{"path":[4,82,2,3],"span":[1440,2,32]},{"path":[4,82,2,3,4],"span":[1440,2,10]},{"path":[4,82,2,3,5],"span":[1440,11,17]},{"path":[4,82,2,3,1],"span":[1440,18,27]},{"path":[4,82,2,3,3],"span":[1440,30,31]},{"path":[4,82,2,4],"span":[1441,2,35]},{"path":[4,82,2,4,4],"span":[1441,2,10]},{"path":[4,82,2,4,5],"span":[1441,11,17]},{"path":[4,82,2,4,1],"span":[1441,18,30]},{"path":[4,82,2,4,3],"span":[1441,33,34]},{"path":[4,82,2,5],"span":[1442,2,58]},{"path":[4,82,2,5,4],"span":[1442,2,10]},{"path":[4,82,2,5,6],"span":[1442,11,35]},{"path":[4,82,2,5,1],"span":[1442,36,53]},{"path":[4,82,2,5,3],"span":[1442,56,57]},{"path":[4,82,2,6],"span":[1443,2,27]},{"path":[4,82,2,6,4],"span":[1443,2,10]},{"path":[4,82,2,6,5],"span":[1443,11,17]},{"path":[4,82,2,6,1],"span":[1443,18,22]},{"path":[4,82,2,6,3],"span":[1443,25,26]},{"path":[4,82,2,7],"span":[1444,2,55]},{"path":[4,82,2,7,4],"span":[1444,2,10]},{"path":[4,82,2,7,6],"span":[1444,11,36]},{"path":[4,82,2,7,1],"span":[1444,37,50]},{"path":[4,82,2,7,3],"span":[1444,53,54]},{"path":[4,82,2,8],"span":[1445,2,35]},{"path":[4,82,2,8,4],"span":[1445,2,10]},{"path":[4,82,2,8,5],"span":[1445,11,17]},{"path":[4,82,2,8,1],"span":[1445,18,30]},{"path":[4,82,2,8,3],"span":[1445,33,34]},{"path":[4,82,2,9],"span":[1446,2,32]},{"path":[4,82,2,9,4],"span":[1446,2,10]},{"path":[4,82,2,9,5],"span":[1446,11,17]},{"path":[4,82,2,9,1],"span":[1446,18,26]},{"path":[4,82,2,9,3],"span":[1446,29,31]},{"path":[4,82,2,10],"span":[1447,2,30]},{"path":[4,82,2,10,4],"span":[1447,2,10]},{"path":[4,82,2,10,5],"span":[1447,11,17]},{"path":[4,82,2,10,1],"span":[1447,18,24]},{"path":[4,82,2,10,3],"span":[1447,27,29]},{"path":[4,82,2,11],"span":[1448,2,33]},{"path":[4,82,2,11,4],"span":[1448,2,10]},{"path":[4,82,2,11,5],"span":[1448,11,17]},{"path":[4,82,2,11,1],"span":[1448,18,27]},{"path":[4,82,2,11,3],"span":[1448,30,32]},{"path":[4,82,2,12],"span":[1449,2,37]},{"path":[4,82,2,12,4],"span":[1449,2,10]},{"path":[4,82,2,12,5],"span":[1449,11,17]},{"path":[4,82,2,12,1],"span":[1449,18,31]},{"path":[4,82,2,12,3],"span":[1449,34,36]},{"path":[4,82,2,13],"span":[1450,2,37]},{"path":[4,82,2,13,4],"span":[1450,2,10]},{"path":[4,82,2,13,5],"span":[1450,11,17]},{"path":[4,82,2,13,1],"span":[1450,18,31]},{"path":[4,82,2,13,3],"span":[1450,34,36]},{"path":[4,82,2,14],"span":[1451,2,43]},{"path":[4,82,2,14,4],"span":[1451,2,10]},{"path":[4,82,2,14,5],"span":[1451,11,17]},{"path":[4,82,2,14,1],"span":[1451,18,37]},{"path":[4,82,2,14,3],"span":[1451,40,42]},{"path":[4,82,2,15],"span":[1452,2,33]},{"path":[4,82,2,15,4],"span":[1452,2,10]},{"path":[4,82,2,15,5],"span":[1452,11,17]},{"path":[4,82,2,15,1],"span":[1452,18,27]},{"path":[4,82,2,15,3],"span":[1452,30,32]},{"path":[4,82,2,16],"span":[1453,2,38]},{"path":[4,82,2,16,4],"span":[1453,2,10]},{"path":[4,82,2,16,5],"span":[1453,11,17]},{"path":[4,82,2,16,1],"span":[1453,18,32]},{"path":[4,82,2,16,3],"span":[1453,35,37]},{"path":[4,82,2,17],"span":[1454,2,57]},{"path":[4,82,2,17,4],"span":[1454,2,10]},{"path":[4,82,2,17,6],"span":[1454,11,35]},{"path":[4,82,2,17,1],"span":[1454,36,51]},{"path":[4,82,2,17,3],"span":[1454,54,56]},{"path":[4,82,2,18],"span":[1455,2,31]},{"path":[4,82,2,18,4],"span":[1455,2,10]},{"path":[4,82,2,18,5],"span":[1455,11,17]},{"path":[4,82,2,18,1],"span":[1455,18,25]},{"path":[4,82,2,18,3],"span":[1455,28,30]},{"path":[4,82,2,19],"span":[1456,2,36]},{"path":[4,82,2,19,4],"span":[1456,2,10]},{"path":[4,82,2,19,5],"span":[1456,11,17]},{"path":[4,82,2,19,1],"span":[1456,18,30]},{"path":[4,82,2,19,3],"span":[1456,33,35]},{"path":[4,83],"span":[1459,0,1462,1]},{"path":[4,83,1],"span":[1459,8,32]},{"path":[4,83,2,0],"span":[1460,2,33]},{"path":[4,83,2,0,4],"span":[1460,2,10]},{"path":[4,83,2,0,5],"span":[1460,11,17]},{"path":[4,83,2,0,1],"span":[1460,18,28]},{"path":[4,83,2,0,3],"span":[1460,31,32]},{"path":[4,83,2,1],"span":[1461,2,43]},{"path":[4,83,2,1,4],"span":[1461,2,10]},{"path":[4,83,2,1,6],"span":[1461,11,31]},{"path":[4,83,2,1,1],"span":[1461,32,38]},{"path":[4,83,2,1,3],"span":[1461,41,42]},{"path":[4,84],"span":[1464,0,1467,1]},{"path":[4,84,1],"span":[1464,8,28]},{"path":[4,84,2,0],"span":[1465,2,40]},{"path":[4,84,2,0,4],"span":[1465,2,10]},{"path":[4,84,2,0,5],"span":[1465,11,17]},{"path":[4,84,2,0,1],"span":[1465,18,35]},{"path":[4,84,2,0,3],"span":[1465,38,39]},{"path":[4,84,2,1],"span":[1466,2,29]},{"path":[4,84,2,1,4],"span":[1466,2,10]},{"path":[4,84,2,1,5],"span":[1466,11,17]},{"path":[4,84,2,1,1],"span":[1466,18,24]},{"path":[4,84,2,1,3],"span":[1466,27,28]},{"path":[4,85],"span":[1470,0,1482,1],"leadingComments":" Accessibility Information from MacOS, to be mapped from MacAccessibility\n"},{"path":[4,85,1],"span":[1470,8,32]},{"path":[4,85,2,0],"span":[1471,2,31]},{"path":[4,85,2,0,4],"span":[1471,2,10]},{"path":[4,85,2,0,5],"span":[1471,11,17]},{"path":[4,85,2,0,1],"span":[1471,18,26]},{"path":[4,85,2,0,3],"span":[1471,29,30]},{"path":[4,85,2,1],"span":[1472,2,33]},{"path":[4,85,2,1,4],"span":[1472,2,10]},{"path":[4,85,2,1,5],"span":[1472,11,17]},{"path":[4,85,2,1,1],"span":[1472,18,28]},{"path":[4,85,2,1,3],"span":[1472,31,32]},{"path":[4,85,2,2],"span":[1473,2,30]},{"path":[4,85,2,2,4],"span":[1473,2,10]},{"path":[4,85,2,2,5],"span":[1473,11,17]},{"path":[4,85,2,2,1],"span":[1473,18,25]},{"path":[4,85,2,2,3],"span":[1473,28,29]},{"path":[4,85,2,3],"span":[1474,2,35]},{"path":[4,85,2,3,4],"span":[1474,2,10]},{"path":[4,85,2,3,5],"span":[1474,11,17]},{"path":[4,85,2,3,1],"span":[1474,18,30]},{"path":[4,85,2,3,3],"span":[1474,33,34]},{"path":[4,85,2,4],"span":[1475,2,36]},{"path":[4,85,2,4,4],"span":[1475,2,10]},{"path":[4,85,2,4,5],"span":[1475,11,17]},{"path":[4,85,2,4,1],"span":[1475,18,31]},{"path":[4,85,2,4,3],"span":[1475,34,35]},{"path":[4,85,2,5],"span":[1476,2,33]},{"path":[4,85,2,5,4],"span":[1476,2,10]},{"path":[4,85,2,5,5],"span":[1476,11,17]},{"path":[4,85,2,5,1],"span":[1476,18,28]},{"path":[4,85,2,5,3],"span":[1476,31,32]},{"path":[4,85,2,6],"span":[1477,2,34]},{"path":[4,85,2,6,4],"span":[1477,2,10]},{"path":[4,85,2,6,5],"span":[1477,11,17]},{"path":[4,85,2,6,1],"span":[1477,18,29]},{"path":[4,85,2,6,3],"span":[1477,32,33]},{"path":[4,85,2,7],"span":[1478,2,32]},{"path":[4,85,2,7,4],"span":[1478,2,10]},{"path":[4,85,2,7,5],"span":[1478,11,17]},{"path":[4,85,2,7,1],"span":[1478,18,27]},{"path":[4,85,2,7,3],"span":[1478,30,31]},{"path":[4,85,2,8],"span":[1479,2,34]},{"path":[4,85,2,8,4],"span":[1479,2,10]},{"path":[4,85,2,8,5],"span":[1479,11,17]},{"path":[4,85,2,8,1],"span":[1479,18,29]},{"path":[4,85,2,8,3],"span":[1479,32,33]},{"path":[4,85,2,9],"span":[1480,2,34]},{"path":[4,85,2,9,4],"span":[1480,2,10]},{"path":[4,85,2,9,5],"span":[1480,11,17]},{"path":[4,85,2,9,1],"span":[1480,18,28]},{"path":[4,85,2,9,3],"span":[1480,31,33]},{"path":[4,85,2,10],"span":[1481,2,33]},{"path":[4,85,2,10,4],"span":[1481,2,10]},{"path":[4,85,2,10,5],"span":[1481,11,17]},{"path":[4,85,2,10,1],"span":[1481,18,27]},{"path":[4,85,2,10,3],"span":[1481,30,32]},{"path":[4,86],"span":[1487,0,1496,1],"leadingComments":"\n Sound Card for computers: Windows.WindowsSound, Unix.SoundCards (=PciCards)\n"},{"path":[4,86,1],"span":[1487,8,17]},{"path":[4,86,2,0],"span":[1488,2,30],"trailingComments":" Windows, Linux(name)\n"},{"path":[4,86,2,0,4],"span":[1488,2,10]},{"path":[4,86,2,0,5],"span":[1488,11,17]},{"path":[4,86,2,0,1],"span":[1488,18,25]},{"path":[4,86,2,0,3],"span":[1488,28,29]},{"path":[4,86,2,1],"span":[1489,2,32],"trailingComments":" Windows, Linux\n"},{"path":[4,86,2,1,4],"span":[1489,2,10]},{"path":[4,86,2,1,5],"span":[1489,11,17]},{"path":[4,86,2,1,1],"span":[1489,18,27]},{"path":[4,86,2,1,3],"span":[1489,30,31]},{"path":[4,86,2,2],"span":[1490,2,35],"trailingComments":" Windows, Linux\n"},{"path":[4,86,2,2,4],"span":[1490,2,10]},{"path":[4,86,2,2,5],"span":[1490,11,17]},{"path":[4,86,2,2,1],"span":[1490,18,30]},{"path":[4,86,2,2,3],"span":[1490,33,34]},{"path":[4,86,2,3],"span":[1492,2,27],"trailingComments":" Linux\n"},{"path":[4,86,2,3,4],"span":[1492,2,10]},{"path":[4,86,2,3,5],"span":[1492,11,17]},{"path":[4,86,2,3,1],"span":[1492,18,22]},{"path":[4,86,2,3,3],"span":[1492,25,26]},{"path":[4,86,2,4],"span":[1493,2,37],"trailingComments":" Linux\n"},{"path":[4,86,2,4,4],"span":[1493,2,10]},{"path":[4,86,2,4,5],"span":[1493,11,17]},{"path":[4,86,2,4,1],"span":[1493,18,32]},{"path":[4,86,2,4,3],"span":[1493,35,36]},{"path":[4,86,2,5],"span":[1494,2,45],"trailingComments":" Linux\n"},{"path":[4,86,2,5,4],"span":[1494,2,10]},{"path":[4,86,2,5,5],"span":[1494,11,17]},{"path":[4,86,2,5,1],"span":[1494,18,40]},{"path":[4,86,2,5,3],"span":[1494,43,44]},{"path":[4,86,2,6],"span":[1495,2,29],"trailingComments":" Linux\n"},{"path":[4,86,2,6,4],"span":[1495,2,10]},{"path":[4,86,2,6,5],"span":[1495,11,17]},{"path":[4,86,2,6,1],"span":[1495,18,24]},{"path":[4,86,2,6,3],"span":[1495,27,28]},{"path":[4,87],"span":[1501,0,1530,1],"leadingComments":"\n Graphics Card for computers: Windows.VideoControllers, Unix.SoundCards (=PciCards)\n"},{"path":[4,87,1],"span":[1501,8,20]},{"path":[4,87,2,0],"span":[1502,2,33],"trailingComments":"\tWindows, Linux\n"},{"path":[4,87,2,0,4],"span":[1502,2,10]},{"path":[4,87,2,0,5],"span":[1502,16,22]},{"path":[4,87,2,0,1],"span":[1502,24,28]},{"path":[4,87,2,0,3],"span":[1502,31,32]},{"path":[4,87,2,1],"span":[1503,2,47],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,1,4],"span":[1503,2,10]},{"path":[4,87,2,1,5],"span":[1503,16,21]},{"path":[4,87,2,1,1],"span":[1503,24,42]},{"path":[4,87,2,1,3],"span":[1503,45,46]},{"path":[4,87,2,2],"span":[1504,2,51],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,2,4],"span":[1504,2,10]},{"path":[4,87,2,2,5],"span":[1504,16,21]},{"path":[4,87,2,2,1],"span":[1504,24,46]},{"path":[4,87,2,2,3],"span":[1504,49,50]},{"path":[4,87,2,3],"span":[1505,2,58],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,3,4],"span":[1505,2,10]},{"path":[4,87,2,3,5],"span":[1505,16,21]},{"path":[4,87,2,3,1],"span":[1505,24,53]},{"path":[4,87,2,3,3],"span":[1505,56,57]},{"path":[4,87,2,4],"span":[1506,2,53],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,4,4],"span":[1506,2,10]},{"path":[4,87,2,4,5],"span":[1506,16,21]},{"path":[4,87,2,4,1],"span":[1506,24,48]},{"path":[4,87,2,4,3],"span":[1506,51,52]},{"path":[4,87,2,5],"span":[1507,2,49],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,5,4],"span":[1507,2,10]},{"path":[4,87,2,5,5],"span":[1507,16,21]},{"path":[4,87,2,5,1],"span":[1507,24,44]},{"path":[4,87,2,5,3],"span":[1507,47,48]},{"path":[4,87,2,6],"span":[1508,2,54],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,6,4],"span":[1508,2,10]},{"path":[4,87,2,6,6],"span":[1508,16,27]},{"path":[4,87,2,6,1],"span":[1508,32,49]},{"path":[4,87,2,6,3],"span":[1508,52,53]},{"path":[4,87,2,7],"span":[1509,2,56],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,7,4],"span":[1509,2,10]},{"path":[4,87,2,7,5],"span":[1509,16,21]},{"path":[4,87,2,7,1],"span":[1509,24,51]},{"path":[4,87,2,7,3],"span":[1509,54,55]},{"path":[4,87,2,8],"span":[1510,2,38],"trailingComments":"\t\tWindows, Linux\n"},{"path":[4,87,2,8,4],"span":[1510,2,10]},{"path":[4,87,2,8,5],"span":[1510,16,22]},{"path":[4,87,2,8,1],"span":[1510,24,33]},{"path":[4,87,2,8,3],"span":[1510,36,37]},{"path":[4,87,2,9],"span":[1511,2,50],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,9,4],"span":[1511,2,10]},{"path":[4,87,2,9,5],"span":[1511,16,21]},{"path":[4,87,2,9,1],"span":[1511,24,44]},{"path":[4,87,2,9,3],"span":[1511,47,49]},{"path":[4,87,2,10],"span":[1512,2,44],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,10,4],"span":[1512,2,10]},{"path":[4,87,2,10,5],"span":[1512,16,22]},{"path":[4,87,2,10,1],"span":[1512,24,38]},{"path":[4,87,2,10,3],"span":[1512,41,43]},{"path":[4,87,2,11],"span":[1513,2,42],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,11,4],"span":[1513,2,10]},{"path":[4,87,2,11,5],"span":[1513,16,22]},{"path":[4,87,2,11,1],"span":[1513,24,36]},{"path":[4,87,2,11,3],"span":[1513,39,41]},{"path":[4,87,2,12],"span":[1514,2,41],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,12,4],"span":[1514,2,10]},{"path":[4,87,2,12,5],"span":[1514,16,22]},{"path":[4,87,2,12,1],"span":[1514,24,35]},{"path":[4,87,2,12,3],"span":[1514,38,40]},{"path":[4,87,2,13],"span":[1515,2,55],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,13,4],"span":[1515,2,10]},{"path":[4,87,2,13,5],"span":[1515,16,22]},{"path":[4,87,2,13,1],"span":[1515,24,49]},{"path":[4,87,2,13,3],"span":[1515,52,54]},{"path":[4,87,2,14],"span":[1516,2,43],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,14,4],"span":[1516,2,10]},{"path":[4,87,2,14,5],"span":[1516,16,20]},{"path":[4,87,2,14,1],"span":[1516,24,37]},{"path":[4,87,2,14,3],"span":[1516,40,42]},{"path":[4,87,2,15],"span":[1517,2,42],"trailingComments":"\t\tWindows, Linux\n"},{"path":[4,87,2,15,4],"span":[1517,2,10]},{"path":[4,87,2,15,5],"span":[1517,16,22]},{"path":[4,87,2,15,1],"span":[1517,24,36]},{"path":[4,87,2,15,3],"span":[1517,39,41]},{"path":[4,87,2,16],"span":[1518,2,46],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,16,4],"span":[1518,2,10]},{"path":[4,87,2,16,5],"span":[1518,16,21]},{"path":[4,87,2,16,1],"span":[1518,24,40]},{"path":[4,87,2,16,3],"span":[1518,43,45]},{"path":[4,87,2,17],"span":[1519,2,36],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,17,4],"span":[1519,2,10]},{"path":[4,87,2,17,5],"span":[1519,16,21]},{"path":[4,87,2,17,1],"span":[1519,24,30]},{"path":[4,87,2,17,3],"span":[1519,33,35]},{"path":[4,87,2,18],"span":[1520,2,49],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,18,4],"span":[1520,2,10]},{"path":[4,87,2,18,6],"span":[1520,16,27]},{"path":[4,87,2,18,1],"span":[1520,32,43]},{"path":[4,87,2,18,3],"span":[1520,46,48]},{"path":[4,87,2,19],"span":[1521,2,46],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,19,4],"span":[1521,2,10]},{"path":[4,87,2,19,5],"span":[1521,16,21]},{"path":[4,87,2,19,1],"span":[1521,24,40]},{"path":[4,87,2,19,3],"span":[1521,43,45]},{"path":[4,87,2,20],"span":[1522,2,38],"trailingComments":"\t\tLinux\n"},{"path":[4,87,2,20,4],"span":[1522,2,10]},{"path":[4,87,2,20,5],"span":[1522,16,22]},{"path":[4,87,2,20,1],"span":[1522,24,32]},{"path":[4,87,2,20,3],"span":[1522,35,37]},{"path":[4,87,2,21],"span":[1523,2,43],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,21,4],"span":[1523,2,10]},{"path":[4,87,2,21,5],"span":[1523,16,22]},{"path":[4,87,2,21,1],"span":[1523,24,37]},{"path":[4,87,2,21,3],"span":[1523,40,42]},{"path":[4,87,2,22],"span":[1524,2,43],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,22,4],"span":[1524,2,10]},{"path":[4,87,2,22,6],"span":[1524,16,27]},{"path":[4,87,2,22,1],"span":[1524,32,37]},{"path":[4,87,2,22,3],"span":[1524,40,42]},{"path":[4,87,2,23],"span":[1525,2,52],"trailingComments":"\t\tLinux\n"},{"path":[4,87,2,23,4],"span":[1525,2,10]},{"path":[4,87,2,23,5],"span":[1525,16,22]},{"path":[4,87,2,23,1],"span":[1525,24,46]},{"path":[4,87,2,23,3],"span":[1525,49,51]},{"path":[4,87,2,24],"span":[1526,2,44],"trailingComments":"\t\tLinux\n"},{"path":[4,87,2,24,4],"span":[1526,2,10]},{"path":[4,87,2,24,5],"span":[1526,16,22]},{"path":[4,87,2,24,1],"span":[1526,24,38]},{"path":[4,87,2,24,3],"span":[1526,41,43]},{"path":[4,87,2,25],"span":[1527,2,56],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,25,4],"span":[1527,2,10]},{"path":[4,87,2,25,6],"span":[1527,16,27]},{"path":[4,87,2,25,1],"span":[1527,32,50]},{"path":[4,87,2,25,3],"span":[1527,53,55]},{"path":[4,87,2,26],"span":[1528,2,40],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,26,4],"span":[1528,2,10]},{"path":[4,87,2,26,5],"span":[1528,16,22]},{"path":[4,87,2,26,1],"span":[1528,24,34]},{"path":[4,87,2,26,3],"span":[1528,37,39]},{"path":[4,87,2,27],"span":[1529,2,45],"trailingComments":"\t\tWindows\n"},{"path":[4,87,2,27,4],"span":[1529,2,10]},{"path":[4,87,2,27,5],"span":[1529,16,22]},{"path":[4,87,2,27,1],"span":[1529,24,39]},{"path":[4,87,2,27,3],"span":[1529,42,44]},{"path":[4,88],"span":[1535,0,1545,1],"leadingComments":"\n BIOS for computers.\n"},{"path":[4,88,1],"span":[1535,8,12]},{"path":[4,88,8,0],"span":[1536,2,1539,3]},{"path":[4,88,8,0,1],"span":[1536,8,12]},{"path":[4,88,2,0],"span":[1537,4,24]},{"path":[4,88,2,0,6],"span":[1537,4,15]},{"path":[4,88,2,0,1],"span":[1537,16,19]},{"path":[4,88,2,0,3],"span":[1537,22,23]},{"path":[4,88,2,1],"span":[1538,4,24]},{"path":[4,88,2,1,6],"span":[1538,4,13]},{"path":[4,88,2,1,1],"span":[1538,14,19]},{"path":[4,88,2,1,3],"span":[1538,22,23]},{"path":[4,88,2,2],"span":[1542,2,37],"leadingComments":" common fields summarized\n"},{"path":[4,88,2,2,4],"span":[1542,2,10]},{"path":[4,88,2,2,5],"span":[1542,11,17]},{"path":[4,88,2,2,1],"span":[1542,18,30]},{"path":[4,88,2,2,3],"span":[1542,33,36]},{"path":[4,88,2,3],"span":[1543,2,32]},{"path":[4,88,2,3,4],"span":[1543,2,10]},{"path":[4,88,2,3,5],"span":[1543,11,17]},{"path":[4,88,2,3,1],"span":[1543,18,25]},{"path":[4,88,2,3,3],"span":[1543,28,31]},{"path":[4,88,2,4],"span":[1544,2,56]},{"path":[4,88,2,4,4],"span":[1544,2,10]},{"path":[4,88,2,4,6],"span":[1544,11,36]},{"path":[4,88,2,4,1],"span":[1544,37,49]},{"path":[4,88,2,4,3],"span":[1544,52,55]},{"path":[4,89],"span":[1551,0,1571,1],"leadingComments":"\n Windows Bios from Windows.Bios\n WMI mappings from https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-bios\n"},{"path":[4,89,1],"span":[1551,8,19]},{"path":[4,89,2,0],"span":[1552,2,48]},{"path":[4,89,2,0,4],"span":[1552,2,10]},{"path":[4,89,2,0,6],"span":[1552,11,22]},{"path":[4,89,2,0,1],"span":[1552,23,43]},{"path":[4,89,2,0,3],"span":[1552,46,47]},{"path":[4,89,2,1],"span":[1553,2,30]},{"path":[4,89,2,1,4],"span":[1553,2,10]},{"path":[4,89,2,1,5],"span":[1553,11,17]},{"path":[4,89,2,1,1],"span":[1553,18,25]},{"path":[4,89,2,1,3],"span":[1553,28,29]},{"path":[4,89,2,2],"span":[1554,2,39]},{"path":[4,89,2,2,4],"span":[1554,2,10]},{"path":[4,89,2,2,5],"span":[1554,11,17]},{"path":[4,89,2,2,1],"span":[1554,18,34]},{"path":[4,89,2,2,3],"span":[1554,37,38]},{"path":[4,89,2,3],"span":[1555,2,43]},{"path":[4,89,2,3,4],"span":[1555,2,10]},{"path":[4,89,2,3,5],"span":[1555,11,16]},{"path":[4,89,2,3,1],"span":[1555,17,38]},{"path":[4,89,2,3,3],"span":[1555,41,42]},{"path":[4,89,2,4],"span":[1556,2,35]},{"path":[4,89,2,4,4],"span":[1556,2,10]},{"path":[4,89,2,4,5],"span":[1556,11,17]},{"path":[4,89,2,4,1],"span":[1556,18,30]},{"path":[4,89,2,4,3],"span":[1556,33,34]},{"path":[4,89,2,5],"span":[1557,2,27]},{"path":[4,89,2,5,4],"span":[1557,2,10]},{"path":[4,89,2,5,5],"span":[1557,11,17]},{"path":[4,89,2,5,1],"span":[1557,18,22]},{"path":[4,89,2,5,3],"span":[1557,25,26]},{"path":[4,89,2,6],"span":[1558,2,33]},{"path":[4,89,2,6,4],"span":[1558,2,10]},{"path":[4,89,2,6,5],"span":[1558,11,15]},{"path":[4,89,2,6,1],"span":[1558,16,28]},{"path":[4,89,2,6,3],"span":[1558,31,32]},{"path":[4,89,2,7],"span":[1559,2,54]},{"path":[4,89,2,7,4],"span":[1559,2,10]},{"path":[4,89,2,7,6],"span":[1559,11,36]},{"path":[4,89,2,7,1],"span":[1559,37,49]},{"path":[4,89,2,7,3],"span":[1559,52,53]},{"path":[4,89,2,8],"span":[1560,2,37]},{"path":[4,89,2,8,4],"span":[1560,2,10]},{"path":[4,89,2,8,5],"span":[1560,11,17]},{"path":[4,89,2,8,1],"span":[1560,18,31]},{"path":[4,89,2,8,3],"span":[1560,34,36]},{"path":[4,89,2,9],"span":[1561,2,43]},{"path":[4,89,2,9,4],"span":[1561,2,10]},{"path":[4,89,2,9,5],"span":[1561,11,17]},{"path":[4,89,2,9,1],"span":[1561,18,37]},{"path":[4,89,2,9,3],"span":[1561,40,42]},{"path":[4,89,2,10],"span":[1562,2,43]},{"path":[4,89,2,10,4],"span":[1562,2,10]},{"path":[4,89,2,10,5],"span":[1562,11,16]},{"path":[4,89,2,10,1],"span":[1562,17,37]},{"path":[4,89,2,10,3],"span":[1562,40,42]},{"path":[4,89,2,11],"span":[1563,2,43]},{"path":[4,89,2,11,4],"span":[1563,2,10]},{"path":[4,89,2,11,5],"span":[1563,11,16]},{"path":[4,89,2,11,1],"span":[1563,17,37]},{"path":[4,89,2,11,3],"span":[1563,40,42]},{"path":[4,89,2,12],"span":[1564,2,36]},{"path":[4,89,2,12,4],"span":[1564,2,10]},{"path":[4,89,2,12,5],"span":[1564,11,15]},{"path":[4,89,2,12,1],"span":[1564,16,30]},{"path":[4,89,2,12,3],"span":[1564,33,35]},{"path":[4,89,2,13],"span":[1565,2,43]},{"path":[4,89,2,13,4],"span":[1565,2,10]},{"path":[4,89,2,13,5],"span":[1565,11,17]},{"path":[4,89,2,13,1],"span":[1565,18,37]},{"path":[4,89,2,13,3],"span":[1565,40,42]},{"path":[4,89,2,14],"span":[1566,2,51]},{"path":[4,89,2,14,4],"span":[1566,2,10]},{"path":[4,89,2,14,6],"span":[1566,11,22]},{"path":[4,89,2,14,1],"span":[1566,23,45]},{"path":[4,89,2,14,3],"span":[1566,48,50]},{"path":[4,89,2,15],"span":[1567,2,30]},{"path":[4,89,2,15,4],"span":[1567,2,10]},{"path":[4,89,2,15,5],"span":[1567,11,17]},{"path":[4,89,2,15,1],"span":[1567,18,24]},{"path":[4,89,2,15,3],"span":[1567,27,29]},{"path":[4,89,2,16],"span":[1568,2,52]},{"path":[4,89,2,16,4],"span":[1568,2,10]},{"path":[4,89,2,16,6],"span":[1568,11,22]},{"path":[4,89,2,16,1],"span":[1568,23,46]},{"path":[4,89,2,16,3],"span":[1568,49,51]},{"path":[4,89,2,17],"span":[1569,2,31]},{"path":[4,89,2,17,4],"span":[1569,2,10]},{"path":[4,89,2,17,5],"span":[1569,11,17]},{"path":[4,89,2,17,1],"span":[1569,18,25]},{"path":[4,89,2,17,3],"span":[1569,28,30]},{"path":[4,89,2,18],"span":[1570,2,36]},{"path":[4,89,2,18,4],"span":[1570,2,10]},{"path":[4,89,2,18,5],"span":[1570,11,17]},{"path":[4,89,2,18,1],"span":[1570,18,30]},{"path":[4,89,2,18,3],"span":[1570,33,35]},{"path":[4,90],"span":[1576,0,1583,1],"leadingComments":"\n Bios for Unix/Linux: Unix.Bios\n"},{"path":[4,90,1],"span":[1576,8,17]},{"path":[4,90,2,0],"span":[1577,2,30],"trailingComments":" e.g.: \"Hyper-V UEFI Release v4.1\"\n"},{"path":[4,90,2,0,4],"span":[1577,2,10]},{"path":[4,90,2,0,5],"span":[1577,11,17]},{"path":[4,90,2,0,1],"span":[1577,18,25]},{"path":[4,90,2,0,3],"span":[1577,28,29]},{"path":[4,90,2,1],"span":[1578,2,30]},{"path":[4,90,2,1,4],"span":[1578,2,10]},{"path":[4,90,2,1,5],"span":[1578,11,17]},{"path":[4,90,2,1,1],"span":[1578,18,25]},{"path":[4,90,2,1,3],"span":[1578,28,29]},{"path":[4,90,2,2],"span":[1579,2,29]},{"path":[4,90,2,2,4],"span":[1579,2,10]},{"path":[4,90,2,2,5],"span":[1579,11,17]},{"path":[4,90,2,2,1],"span":[1579,18,24]},{"path":[4,90,2,2,3],"span":[1579,27,28]},{"path":[4,90,2,3],"span":[1580,2,34],"trailingComments":" parsed from e.g. \"64 kB\"\n"},{"path":[4,90,2,3,4],"span":[1580,2,10]},{"path":[4,90,2,3,5],"span":[1580,11,16]},{"path":[4,90,2,3,1],"span":[1580,17,29]},{"path":[4,90,2,3,3],"span":[1580,32,33]},{"path":[4,90,2,4],"span":[1581,2,30],"trailingComments":" parsed from e.g. \"64 kB\"\n"},{"path":[4,90,2,4,4],"span":[1581,2,10]},{"path":[4,90,2,4,5],"span":[1581,11,16]},{"path":[4,90,2,4,1],"span":[1581,17,25]},{"path":[4,90,2,4,3],"span":[1581,28,29]},{"path":[4,90,2,5],"span":[1582,2,54]},{"path":[4,90,2,5,4],"span":[1582,2,10]},{"path":[4,90,2,5,6],"span":[1582,11,36]},{"path":[4,90,2,5,1],"span":[1582,37,49]},{"path":[4,90,2,5,3],"span":[1582,52,53]},{"path":[4,91],"span":[1588,0,1594,1],"leadingComments":"\n Computer Battery: Windows.WindowsBattery. Mac.Power battery messages.\n"},{"path":[4,91,1],"span":[1588,8,23]},{"path":[4,91,8,0],"span":[1589,2,1593,3]},{"path":[4,91,8,0,1],"span":[1589,8,12]},{"path":[4,91,2,0],"span":[1590,4,43]},{"path":[4,91,2,0,6],"span":[1590,4,26]},{"path":[4,91,2,0,1],"span":[1590,27,38]},{"path":[4,91,2,0,3],"span":[1590,41,42]},{"path":[4,91,2,1],"span":[1591,4,44]},{"path":[4,91,2,1,6],"span":[1591,4,26]},{"path":[4,91,2,1,1],"span":[1591,27,39]},{"path":[4,91,2,1,3],"span":[1591,42,43]},{"path":[4,91,2,2],"span":[1592,4,39]},{"path":[4,91,2,2,6],"span":[1592,4,22]},{"path":[4,91,2,2,1],"span":[1592,23,34]},{"path":[4,91,2,2,3],"span":[1592,37,38]},{"path":[4,92],"span":[1600,0,1611,1],"leadingComments":"\n Computer Battery: Windows.WindowsBattery.\n WMI MappedValue to be taken from: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-battery\n"},{"path":[4,92,1],"span":[1600,8,30]},{"path":[4,92,2,0],"span":[1601,2,40]},{"path":[4,92,2,0,4],"span":[1601,2,10]},{"path":[4,92,2,0,6],"span":[1601,11,22]},{"path":[4,92,2,0,1],"span":[1601,23,35]},{"path":[4,92,2,0,3],"span":[1601,38,39]},{"path":[4,92,2,1],"span":[1602,2,42]},{"path":[4,92,2,1,4],"span":[1602,2,10]},{"path":[4,92,2,1,6],"span":[1602,11,22]},{"path":[4,92,2,1,1],"span":[1602,23,37]},{"path":[4,92,2,1,3],"span":[1602,40,41]},{"path":[4,92,2,2],"span":[1603,2,37]},{"path":[4,92,2,2,4],"span":[1603,2,10]},{"path":[4,92,2,2,6],"span":[1603,11,22]},{"path":[4,92,2,2,1],"span":[1603,23,32]},{"path":[4,92,2,2,3],"span":[1603,35,36]},{"path":[4,92,2,3],"span":[1604,2,43]},{"path":[4,92,2,3,4],"span":[1604,2,10]},{"path":[4,92,2,3,6],"span":[1604,11,22]},{"path":[4,92,2,3,1],"span":[1604,23,38]},{"path":[4,92,2,3,3],"span":[1604,41,42]},{"path":[4,92,2,4],"span":[1605,2,32]},{"path":[4,92,2,4,4],"span":[1605,2,10]},{"path":[4,92,2,4,5],"span":[1605,11,17]},{"path":[4,92,2,4,1],"span":[1605,18,27]},{"path":[4,92,2,4,3],"span":[1605,30,31]},{"path":[4,92,2,5],"span":[1606,2,27]},{"path":[4,92,2,5,4],"span":[1606,2,10]},{"path":[4,92,2,5,5],"span":[1606,11,17]},{"path":[4,92,2,5,1],"span":[1606,18,22]},{"path":[4,92,2,5,3],"span":[1606,25,26]},{"path":[4,92,2,6],"span":[1607,2,57]},{"path":[4,92,2,6,4],"span":[1607,2,10]},{"path":[4,92,2,6,6],"span":[1607,11,22]},{"path":[4,92,2,6,1],"span":[1607,23,52]},{"path":[4,92,2,6,3],"span":[1607,55,56]},{"path":[4,92,2,7],"span":[1608,2,47]},{"path":[4,92,2,7,4],"span":[1608,2,10]},{"path":[4,92,2,7,5],"span":[1608,11,15]},{"path":[4,92,2,7,1],"span":[1608,16,42]},{"path":[4,92,2,7,3],"span":[1608,45,46]},{"path":[4,92,2,8],"span":[1609,2,44]},{"path":[4,92,2,8,4],"span":[1609,2,10]},{"path":[4,92,2,8,5],"span":[1609,11,17]},{"path":[4,92,2,8,1],"span":[1609,18,39]},{"path":[4,92,2,8,3],"span":[1609,42,43]},{"path":[4,92,2,9],"span":[1610,2,30]},{"path":[4,92,2,9,4],"span":[1610,2,10]},{"path":[4,92,2,9,5],"span":[1610,11,17]},{"path":[4,92,2,9,1],"span":[1610,18,24]},{"path":[4,92,2,9,3],"span":[1610,27,29]},{"path":[4,93],"span":[1617,0,1629,1],"leadingComments":"\n Windows PortableBattery: WindowsPortableBattery.\n WMI MappedValue to be taken from: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-portablebattery\n"},{"path":[4,93,1],"span":[1617,8,30]},{"path":[4,93,2,0],"span":[1618,2,41]},{"path":[4,93,2,0,4],"span":[1618,2,10]},{"path":[4,93,2,0,5],"span":[1618,11,16]},{"path":[4,93,2,0,1],"span":[1618,17,36]},{"path":[4,93,2,0,3],"span":[1618,39,40]},{"path":[4,93,2,1],"span":[1619,2,37]},{"path":[4,93,2,1,4],"span":[1619,2,10]},{"path":[4,93,2,1,6],"span":[1619,11,22]},{"path":[4,93,2,1,1],"span":[1619,23,32]},{"path":[4,93,2,1,3],"span":[1619,35,36]},{"path":[4,93,2,2],"span":[1620,2,37]},{"path":[4,93,2,2,4],"span":[1620,2,10]},{"path":[4,93,2,2,5],"span":[1620,11,16]},{"path":[4,93,2,2,1],"span":[1620,17,32]},{"path":[4,93,2,2,3],"span":[1620,35,36]},{"path":[4,93,2,3],"span":[1621,2,36]},{"path":[4,93,2,3,4],"span":[1621,2,10]},{"path":[4,93,2,3,5],"span":[1621,11,16]},{"path":[4,93,2,3,1],"span":[1621,17,31]},{"path":[4,93,2,3,3],"span":[1621,34,35]},{"path":[4,93,2,4],"span":[1622,2,32]},{"path":[4,93,2,4,4],"span":[1622,2,10]},{"path":[4,93,2,4,5],"span":[1622,11,17]},{"path":[4,93,2,4,1],"span":[1622,18,27]},{"path":[4,93,2,4,3],"span":[1622,30,31]},{"path":[4,93,2,5],"span":[1623,2,31]},{"path":[4,93,2,5,4],"span":[1623,2,10]},{"path":[4,93,2,5,5],"span":[1623,11,17]},{"path":[4,93,2,5,1],"span":[1623,18,26]},{"path":[4,93,2,5,3],"span":[1623,29,30]},{"path":[4,93,2,6],"span":[1624,2,39]},{"path":[4,93,2,6,4],"span":[1624,2,10]},{"path":[4,93,2,6,5],"span":[1624,11,17]},{"path":[4,93,2,6,1],"span":[1624,18,34]},{"path":[4,93,2,6,3],"span":[1624,37,38]},{"path":[4,93,2,7],"span":[1625,2,35]},{"path":[4,93,2,7,4],"span":[1625,2,10]},{"path":[4,93,2,7,5],"span":[1625,11,17]},{"path":[4,93,2,7,1],"span":[1625,18,30]},{"path":[4,93,2,7,3],"span":[1625,33,34]},{"path":[4,93,2,8],"span":[1626,2,39]},{"path":[4,93,2,8,4],"span":[1626,2,10]},{"path":[4,93,2,8,5],"span":[1626,11,16]},{"path":[4,93,2,8,1],"span":[1626,17,34]},{"path":[4,93,2,8,3],"span":[1626,37,38]},{"path":[4,93,2,9],"span":[1627,2,28]},{"path":[4,93,2,9,4],"span":[1627,2,10]},{"path":[4,93,2,9,5],"span":[1627,11,17]},{"path":[4,93,2,9,1],"span":[1627,18,22]},{"path":[4,93,2,9,3],"span":[1627,25,27]},{"path":[4,93,2,10],"span":[1628,2,45]},{"path":[4,93,2,10,4],"span":[1628,2,10]},{"path":[4,93,2,10,5],"span":[1628,11,17]},{"path":[4,93,2,10,1],"span":[1628,18,39]},{"path":[4,93,2,10,3],"span":[1628,42,44]},{"path":[4,94],"span":[1634,0,1670,1],"leadingComments":"\n Computer Battery: Mac.Power battery messages.\n"},{"path":[4,94,1],"span":[1634,8,26]},{"path":[4,94,2,0],"span":[1636,2,38],"leadingComments":" from battery power\n"},{"path":[4,94,2,0,4],"span":[1636,2,10]},{"path":[4,94,2,0,5],"span":[1636,11,16]},{"path":[4,94,2,0,1],"span":[1636,17,33]},{"path":[4,94,2,0,3],"span":[1636,36,37]},{"path":[4,94,2,1],"span":[1637,2,41]},{"path":[4,94,2,1,4],"span":[1637,2,10]},{"path":[4,94,2,1,5],"span":[1637,11,16]},{"path":[4,94,2,1,1],"span":[1637,17,36]},{"path":[4,94,2,1,3],"span":[1637,39,40]},{"path":[4,94,2,2],"span":[1638,2,36]},{"path":[4,94,2,2,4],"span":[1638,2,10]},{"path":[4,94,2,2,5],"span":[1638,11,16]},{"path":[4,94,2,2,1],"span":[1638,17,31]},{"path":[4,94,2,2,3],"span":[1638,34,35]},{"path":[4,94,2,3],"span":[1639,2,64]},{"path":[4,94,2,3,4],"span":[1639,2,10]},{"path":[4,94,2,3,5],"span":[1639,11,16]},{"path":[4,94,2,3,1],"span":[1639,17,59]},{"path":[4,94,2,3,3],"span":[1639,62,63]},{"path":[4,94,2,4],"span":[1640,2,42],"trailingComments":" parse from: 'Yes'\n"},{"path":[4,94,2,4,4],"span":[1640,2,10]},{"path":[4,94,2,4,5],"span":[1640,11,15]},{"path":[4,94,2,4,1],"span":[1640,16,37]},{"path":[4,94,2,4,3],"span":[1640,40,41]},{"path":[4,94,2,5],"span":[1641,2,40]},{"path":[4,94,2,5,4],"span":[1641,2,10]},{"path":[4,94,2,5,5],"span":[1641,11,16]},{"path":[4,94,2,5,1],"span":[1641,17,35]},{"path":[4,94,2,5,3],"span":[1641,38,39]},{"path":[4,94,2,6],"span":[1642,2,32]},{"path":[4,94,2,6,4],"span":[1642,2,10]},{"path":[4,94,2,6,5],"span":[1642,11,15]},{"path":[4,94,2,6,1],"span":[1642,16,27]},{"path":[4,94,2,6,3],"span":[1642,30,31]},{"path":[4,94,2,7],"span":[1643,2,42]},{"path":[4,94,2,7,4],"span":[1643,2,10]},{"path":[4,94,2,7,5],"span":[1643,11,16]},{"path":[4,94,2,7,1],"span":[1643,17,37]},{"path":[4,94,2,7,3],"span":[1643,40,41]},{"path":[4,94,2,8],"span":[1644,2,37]},{"path":[4,94,2,8,4],"span":[1644,2,10]},{"path":[4,94,2,8,5],"span":[1644,11,16]},{"path":[4,94,2,8,1],"span":[1644,17,32]},{"path":[4,94,2,8,3],"span":[1644,35,36]},{"path":[4,94,2,9],"span":[1645,2,37]},{"path":[4,94,2,9,4],"span":[1645,2,10]},{"path":[4,94,2,9,5],"span":[1645,11,16]},{"path":[4,94,2,9,1],"span":[1645,17,31]},{"path":[4,94,2,9,3],"span":[1645,34,36]},{"path":[4,94,2,10],"span":[1646,2,39]},{"path":[4,94,2,10,4],"span":[1646,2,10]},{"path":[4,94,2,10,5],"span":[1646,11,15]},{"path":[4,94,2,10,1],"span":[1646,16,33]},{"path":[4,94,2,10,3],"span":[1646,36,38]},{"path":[4,94,2,11],"span":[1649,2,38],"leadingComments":" from battery charge (parse booleans)\n"},{"path":[4,94,2,11,4],"span":[1649,2,10]},{"path":[4,94,2,11,5],"span":[1649,11,15]},{"path":[4,94,2,11,1],"span":[1649,16,32]},{"path":[4,94,2,11,3],"span":[1649,35,37]},{"path":[4,94,2,12],"span":[1650,2,38]},{"path":[4,94,2,12,4],"span":[1650,2,10]},{"path":[4,94,2,12,5],"span":[1650,11,15]},{"path":[4,94,2,12,1],"span":[1650,16,32]},{"path":[4,94,2,12,3],"span":[1650,35,37]},{"path":[4,94,2,13],"span":[1651,2,33]},{"path":[4,94,2,13,4],"span":[1651,2,10]},{"path":[4,94,2,13,5],"span":[1651,11,15]},{"path":[4,94,2,13,1],"span":[1651,16,27]},{"path":[4,94,2,13,3],"span":[1651,30,32]},{"path":[4,94,2,14],"span":[1652,2,39]},{"path":[4,94,2,14,4],"span":[1652,2,10]},{"path":[4,94,2,14,5],"span":[1652,11,16]},{"path":[4,94,2,14,1],"span":[1652,18,33]},{"path":[4,94,2,14,3],"span":[1652,36,38]},{"path":[4,94,2,15],"span":[1655,2,34],"leadingComments":" from battery_health_info\n"},{"path":[4,94,2,15,4],"span":[1655,2,10]},{"path":[4,94,2,15,5],"span":[1655,11,16]},{"path":[4,94,2,15,1],"span":[1655,17,28]},{"path":[4,94,2,15,3],"span":[1655,31,33]},{"path":[4,94,2,16],"span":[1656,2,37]},{"path":[4,94,2,16,4],"span":[1656,2,10]},{"path":[4,94,2,16,5],"span":[1656,11,17]},{"path":[4,94,2,16,1],"span":[1656,18,31]},{"path":[4,94,2,16,3],"span":[1656,34,36]},{"path":[4,94,2,17],"span":[1657,2,54]},{"path":[4,94,2,17,4],"span":[1657,2,10]},{"path":[4,94,2,17,5],"span":[1657,11,17]},{"path":[4,94,2,17,1],"span":[1657,18,48]},{"path":[4,94,2,17,3],"span":[1657,51,53]},{"path":[4,94,2,18],"span":[1660,2,36],"leadingComments":" from battery_model_info\n"},{"path":[4,94,2,18,4],"span":[1660,2,10]},{"path":[4,94,2,18,5],"span":[1660,11,17]},{"path":[4,94,2,18,1],"span":[1660,18,30]},{"path":[4,94,2,18,3],"span":[1660,33,35]},{"path":[4,94,2,19],"span":[1661,2,37]},{"path":[4,94,2,19,4],"span":[1661,2,10]},{"path":[4,94,2,19,5],"span":[1661,11,17]},{"path":[4,94,2,19,1],"span":[1661,18,31]},{"path":[4,94,2,19,3],"span":[1661,34,36]},{"path":[4,94,2,20],"span":[1662,2,37]},{"path":[4,94,2,20,4],"span":[1662,2,10]},{"path":[4,94,2,20,5],"span":[1662,11,17]},{"path":[4,94,2,20,1],"span":[1662,18,31]},{"path":[4,94,2,20,3],"span":[1662,34,36]},{"path":[4,94,2,21],"span":[1663,2,35]},{"path":[4,94,2,21,4],"span":[1663,2,10]},{"path":[4,94,2,21,5],"span":[1663,11,17]},{"path":[4,94,2,21,1],"span":[1663,18,29]},{"path":[4,94,2,21,3],"span":[1663,32,34]},{"path":[4,94,2,22],"span":[1664,2,40]},{"path":[4,94,2,22,4],"span":[1664,2,10]},{"path":[4,94,2,22,5],"span":[1664,11,17]},{"path":[4,94,2,22,1],"span":[1664,18,34]},{"path":[4,94,2,22,3],"span":[1664,37,39]},{"path":[4,94,2,23],"span":[1665,2,41]},{"path":[4,94,2,23,4],"span":[1665,2,10]},{"path":[4,94,2,23,5],"span":[1665,11,17]},{"path":[4,94,2,23,1],"span":[1665,18,35]},{"path":[4,94,2,23,3],"span":[1665,38,40]},{"path":[4,94,2,24],"span":[1666,2,37]},{"path":[4,94,2,24,4],"span":[1666,2,10]},{"path":[4,94,2,24,5],"span":[1666,11,17]},{"path":[4,94,2,24,1],"span":[1666,18,31]},{"path":[4,94,2,24,3],"span":[1666,34,36]},{"path":[4,94,2,25],"span":[1668,2,47]},{"path":[4,94,2,25,4],"span":[1668,2,10]},{"path":[4,94,2,25,5],"span":[1668,11,15]},{"path":[4,94,2,25,1],"span":[1668,16,41]},{"path":[4,94,2,25,3],"span":[1668,44,46]},{"path":[4,94,2,26],"span":[1669,2,41]},{"path":[4,94,2,26,4],"span":[1669,2,10]},{"path":[4,94,2,26,5],"span":[1669,11,15]},{"path":[4,94,2,26,1],"span":[1669,16,35]},{"path":[4,94,2,26,3],"span":[1669,38,40]},{"path":[4,95],"span":[1675,0,1697,1],"leadingComments":"\n Optical disc drive for computers.\n"},{"path":[4,95,1],"span":[1675,8,20]},{"path":[4,95,2,0],"span":[1676,2,36],"trailingComments":" Windows: \"HL-DT-ST DVD+-RW GHB0N\", Linux: \"VMware SATA CD00\", Mac: \"NECVMWar VMware SATA CD01\"\tWindows, Linux, Mac\n"},{"path":[4,95,2,0,4],"span":[1676,2,10]},{"path":[4,95,2,0,5],"span":[1676,16,22]},{"path":[4,95,2,0,1],"span":[1676,24,28]},{"path":[4,95,2,0,3],"span":[1676,34,35]},{"path":[4,95,2,1],"span":[1677,2,36],"trailingComments":" \t\"OK\",\"Error\",\"Degraded\"\tWindows\n"},{"path":[4,95,2,1,4],"span":[1677,2,10]},{"path":[4,95,2,1,5],"span":[1677,16,22]},{"path":[4,95,2,1,1],"span":[1677,24,30]},{"path":[4,95,2,1,3],"span":[1677,34,35]},{"path":[4,95,2,2],"span":[1678,2,36],"trailingComments":" \t\"2:0:0:0\"\tLinux\n"},{"path":[4,95,2,2,4],"span":[1678,2,10]},{"path":[4,95,2,2,5],"span":[1678,16,22]},{"path":[4,95,2,2,1],"span":[1678,24,27]},{"path":[4,95,2,2,3],"span":[1678,34,35]},{"path":[4,95,2,3],"span":[1679,2,52],"trailingComments":" \t\"Supports writing, Random Access, Supports Removable Media\" \tWindows\n"},{"path":[4,95,2,3,4],"span":[1679,2,10]},{"path":[4,95,2,3,6],"span":[1679,16,27]},{"path":[4,95,2,3,1],"span":[1679,32,44]},{"path":[4,95,2,3,3],"span":[1679,50,51]},{"path":[4,95,2,4],"span":[1680,2,44],"trailingComments":" \t\"32 KB\", \"2048 KB\"\tMac\n"},{"path":[4,95,2,4,4],"span":[1680,2,10]},{"path":[4,95,2,4,5],"span":[1680,16,22]},{"path":[4,95,2,4,1],"span":[1680,24,34]},{"path":[4,95,2,4,3],"span":[1680,42,43]},{"path":[4,95,2,5],"span":[1681,2,44],"trailingComments":" \t\"DRDeviceSupportLevelUnsupported\",\"Yes (Apple Shipping Drive)\",\"Yes (Generic Drive Support)\"\tMac\n"},{"path":[4,95,2,5,4],"span":[1681,2,10]},{"path":[4,95,2,5,5],"span":[1681,16,22]},{"path":[4,95,2,5,1],"span":[1681,24,36]},{"path":[4,95,2,5,3],"span":[1681,42,43]},{"path":[4,95,2,6],"span":[1682,2,44],"trailingComments":" \t\"-R, -RW\"\tMac\n"},{"path":[4,95,2,6,4],"span":[1682,2,10]},{"path":[4,95,2,6,5],"span":[1682,16,22]},{"path":[4,95,2,6,1],"span":[1682,24,32]},{"path":[4,95,2,6,3],"span":[1682,42,43]},{"path":[4,95,2,7],"span":[1683,2,44],"trailingComments":" \t\"-R, -RAM, -RW\"\tMac\n"},{"path":[4,95,2,7,4],"span":[1683,2,10]},{"path":[4,95,2,7,5],"span":[1683,16,22]},{"path":[4,95,2,7,1],"span":[1683,24,33]},{"path":[4,95,2,7,3],"span":[1683,42,43]},{"path":[4,95,2,8],"span":[1684,2,44],"trailingComments":" \t\"yes\"\tMac\n"},{"path":[4,95,2,8,4],"span":[1684,2,10]},{"path":[4,95,2,8,5],"span":[1684,16,22]},{"path":[4,95,2,8,1],"span":[1684,24,32]},{"path":[4,95,2,8,3],"span":[1684,42,43]},{"path":[4,95,2,9],"span":[1685,2,45],"trailingComments":" \tWindows: \"H:\" Linux: \"/dev/sr0 (/dev/sg0)\"\tWindows, Linux\n"},{"path":[4,95,2,9,4],"span":[1685,2,10]},{"path":[4,95,2,9,5],"span":[1685,16,22]},{"path":[4,95,2,9,1],"span":[1685,24,34]},{"path":[4,95,2,9,3],"span":[1685,42,44]},{"path":[4,95,2,10],"span":[1686,2,53],"trailingComments":" \t\"RQ00\",\"1.00\"\tMac\n"},{"path":[4,95,2,10,4],"span":[1686,2,10]},{"path":[4,95,2,10,5],"span":[1686,16,22]},{"path":[4,95,2,10,1],"span":[1686,24,40]},{"path":[4,95,2,10,3],"span":[1686,50,52]},{"path":[4,95,2,11],"span":[1687,2,45],"trailingComments":" \t\"ATAPI\",\"USB\"\tMac\n"},{"path":[4,95,2,11,4],"span":[1687,2,10]},{"path":[4,95,2,11,5],"span":[1687,16,22]},{"path":[4,95,2,11,1],"span":[1687,24,34]},{"path":[4,95,2,11,3],"span":[1687,42,44]},{"path":[4,95,2,12],"span":[1688,2,61],"trailingComments":" \t\"yes\"\tMac\n"},{"path":[4,95,2,12,4],"span":[1688,2,10]},{"path":[4,95,2,12,5],"span":[1688,16,22]},{"path":[4,95,2,12,1],"span":[1688,24,54]},{"path":[4,95,2,12,3],"span":[1688,58,60]},{"path":[4,95,2,13],"span":[1689,2,45],"trailingComments":" \tWindows:\"(Standard CD-ROM drives)\",Linux:\"NECVMWar\"\tWindows, Linux\n"},{"path":[4,95,2,13,4],"span":[1689,2,10]},{"path":[4,95,2,13,5],"span":[1689,16,22]},{"path":[4,95,2,13,1],"span":[1689,24,36]},{"path":[4,95,2,13,3],"span":[1689,42,44]},{"path":[4,95,2,14],"span":[1690,2,45],"trailingComments":" \t\tLinux\n"},{"path":[4,95,2,14,4],"span":[1690,2,10]},{"path":[4,95,2,14,5],"span":[1690,16,22]},{"path":[4,95,2,14,1],"span":[1690,24,35]},{"path":[4,95,2,14,3],"span":[1690,42,44]},{"path":[4,95,2,15],"span":[1691,2,53],"trailingComments":" \t\"CD-TAO, CD-SAO, CD-Raw, DVD-DAO\"\tMac\n"},{"path":[4,95,2,15,4],"span":[1691,2,10]},{"path":[4,95,2,15,5],"span":[1691,16,22]},{"path":[4,95,2,15,1],"span":[1691,24,40]},{"path":[4,95,2,15,3],"span":[1691,50,52]},{"path":[4,95,2,16],"span":[1692,2,45],"trailingComments":" \t7\tWindows\n"},{"path":[4,95,2,16,4],"span":[1692,2,10]},{"path":[4,95,2,16,5],"span":[1692,16,21]},{"path":[4,95,2,16,1],"span":[1692,24,32]},{"path":[4,95,2,16,3],"span":[1692,42,44]},{"path":[4,95,2,17],"span":[1693,2,53],"trailingComments":" \t0\tWindows\n"},{"path":[4,95,2,17,4],"span":[1693,2,10]},{"path":[4,95,2,17,5],"span":[1693,16,21]},{"path":[4,95,2,17,1],"span":[1693,24,41]},{"path":[4,95,2,17,3],"span":[1693,50,52]},{"path":[4,95,2,18],"span":[1694,2,45],"trailingComments":" \t0\tWindows\n"},{"path":[4,95,2,18,4],"span":[1694,2,10]},{"path":[4,95,2,18,5],"span":[1694,16,21]},{"path":[4,95,2,18,1],"span":[1694,24,33]},{"path":[4,95,2,18,3],"span":[1694,42,44]},{"path":[4,95,2,19],"span":[1695,2,45],"trailingComments":" \t0\tWindows\n"},{"path":[4,95,2,19,4],"span":[1695,2,10]},{"path":[4,95,2,19,5],"span":[1695,16,21]},{"path":[4,95,2,19,1],"span":[1695,24,38]},{"path":[4,95,2,19,3],"span":[1695,42,44]},{"path":[4,95,2,20],"span":[1696,2,52],"trailingComments":" \tMac\n"},{"path":[4,95,2,20,4],"span":[1696,2,10]},{"path":[4,95,2,20,5],"span":[1696,16,22]},{"path":[4,95,2,20,1],"span":[1696,24,46]},{"path":[4,95,2,20,3],"span":[1696,49,51]},{"path":[4,96],"span":[1702,0,1715,1],"leadingComments":"\n Motherboard for computers.\n"},{"path":[4,96,1],"span":[1702,8,19]},{"path":[4,96,2,0],"span":[1703,2,18],"trailingComments":" Windows, Linux\n"},{"path":[4,96,2,0,5],"span":[1703,2,8]},{"path":[4,96,2,0,1],"span":[1703,9,13]},{"path":[4,96,2,0,3],"span":[1703,16,17]},{"path":[4,96,2,1],"span":[1704,2,43],"trailingComments":" Windows\n"},{"path":[4,96,2,1,4],"span":[1704,2,10]},{"path":[4,96,2,1,5],"span":[1704,11,17]},{"path":[4,96,2,1,1],"span":[1704,24,38]},{"path":[4,96,2,1,3],"span":[1704,41,42]},{"path":[4,96,2,2],"span":[1705,2,37],"trailingComments":" Windows\n"},{"path":[4,96,2,2,4],"span":[1705,2,10]},{"path":[4,96,2,2,5],"span":[1705,11,15]},{"path":[4,96,2,2,1],"span":[1705,16,32]},{"path":[4,96,2,2,3],"span":[1705,35,36]},{"path":[4,96,2,3],"span":[1706,2,34],"trailingComments":" Windows\n"},{"path":[4,96,2,3,4],"span":[1706,2,10]},{"path":[4,96,2,3,5],"span":[1706,11,15]},{"path":[4,96,2,3,1],"span":[1706,16,29]},{"path":[4,96,2,3,3],"span":[1706,32,33]},{"path":[4,96,2,4],"span":[1707,2,37],"trailingComments":" Linux\n"},{"path":[4,96,2,4,4],"span":[1707,2,10]},{"path":[4,96,2,4,5],"span":[1707,11,17]},{"path":[4,96,2,4,1],"span":[1707,24,32]},{"path":[4,96,2,4,3],"span":[1707,35,36]},{"path":[4,96,2,5],"span":[1708,2,41],"trailingComments":" Windows, Linux\n"},{"path":[4,96,2,5,4],"span":[1708,2,10]},{"path":[4,96,2,5,5],"span":[1708,11,17]},{"path":[4,96,2,5,1],"span":[1708,24,36]},{"path":[4,96,2,5,3],"span":[1708,39,40]},{"path":[4,96,2,6],"span":[1709,2,42],"trailingComments":" Windows, Linux\n"},{"path":[4,96,2,6,4],"span":[1709,2,10]},{"path":[4,96,2,6,5],"span":[1709,11,17]},{"path":[4,96,2,6,1],"span":[1709,24,37]},{"path":[4,96,2,6,3],"span":[1709,40,41]},{"path":[4,96,2,7],"span":[1710,2,32],"trailingComments":" Windows\n"},{"path":[4,96,2,7,4],"span":[1710,2,10]},{"path":[4,96,2,7,5],"span":[1710,11,17]},{"path":[4,96,2,7,1],"span":[1710,24,27]},{"path":[4,96,2,7,3],"span":[1710,30,31]},{"path":[4,96,2,8],"span":[1711,2,33],"trailingComments":" Linux\n"},{"path":[4,96,2,8,4],"span":[1711,2,10]},{"path":[4,96,2,8,5],"span":[1711,11,17]},{"path":[4,96,2,8,1],"span":[1711,24,28]},{"path":[4,96,2,8,3],"span":[1711,31,32]},{"path":[4,96,2,9],"span":[1712,2,37],"trailingComments":" Windows, Linux\n"},{"path":[4,96,2,9,4],"span":[1712,2,10]},{"path":[4,96,2,9,5],"span":[1712,11,17]},{"path":[4,96,2,9,1],"span":[1712,24,31]},{"path":[4,96,2,9,3],"span":[1712,34,36]},{"path":[4,96,2,10],"span":[1714,2,41]},{"path":[4,96,2,10,4],"span":[1714,2,10]},{"path":[4,96,2,10,6],"span":[1714,11,28]},{"path":[4,96,2,10,1],"span":[1714,29,35]},{"path":[4,96,2,10,3],"span":[1714,38,40]},{"path":[4,97],"span":[1720,0,1725,1],"leadingComments":"\n Motherboard device, available only on Windows atm.\n"},{"path":[4,97,1],"span":[1720,8,25]},{"path":[4,97,2,0],"span":[1721,2,40]},{"path":[4,97,2,0,4],"span":[1721,2,10]},{"path":[4,97,2,0,5],"span":[1721,11,17]},{"path":[4,97,2,0,1],"span":[1721,24,35]},{"path":[4,97,2,0,3],"span":[1721,38,39]},{"path":[4,97,2,1],"span":[1722,2,28]},{"path":[4,97,2,1,4],"span":[1722,2,10]},{"path":[4,97,2,1,5],"span":[1722,11,15]},{"path":[4,97,2,1,1],"span":[1722,16,23]},{"path":[4,97,2,1,3],"span":[1722,26,27]},{"path":[4,97,2,2],"span":[1723,2,32]},{"path":[4,97,2,2,4],"span":[1723,2,10]},{"path":[4,97,2,2,5],"span":[1723,11,17]},{"path":[4,97,2,2,1],"span":[1723,24,27]},{"path":[4,97,2,2,3],"span":[1723,30,31]},{"path":[4,97,2,3],"span":[1724,2,32]},{"path":[4,97,2,3,4],"span":[1724,2,10]},{"path":[4,97,2,3,6],"span":[1724,11,22]},{"path":[4,97,2,3,1],"span":[1724,23,27]},{"path":[4,97,2,3,3],"span":[1724,30,31]},{"path":[4,98],"span":[1730,0,1734,1],"leadingComments":"\n Memory with summary fields and repeated entries.\n"},{"path":[4,98,1],"span":[1730,8,14]},{"path":[4,98,2,0],"span":[1731,4,29]},{"path":[4,98,2,0,5],"span":[1731,4,9]},{"path":[4,98,2,0,1],"span":[1731,10,24]},{"path":[4,98,2,0,3],"span":[1731,27,28]},{"path":[4,98,2,1],"span":[1732,4,48]},{"path":[4,98,2,1,4],"span":[1732,4,12]},{"path":[4,98,2,1,6],"span":[1732,13,27]},{"path":[4,98,2,1,1],"span":[1732,28,43]},{"path":[4,98,2,1,3],"span":[1732,46,47]},{"path":[4,98,2,2],"span":[1733,4,42]},{"path":[4,98,2,2,4],"span":[1733,4,12]},{"path":[4,98,2,2,6],"span":[1733,13,24]},{"path":[4,98,2,2,1],"span":[1733,25,37]},{"path":[4,98,2,2,3],"span":[1733,40,41]},{"path":[4,99],"span":[1737,0,1760,1],"leadingComments":" MemoryEntry *"},{"path":[4,99,1],"span":[1737,8,22]},{"path":[4,99,2,0],"span":[1739,4,30],"trailingComments":" memory capacity/size\n"},{"path":[4,99,2,0,4],"span":[1739,4,12]},{"path":[4,99,2,0,5],"span":[1739,14,19]},{"path":[4,99,2,0,1],"span":[1739,20,24]},{"path":[4,99,2,0,3],"span":[1739,27,29]},{"path":[4,99,2,1],"span":[1740,4,40],"trailingComments":"\tLinux\n"},{"path":[4,99,2,1,4],"span":[1740,4,12]},{"path":[4,99,2,1,5],"span":[1740,13,19]},{"path":[4,99,2,1,1],"span":[1740,24,36]},{"path":[4,99,2,1,3],"span":[1740,38,39]},{"path":[4,99,2,2],"span":[1741,4,51],"trailingComments":"\tWindows\n"},{"path":[4,99,2,2,4],"span":[1741,4,12]},{"path":[4,99,2,2,5],"span":[1741,13,18]},{"path":[4,99,2,2,1],"span":[1741,24,46]},{"path":[4,99,2,2,3],"span":[1741,49,50]},{"path":[4,99,2,3],"span":[1742,4,46],"trailingComments":"\tWindows\n"},{"path":[4,99,2,3,4],"span":[1742,4,12]},{"path":[4,99,2,3,5],"span":[1742,13,18]},{"path":[4,99,2,3,1],"span":[1742,24,42]},{"path":[4,99,2,3,3],"span":[1742,44,45]},{"path":[4,99,2,4],"span":[1743,4,38],"trailingComments":"\tWindows, Linux\n"},{"path":[4,99,2,4,4],"span":[1743,4,12]},{"path":[4,99,2,4,5],"span":[1743,13,18]},{"path":[4,99,2,4,1],"span":[1743,24,34]},{"path":[4,99,2,4,3],"span":[1743,36,37]},{"path":[4,99,2,5],"span":[1744,4,42],"trailingComments":"\tWindows, Linux\n"},{"path":[4,99,2,5,4],"span":[1744,4,12]},{"path":[4,99,2,5,5],"span":[1744,13,19]},{"path":[4,99,2,5,1],"span":[1744,24,38]},{"path":[4,99,2,5,3],"span":[1744,40,41]},{"path":[4,99,2,6],"span":[1745,4,47],"trailingComments":"\tWindows, Linux\n"},{"path":[4,99,2,6,4],"span":[1745,4,12]},{"path":[4,99,2,6,6],"span":[1745,13,24]},{"path":[4,99,2,6,1],"span":[1745,32,43]},{"path":[4,99,2,6,3],"span":[1745,45,46]},{"path":[4,99,2,7],"span":[1746,4,49],"trailingComments":"\tWindows\n"},{"path":[4,99,2,7,4],"span":[1746,4,12]},{"path":[4,99,2,7,5],"span":[1746,13,18]},{"path":[4,99,2,7,1],"span":[1746,24,45]},{"path":[4,99,2,7,3],"span":[1746,47,48]},{"path":[4,99,2,8],"span":[1747,4,55],"trailingComments":"\tWindows\n"},{"path":[4,99,2,8,4],"span":[1747,4,12]},{"path":[4,99,2,8,6],"span":[1747,13,24]},{"path":[4,99,2,8,1],"span":[1747,32,51]},{"path":[4,99,2,8,3],"span":[1747,53,54]},{"path":[4,99,2,9],"span":[1748,4,40],"trailingComments":"\tWindows, Linux\n"},{"path":[4,99,2,9,4],"span":[1748,4,12]},{"path":[4,99,2,9,5],"span":[1748,13,19]},{"path":[4,99,2,9,1],"span":[1748,24,36]},{"path":[4,99,2,9,3],"span":[1748,38,39]},{"path":[4,99,2,10],"span":[1749,4,33],"trailingComments":"\tMac\n"},{"path":[4,99,2,10,4],"span":[1749,4,12]},{"path":[4,99,2,10,5],"span":[1749,13,19]},{"path":[4,99,2,10,1],"span":[1749,24,28]},{"path":[4,99,2,10,3],"span":[1749,30,32]},{"path":[4,99,2,11],"span":[1750,4,40],"trailingComments":"\tWindows\n"},{"path":[4,99,2,11,4],"span":[1750,4,12]},{"path":[4,99,2,11,5],"span":[1750,13,19]},{"path":[4,99,2,11,1],"span":[1750,24,35]},{"path":[4,99,2,11,3],"span":[1750,37,39]},{"path":[4,99,2,12],"span":[1751,4,44],"trailingComments":"\tWindows\n"},{"path":[4,99,2,12,4],"span":[1751,4,12]},{"path":[4,99,2,12,5],"span":[1751,13,18]},{"path":[4,99,2,12,1],"span":[1751,24,39]},{"path":[4,99,2,12,3],"span":[1751,41,43]},{"path":[4,99,2,13],"span":[1752,4,42],"trailingComments":"\tWindows, Linux\n"},{"path":[4,99,2,13,4],"span":[1752,4,12]},{"path":[4,99,2,13,5],"span":[1752,13,19]},{"path":[4,99,2,13,1],"span":[1752,24,37]},{"path":[4,99,2,13,3],"span":[1752,39,41]},{"path":[4,99,2,14],"span":[1753,4,32],"trailingComments":"\tLinux\n"},{"path":[4,99,2,14,4],"span":[1753,4,12]},{"path":[4,99,2,14,5],"span":[1753,13,19]},{"path":[4,99,2,14,1],"span":[1753,24,27]},{"path":[4,99,2,14,3],"span":[1753,29,31]},{"path":[4,99,2,15],"span":[1754,4,32],"trailingComments":"\tWindows\n"},{"path":[4,99,2,15,4],"span":[1754,4,12]},{"path":[4,99,2,15,5],"span":[1754,13,19]},{"path":[4,99,2,15,1],"span":[1754,24,27]},{"path":[4,99,2,15,3],"span":[1754,29,31]},{"path":[4,99,2,16],"span":[1755,4,34],"trailingComments":"\tWindows, Linux, Mac\n"},{"path":[4,99,2,16,4],"span":[1755,4,12]},{"path":[4,99,2,16,5],"span":[1755,13,18]},{"path":[4,99,2,16,1],"span":[1755,24,29]},{"path":[4,99,2,16,3],"span":[1755,31,33]},{"path":[4,99,2,17],"span":[1756,4,34],"trailingComments":"\tMac\n"},{"path":[4,99,2,17,4],"span":[1756,4,12]},{"path":[4,99,2,17,5],"span":[1756,13,19]},{"path":[4,99,2,17,1],"span":[1756,24,29]},{"path":[4,99,2,17,3],"span":[1756,31,33]},{"path":[4,99,2,18],"span":[1757,4,40],"trailingComments":"\tWindows, Linux\n"},{"path":[4,99,2,18,4],"span":[1757,4,12]},{"path":[4,99,2,18,5],"span":[1757,13,18]},{"path":[4,99,2,18,1],"span":[1757,24,35]},{"path":[4,99,2,18,3],"span":[1757,37,39]},{"path":[4,99,2,19],"span":[1758,4,41],"trailingComments":"\tWindows, Linux, Mac\n"},{"path":[4,99,2,19,4],"span":[1758,4,12]},{"path":[4,99,2,19,6],"span":[1758,13,24]},{"path":[4,99,2,19,1],"span":[1758,32,36]},{"path":[4,99,2,19,3],"span":[1758,38,40]},{"path":[4,99,2,20],"span":[1759,4,48],"trailingComments":"\tWindows, Linux\n"},{"path":[4,99,2,20,4],"span":[1759,4,12]},{"path":[4,99,2,20,6],"span":[1759,13,24]},{"path":[4,99,2,20,1],"span":[1759,32,43]},{"path":[4,99,2,20,3],"span":[1759,45,47]},{"path":[4,100],"span":[1764,0,1771,1],"leadingComments":" MemoryArray, only Windows *"},{"path":[4,100,1],"span":[1764,8,19]},{"path":[4,100,2,0],"span":[1765,2,40],"trailingComments":"\tWindows\n"},{"path":[4,100,2,0,4],"span":[1765,2,10]},{"path":[4,100,2,0,5],"span":[1765,11,16]},{"path":[4,100,2,0,1],"span":[1765,24,36]},{"path":[4,100,2,0,3],"span":[1765,38,39]},{"path":[4,100,2,1],"span":[1766,2,36],"trailingComments":"\tWindows\n"},{"path":[4,100,2,1,4],"span":[1766,2,10]},{"path":[4,100,2,1,6],"span":[1766,11,22]},{"path":[4,100,2,1,1],"span":[1766,24,32]},{"path":[4,100,2,1,3],"span":[1766,34,35]},{"path":[4,100,2,2],"span":[1767,2,42],"trailingComments":"\tWindows\n"},{"path":[4,100,2,2,4],"span":[1767,2,10]},{"path":[4,100,2,2,5],"span":[1767,11,16]},{"path":[4,100,2,2,1],"span":[1767,24,38]},{"path":[4,100,2,2,3],"span":[1767,40,41]},{"path":[4,100,2,3],"span":[1768,2,51],"trailingComments":"\tWindows\n"},{"path":[4,100,2,3,4],"span":[1768,2,10]},{"path":[4,100,2,3,6],"span":[1768,11,22]},{"path":[4,100,2,3,1],"span":[1768,24,47]},{"path":[4,100,2,3,3],"span":[1768,49,50]},{"path":[4,100,2,4],"span":[1769,2,31],"trailingComments":"\tWindows\n"},{"path":[4,100,2,4,4],"span":[1769,2,10]},{"path":[4,100,2,4,5],"span":[1769,11,17]},{"path":[4,100,2,4,1],"span":[1769,24,27]},{"path":[4,100,2,4,3],"span":[1769,29,30]},{"path":[4,100,2,5],"span":[1770,2,31],"trailingComments":"\tWindows\n"},{"path":[4,100,2,5,4],"span":[1770,2,10]},{"path":[4,100,2,5,6],"span":[1770,11,22]},{"path":[4,100,2,5,1],"span":[1770,24,27]},{"path":[4,100,2,5,3],"span":[1770,29,30]},{"path":[4,101],"span":[1777,0,1786,1],"leadingComments":"\n ParallelPort, only Windows atm.\n WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-parallelport\n"},{"path":[4,101,1],"span":[1777,8,20]},{"path":[4,101,2,0],"span":[1778,2,30]},{"path":[4,101,2,0,4],"span":[1778,2,10]},{"path":[4,101,2,0,5],"span":[1778,11,17]},{"path":[4,101,2,0,1],"span":[1778,18,25]},{"path":[4,101,2,0,3],"span":[1778,28,29]},{"path":[4,101,2,1],"span":[1779,2,40]},{"path":[4,101,2,1,4],"span":[1779,2,10]},{"path":[4,101,2,1,6],"span":[1779,11,22]},{"path":[4,101,2,1,1],"span":[1779,23,35]},{"path":[4,101,2,1,3],"span":[1779,38,39]},{"path":[4,101,2,2],"span":[1780,2,46]},{"path":[4,101,2,2,4],"span":[1780,2,10]},{"path":[4,101,2,2,6],"span":[1780,11,22]},{"path":[4,101,2,2,1],"span":[1780,23,41]},{"path":[4,101,2,2,3],"span":[1780,44,45]},{"path":[4,101,2,3],"span":[1781,2,53]},{"path":[4,101,2,3,4],"span":[1781,2,10]},{"path":[4,101,2,3,6],"span":[1781,11,22]},{"path":[4,101,2,3,1],"span":[1781,23,48]},{"path":[4,101,2,3,3],"span":[1781,51,52]},{"path":[4,101,2,4],"span":[1782,2,36]},{"path":[4,101,2,4,4],"span":[1782,2,10]},{"path":[4,101,2,4,5],"span":[1782,11,17]},{"path":[4,101,2,4,1],"span":[1782,18,31]},{"path":[4,101,2,4,3],"span":[1782,34,35]},{"path":[4,101,2,5],"span":[1783,2,47]},{"path":[4,101,2,5,4],"span":[1783,2,10]},{"path":[4,101,2,5,5],"span":[1783,11,15]},{"path":[4,101,2,5,1],"span":[1783,16,42]},{"path":[4,101,2,5,3],"span":[1783,45,46]},{"path":[4,101,2,6],"span":[1784,2,39]},{"path":[4,101,2,6,4],"span":[1784,2,10]},{"path":[4,101,2,6,5],"span":[1784,11,15]},{"path":[4,101,2,6,1],"span":[1784,16,34]},{"path":[4,101,2,6,3],"span":[1784,37,38]},{"path":[4,101,2,7],"span":[1785,2,47]},{"path":[4,101,2,7,4],"span":[1785,2,10]},{"path":[4,101,2,7,5],"span":[1785,11,15]},{"path":[4,101,2,7,1],"span":[1785,16,42]},{"path":[4,101,2,7,3],"span":[1785,45,46]},{"path":[4,102],"span":[1792,0,1803,1],"leadingComments":"\n SerialPort, only Windows atm.\n WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-serialport\n"},{"path":[4,102,1],"span":[1792,8,18]},{"path":[4,102,2,0],"span":[1793,2,40]},{"path":[4,102,2,0,4],"span":[1793,2,10]},{"path":[4,102,2,0,6],"span":[1793,11,22]},{"path":[4,102,2,0,1],"span":[1793,23,35]},{"path":[4,102,2,0,3],"span":[1793,38,39]},{"path":[4,102,2,1],"span":[1794,2,27]},{"path":[4,102,2,1,4],"span":[1794,2,10]},{"path":[4,102,2,1,5],"span":[1794,11,15]},{"path":[4,102,2,1,1],"span":[1794,16,22]},{"path":[4,102,2,1,3],"span":[1794,25,26]},{"path":[4,102,2,2],"span":[1795,2,30]},{"path":[4,102,2,2,4],"span":[1795,2,10]},{"path":[4,102,2,2,5],"span":[1795,11,17]},{"path":[4,102,2,2,1],"span":[1795,18,25]},{"path":[4,102,2,2,3],"span":[1795,28,29]},{"path":[4,102,2,3],"span":[1796,2,32]},{"path":[4,102,2,3,4],"span":[1796,2,10]},{"path":[4,102,2,3,5],"span":[1796,11,17]},{"path":[4,102,2,3,1],"span":[1796,18,27]},{"path":[4,102,2,3,3],"span":[1796,30,31]},{"path":[4,102,2,4],"span":[1797,2,35]},{"path":[4,102,2,4,4],"span":[1797,2,10]},{"path":[4,102,2,4,5],"span":[1797,11,16]},{"path":[4,102,2,4,1],"span":[1797,17,30]},{"path":[4,102,2,4,3],"span":[1797,33,34]},{"path":[4,102,2,5],"span":[1798,2,47]},{"path":[4,102,2,5,4],"span":[1798,2,10]},{"path":[4,102,2,5,5],"span":[1798,11,16]},{"path":[4,102,2,5,1],"span":[1798,17,42]},{"path":[4,102,2,5,3],"span":[1798,45,46]},{"path":[4,102,2,6],"span":[1799,2,48]},{"path":[4,102,2,6,4],"span":[1799,2,10]},{"path":[4,102,2,6,5],"span":[1799,11,16]},{"path":[4,102,2,6,1],"span":[1799,17,43]},{"path":[4,102,2,6,3],"span":[1799,46,47]},{"path":[4,102,2,7],"span":[1800,2,39]},{"path":[4,102,2,7,4],"span":[1800,2,10]},{"path":[4,102,2,7,5],"span":[1800,11,15]},{"path":[4,102,2,7,1],"span":[1800,16,34]},{"path":[4,102,2,7,3],"span":[1800,37,38]},{"path":[4,102,2,8],"span":[1801,2,36]},{"path":[4,102,2,8,4],"span":[1801,2,10]},{"path":[4,102,2,8,5],"span":[1801,11,17]},{"path":[4,102,2,8,1],"span":[1801,18,31]},{"path":[4,102,2,8,3],"span":[1801,34,35]},{"path":[4,102,2,9],"span":[1802,2,37]},{"path":[4,102,2,9,4],"span":[1802,2,10]},{"path":[4,102,2,9,5],"span":[1802,11,17]},{"path":[4,102,2,9,1],"span":[1802,18,31]},{"path":[4,102,2,9,3],"span":[1802,34,36]},{"path":[4,103],"span":[1809,0,1816,1],"leadingComments":"\n PcmciaController, only Windows atm.\n WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-pcmciacontroller\n"},{"path":[4,103,1],"span":[1809,8,24]},{"path":[4,103,2,0],"span":[1810,2,30]},{"path":[4,103,2,0,4],"span":[1810,2,10]},{"path":[4,103,2,0,5],"span":[1810,11,17]},{"path":[4,103,2,0,1],"span":[1810,18,25]},{"path":[4,103,2,0,3],"span":[1810,28,29]},{"path":[4,103,2,1],"span":[1811,2,46]},{"path":[4,103,2,1,4],"span":[1811,2,10]},{"path":[4,103,2,1,6],"span":[1811,11,22]},{"path":[4,103,2,1,1],"span":[1811,23,41]},{"path":[4,103,2,1,3],"span":[1811,44,45]},{"path":[4,103,2,2],"span":[1812,2,53]},{"path":[4,103,2,2,4],"span":[1812,2,10]},{"path":[4,103,2,2,6],"span":[1812,11,22]},{"path":[4,103,2,2,1],"span":[1812,23,48]},{"path":[4,103,2,2,3],"span":[1812,51,52]},{"path":[4,103,2,3],"span":[1813,2,47]},{"path":[4,103,2,3,4],"span":[1813,2,10]},{"path":[4,103,2,3,5],"span":[1813,11,15]},{"path":[4,103,2,3,1],"span":[1813,16,42]},{"path":[4,103,2,3,3],"span":[1813,45,46]},{"path":[4,103,2,4],"span":[1814,2,32]},{"path":[4,103,2,4,4],"span":[1814,2,10]},{"path":[4,103,2,4,5],"span":[1814,11,17]},{"path":[4,103,2,4,1],"span":[1814,18,27]},{"path":[4,103,2,4,3],"span":[1814,30,31]},{"path":[4,103,2,5],"span":[1815,2,35]},{"path":[4,103,2,5,4],"span":[1815,2,10]},{"path":[4,103,2,5,5],"span":[1815,11,17]},{"path":[4,103,2,5,1],"span":[1815,18,30]},{"path":[4,103,2,5,3],"span":[1815,33,34]},{"path":[4,104],"span":[1822,0,1828,1],"leadingComments":"\n PortConnector, only Windows atm.\n WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-portconnector\n"},{"path":[4,104,1],"span":[1822,8,21]},{"path":[4,104,2,0],"span":[1823,2,42]},{"path":[4,104,2,0,4],"span":[1823,2,10]},{"path":[4,104,2,0,6],"span":[1823,11,22]},{"path":[4,104,2,0,1],"span":[1823,23,37]},{"path":[4,104,2,0,3],"span":[1823,40,41]},{"path":[4,104,2,1],"span":[1824,2,52]},{"path":[4,104,2,1,4],"span":[1824,2,10]},{"path":[4,104,2,1,5],"span":[1824,11,17]},{"path":[4,104,2,1,1],"span":[1824,18,47]},{"path":[4,104,2,1,3],"span":[1824,50,51]},{"path":[4,104,2,2],"span":[1825,2,52]},{"path":[4,104,2,2,4],"span":[1825,2,10]},{"path":[4,104,2,2,5],"span":[1825,11,17]},{"path":[4,104,2,2,1],"span":[1825,18,47]},{"path":[4,104,2,2,3],"span":[1825,50,51]},{"path":[4,104,2,3],"span":[1826,2,37]},{"path":[4,104,2,3,4],"span":[1826,2,10]},{"path":[4,104,2,3,6],"span":[1826,11,22]},{"path":[4,104,2,3,1],"span":[1826,23,32]},{"path":[4,104,2,3,3],"span":[1826,35,36]},{"path":[4,104,2,4],"span":[1827,2,26]},{"path":[4,104,2,4,4],"span":[1827,2,10]},{"path":[4,104,2,4,5],"span":[1827,11,17]},{"path":[4,104,2,4,1],"span":[1827,18,21]},{"path":[4,104,2,4,3],"span":[1827,24,25]},{"path":[4,105],"span":[1834,0,1841,1],"leadingComments":"\n ScsiController, only Windows atm.\n WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-scsicontroller\n"},{"path":[4,105,1],"span":[1834,8,22]},{"path":[4,105,2,0],"span":[1835,2,40]},{"path":[4,105,2,0,4],"span":[1835,2,10]},{"path":[4,105,2,0,6],"span":[1835,11,22]},{"path":[4,105,2,0,1],"span":[1835,23,35]},{"path":[4,105,2,0,3],"span":[1835,38,39]},{"path":[4,105,2,1],"span":[1836,2,30]},{"path":[4,105,2,1,4],"span":[1836,2,10]},{"path":[4,105,2,1,5],"span":[1836,11,17]},{"path":[4,105,2,1,1],"span":[1836,18,25]},{"path":[4,105,2,1,3],"span":[1836,28,29]},{"path":[4,105,2,2],"span":[1837,2,32]},{"path":[4,105,2,2,4],"span":[1837,2,10]},{"path":[4,105,2,2,5],"span":[1837,11,17]},{"path":[4,105,2,2,1],"span":[1837,18,27]},{"path":[4,105,2,2,3],"span":[1837,30,31]},{"path":[4,105,2,3],"span":[1838,2,34]},{"path":[4,105,2,3,4],"span":[1838,2,10]},{"path":[4,105,2,3,5],"span":[1838,11,17]},{"path":[4,105,2,3,1],"span":[1838,18,29]},{"path":[4,105,2,3,3],"span":[1838,32,33]},{"path":[4,105,2,4],"span":[1839,2,35]},{"path":[4,105,2,4,4],"span":[1839,2,10]},{"path":[4,105,2,4,5],"span":[1839,11,17]},{"path":[4,105,2,4,1],"span":[1839,18,30]},{"path":[4,105,2,4,3],"span":[1839,33,34]},{"path":[4,105,2,5],"span":[1840,2,46]},{"path":[4,105,2,5,4],"span":[1840,2,10]},{"path":[4,105,2,5,6],"span":[1840,11,22]},{"path":[4,105,2,5,1],"span":[1840,23,41]},{"path":[4,105,2,5,3],"span":[1840,44,45]},{"path":[4,106],"span":[1847,0,1853,1],"leadingComments":"\n ComputerSystemProduct, only Windows atm.\n WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-computersystemproduct\n"},{"path":[4,106,1],"span":[1847,8,29]},{"path":[4,106,2,0],"span":[1848,2,41]},{"path":[4,106,2,0,4],"span":[1848,2,10]},{"path":[4,106,2,0,5],"span":[1848,11,17]},{"path":[4,106,2,0,1],"span":[1848,18,36]},{"path":[4,106,2,0,3],"span":[1848,39,40]},{"path":[4,106,2,1],"span":[1849,2,27]},{"path":[4,106,2,1,4],"span":[1849,2,10]},{"path":[4,106,2,1,5],"span":[1849,11,17]},{"path":[4,106,2,1,1],"span":[1849,18,22]},{"path":[4,106,2,1,3],"span":[1849,25,26]},{"path":[4,106,2,2],"span":[1850,2,27]},{"path":[4,106,2,2,4],"span":[1850,2,10]},{"path":[4,106,2,2,5],"span":[1850,11,17]},{"path":[4,106,2,2,1],"span":[1850,18,22]},{"path":[4,106,2,2,3],"span":[1850,25,26]},{"path":[4,106,2,3],"span":[1851,2,29]},{"path":[4,106,2,3,4],"span":[1851,2,10]},{"path":[4,106,2,3,5],"span":[1851,11,17]},{"path":[4,106,2,3,1],"span":[1851,18,24]},{"path":[4,106,2,3,3],"span":[1851,27,28]},{"path":[4,106,2,4],"span":[1852,2,30]},{"path":[4,106,2,4,4],"span":[1852,2,10]},{"path":[4,106,2,4,5],"span":[1852,11,17]},{"path":[4,106,2,4,1],"span":[1852,18,25]},{"path":[4,106,2,4,3],"span":[1852,28,29]},{"path":[4,107],"span":[1859,0,1900,1],"leadingComments":"\n ComputerSystemProduct, only Windows atm.\n WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-computersystem\n"},{"path":[4,107,1],"span":[1859,8,29]},{"path":[4,107,2,0],"span":[1860,2,49]},{"path":[4,107,2,0,4],"span":[1860,2,10]},{"path":[4,107,2,0,6],"span":[1860,11,22]},{"path":[4,107,2,0,1],"span":[1860,23,44]},{"path":[4,107,2,0,3],"span":[1860,47,48]},{"path":[4,107,2,1],"span":[1861,2,48]},{"path":[4,107,2,1,4],"span":[1861,2,10]},{"path":[4,107,2,1,5],"span":[1861,11,15]},{"path":[4,107,2,1,1],"span":[1861,16,43]},{"path":[4,107,2,1,3],"span":[1861,46,47]},{"path":[4,107,2,2],"span":[1862,2,47]},{"path":[4,107,2,2,4],"span":[1862,2,10]},{"path":[4,107,2,2,5],"span":[1862,11,15]},{"path":[4,107,2,2,1],"span":[1862,16,42]},{"path":[4,107,2,2,3],"span":[1862,45,46]},{"path":[4,107,2,3],"span":[1863,2,48]},{"path":[4,107,2,3,4],"span":[1863,2,10]},{"path":[4,107,2,3,6],"span":[1863,11,22]},{"path":[4,107,2,3,1],"span":[1863,23,43]},{"path":[4,107,2,3,3],"span":[1863,46,47]},{"path":[4,107,2,4],"span":[1864,2,52]},{"path":[4,107,2,4,4],"span":[1864,2,10]},{"path":[4,107,2,4,6],"span":[1864,11,22]},{"path":[4,107,2,4,1],"span":[1864,23,47]},{"path":[4,107,2,4,3],"span":[1864,50,51]},{"path":[4,107,2,5],"span":[1865,2,39]},{"path":[4,107,2,5,4],"span":[1865,2,10]},{"path":[4,107,2,5,5],"span":[1865,11,15]},{"path":[4,107,2,5,1],"span":[1865,16,34]},{"path":[4,107,2,5,3],"span":[1865,37,38]},{"path":[4,107,2,6],"span":[1866,2,36]},{"path":[4,107,2,6,4],"span":[1866,2,10]},{"path":[4,107,2,6,5],"span":[1866,11,17]},{"path":[4,107,2,6,1],"span":[1866,18,31]},{"path":[4,107,2,6,3],"span":[1866,34,35]},{"path":[4,107,2,7],"span":[1867,2,49]},{"path":[4,107,2,7,4],"span":[1867,2,10]},{"path":[4,107,2,7,6],"span":[1867,11,22]},{"path":[4,107,2,7,1],"span":[1867,23,44]},{"path":[4,107,2,7,3],"span":[1867,47,48]},{"path":[4,107,2,8],"span":[1868,2,40]},{"path":[4,107,2,8,4],"span":[1868,2,10]},{"path":[4,107,2,8,5],"span":[1868,11,16]},{"path":[4,107,2,8,1],"span":[1868,17,34]},{"path":[4,107,2,8,3],"span":[1868,37,39]},{"path":[4,107,2,9],"span":[1869,2,40]},{"path":[4,107,2,9,4],"span":[1869,2,10]},{"path":[4,107,2,9,5],"span":[1869,11,15]},{"path":[4,107,2,9,1],"span":[1869,16,34]},{"path":[4,107,2,9,3],"span":[1869,37,39]},{"path":[4,107,2,10],"span":[1870,2,35]},{"path":[4,107,2,10,4],"span":[1870,2,10]},{"path":[4,107,2,10,5],"span":[1870,11,17]},{"path":[4,107,2,10,1],"span":[1870,18,29]},{"path":[4,107,2,10,3],"span":[1870,32,34]},{"path":[4,107,2,11],"span":[1871,2,30]},{"path":[4,107,2,11,4],"span":[1871,2,10]},{"path":[4,107,2,11,5],"span":[1871,11,17]},{"path":[4,107,2,11,1],"span":[1871,18,24]},{"path":[4,107,2,11,3],"span":[1871,27,29]},{"path":[4,107,2,12],"span":[1872,2,40]},{"path":[4,107,2,12,4],"span":[1872,2,10]},{"path":[4,107,2,12,6],"span":[1872,11,22]},{"path":[4,107,2,12,1],"span":[1872,23,34]},{"path":[4,107,2,12,3],"span":[1872,37,39]},{"path":[4,107,2,13],"span":[1873,2,53]},{"path":[4,107,2,13,4],"span":[1873,2,10]},{"path":[4,107,2,13,6],"span":[1873,11,22]},{"path":[4,107,2,13,1],"span":[1873,23,47]},{"path":[4,107,2,13,3],"span":[1873,50,52]},{"path":[4,107,2,14],"span":[1874,2,40]},{"path":[4,107,2,14,4],"span":[1874,2,10]},{"path":[4,107,2,14,5],"span":[1874,11,15]},{"path":[4,107,2,14,1],"span":[1874,16,34]},{"path":[4,107,2,14,3],"span":[1874,37,39]},{"path":[4,107,2,15],"span":[1875,2,53]},{"path":[4,107,2,15,4],"span":[1875,2,10]},{"path":[4,107,2,15,6],"span":[1875,11,22]},{"path":[4,107,2,15,1],"span":[1875,23,47]},{"path":[4,107,2,15,3],"span":[1875,50,52]},{"path":[4,107,2,16],"span":[1876,2,36]},{"path":[4,107,2,16,4],"span":[1876,2,10]},{"path":[4,107,2,16,5],"span":[1876,11,17]},{"path":[4,107,2,16,1],"span":[1876,18,30]},{"path":[4,107,2,16,3],"span":[1876,33,35]},{"path":[4,107,2,17],"span":[1877,2,28]},{"path":[4,107,2,17,4],"span":[1877,2,10]},{"path":[4,107,2,17,5],"span":[1877,11,17]},{"path":[4,107,2,17,1],"span":[1877,18,22]},{"path":[4,107,2,17,3],"span":[1877,25,27]},{"path":[4,107,2,18],"span":[1878,2,29]},{"path":[4,107,2,18,4],"span":[1878,2,10]},{"path":[4,107,2,18,5],"span":[1878,11,17]},{"path":[4,107,2,18,1],"span":[1878,18,23]},{"path":[4,107,2,18,3],"span":[1878,26,28]},{"path":[4,107,2,19],"span":[1879,2,49]},{"path":[4,107,2,19,4],"span":[1879,2,10]},{"path":[4,107,2,19,5],"span":[1879,11,15]},{"path":[4,107,2,19,1],"span":[1879,16,43]},{"path":[4,107,2,19,3],"span":[1879,46,48]},{"path":[4,107,2,20],"span":[1880,2,43]},{"path":[4,107,2,20,4],"span":[1880,2,10]},{"path":[4,107,2,20,5],"span":[1880,11,16]},{"path":[4,107,2,20,1],"span":[1880,17,37]},{"path":[4,107,2,20,3],"span":[1880,40,42]},{"path":[4,107,2,21],"span":[1881,2,40]},{"path":[4,107,2,21,4],"span":[1881,2,10]},{"path":[4,107,2,21,5],"span":[1881,11,16]},{"path":[4,107,2,21,1],"span":[1881,17,34]},{"path":[4,107,2,21,3],"span":[1881,37,39]},{"path":[4,107,2,22],"span":[1882,2,53]},{"path":[4,107,2,22,4],"span":[1882,2,10]},{"path":[4,107,2,22,6],"span":[1882,11,22]},{"path":[4,107,2,22,1],"span":[1882,23,47]},{"path":[4,107,2,22,3],"span":[1882,50,52]},{"path":[4,107,2,23],"span":[1883,2,40]},{"path":[4,107,2,23,4],"span":[1883,2,10]},{"path":[4,107,2,23,6],"span":[1883,11,22]},{"path":[4,107,2,23,1],"span":[1883,23,34]},{"path":[4,107,2,23,3],"span":[1883,37,39]},{"path":[4,107,2,24],"span":[1884,2,47]},{"path":[4,107,2,24,4],"span":[1884,2,10]},{"path":[4,107,2,24,6],"span":[1884,11,22]},{"path":[4,107,2,24,1],"span":[1884,23,41]},{"path":[4,107,2,24,3],"span":[1884,44,46]},{"path":[4,107,2,25],"span":[1885,2,42]},{"path":[4,107,2,25,4],"span":[1885,2,10]},{"path":[4,107,2,25,5],"span":[1885,11,17]},{"path":[4,107,2,25,1],"span":[1885,18,36]},{"path":[4,107,2,25,3],"span":[1885,39,41]},{"path":[4,107,2,26],"span":[1886,2,45]},{"path":[4,107,2,26,4],"span":[1886,2,10]},{"path":[4,107,2,26,6],"span":[1886,11,22]},{"path":[4,107,2,26,1],"span":[1886,23,39]},{"path":[4,107,2,26,3],"span":[1886,42,44]},{"path":[4,107,2,27],"span":[1887,2,34]},{"path":[4,107,2,27,4],"span":[1887,2,10]},{"path":[4,107,2,27,5],"span":[1887,11,16]},{"path":[4,107,2,27,1],"span":[1887,17,28]},{"path":[4,107,2,27,3],"span":[1887,31,33]},{"path":[4,107,2,28],"span":[1888,2,34]},{"path":[4,107,2,28,4],"span":[1888,2,10]},{"path":[4,107,2,28,5],"span":[1888,11,16]},{"path":[4,107,2,28,1],"span":[1888,17,28]},{"path":[4,107,2,28,3],"span":[1888,31,33]},{"path":[4,107,2,29],"span":[1889,2,29]},{"path":[4,107,2,29,4],"span":[1889,2,10]},{"path":[4,107,2,29,5],"span":[1889,11,17]},{"path":[4,107,2,29,1],"span":[1889,18,23]},{"path":[4,107,2,29,3],"span":[1889,26,28]},{"path":[4,107,2,30],"span":[1890,2,30]},{"path":[4,107,2,30,4],"span":[1890,2,10]},{"path":[4,107,2,30,5],"span":[1890,11,17]},{"path":[4,107,2,30,1],"span":[1890,18,24]},{"path":[4,107,2,30,3],"span":[1890,27,29]},{"path":[4,107,2,31],"span":[1891,2,43]},{"path":[4,107,2,31,4],"span":[1891,2,10]},{"path":[4,107,2,31,5],"span":[1891,11,16]},{"path":[4,107,2,31,1],"span":[1891,17,37]},{"path":[4,107,2,31,3],"span":[1891,40,42]},{"path":[4,107,2,32],"span":[1892,2,46]},{"path":[4,107,2,32,4],"span":[1892,2,10]},{"path":[4,107,2,32,5],"span":[1892,11,17]},{"path":[4,107,2,32,1],"span":[1892,18,40]},{"path":[4,107,2,32,3],"span":[1892,43,45]},{"path":[4,107,2,33],"span":[1893,2,35]},{"path":[4,107,2,33,4],"span":[1893,2,10]},{"path":[4,107,2,33,5],"span":[1893,11,17]},{"path":[4,107,2,33,1],"span":[1893,18,29]},{"path":[4,107,2,33,3],"span":[1893,32,34]},{"path":[4,107,2,34],"span":[1894,2,42]},{"path":[4,107,2,34,4],"span":[1894,2,10]},{"path":[4,107,2,34,6],"span":[1894,11,22]},{"path":[4,107,2,34,1],"span":[1894,23,36]},{"path":[4,107,2,34,3],"span":[1894,39,41]},{"path":[4,107,2,35],"span":[1895,2,44]},{"path":[4,107,2,35,4],"span":[1895,2,10]},{"path":[4,107,2,35,5],"span":[1895,11,16]},{"path":[4,107,2,35,1],"span":[1895,17,38]},{"path":[4,107,2,35,3],"span":[1895,41,43]},{"path":[4,107,2,36],"span":[1896,2,40]},{"path":[4,107,2,36,4],"span":[1896,2,10]},{"path":[4,107,2,36,6],"span":[1896,11,22]},{"path":[4,107,2,36,1],"span":[1896,23,34]},{"path":[4,107,2,36,3],"span":[1896,37,39]},{"path":[4,107,2,37],"span":[1897,2,50]},{"path":[4,107,2,37,4],"span":[1897,2,10]},{"path":[4,107,2,37,5],"span":[1897,11,15]},{"path":[4,107,2,37,1],"span":[1897,16,44]},{"path":[4,107,2,37,3],"span":[1897,47,49]},{"path":[4,107,2,38],"span":[1898,2,36]},{"path":[4,107,2,38,4],"span":[1898,2,10]},{"path":[4,107,2,38,5],"span":[1898,11,15]},{"path":[4,107,2,38,1],"span":[1898,16,30]},{"path":[4,107,2,38,3],"span":[1898,33,35]},{"path":[4,107,2,39],"span":[1899,2,51]},{"path":[4,107,2,39,4],"span":[1899,2,10]},{"path":[4,107,2,39,5],"span":[1899,11,16]},{"path":[4,107,2,39,1],"span":[1899,17,45]},{"path":[4,107,2,39,3],"span":[1899,48,50]},{"path":[4,108],"span":[1906,0,1924,1],"leadingComments":"\n TrustedPlatformModule, only Windows atm.\n WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/secprov/win32-tpm\n"},{"path":[4,108,1],"span":[1906,8,29]},{"path":[4,108,2,0],"span":[1907,2,47]},{"path":[4,108,2,0,4],"span":[1907,2,10]},{"path":[4,108,2,0,5],"span":[1907,11,15]},{"path":[4,108,2,0,1],"span":[1907,16,42]},{"path":[4,108,2,0,3],"span":[1907,45,46]},{"path":[4,108,2,1],"span":[1908,2,45]},{"path":[4,108,2,1,4],"span":[1908,2,10]},{"path":[4,108,2,1,5],"span":[1908,11,15]},{"path":[4,108,2,1,1],"span":[1908,16,40]},{"path":[4,108,2,1,3],"span":[1908,43,44]},{"path":[4,108,2,2],"span":[1909,2,43]},{"path":[4,108,2,2,4],"span":[1909,2,10]},{"path":[4,108,2,2,5],"span":[1909,11,15]},{"path":[4,108,2,2,1],"span":[1909,16,38]},{"path":[4,108,2,2,3],"span":[1909,41,42]},{"path":[4,108,2,3],"span":[1910,2,35]},{"path":[4,108,2,3,4],"span":[1910,2,10]},{"path":[4,108,2,3,5],"span":[1910,11,17]},{"path":[4,108,2,3,1],"span":[1910,18,30]},{"path":[4,108,2,3,3],"span":[1910,33,34]},{"path":[4,108,2,4],"span":[1911,2,43]},{"path":[4,108,2,4,4],"span":[1911,2,10]},{"path":[4,108,2,4,5],"span":[1911,11,17]},{"path":[4,108,2,4,1],"span":[1911,18,38]},{"path":[4,108,2,4,3],"span":[1911,41,42]},{"path":[4,108,2,5],"span":[1912,2,48]},{"path":[4,108,2,5,4],"span":[1912,2,10]},{"path":[4,108,2,5,5],"span":[1912,11,17]},{"path":[4,108,2,5,1],"span":[1912,18,43]},{"path":[4,108,2,5,3],"span":[1912,46,47]},{"path":[4,108,2,6],"span":[1919,2,38],"leadingComments":"\n This integer value can be translated to a string value by interpreting each byte as an ASCII character.\n For example, an integer value of 1414548736 can be divided into these 4 bytes: 0x54, 0x50, 0x4D, and 0x00.\n Assuming the string is interpreted from left to right, this integer value translated to a string value of \"TPM\".\n"},{"path":[4,108,2,6,4],"span":[1919,2,10]},{"path":[4,108,2,6,5],"span":[1919,11,17]},{"path":[4,108,2,6,1],"span":[1919,18,33]},{"path":[4,108,2,6,3],"span":[1919,36,37]},{"path":[4,108,2,7],"span":[1921,2,50]},{"path":[4,108,2,7,4],"span":[1921,2,10]},{"path":[4,108,2,7,5],"span":[1921,11,17]},{"path":[4,108,2,7,1],"span":[1921,18,45]},{"path":[4,108,2,7,3],"span":[1921,48,49]},{"path":[4,108,2,8],"span":[1922,2,42]},{"path":[4,108,2,8,4],"span":[1922,2,10]},{"path":[4,108,2,8,5],"span":[1922,11,17]},{"path":[4,108,2,8,1],"span":[1922,18,37]},{"path":[4,108,2,8,3],"span":[1922,40,41]},{"path":[4,108,2,9],"span":[1923,2,54]},{"path":[4,108,2,9,4],"span":[1923,2,10]},{"path":[4,108,2,9,5],"span":[1923,11,17]},{"path":[4,108,2,9,1],"span":[1923,18,48]},{"path":[4,108,2,9,3],"span":[1923,51,53]},{"path":[4,109],"span":[1930,0,1935,1],"leadingComments":"\n ComputerConnectedUsbController, only Windows atm.\n WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-usbcontroller\n"},{"path":[4,109,1],"span":[1930,8,38]},{"path":[4,109,2,0],"span":[1931,2,30]},{"path":[4,109,2,0,4],"span":[1931,2,10]},{"path":[4,109,2,0,5],"span":[1931,11,17]},{"path":[4,109,2,0,1],"span":[1931,18,25]},{"path":[4,109,2,0,3],"span":[1931,28,29]},{"path":[4,109,2,1],"span":[1932,2,32]},{"path":[4,109,2,1,4],"span":[1932,2,10]},{"path":[4,109,2,1,5],"span":[1932,11,17]},{"path":[4,109,2,1,1],"span":[1932,18,27]},{"path":[4,109,2,1,3],"span":[1932,30,31]},{"path":[4,109,2,2],"span":[1933,2,35]},{"path":[4,109,2,2,4],"span":[1933,2,10]},{"path":[4,109,2,2,5],"span":[1933,11,17]},{"path":[4,109,2,2,1],"span":[1933,18,30]},{"path":[4,109,2,2,3],"span":[1933,33,34]},{"path":[4,109,2,3],"span":[1934,2,46]},{"path":[4,109,2,3,4],"span":[1934,2,10]},{"path":[4,109,2,3,6],"span":[1934,11,22]},{"path":[4,109,2,3,1],"span":[1934,23,41]},{"path":[4,109,2,3,3],"span":[1934,44,45]},{"path":[4,110],"span":[1940,0,1944,1],"leadingComments":"\n Windows only atm.\n"},{"path":[4,110,1],"span":[1940,8,38]},{"path":[4,110,2,0],"span":[1941,2,24]},{"path":[4,110,2,0,5],"span":[1941,2,8]},{"path":[4,110,2,0,1],"span":[1941,9,19]},{"path":[4,110,2,0,3],"span":[1941,22,23]},{"path":[4,110,2,1],"span":[1942,2,26]},{"path":[4,110,2,1,5],"span":[1942,2,8]},{"path":[4,110,2,1,1],"span":[1942,9,21]},{"path":[4,110,2,1,3],"span":[1942,24,25]},{"path":[4,110,2,2],"span":[1943,2,26]},{"path":[4,110,2,2,5],"span":[1943,2,8]},{"path":[4,110,2,2,1],"span":[1943,9,21]},{"path":[4,110,2,2,3],"span":[1943,24,25]},{"path":[4,111],"span":[1949,0,1965,1],"leadingComments":"\n Modem on computers: windows and mac.\n"},{"path":[4,111,1],"span":[1949,8,30]},{"path":[4,111,2,0],"span":[1950,2,34]},{"path":[4,111,2,0,4],"span":[1950,2,10]},{"path":[4,111,2,0,5],"span":[1950,11,17]},{"path":[4,111,2,0,1],"span":[1950,18,29]},{"path":[4,111,2,0,3],"span":[1950,32,33]},{"path":[4,111,2,1],"span":[1951,2,30],"trailingComments":" mac: name\n"},{"path":[4,111,2,1,4],"span":[1951,2,10]},{"path":[4,111,2,1,5],"span":[1951,11,17]},{"path":[4,111,2,1,1],"span":[1951,18,25]},{"path":[4,111,2,1,3],"span":[1951,28,29]},{"path":[4,111,2,2],"span":[1952,2,35],"trailingComments":" windows: country_selected, mac: country_info \n"},{"path":[4,111,2,2,4],"span":[1952,2,10]},{"path":[4,111,2,2,5],"span":[1952,11,17]},{"path":[4,111,2,2,1],"span":[1952,18,30]},{"path":[4,111,2,2,3],"span":[1952,33,34]},{"path":[4,111,2,3],"span":[1953,2,32]},{"path":[4,111,2,3,4],"span":[1953,2,10]},{"path":[4,111,2,3,5],"span":[1953,11,17]},{"path":[4,111,2,3,1],"span":[1953,18,27]},{"path":[4,111,2,3,3],"span":[1953,30,31]},{"path":[4,111,2,4],"span":[1954,2,34],"trailingComments":" mac: interface_type\n"},{"path":[4,111,2,4,4],"span":[1954,2,10]},{"path":[4,111,2,4,5],"span":[1954,11,17]},{"path":[4,111,2,4,1],"span":[1954,18,29]},{"path":[4,111,2,4,3],"span":[1954,32,33]},{"path":[4,111,2,5],"span":[1955,2,44]},{"path":[4,111,2,5,4],"span":[1955,2,10]},{"path":[4,111,2,5,5],"span":[1955,11,16]},{"path":[4,111,2,5,1],"span":[1955,17,39]},{"path":[4,111,2,5,3],"span":[1955,42,43]},{"path":[4,111,2,6],"span":[1956,2,50]},{"path":[4,111,2,6,4],"span":[1956,2,10]},{"path":[4,111,2,6,5],"span":[1956,11,16]},{"path":[4,111,2,6,1],"span":[1956,17,45]},{"path":[4,111,2,6,3],"span":[1956,48,49]},{"path":[4,111,2,7],"span":[1957,2,37]},{"path":[4,111,2,7,4],"span":[1957,2,10]},{"path":[4,111,2,7,5],"span":[1957,11,17]},{"path":[4,111,2,7,1],"span":[1957,18,32]},{"path":[4,111,2,7,3],"span":[1957,35,36]},{"path":[4,111,2,8],"span":[1958,2,40]},{"path":[4,111,2,8,4],"span":[1958,2,10]},{"path":[4,111,2,8,5],"span":[1958,11,17]},{"path":[4,111,2,8,1],"span":[1958,18,35]},{"path":[4,111,2,8,3],"span":[1958,38,39]},{"path":[4,111,2,9],"span":[1959,2,37]},{"path":[4,111,2,9,4],"span":[1959,2,10]},{"path":[4,111,2,9,5],"span":[1959,11,17]},{"path":[4,111,2,9,1],"span":[1959,18,31]},{"path":[4,111,2,9,3],"span":[1959,34,36]},{"path":[4,111,2,10],"span":[1961,2,34],"trailingComments":" mac only\n"},{"path":[4,111,2,10,4],"span":[1961,2,10]},{"path":[4,111,2,10,5],"span":[1961,11,17]},{"path":[4,111,2,10,1],"span":[1961,18,28]},{"path":[4,111,2,10,3],"span":[1961,31,33]},{"path":[4,111,2,11],"span":[1962,2,38],"trailingComments":" mac only\n"},{"path":[4,111,2,11,4],"span":[1962,2,10]},{"path":[4,111,2,11,5],"span":[1962,11,17]},{"path":[4,111,2,11,1],"span":[1962,18,32]},{"path":[4,111,2,11,3],"span":[1962,35,37]},{"path":[4,111,2,12],"span":[1963,2,29],"trailingComments":" mac only\n"},{"path":[4,111,2,12,4],"span":[1963,2,10]},{"path":[4,111,2,12,5],"span":[1963,11,17]},{"path":[4,111,2,12,1],"span":[1963,18,23]},{"path":[4,111,2,12,3],"span":[1963,26,28]},{"path":[4,111,2,13],"span":[1964,2,34],"trailingComments":" mac only\n"},{"path":[4,111,2,13,4],"span":[1964,2,10]},{"path":[4,111,2,13,5],"span":[1964,11,17]},{"path":[4,111,2,13,1],"span":[1964,18,28]},{"path":[4,111,2,13,3],"span":[1964,31,33]},{"path":[4,112],"span":[1970,0,1988,1],"leadingComments":"\n Windows computer: a Printer connected to the computer.\n"},{"path":[4,112,1],"span":[1970,8,32]},{"path":[4,112,2,0],"span":[1971,2,46]},{"path":[4,112,2,0,4],"span":[1971,2,10]},{"path":[4,112,2,0,5],"span":[1971,11,17]},{"path":[4,112,2,0,1],"span":[1971,18,41]},{"path":[4,112,2,0,3],"span":[1971,44,45]},{"path":[4,112,2,1],"span":[1972,2,30]},{"path":[4,112,2,1,4],"span":[1972,2,10]},{"path":[4,112,2,1,5],"span":[1972,11,17]},{"path":[4,112,2,1,1],"span":[1972,18,25]},{"path":[4,112,2,1,3],"span":[1972,28,29]},{"path":[4,112,2,2],"span":[1973,2,32]},{"path":[4,112,2,2,4],"span":[1973,2,10]},{"path":[4,112,2,2,5],"span":[1973,11,17]},{"path":[4,112,2,2,1],"span":[1973,18,27]},{"path":[4,112,2,2,3],"span":[1973,30,31]},{"path":[4,112,2,3],"span":[1974,2,31]},{"path":[4,112,2,3,4],"span":[1974,2,10]},{"path":[4,112,2,3,5],"span":[1974,11,17]},{"path":[4,112,2,3,1],"span":[1974,18,26]},{"path":[4,112,2,3,3],"span":[1974,29,30]},{"path":[4,112,2,4],"span":[1975,2,32]},{"path":[4,112,2,4,4],"span":[1975,2,10]},{"path":[4,112,2,4,5],"span":[1975,11,17]},{"path":[4,112,2,4,1],"span":[1975,18,27]},{"path":[4,112,2,4,3],"span":[1975,30,31]},{"path":[4,112,2,5],"span":[1976,2,42]},{"path":[4,112,2,5,4],"span":[1976,2,10]},{"path":[4,112,2,5,5],"span":[1976,11,17]},{"path":[4,112,2,5,1],"span":[1976,18,37]},{"path":[4,112,2,5,3],"span":[1976,40,41]},{"path":[4,112,2,6],"span":[1977,2,38]},{"path":[4,112,2,6,4],"span":[1977,2,10]},{"path":[4,112,2,6,5],"span":[1977,11,17]},{"path":[4,112,2,6,1],"span":[1977,18,33]},{"path":[4,112,2,6,3],"span":[1977,36,37]},{"path":[4,112,2,7],"span":[1978,2,34]},{"path":[4,112,2,7,4],"span":[1978,2,10]},{"path":[4,112,2,7,5],"span":[1978,11,17]},{"path":[4,112,2,7,1],"span":[1978,18,28]},{"path":[4,112,2,7,3],"span":[1978,31,33]},{"path":[4,112,2,8],"span":[1979,2,30]},{"path":[4,112,2,8,4],"span":[1979,2,10]},{"path":[4,112,2,8,5],"span":[1979,11,17]},{"path":[4,112,2,8,1],"span":[1979,18,24]},{"path":[4,112,2,8,3],"span":[1979,27,29]},{"path":[4,112,2,9],"span":[1980,2,31]},{"path":[4,112,2,9,4],"span":[1980,2,10]},{"path":[4,112,2,9,5],"span":[1980,11,17]},{"path":[4,112,2,9,1],"span":[1980,18,25]},{"path":[4,112,2,9,3],"span":[1980,28,30]},{"path":[4,112,2,10],"span":[1982,2,43]},{"path":[4,112,2,10,4],"span":[1982,2,10]},{"path":[4,112,2,10,5],"span":[1982,11,16]},{"path":[4,112,2,10,1],"span":[1982,17,38]},{"path":[4,112,2,10,3],"span":[1982,41,42]},{"path":[4,112,2,11],"span":[1983,2,42]},{"path":[4,112,2,11,4],"span":[1983,2,10]},{"path":[4,112,2,11,5],"span":[1983,11,16]},{"path":[4,112,2,11,1],"span":[1983,17,36]},{"path":[4,112,2,11,3],"span":[1983,39,41]},{"path":[4,112,2,12],"span":[1985,2,33]},{"path":[4,112,2,12,4],"span":[1985,2,10]},{"path":[4,112,2,12,5],"span":[1985,11,15]},{"path":[4,112,2,12,1],"span":[1985,16,27]},{"path":[4,112,2,12,3],"span":[1985,30,32]},{"path":[4,112,2,13],"span":[1986,2,27]},{"path":[4,112,2,13,4],"span":[1986,2,10]},{"path":[4,112,2,13,5],"span":[1986,11,15]},{"path":[4,112,2,13,1],"span":[1986,16,21]},{"path":[4,112,2,13,3],"span":[1986,24,26]},{"path":[4,112,2,14],"span":[1987,2,29]},{"path":[4,112,2,14,4],"span":[1987,2,10]},{"path":[4,112,2,14,5],"span":[1987,11,15]},{"path":[4,112,2,14,1],"span":[1987,16,23]},{"path":[4,112,2,14,3],"span":[1987,26,28]},{"path":[4,113],"span":[1993,0,2009,1],"leadingComments":"\n Windows computer: a Tape connected to the computer.\n"},{"path":[4,113,1],"span":[1993,8,34]},{"path":[4,113,2,0],"span":[1994,2,40]},{"path":[4,113,2,0,4],"span":[1994,2,10]},{"path":[4,113,2,0,6],"span":[1994,11,22]},{"path":[4,113,2,0,1],"span":[1994,23,35]},{"path":[4,113,2,0,3],"span":[1994,38,39]},{"path":[4,113,2,1],"span":[1995,2,40]},{"path":[4,113,2,1,4],"span":[1995,2,10]},{"path":[4,113,2,1,6],"span":[1995,11,22]},{"path":[4,113,2,1,1],"span":[1995,23,35]},{"path":[4,113,2,1,3],"span":[1995,38,39]},{"path":[4,113,2,2],"span":[1996,2,30]},{"path":[4,113,2,2,4],"span":[1996,2,10]},{"path":[4,113,2,2,5],"span":[1996,11,17]},{"path":[4,113,2,2,1],"span":[1996,18,25]},{"path":[4,113,2,2,3],"span":[1996,28,29]},{"path":[4,113,2,3],"span":[1997,2,32]},{"path":[4,113,2,3,4],"span":[1997,2,10]},{"path":[4,113,2,3,5],"span":[1997,11,15]},{"path":[4,113,2,3,1],"span":[1997,16,27]},{"path":[4,113,2,3,3],"span":[1997,30,31]},{"path":[4,113,2,4],"span":[1998,2,40]},{"path":[4,113,2,4,4],"span":[1998,2,10]},{"path":[4,113,2,4,5],"span":[1998,11,16]},{"path":[4,113,2,4,1],"span":[1998,17,35]},{"path":[4,113,2,4,3],"span":[1998,38,39]},{"path":[4,113,2,5],"span":[1999,2,32]},{"path":[4,113,2,5,4],"span":[1999,2,10]},{"path":[4,113,2,5,5],"span":[1999,11,17]},{"path":[4,113,2,5,1],"span":[1999,18,27]},{"path":[4,113,2,5,3],"span":[1999,30,31]},{"path":[4,113,2,6],"span":[2000,2,35]},{"path":[4,113,2,6,4],"span":[2000,2,10]},{"path":[4,113,2,6,5],"span":[2000,11,17]},{"path":[4,113,2,6,1],"span":[2000,18,30]},{"path":[4,113,2,6,3],"span":[2000,33,34]},{"path":[4,113,2,7],"span":[2001,2,36]},{"path":[4,113,2,7,4],"span":[2001,2,10]},{"path":[4,113,2,7,5],"span":[2001,11,16]},{"path":[4,113,2,7,1],"span":[2001,17,31]},{"path":[4,113,2,7,3],"span":[2001,34,35]},{"path":[4,113,2,8],"span":[2002,2,36]},{"path":[4,113,2,8,4],"span":[2002,2,10]},{"path":[4,113,2,8,5],"span":[2002,11,16]},{"path":[4,113,2,8,1],"span":[2002,17,31]},{"path":[4,113,2,8,3],"span":[2002,34,35]},{"path":[4,113,2,9],"span":[2003,2,42]},{"path":[4,113,2,9,4],"span":[2003,2,10]},{"path":[4,113,2,9,5],"span":[2003,11,16]},{"path":[4,113,2,9,1],"span":[2003,17,36]},{"path":[4,113,2,9,3],"span":[2003,39,41]},{"path":[4,113,2,10],"span":[2004,2,34]},{"path":[4,113,2,10,4],"span":[2004,2,10]},{"path":[4,113,2,10,5],"span":[2004,11,17]},{"path":[4,113,2,10,1],"span":[2004,18,28]},{"path":[4,113,2,10,3],"span":[2004,31,33]},{"path":[4,113,2,11],"span":[2005,2,37]},{"path":[4,113,2,11,4],"span":[2005,2,10]},{"path":[4,113,2,11,5],"span":[2005,11,16]},{"path":[4,113,2,11,1],"span":[2005,17,31]},{"path":[4,113,2,11,3],"span":[2005,34,36]},{"path":[4,113,2,12],"span":[2006,2,36]},{"path":[4,113,2,12,4],"span":[2006,2,10]},{"path":[4,113,2,12,5],"span":[2006,11,15]},{"path":[4,113,2,12,1],"span":[2006,16,30]},{"path":[4,113,2,12,3],"span":[2006,33,35]},{"path":[4,113,2,13],"span":[2007,2,48]},{"path":[4,113,2,13,4],"span":[2007,2,10]},{"path":[4,113,2,13,5],"span":[2007,11,16]},{"path":[4,113,2,13,1],"span":[2007,17,42]},{"path":[4,113,2,13,3],"span":[2007,45,47]},{"path":[4,113,2,14],"span":[2008,2,30]},{"path":[4,113,2,14,4],"span":[2008,2,10]},{"path":[4,113,2,14,5],"span":[2008,11,16]},{"path":[4,113,2,14,1],"span":[2008,17,24]},{"path":[4,113,2,14,3],"span":[2008,27,29]},{"path":[4,114],"span":[2014,0,2018,1],"leadingComments":"\n Computer, Windows only Serial info. Mapped from\n"},{"path":[4,114,1],"span":[2014,8,29]},{"path":[4,114,2,0],"span":[2015,2,35]},{"path":[4,114,2,0,4],"span":[2015,2,10]},{"path":[4,114,2,0,5],"span":[2015,11,17]},{"path":[4,114,2,0,1],"span":[2015,18,30]},{"path":[4,114,2,0,3],"span":[2015,33,34]},{"path":[4,114,2,1],"span":[2016,2,33]},{"path":[4,114,2,1,4],"span":[2016,2,10]},{"path":[4,114,2,1,5],"span":[2016,11,17]},{"path":[4,114,2,1,1],"span":[2016,18,28]},{"path":[4,114,2,1,3],"span":[2016,31,32]},{"path":[4,114,2,2],"span":[2017,2,37]},{"path":[4,114,2,2,4],"span":[2017,2,10]},{"path":[4,114,2,2,5],"span":[2017,11,17]},{"path":[4,114,2,2,1],"span":[2017,18,32]},{"path":[4,114,2,2,3],"span":[2017,35,36]},{"path":[4,115],"span":[2023,0,2029,1],"leadingComments":"\n Computer Windows only: environment variables.\n"},{"path":[4,115,1],"span":[2023,8,34]},{"path":[4,115,2,0],"span":[2024,2,30]},{"path":[4,115,2,0,4],"span":[2024,2,10]},{"path":[4,115,2,0,5],"span":[2024,11,17]},{"path":[4,115,2,0,1],"span":[2024,18,25]},{"path":[4,115,2,0,3],"span":[2024,28,29]},{"path":[4,115,2,1],"span":[2025,2,27]},{"path":[4,115,2,1,4],"span":[2025,2,10]},{"path":[4,115,2,1,5],"span":[2025,11,17]},{"path":[4,115,2,1,1],"span":[2025,18,22]},{"path":[4,115,2,1,3],"span":[2025,25,26]},{"path":[4,115,2,2],"span":[2026,2,36]},{"path":[4,115,2,2,4],"span":[2026,2,10]},{"path":[4,115,2,2,5],"span":[2026,11,15]},{"path":[4,115,2,2,1],"span":[2026,16,31]},{"path":[4,115,2,2,3],"span":[2026,34,35]},{"path":[4,115,2,3],"span":[2027,2,32]},{"path":[4,115,2,3,4],"span":[2027,2,10]},{"path":[4,115,2,3,5],"span":[2027,11,17]},{"path":[4,115,2,3,1],"span":[2027,18,27]},{"path":[4,115,2,3,3],"span":[2027,30,31]},{"path":[4,115,2,4],"span":[2028,2,37]},{"path":[4,115,2,4,4],"span":[2028,2,10]},{"path":[4,115,2,4,5],"span":[2028,11,17]},{"path":[4,115,2,4,1],"span":[2028,18,32]},{"path":[4,115,2,4,3],"span":[2028,35,36]},{"path":[4,116],"span":[2034,0,2037,1],"leadingComments":"\n Computer Windows only: from WindowsComApplication, WindowsDcomApplication, WindowsComponentCategory.\n"},{"path":[4,116,1],"span":[2034,8,29]},{"path":[4,116,2,0],"span":[2035,2,29]},{"path":[4,116,2,0,4],"span":[2035,2,10]},{"path":[4,116,2,0,5],"span":[2035,11,17]},{"path":[4,116,2,0,1],"span":[2035,18,24]},{"path":[4,116,2,0,3],"span":[2035,27,28]},{"path":[4,116,2,1],"span":[2036,2,30]},{"path":[4,116,2,1,4],"span":[2036,2,10]},{"path":[4,116,2,1,5],"span":[2036,11,17]},{"path":[4,116,2,1,1],"span":[2036,18,25]},{"path":[4,116,2,1,3],"span":[2036,28,29]},{"path":[4,117],"span":[2042,0,2063,1],"leadingComments":"\n Computer Windows only: from Windows Codec.\n"},{"path":[4,117,1],"span":[2042,8,28]},{"path":[4,117,2,0],"span":[2043,2,28]},{"path":[4,117,2,0,4],"span":[2043,2,10]},{"path":[4,117,2,0,5],"span":[2043,11,15]},{"path":[4,117,2,0,1],"span":[2043,16,23]},{"path":[4,117,2,0,3],"span":[2043,26,27]},{"path":[4,117,2,1],"span":[2044,2,30]},{"path":[4,117,2,1,4],"span":[2044,2,10]},{"path":[4,117,2,1,5],"span":[2044,11,17]},{"path":[4,117,2,1,1],"span":[2044,18,25]},{"path":[4,117,2,1,3],"span":[2044,28,29]},{"path":[4,117,2,2],"span":[2045,2,31]},{"path":[4,117,2,2,4],"span":[2045,2,10]},{"path":[4,117,2,2,5],"span":[2045,11,15]},{"path":[4,117,2,2,1],"span":[2045,16,26]},{"path":[4,117,2,2,3],"span":[2045,29,30]},{"path":[4,117,2,3],"span":[2046,2,41]},{"path":[4,117,2,3,4],"span":[2046,2,10]},{"path":[4,117,2,3,5],"span":[2046,11,17]},{"path":[4,117,2,3,1],"span":[2046,18,36]},{"path":[4,117,2,3,3],"span":[2046,39,40]},{"path":[4,117,2,4],"span":[2047,2,34]},{"path":[4,117,2,4,4],"span":[2047,2,10]},{"path":[4,117,2,4,5],"span":[2047,11,17]},{"path":[4,117,2,4,1],"span":[2047,18,29]},{"path":[4,117,2,4,3],"span":[2047,32,33]},{"path":[4,117,2,5],"span":[2048,2,28]},{"path":[4,117,2,5,4],"span":[2048,2,10]},{"path":[4,117,2,5,5],"span":[2048,11,17]},{"path":[4,117,2,5,1],"span":[2048,18,23]},{"path":[4,117,2,5,3],"span":[2048,26,27]},{"path":[4,117,2,6],"span":[2049,2,30]},{"path":[4,117,2,6,4],"span":[2049,2,10]},{"path":[4,117,2,6,5],"span":[2049,11,15]},{"path":[4,117,2,6,1],"span":[2049,16,25]},{"path":[4,117,2,6,3],"span":[2049,28,29]},{"path":[4,117,2,7],"span":[2050,2,40]},{"path":[4,117,2,7,4],"span":[2050,2,10]},{"path":[4,117,2,7,5],"span":[2050,11,17]},{"path":[4,117,2,7,1],"span":[2050,18,35]},{"path":[4,117,2,7,3],"span":[2050,38,39]},{"path":[4,117,2,8],"span":[2051,2,32]},{"path":[4,117,2,8,4],"span":[2051,2,10]},{"path":[4,117,2,8,5],"span":[2051,11,17]},{"path":[4,117,2,8,1],"span":[2051,18,27]},{"path":[4,117,2,8,3],"span":[2051,30,31]},{"path":[4,117,2,9],"span":[2052,2,33]},{"path":[4,117,2,9,4],"span":[2052,2,10]},{"path":[4,117,2,9,5],"span":[2052,11,17]},{"path":[4,117,2,9,1],"span":[2052,18,27]},{"path":[4,117,2,9,3],"span":[2052,30,32]},{"path":[4,117,2,10],"span":[2053,2,32]},{"path":[4,117,2,10,4],"span":[2053,2,10]},{"path":[4,117,2,10,5],"span":[2053,11,16]},{"path":[4,117,2,10,1],"span":[2053,17,26]},{"path":[4,117,2,10,3],"span":[2053,29,31]},{"path":[4,117,2,11],"span":[2054,2,33]},{"path":[4,117,2,11,4],"span":[2054,2,10]},{"path":[4,117,2,11,5],"span":[2054,11,17]},{"path":[4,117,2,11,1],"span":[2054,18,27]},{"path":[4,117,2,11,3],"span":[2054,30,32]},{"path":[4,117,2,12],"span":[2055,2,31]},{"path":[4,117,2,12,4],"span":[2055,2,10]},{"path":[4,117,2,12,5],"span":[2055,11,17]},{"path":[4,117,2,12,1],"span":[2055,18,25]},{"path":[4,117,2,12,3],"span":[2055,28,30]},{"path":[4,117,2,13],"span":[2056,2,29]},{"path":[4,117,2,13,4],"span":[2056,2,10]},{"path":[4,117,2,13,5],"span":[2056,11,17]},{"path":[4,117,2,13,1],"span":[2056,18,23]},{"path":[4,117,2,13,3],"span":[2056,26,28]},{"path":[4,117,2,14],"span":[2057,2,28]},{"path":[4,117,2,14,4],"span":[2057,2,10]},{"path":[4,117,2,14,5],"span":[2057,11,15]},{"path":[4,117,2,14,1],"span":[2057,16,22]},{"path":[4,117,2,14,3],"span":[2057,25,27]},{"path":[4,117,2,15],"span":[2058,2,55]},{"path":[4,117,2,15,4],"span":[2058,2,10]},{"path":[4,117,2,15,6],"span":[2058,11,36]},{"path":[4,117,2,15,1],"span":[2058,37,49]},{"path":[4,117,2,15,3],"span":[2058,52,54]},{"path":[4,117,2,16],"span":[2059,2,36]},{"path":[4,117,2,16,4],"span":[2059,2,10]},{"path":[4,117,2,16,5],"span":[2059,11,17]},{"path":[4,117,2,16,1],"span":[2059,18,30]},{"path":[4,117,2,16,3],"span":[2059,33,35]},{"path":[4,117,2,17],"span":[2060,2,30]},{"path":[4,117,2,17,4],"span":[2060,2,10]},{"path":[4,117,2,17,5],"span":[2060,11,17]},{"path":[4,117,2,17,1],"span":[2060,18,24]},{"path":[4,117,2,17,3],"span":[2060,27,29]},{"path":[4,117,2,18],"span":[2061,2,28]},{"path":[4,117,2,18,4],"span":[2061,2,10]},{"path":[4,117,2,18,5],"span":[2061,11,15]},{"path":[4,117,2,18,1],"span":[2061,16,22]},{"path":[4,117,2,18,3],"span":[2061,25,27]},{"path":[4,117,2,19],"span":[2062,2,31]},{"path":[4,117,2,19,4],"span":[2062,2,10]},{"path":[4,117,2,19,5],"span":[2062,11,17]},{"path":[4,117,2,19,1],"span":[2062,18,25]},{"path":[4,117,2,19,3],"span":[2062,28,30]},{"path":[4,118],"span":[2068,0,2077,1],"leadingComments":"\n Computer Windows only: windows SAT, performance scores .\n"},{"path":[4,118,1],"span":[2068,8,26]},{"path":[4,118,2,0],"span":[2069,2,33]},{"path":[4,118,2,0,4],"span":[2069,2,10]},{"path":[4,118,2,0,5],"span":[2069,11,17]},{"path":[4,118,2,0,1],"span":[2069,18,28]},{"path":[4,118,2,0,3],"span":[2069,31,32]},{"path":[4,118,2,1],"span":[2070,2,36]},{"path":[4,118,2,1,4],"span":[2070,2,10]},{"path":[4,118,2,1,5],"span":[2070,11,17]},{"path":[4,118,2,1,1],"span":[2070,18,31]},{"path":[4,118,2,1,3],"span":[2070,34,35]},{"path":[4,118,2,2],"span":[2071,2,47]},{"path":[4,118,2,2,4],"span":[2071,2,10]},{"path":[4,118,2,2,5],"span":[2071,11,17]},{"path":[4,118,2,2,1],"span":[2071,18,42]},{"path":[4,118,2,2,3],"span":[2071,45,46]},{"path":[4,118,2,3],"span":[2072,2,35]},{"path":[4,118,2,3,4],"span":[2072,2,10]},{"path":[4,118,2,3,5],"span":[2072,11,17]},{"path":[4,118,2,3,1],"span":[2072,18,30]},{"path":[4,118,2,3,3],"span":[2072,33,34]},{"path":[4,118,2,4],"span":[2073,2,32]},{"path":[4,118,2,4,4],"span":[2073,2,10]},{"path":[4,118,2,4,5],"span":[2073,11,17]},{"path":[4,118,2,4,1],"span":[2073,18,27]},{"path":[4,118,2,4,3],"span":[2073,30,31]},{"path":[4,118,2,5],"span":[2074,2,33]},{"path":[4,118,2,5,4],"span":[2074,2,10]},{"path":[4,118,2,5,5],"span":[2074,11,17]},{"path":[4,118,2,5,1],"span":[2074,18,28]},{"path":[4,118,2,5,3],"span":[2074,31,32]},{"path":[4,118,2,6],"span":[2075,2,32]},{"path":[4,118,2,6,4],"span":[2075,2,10]},{"path":[4,118,2,6,5],"span":[2075,11,17]},{"path":[4,118,2,6,1],"span":[2075,18,27]},{"path":[4,118,2,6,3],"span":[2075,30,31]},{"path":[4,118,2,7],"span":[2076,2,37]},{"path":[4,118,2,7,4],"span":[2076,2,10]},{"path":[4,118,2,7,5],"span":[2076,11,17]},{"path":[4,118,2,7,1],"span":[2076,18,32]},{"path":[4,118,2,7,3],"span":[2076,35,36]},{"path":[4,119],"span":[2083,0,2116,1],"leadingComments":"\n Computer, Windows only Certificate.\n"},{"path":[4,119,1],"span":[2083,8,34]},{"path":[4,119,4,0],"span":[2085,2,2095,3]},{"path":[4,119,4,0,1],"span":[2085,7,19]},{"path":[4,119,4,0,2,0],"span":[2086,4,26]},{"path":[4,119,4,0,2,0,1],"span":[2086,4,21]},{"path":[4,119,4,0,2,0,2],"span":[2086,24,25]},{"path":[4,119,4,0,2,1],"span":[2087,4,24]},{"path":[4,119,4,0,2,1,1],"span":[2087,4,19]},{"path":[4,119,4,0,2,1,2],"span":[2087,22,23]},{"path":[4,119,4,0,2,2],"span":[2088,4,25]},{"path":[4,119,4,0,2,2,1],"span":[2088,4,20]},{"path":[4,119,4,0,2,2,2],"span":[2088,23,24]},{"path":[4,119,4,0,2,3],"span":[2089,4,26]},{"path":[4,119,4,0,2,3,1],"span":[2089,4,21]},{"path":[4,119,4,0,2,3,2],"span":[2089,24,25]},{"path":[4,119,4,0,2,4],"span":[2090,4,22]},{"path":[4,119,4,0,2,4,1],"span":[2090,4,17]},{"path":[4,119,4,0,2,4,2],"span":[2090,20,21]},{"path":[4,119,4,0,2,5],"span":[2091,4,22]},{"path":[4,119,4,0,2,5,1],"span":[2091,4,17]},{"path":[4,119,4,0,2,5,2],"span":[2091,20,21]},{"path":[4,119,4,0,2,6],"span":[2092,4,17]},{"path":[4,119,4,0,2,6,1],"span":[2092,4,12]},{"path":[4,119,4,0,2,6,2],"span":[2092,15,16]},{"path":[4,119,4,0,2,7],"span":[2093,4,22]},{"path":[4,119,4,0,2,7,1],"span":[2093,4,17]},{"path":[4,119,4,0,2,7,2],"span":[2093,20,21]},{"path":[4,119,4,0,2,8],"span":[2094,4,22]},{"path":[4,119,4,0,2,8,1],"span":[2094,4,17]},{"path":[4,119,4,0,2,8,2],"span":[2094,20,21]},{"path":[4,119,2,0],"span":[2097,2,69]},{"path":[4,119,2,0,4],"span":[2097,2,10]},{"path":[4,119,2,0,6],"span":[2097,11,45]},{"path":[4,119,2,0,1],"span":[2097,46,64]},{"path":[4,119,2,0,3],"span":[2097,67,68]},{"path":[4,119,2,1],"span":[2098,2,38]},{"path":[4,119,2,1,4],"span":[2098,2,10]},{"path":[4,119,2,1,6],"span":[2098,11,23]},{"path":[4,119,2,1,1],"span":[2098,24,33]},{"path":[4,119,2,1,3],"span":[2098,36,37]},{"path":[4,119,2,2],"span":[2099,2,22]},{"path":[4,119,2,2,5],"span":[2099,2,8]},{"path":[4,119,2,2,1],"span":[2099,9,17]},{"path":[4,119,2,2,3],"span":[2099,20,21]},{"path":[4,119,2,3],"span":[2100,2,27]},{"path":[4,119,2,3,5],"span":[2100,2,8]},{"path":[4,119,2,3,1],"span":[2100,9,22]},{"path":[4,119,2,3,3],"span":[2100,25,26]},{"path":[4,119,2,4],"span":[2101,2,42]},{"path":[4,119,2,4,4],"span":[2101,2,10]},{"path":[4,119,2,4,5],"span":[2101,11,17]},{"path":[4,119,2,4,1],"span":[2101,18,37]},{"path":[4,119,2,4,3],"span":[2101,40,41]},{"path":[4,119,2,5],"span":[2102,2,20]},{"path":[4,119,2,5,5],"span":[2102,2,7]},{"path":[4,119,2,5,1],"span":[2102,8,15]},{"path":[4,119,2,5,3],"span":[2102,18,19]},{"path":[4,119,2,6],"span":[2103,2,27]},{"path":[4,119,2,6,5],"span":[2103,2,6]},{"path":[4,119,2,6,1],"span":[2103,7,22]},{"path":[4,119,2,6,3],"span":[2103,25,26]},{"path":[4,119,2,7],"span":[2104,2,23]},{"path":[4,119,2,7,5],"span":[2104,2,6]},{"path":[4,119,2,7,1],"span":[2104,7,18]},{"path":[4,119,2,7,3],"span":[2104,21,22]},{"path":[4,119,2,8],"span":[2105,2,48]},{"path":[4,119,2,8,6],"span":[2105,2,27]},{"path":[4,119,2,8,1],"span":[2105,28,43]},{"path":[4,119,2,8,3],"span":[2105,46,47]},{"path":[4,119,2,9],"span":[2106,2,44]},{"path":[4,119,2,9,6],"span":[2106,2,27]},{"path":[4,119,2,9,1],"span":[2106,28,38]},{"path":[4,119,2,9,3],"span":[2106,41,43]},{"path":[4,119,2,10],"span":[2107,2,26]},{"path":[4,119,2,10,5],"span":[2107,2,8]},{"path":[4,119,2,10,1],"span":[2107,9,20]},{"path":[4,119,2,10,3],"span":[2107,23,25]},{"path":[4,119,2,11],"span":[2108,2,21]},{"path":[4,119,2,11,5],"span":[2108,2,8]},{"path":[4,119,2,11,1],"span":[2108,9,15]},{"path":[4,119,2,11,3],"span":[2108,18,20]},{"path":[4,119,2,12],"span":[2109,2,39]},{"path":[4,119,2,12,5],"span":[2109,2,8]},{"path":[4,119,2,12,1],"span":[2109,9,33]},{"path":[4,119,2,12,3],"span":[2109,36,38]},{"path":[4,119,2,13],"span":[2110,2,27]},{"path":[4,119,2,13,5],"span":[2110,2,8]},{"path":[4,119,2,13,1],"span":[2110,9,21]},{"path":[4,119,2,13,3],"span":[2110,24,26]},{"path":[4,119,2,14],"span":[2111,2,22]},{"path":[4,119,2,14,5],"span":[2111,2,8]},{"path":[4,119,2,14,1],"span":[2111,9,16]},{"path":[4,119,2,14,3],"span":[2111,19,21]},{"path":[4,119,2,15],"span":[2112,2,21]},{"path":[4,119,2,15,5],"span":[2112,2,8]},{"path":[4,119,2,15,1],"span":[2112,9,15]},{"path":[4,119,2,15,3],"span":[2112,18,20]},{"path":[4,119,2,16],"span":[2113,2,25]},{"path":[4,119,2,16,5],"span":[2113,2,8]},{"path":[4,119,2,16,1],"span":[2113,9,19]},{"path":[4,119,2,16,3],"span":[2113,22,24]},{"path":[4,119,2,17],"span":[2114,2,28]},{"path":[4,119,2,17,5],"span":[2114,2,8]},{"path":[4,119,2,17,1],"span":[2114,9,22]},{"path":[4,119,2,17,3],"span":[2114,25,27]},{"path":[4,119,2,18],"span":[2115,2,52]},{"path":[4,119,2,18,4],"span":[2115,2,10]},{"path":[4,119,2,18,6],"span":[2115,11,37]},{"path":[4,119,2,18,1],"span":[2115,38,46]},{"path":[4,119,2,18,3],"span":[2115,49,51]},{"path":[4,120],"span":[2118,0,2121,1]},{"path":[4,120,1],"span":[2118,8,42]},{"path":[4,120,2,0],"span":[2119,2,31]},{"path":[4,120,2,0,4],"span":[2119,2,10]},{"path":[4,120,2,0,5],"span":[2119,11,17]},{"path":[4,120,2,0,1],"span":[2119,18,26]},{"path":[4,120,2,0,3],"span":[2119,29,30]},{"path":[4,120,2,1],"span":[2120,2,32]},{"path":[4,120,2,1,4],"span":[2120,2,10]},{"path":[4,120,2,1,5],"span":[2120,11,17]},{"path":[4,120,2,1,1],"span":[2120,18,27]},{"path":[4,120,2,1,3],"span":[2120,30,31]},{"path":[4,121],"span":[2123,0,2126,1]},{"path":[4,121,1],"span":[2123,8,34]},{"path":[4,121,2,0],"span":[2124,2,19]},{"path":[4,121,2,0,5],"span":[2124,2,8]},{"path":[4,121,2,0,1],"span":[2124,9,14]},{"path":[4,121,2,0,3],"span":[2124,17,18]},{"path":[4,121,2,1],"span":[2125,2,20]},{"path":[4,121,2,1,5],"span":[2125,2,8]},{"path":[4,121,2,1,1],"span":[2125,9,15]},{"path":[4,121,2,1,3],"span":[2125,18,19]},{"path":[4,122],"span":[2129,0,2133,1],"leadingComments":" macOS Language and Regional Settings, macOS only. To be mapped from inbound model: MacRegional\n"},{"path":[4,122,1],"span":[2129,8,35]},{"path":[4,122,2,0],"span":[2130,2,53]},{"path":[4,122,2,0,4],"span":[2130,2,10]},{"path":[4,122,2,0,6],"span":[2130,11,34]},{"path":[4,122,2,0,1],"span":[2130,35,48]},{"path":[4,122,2,0,3],"span":[2130,51,52]},{"path":[4,122,2,1],"span":[2131,2,57]},{"path":[4,122,2,1,4],"span":[2131,2,10]},{"path":[4,122,2,1,6],"span":[2131,11,36]},{"path":[4,122,2,1,1],"span":[2131,37,52]},{"path":[4,122,2,1,3],"span":[2131,55,56]},{"path":[4,122,2,2],"span":[2132,2,66]},{"path":[4,122,2,2,4],"span":[2132,2,10]},{"path":[4,122,2,2,6],"span":[2132,11,40]},{"path":[4,122,2,2,1],"span":[2132,41,61]},{"path":[4,122,2,2,3],"span":[2132,64,65]},{"path":[4,123],"span":[2135,0,2147,1]},{"path":[4,123,1],"span":[2135,8,31]},{"path":[4,123,2,0],"span":[2136,2,55]},{"path":[4,123,2,0,4],"span":[2136,2,10]},{"path":[4,123,2,0,5],"span":[2136,11,17]},{"path":[4,123,2,0,1],"span":[2136,18,50]},{"path":[4,123,2,0,3],"span":[2136,53,54]},{"path":[4,123,2,1],"span":[2137,2,46]},{"path":[4,123,2,1,4],"span":[2137,2,10]},{"path":[4,123,2,1,5],"span":[2137,11,17]},{"path":[4,123,2,1,1],"span":[2137,18,41]},{"path":[4,123,2,1,3],"span":[2137,44,45]},{"path":[4,123,2,2],"span":[2138,2,52]},{"path":[4,123,2,2,4],"span":[2138,2,10]},{"path":[4,123,2,2,5],"span":[2138,11,17]},{"path":[4,123,2,2,1],"span":[2138,18,47]},{"path":[4,123,2,2,3],"span":[2138,50,51]},{"path":[4,123,2,3],"span":[2139,2,36]},{"path":[4,123,2,3,4],"span":[2139,2,10]},{"path":[4,123,2,3,5],"span":[2139,11,17]},{"path":[4,123,2,3,1],"span":[2139,18,31]},{"path":[4,123,2,3,3],"span":[2139,34,35]},{"path":[4,123,2,4],"span":[2140,2,40]},{"path":[4,123,2,4,4],"span":[2140,2,10]},{"path":[4,123,2,4,5],"span":[2140,11,17]},{"path":[4,123,2,4,1],"span":[2140,18,35]},{"path":[4,123,2,4,3],"span":[2140,38,39]},{"path":[4,123,2,5],"span":[2141,2,48]},{"path":[4,123,2,5,4],"span":[2141,2,10]},{"path":[4,123,2,5,5],"span":[2141,11,17]},{"path":[4,123,2,5,1],"span":[2141,18,43]},{"path":[4,123,2,5,3],"span":[2141,46,47]},{"path":[4,123,2,6],"span":[2142,2,41]},{"path":[4,123,2,6,4],"span":[2142,2,10]},{"path":[4,123,2,6,5],"span":[2142,11,17]},{"path":[4,123,2,6,1],"span":[2142,18,36]},{"path":[4,123,2,6,3],"span":[2142,39,40]},{"path":[4,123,2,7],"span":[2143,2,34]},{"path":[4,123,2,7,4],"span":[2143,2,10]},{"path":[4,123,2,7,5],"span":[2143,11,17]},{"path":[4,123,2,7,1],"span":[2143,18,29]},{"path":[4,123,2,7,3],"span":[2143,32,33]},{"path":[4,123,2,8],"span":[2144,2,57]},{"path":[4,123,2,8,4],"span":[2144,2,10]},{"path":[4,123,2,8,5],"span":[2144,11,17]},{"path":[4,123,2,8,1],"span":[2144,18,52]},{"path":[4,123,2,8,3],"span":[2144,55,56]},{"path":[4,123,2,9],"span":[2145,2,45]},{"path":[4,123,2,9,4],"span":[2145,2,10]},{"path":[4,123,2,9,5],"span":[2145,11,17]},{"path":[4,123,2,9,1],"span":[2145,18,39]},{"path":[4,123,2,9,3],"span":[2145,42,44]},{"path":[4,123,2,10],"span":[2146,2,47]},{"path":[4,123,2,10,4],"span":[2146,2,10]},{"path":[4,123,2,10,5],"span":[2146,11,17]},{"path":[4,123,2,10,1],"span":[2146,18,41]},{"path":[4,123,2,10,3],"span":[2146,44,46]},{"path":[4,124],"span":[2149,0,2156,1]},{"path":[4,124,1],"span":[2149,8,33]},{"path":[4,124,2,0],"span":[2150,2,37]},{"path":[4,124,2,0,4],"span":[2150,2,10]},{"path":[4,124,2,0,5],"span":[2150,11,17]},{"path":[4,124,2,0,1],"span":[2150,18,32]},{"path":[4,124,2,0,3],"span":[2150,35,36]},{"path":[4,124,2,1],"span":[2151,2,49]},{"path":[4,124,2,1,4],"span":[2151,2,10]},{"path":[4,124,2,1,5],"span":[2151,11,17]},{"path":[4,124,2,1,1],"span":[2151,18,44]},{"path":[4,124,2,1,3],"span":[2151,47,48]},{"path":[4,124,2,2],"span":[2152,2,39]},{"path":[4,124,2,2,4],"span":[2152,2,10]},{"path":[4,124,2,2,5],"span":[2152,11,17]},{"path":[4,124,2,2,1],"span":[2152,18,34]},{"path":[4,124,2,2,3],"span":[2152,37,38]},{"path":[4,124,2,3],"span":[2153,2,36]},{"path":[4,124,2,3,4],"span":[2153,2,10]},{"path":[4,124,2,3,5],"span":[2153,11,17]},{"path":[4,124,2,3,1],"span":[2153,18,31]},{"path":[4,124,2,3,3],"span":[2153,34,35]},{"path":[4,124,2,4],"span":[2154,2,44]},{"path":[4,124,2,4,4],"span":[2154,2,10]},{"path":[4,124,2,4,5],"span":[2154,11,17]},{"path":[4,124,2,4,1],"span":[2154,18,39]},{"path":[4,124,2,4,3],"span":[2154,42,43]},{"path":[4,124,2,5],"span":[2155,2,48]},{"path":[4,124,2,5,4],"span":[2155,2,10]},{"path":[4,124,2,5,5],"span":[2155,11,17]},{"path":[4,124,2,5,1],"span":[2155,18,43]},{"path":[4,124,2,5,3],"span":[2155,46,47]},{"path":[4,125],"span":[2158,0,2161,1]},{"path":[4,125,1],"span":[2158,8,37]},{"path":[4,125,2,0],"span":[2159,2,41]},{"path":[4,125,2,0,4],"span":[2159,2,10]},{"path":[4,125,2,0,5],"span":[2159,11,17]},{"path":[4,125,2,0,1],"span":[2159,18,36]},{"path":[4,125,2,0,3],"span":[2159,39,40]},{"path":[4,125,2,1],"span":[2160,2,34]},{"path":[4,125,2,1,4],"span":[2160,2,10]},{"path":[4,125,2,1,5],"span":[2160,11,17]},{"path":[4,125,2,1,1],"span":[2160,18,29]},{"path":[4,125,2,1,3],"span":[2160,32,33]},{"path":[4,126],"span":[2166,0,2171,1],"leadingComments":"\n Computer Windows only: page files.\n"},{"path":[4,126,1],"span":[2166,8,31]},{"path":[4,126,8,0],"span":[2167,2,2170,3]},{"path":[4,126,8,0,1],"span":[2167,8,17]},{"path":[4,126,2,0],"span":[2168,4,37]},{"path":[4,126,2,0,6],"span":[2168,4,25]},{"path":[4,126,2,0,1],"span":[2168,26,32]},{"path":[4,126,2,0,3],"span":[2168,35,36]},{"path":[4,126,2,1],"span":[2169,4,45]},{"path":[4,126,2,1,6],"span":[2169,4,31]},{"path":[4,126,2,1,1],"span":[2169,32,40]},{"path":[4,126,2,1,3],"span":[2169,43,44]},{"path":[4,127],"span":[2173,0,2189,1]},{"path":[4,127,1],"span":[2173,8,29]},{"path":[4,127,2,0],"span":[2174,2,28]},{"path":[4,127,2,0,4],"span":[2174,2,10]},{"path":[4,127,2,0,5],"span":[2174,11,15]},{"path":[4,127,2,0,1],"span":[2174,16,23]},{"path":[4,127,2,0,3],"span":[2174,26,27]},{"path":[4,127,2,1],"span":[2175,2,30]},{"path":[4,127,2,1,4],"span":[2175,2,10]},{"path":[4,127,2,1,5],"span":[2175,11,17]},{"path":[4,127,2,1,1],"span":[2175,18,25]},{"path":[4,127,2,1,3],"span":[2175,28,29]},{"path":[4,127,2,2],"span":[2176,2,55]},{"path":[4,127,2,2,4],"span":[2176,2,10]},{"path":[4,127,2,2,6],"span":[2176,11,36]},{"path":[4,127,2,2,1],"span":[2176,37,50]},{"path":[4,127,2,2,3],"span":[2176,53,54]},{"path":[4,127,2,3],"span":[2177,2,32]},{"path":[4,127,2,3,4],"span":[2177,2,10]},{"path":[4,127,2,3,5],"span":[2177,11,17]},{"path":[4,127,2,3,1],"span":[2177,18,27]},{"path":[4,127,2,3,3],"span":[2177,30,31]},{"path":[4,127,2,4],"span":[2178,2,27]},{"path":[4,127,2,4,4],"span":[2178,2,10]},{"path":[4,127,2,4,5],"span":[2178,11,15]},{"path":[4,127,2,4,1],"span":[2178,16,22]},{"path":[4,127,2,4,3],"span":[2178,25,26]},{"path":[4,127,2,5],"span":[2179,2,35]},{"path":[4,127,2,5,4],"span":[2179,2,10]},{"path":[4,127,2,5,5],"span":[2179,11,17]},{"path":[4,127,2,5,1],"span":[2179,18,30]},{"path":[4,127,2,5,3],"span":[2179,33,34]},{"path":[4,127,2,6],"span":[2180,2,54]},{"path":[4,127,2,6,4],"span":[2180,2,10]},{"path":[4,127,2,6,6],"span":[2180,11,36]},{"path":[4,127,2,6,1],"span":[2180,37,49]},{"path":[4,127,2,6,3],"span":[2180,52,53]},{"path":[4,127,2,7],"span":[2181,2,55]},{"path":[4,127,2,7,4],"span":[2181,2,10]},{"path":[4,127,2,7,6],"span":[2181,11,36]},{"path":[4,127,2,7,1],"span":[2181,37,50]},{"path":[4,127,2,7,3],"span":[2181,53,54]},{"path":[4,127,2,8],"span":[2182,2,55]},{"path":[4,127,2,8,4],"span":[2182,2,10]},{"path":[4,127,2,8,6],"span":[2182,11,36]},{"path":[4,127,2,8,1],"span":[2182,37,50]},{"path":[4,127,2,8,3],"span":[2182,53,54]},{"path":[4,127,2,9],"span":[2183,2,36]},{"path":[4,127,2,9,4],"span":[2183,2,10]},{"path":[4,127,2,9,5],"span":[2183,11,17]},{"path":[4,127,2,9,1],"span":[2183,18,30]},{"path":[4,127,2,9,3],"span":[2183,33,35]},{"path":[4,127,2,10],"span":[2184,2,28]},{"path":[4,127,2,10,4],"span":[2184,2,10]},{"path":[4,127,2,10,5],"span":[2184,11,17]},{"path":[4,127,2,10,1],"span":[2184,18,22]},{"path":[4,127,2,10,3],"span":[2184,25,27]},{"path":[4,127,2,11],"span":[2185,2,28]},{"path":[4,127,2,11,4],"span":[2185,2,10]},{"path":[4,127,2,11,5],"span":[2185,11,17]},{"path":[4,127,2,11,1],"span":[2185,18,22]},{"path":[4,127,2,11,3],"span":[2185,25,27]},{"path":[4,127,2,12],"span":[2186,2,30]},{"path":[4,127,2,12,4],"span":[2186,2,10]},{"path":[4,127,2,12,5],"span":[2186,11,15]},{"path":[4,127,2,12,1],"span":[2186,16,24]},{"path":[4,127,2,12,3],"span":[2186,27,29]},{"path":[4,127,2,13],"span":[2187,2,28]},{"path":[4,127,2,13,4],"span":[2187,2,10]},{"path":[4,127,2,13,5],"span":[2187,11,15]},{"path":[4,127,2,13,1],"span":[2187,16,22]},{"path":[4,127,2,13,3],"span":[2187,25,27]},{"path":[4,127,2,14],"span":[2188,2,31]},{"path":[4,127,2,14,4],"span":[2188,2,10]},{"path":[4,127,2,14,5],"span":[2188,11,15]},{"path":[4,127,2,14,1],"span":[2188,16,25]},{"path":[4,127,2,14,3],"span":[2188,28,30]},{"path":[4,128],"span":[2191,0,2194,1]},{"path":[4,128,1],"span":[2191,8,35]},{"path":[4,128,2,0],"span":[2192,2,53]},{"path":[4,128,2,0,4],"span":[2192,2,10]},{"path":[4,128,2,0,6],"span":[2192,11,31]},{"path":[4,128,2,0,1],"span":[2192,32,48]},{"path":[4,128,2,0,3],"span":[2192,51,52]},{"path":[4,128,2,1],"span":[2193,2,57]},{"path":[4,128,2,1,4],"span":[2193,2,10]},{"path":[4,128,2,1,6],"span":[2193,11,33]},{"path":[4,128,2,1,1],"span":[2193,34,52]},{"path":[4,128,2,1,3],"span":[2193,55,56]},{"path":[4,129],"span":[2196,0,2203,1]},{"path":[4,129,1],"span":[2196,8,30]},{"path":[4,129,2,0],"span":[2197,2,30]},{"path":[4,129,2,0,4],"span":[2197,2,10]},{"path":[4,129,2,0,5],"span":[2197,11,17]},{"path":[4,129,2,0,1],"span":[2197,18,25]},{"path":[4,129,2,0,3],"span":[2197,28,29]},{"path":[4,129,2,1],"span":[2198,2,34]},{"path":[4,129,2,1,4],"span":[2198,2,10]},{"path":[4,129,2,1,5],"span":[2198,11,17]},{"path":[4,129,2,1,1],"span":[2198,18,29]},{"path":[4,129,2,1,3],"span":[2198,32,33]},{"path":[4,129,2,2],"span":[2199,2,35]},{"path":[4,129,2,2,4],"span":[2199,2,10]},{"path":[4,129,2,2,5],"span":[2199,11,17]},{"path":[4,129,2,2,1],"span":[2199,18,30]},{"path":[4,129,2,2,3],"span":[2199,33,34]},{"path":[4,129,2,3],"span":[2200,2,35]},{"path":[4,129,2,3,4],"span":[2200,2,10]},{"path":[4,129,2,3,5],"span":[2200,11,17]},{"path":[4,129,2,3,1],"span":[2200,18,30]},{"path":[4,129,2,3,3],"span":[2200,33,34]},{"path":[4,129,2,4],"span":[2201,2,27]},{"path":[4,129,2,4,4],"span":[2201,2,10]},{"path":[4,129,2,4,5],"span":[2201,11,17]},{"path":[4,129,2,4,1],"span":[2201,18,22]},{"path":[4,129,2,4,3],"span":[2201,25,26]},{"path":[4,129,2,5],"span":[2202,2,33]},{"path":[4,129,2,5,4],"span":[2202,2,10]},{"path":[4,129,2,5,5],"span":[2202,11,17]},{"path":[4,129,2,5,1],"span":[2202,18,28]},{"path":[4,129,2,5,3],"span":[2202,31,32]},{"path":[4,130],"span":[2205,0,2215,1]},{"path":[4,130,1],"span":[2205,8,28]},{"path":[4,130,2,0],"span":[2206,2,42]},{"path":[4,130,2,0,4],"span":[2206,2,10]},{"path":[4,130,2,0,5],"span":[2206,11,17]},{"path":[4,130,2,0,1],"span":[2206,18,37]},{"path":[4,130,2,0,3],"span":[2206,40,41]},{"path":[4,130,2,1],"span":[2207,2,30]},{"path":[4,130,2,1,4],"span":[2207,2,10]},{"path":[4,130,2,1,5],"span":[2207,11,17]},{"path":[4,130,2,1,1],"span":[2207,18,25]},{"path":[4,130,2,1,3],"span":[2207,28,29]},{"path":[4,130,2,2],"span":[2208,2,36]},{"path":[4,130,2,2,4],"span":[2208,2,10]},{"path":[4,130,2,2,5],"span":[2208,11,17]},{"path":[4,130,2,2,1],"span":[2208,18,31]},{"path":[4,130,2,2,3],"span":[2208,34,35]},{"path":[4,130,2,3],"span":[2209,2,35]},{"path":[4,130,2,3,4],"span":[2209,2,10]},{"path":[4,130,2,3,5],"span":[2209,11,17]},{"path":[4,130,2,3,1],"span":[2209,18,29]},{"path":[4,130,2,3,3],"span":[2209,33,34]},{"path":[4,130,2,4],"span":[2210,2,54]},{"path":[4,130,2,4,4],"span":[2210,2,10]},{"path":[4,130,2,4,6],"span":[2210,11,36]},{"path":[4,130,2,4,1],"span":[2210,37,49]},{"path":[4,130,2,4,3],"span":[2210,52,53]},{"path":[4,130,2,5],"span":[2211,2,27]},{"path":[4,130,2,5,4],"span":[2211,2,10]},{"path":[4,130,2,5,5],"span":[2211,11,17]},{"path":[4,130,2,5,1],"span":[2211,18,22]},{"path":[4,130,2,5,3],"span":[2211,25,26]},{"path":[4,130,2,6],"span":[2212,2,33]},{"path":[4,130,2,6,4],"span":[2212,2,10]},{"path":[4,130,2,6,5],"span":[2212,11,17]},{"path":[4,130,2,6,1],"span":[2212,18,28]},{"path":[4,130,2,6,3],"span":[2212,31,32]},{"path":[4,130,2,7],"span":[2213,2,29]},{"path":[4,130,2,7,4],"span":[2213,2,10]},{"path":[4,130,2,7,5],"span":[2213,11,17]},{"path":[4,130,2,7,1],"span":[2213,18,24]},{"path":[4,130,2,7,3],"span":[2213,27,28]},{"path":[4,130,2,8],"span":[2214,2,35]},{"path":[4,130,2,8,4],"span":[2214,2,10]},{"path":[4,130,2,8,5],"span":[2214,11,15]},{"path":[4,130,2,8,1],"span":[2214,16,30]},{"path":[4,130,2,8,3],"span":[2214,33,34]},{"path":[4,131],"span":[2221,0,2240,1],"leadingComments":"\n Computer, Windows only.\n"},{"path":[4,131,1],"span":[2221,8,30]},{"path":[4,131,2,0],"span":[2222,2,34]},{"path":[4,131,2,0,4],"span":[2222,2,10]},{"path":[4,131,2,0,5],"span":[2222,11,16]},{"path":[4,131,2,0,1],"span":[2222,17,29]},{"path":[4,131,2,0,3],"span":[2222,32,33]},{"path":[4,131,2,1],"span":[2223,2,32]},{"path":[4,131,2,1,4],"span":[2223,2,10]},{"path":[4,131,2,1,5],"span":[2223,11,15]},{"path":[4,131,2,1,1],"span":[2223,16,27]},{"path":[4,131,2,1,3],"span":[2223,30,31]},{"path":[4,131,2,2],"span":[2224,2,39]},{"path":[4,131,2,2,4],"span":[2224,2,10]},{"path":[4,131,2,2,5],"span":[2224,11,16]},{"path":[4,131,2,2,1],"span":[2224,17,34]},{"path":[4,131,2,2,3],"span":[2224,37,38]},{"path":[4,131,2,3],"span":[2225,2,38]},{"path":[4,131,2,3,4],"span":[2225,2,10]},{"path":[4,131,2,3,5],"span":[2225,11,15]},{"path":[4,131,2,3,1],"span":[2225,16,33]},{"path":[4,131,2,3,3],"span":[2225,36,37]},{"path":[4,131,2,4],"span":[2226,2,38]},{"path":[4,131,2,4,4],"span":[2226,2,10]},{"path":[4,131,2,4,5],"span":[2226,11,16]},{"path":[4,131,2,4,1],"span":[2226,17,33]},{"path":[4,131,2,4,3],"span":[2226,36,37]},{"path":[4,131,2,5],"span":[2227,2,34]},{"path":[4,131,2,5,4],"span":[2227,2,10]},{"path":[4,131,2,5,5],"span":[2227,11,16]},{"path":[4,131,2,5,1],"span":[2227,17,29]},{"path":[4,131,2,5,3],"span":[2227,32,33]},{"path":[4,131,2,6],"span":[2228,2,42]},{"path":[4,131,2,6,4],"span":[2228,2,10]},{"path":[4,131,2,6,5],"span":[2228,11,17]},{"path":[4,131,2,6,1],"span":[2228,18,37]},{"path":[4,131,2,6,3],"span":[2228,40,41]},{"path":[4,131,2,7],"span":[2229,2,37]},{"path":[4,131,2,7,4],"span":[2229,2,10]},{"path":[4,131,2,7,5],"span":[2229,11,16]},{"path":[4,131,2,7,1],"span":[2229,17,32]},{"path":[4,131,2,7,3],"span":[2229,35,36]},{"path":[4,131,2,8],"span":[2230,2,36]},{"path":[4,131,2,8,4],"span":[2230,2,10]},{"path":[4,131,2,8,5],"span":[2230,11,15]},{"path":[4,131,2,8,1],"span":[2230,16,31]},{"path":[4,131,2,8,3],"span":[2230,34,35]},{"path":[4,131,2,9],"span":[2231,2,28]},{"path":[4,131,2,9,4],"span":[2231,2,10]},{"path":[4,131,2,9,5],"span":[2231,11,17]},{"path":[4,131,2,9,1],"span":[2231,18,22]},{"path":[4,131,2,9,3],"span":[2231,25,27]},{"path":[4,131,2,10],"span":[2232,2,31]},{"path":[4,131,2,10,4],"span":[2232,2,10]},{"path":[4,131,2,10,5],"span":[2232,11,17]},{"path":[4,131,2,10,1],"span":[2232,18,25]},{"path":[4,131,2,10,3],"span":[2232,28,30]},{"path":[4,131,2,11],"span":[2233,2,40]},{"path":[4,131,2,11,4],"span":[2233,2,10]},{"path":[4,131,2,11,5],"span":[2233,11,15]},{"path":[4,131,2,11,1],"span":[2233,16,34]},{"path":[4,131,2,11,3],"span":[2233,37,39]},{"path":[4,131,2,12],"span":[2234,2,46]},{"path":[4,131,2,12,4],"span":[2234,2,10]},{"path":[4,131,2,12,5],"span":[2234,11,17]},{"path":[4,131,2,12,1],"span":[2234,18,40]},{"path":[4,131,2,12,3],"span":[2234,43,45]},{"path":[4,131,2,13],"span":[2235,2,40]},{"path":[4,131,2,13,4],"span":[2235,2,10]},{"path":[4,131,2,13,5],"span":[2235,11,15]},{"path":[4,131,2,13,1],"span":[2235,16,34]},{"path":[4,131,2,13,3],"span":[2235,37,39]},{"path":[4,131,2,14],"span":[2236,2,41]},{"path":[4,131,2,14,4],"span":[2236,2,10]},{"path":[4,131,2,14,5],"span":[2236,11,16]},{"path":[4,131,2,14,1],"span":[2236,17,35]},{"path":[4,131,2,14,3],"span":[2236,38,40]},{"path":[4,131,2,15],"span":[2237,2,33]},{"path":[4,131,2,15,4],"span":[2237,2,10]},{"path":[4,131,2,15,5],"span":[2237,11,17]},{"path":[4,131,2,15,1],"span":[2237,18,27]},{"path":[4,131,2,15,3],"span":[2237,30,32]},{"path":[4,131,2,16],"span":[2238,2,41]},{"path":[4,131,2,16,4],"span":[2238,2,10]},{"path":[4,131,2,16,5],"span":[2238,11,15]},{"path":[4,131,2,16,1],"span":[2238,16,35]},{"path":[4,131,2,16,3],"span":[2238,38,40]},{"path":[4,131,2,17],"span":[2239,2,37]},{"path":[4,131,2,17,4],"span":[2239,2,10]},{"path":[4,131,2,17,5],"span":[2239,11,15]},{"path":[4,131,2,17,1],"span":[2239,16,31]},{"path":[4,131,2,17,3],"span":[2239,34,36]},{"path":[4,132],"span":[2245,0,2256,1],"leadingComments":"\n Computer, Windows only: from WindowsDisplayConfig.\n"},{"path":[4,132,1],"span":[2245,8,30]},{"path":[4,132,2,0],"span":[2246,2,34]},{"path":[4,132,2,0,4],"span":[2246,2,10]},{"path":[4,132,2,0,5],"span":[2246,11,16]},{"path":[4,132,2,0,1],"span":[2246,17,29]},{"path":[4,132,2,0,3],"span":[2246,32,33]},{"path":[4,132,2,1],"span":[2247,2,30]},{"path":[4,132,2,1,4],"span":[2247,2,10]},{"path":[4,132,2,1,5],"span":[2247,11,17]},{"path":[4,132,2,1,1],"span":[2247,18,25]},{"path":[4,132,2,1,3],"span":[2247,28,29]},{"path":[4,132,2,2],"span":[2248,2,34]},{"path":[4,132,2,2,4],"span":[2248,2,10]},{"path":[4,132,2,2,5],"span":[2248,11,17]},{"path":[4,132,2,2,1],"span":[2248,18,29]},{"path":[4,132,2,2,3],"span":[2248,32,33]},{"path":[4,132,2,3],"span":[2249,2,35]},{"path":[4,132,2,3,4],"span":[2249,2,10]},{"path":[4,132,2,3,5],"span":[2249,11,16]},{"path":[4,132,2,3,1],"span":[2249,17,30]},{"path":[4,132,2,3,3],"span":[2249,33,34]},{"path":[4,132,2,4],"span":[2250,2,39]},{"path":[4,132,2,4,4],"span":[2250,2,10]},{"path":[4,132,2,4,5],"span":[2250,11,16]},{"path":[4,132,2,4,1],"span":[2250,17,34]},{"path":[4,132,2,4,3],"span":[2250,37,38]},{"path":[4,132,2,5],"span":[2251,2,37]},{"path":[4,132,2,5,4],"span":[2251,2,10]},{"path":[4,132,2,5,5],"span":[2251,11,17]},{"path":[4,132,2,5,1],"span":[2251,18,32]},{"path":[4,132,2,5,3],"span":[2251,35,36]},{"path":[4,132,2,6],"span":[2252,2,32]},{"path":[4,132,2,6,4],"span":[2252,2,10]},{"path":[4,132,2,6,5],"span":[2252,11,16]},{"path":[4,132,2,6,1],"span":[2252,17,27]},{"path":[4,132,2,6,3],"span":[2252,30,31]},{"path":[4,132,2,7],"span":[2253,2,33]},{"path":[4,132,2,7,4],"span":[2253,2,10]},{"path":[4,132,2,7,5],"span":[2253,11,16]},{"path":[4,132,2,7,1],"span":[2253,17,28]},{"path":[4,132,2,7,3],"span":[2253,31,32]},{"path":[4,132,2,8],"span":[2254,2,32]},{"path":[4,132,2,8,4],"span":[2254,2,10]},{"path":[4,132,2,8,5],"span":[2254,11,16]},{"path":[4,132,2,8,1],"span":[2254,17,27]},{"path":[4,132,2,8,3],"span":[2254,30,31]},{"path":[4,132,2,9],"span":[2255,2,44]},{"path":[4,132,2,9,4],"span":[2255,2,10]},{"path":[4,132,2,9,5],"span":[2255,11,16]},{"path":[4,132,2,9,1],"span":[2255,17,38]},{"path":[4,132,2,9,3],"span":[2255,41,43]},{"path":[4,133],"span":[2261,0,2271,1],"leadingComments":"\n Computer, Windows only.\n"},{"path":[4,133,1],"span":[2261,8,37]},{"path":[4,133,2,0],"span":[2262,2,40]},{"path":[4,133,2,0,4],"span":[2262,2,10]},{"path":[4,133,2,0,6],"span":[2262,11,22]},{"path":[4,133,2,0,1],"span":[2262,23,35]},{"path":[4,133,2,0,3],"span":[2262,38,39]},{"path":[4,133,2,1],"span":[2263,2,30]},{"path":[4,133,2,1,4],"span":[2263,2,10]},{"path":[4,133,2,1,5],"span":[2263,11,17]},{"path":[4,133,2,1,1],"span":[2263,18,25]},{"path":[4,133,2,1,3],"span":[2263,28,29]},{"path":[4,133,2,2],"span":[2264,2,32]},{"path":[4,133,2,2,4],"span":[2264,2,10]},{"path":[4,133,2,2,5],"span":[2264,11,17]},{"path":[4,133,2,2,1],"span":[2264,18,27]},{"path":[4,133,2,2,3],"span":[2264,30,31]},{"path":[4,133,2,3],"span":[2265,2,43]},{"path":[4,133,2,3,4],"span":[2265,2,10]},{"path":[4,133,2,3,5],"span":[2265,11,17]},{"path":[4,133,2,3,1],"span":[2265,18,38]},{"path":[4,133,2,3,3],"span":[2265,41,42]},{"path":[4,133,2,4],"span":[2266,2,48]},{"path":[4,133,2,4,4],"span":[2266,2,10]},{"path":[4,133,2,4,5],"span":[2266,11,17]},{"path":[4,133,2,4,1],"span":[2266,18,43]},{"path":[4,133,2,4,3],"span":[2266,46,47]},{"path":[4,133,2,5],"span":[2267,2,48]},{"path":[4,133,2,5,4],"span":[2267,2,10]},{"path":[4,133,2,5,5],"span":[2267,11,17]},{"path":[4,133,2,5,1],"span":[2267,18,43]},{"path":[4,133,2,5,3],"span":[2267,46,47]},{"path":[4,133,2,6],"span":[2268,2,36]},{"path":[4,133,2,6,4],"span":[2268,2,10]},{"path":[4,133,2,6,5],"span":[2268,11,17]},{"path":[4,133,2,6,1],"span":[2268,18,31]},{"path":[4,133,2,6,3],"span":[2268,34,35]},{"path":[4,133,2,7],"span":[2269,2,36]},{"path":[4,133,2,7,4],"span":[2269,2,10]},{"path":[4,133,2,7,5],"span":[2269,11,17]},{"path":[4,133,2,7,1],"span":[2269,18,31]},{"path":[4,133,2,7,3],"span":[2269,34,35]},{"path":[4,133,2,8],"span":[2270,2,35]},{"path":[4,133,2,8,4],"span":[2270,2,10]},{"path":[4,133,2,8,5],"span":[2270,11,17]},{"path":[4,133,2,8,1],"span":[2270,18,30]},{"path":[4,133,2,8,3],"span":[2270,33,34]},{"path":[4,134],"span":[2274,0,2282,1],"leadingComments":" Preference Panes, macOS only. To be mapped from inbound model: MacPreferencePanes\n"},{"path":[4,134,1],"span":[2274,8,33]},{"path":[4,134,2,0],"span":[2275,2,27]},{"path":[4,134,2,0,4],"span":[2275,2,10]},{"path":[4,134,2,0,5],"span":[2275,11,17]},{"path":[4,134,2,0,1],"span":[2275,18,22]},{"path":[4,134,2,0,3],"span":[2275,25,26]},{"path":[4,134,2,1],"span":[2276,2,43]},{"path":[4,134,2,1,4],"span":[2276,2,10]},{"path":[4,134,2,1,5],"span":[2276,11,17]},{"path":[4,134,2,1,1],"span":[2276,18,38]},{"path":[4,134,2,1,3],"span":[2276,41,42]},{"path":[4,134,2,2],"span":[2277,2,33]},{"path":[4,134,2,2,4],"span":[2277,2,10]},{"path":[4,134,2,2,5],"span":[2277,11,17]},{"path":[4,134,2,2,1],"span":[2277,18,28]},{"path":[4,134,2,2,3],"span":[2277,31,32]},{"path":[4,134,2,3],"span":[2278,2,31]},{"path":[4,134,2,3,4],"span":[2278,2,10]},{"path":[4,134,2,3,5],"span":[2278,11,15]},{"path":[4,134,2,3,1],"span":[2278,16,26]},{"path":[4,134,2,3,3],"span":[2278,29,30]},{"path":[4,134,2,4],"span":[2279,2,27]},{"path":[4,134,2,4,4],"span":[2279,2,10]},{"path":[4,134,2,4,5],"span":[2279,11,17]},{"path":[4,134,2,4,1],"span":[2279,18,22]},{"path":[4,134,2,4,3],"span":[2279,25,26]},{"path":[4,134,2,5],"span":[2280,2,35]},{"path":[4,134,2,5,4],"span":[2280,2,10]},{"path":[4,134,2,5,5],"span":[2280,11,17]},{"path":[4,134,2,5,1],"span":[2280,18,30]},{"path":[4,134,2,5,3],"span":[2280,33,34]},{"path":[4,134,2,6],"span":[2281,2,30]},{"path":[4,134,2,6,4],"span":[2281,2,10]},{"path":[4,134,2,6,5],"span":[2281,11,17]},{"path":[4,134,2,6,1],"span":[2281,18,25]},{"path":[4,134,2,6,3],"span":[2281,28,29]},{"path":[4,135],"span":[2287,0,2298,1],"leadingComments":"\n Computer, Windows only: from WindowsDisplayControllerConfig.\n"},{"path":[4,135,1],"span":[2287,8,40]},{"path":[4,135,2,0],"span":[2288,2,36]},{"path":[4,135,2,0,4],"span":[2288,2,10]},{"path":[4,135,2,0,5],"span":[2288,11,16]},{"path":[4,135,2,0,1],"span":[2288,17,31]},{"path":[4,135,2,0,3],"span":[2288,34,35]},{"path":[4,135,2,1],"span":[2289,2,30]},{"path":[4,135,2,1,4],"span":[2289,2,10]},{"path":[4,135,2,1,5],"span":[2289,11,17]},{"path":[4,135,2,1,1],"span":[2289,18,25]},{"path":[4,135,2,1,3],"span":[2289,28,29]},{"path":[4,135,2,2],"span":[2290,2,35]},{"path":[4,135,2,2,4],"span":[2290,2,10]},{"path":[4,135,2,2,5],"span":[2290,11,17]},{"path":[4,135,2,2,1],"span":[2290,18,30]},{"path":[4,135,2,2,3],"span":[2290,33,34]},{"path":[4,135,2,3],"span":[2291,2,54]},{"path":[4,135,2,3,4],"span":[2291,2,10]},{"path":[4,135,2,3,5],"span":[2291,11,17]},{"path":[4,135,2,3,1],"span":[2291,18,49]},{"path":[4,135,2,3,3],"span":[2291,52,53]},{"path":[4,135,2,4],"span":[2292,2,43]},{"path":[4,135,2,4,4],"span":[2292,2,10]},{"path":[4,135,2,4,5],"span":[2292,11,17]},{"path":[4,135,2,4,1],"span":[2292,18,38]},{"path":[4,135,2,4,3],"span":[2292,41,42]},{"path":[4,135,2,5],"span":[2293,2,44]},{"path":[4,135,2,5,4],"span":[2293,2,10]},{"path":[4,135,2,5,5],"span":[2293,11,17]},{"path":[4,135,2,5,1],"span":[2293,18,39]},{"path":[4,135,2,5,3],"span":[2293,42,43]},{"path":[4,135,2,6],"span":[2294,2,27]},{"path":[4,135,2,6,4],"span":[2294,2,10]},{"path":[4,135,2,6,5],"span":[2294,11,17]},{"path":[4,135,2,6,1],"span":[2294,18,22]},{"path":[4,135,2,6,3],"span":[2294,25,26]},{"path":[4,135,2,7],"span":[2295,2,34]},{"path":[4,135,2,7,4],"span":[2295,2,10]},{"path":[4,135,2,7,5],"span":[2295,11,16]},{"path":[4,135,2,7,1],"span":[2295,17,29]},{"path":[4,135,2,7,3],"span":[2295,32,33]},{"path":[4,135,2,8],"span":[2296,2,42]},{"path":[4,135,2,8,4],"span":[2296,2,10]},{"path":[4,135,2,8,5],"span":[2296,11,17]},{"path":[4,135,2,8,1],"span":[2296,18,37]},{"path":[4,135,2,8,3],"span":[2296,40,41]},{"path":[4,135,2,9],"span":[2297,2,34]},{"path":[4,135,2,9,4],"span":[2297,2,10]},{"path":[4,135,2,9,5],"span":[2297,11,17]},{"path":[4,135,2,9,1],"span":[2297,18,28]},{"path":[4,135,2,9,3],"span":[2297,31,33]},{"path":[4,136],"span":[2303,0,2308,1],"leadingComments":"\n Computer Windows only: from WindowsNetworkClient.\n"},{"path":[4,136,1],"span":[2303,8,36]},{"path":[4,136,2,0],"span":[2304,2,30]},{"path":[4,136,2,0,4],"span":[2304,2,10]},{"path":[4,136,2,0,5],"span":[2304,11,17]},{"path":[4,136,2,0,1],"span":[2304,18,25]},{"path":[4,136,2,0,3],"span":[2304,28,29]},{"path":[4,136,2,1],"span":[2305,2,34]},{"path":[4,136,2,1,4],"span":[2305,2,10]},{"path":[4,136,2,1,5],"span":[2305,11,17]},{"path":[4,136,2,1,1],"span":[2305,18,29]},{"path":[4,136,2,1,3],"span":[2305,32,33]},{"path":[4,136,2,2],"span":[2306,2,35]},{"path":[4,136,2,2,4],"span":[2306,2,10]},{"path":[4,136,2,2,5],"span":[2306,11,17]},{"path":[4,136,2,2,1],"span":[2306,18,30]},{"path":[4,136,2,2,3],"span":[2306,33,34]},{"path":[4,136,2,3],"span":[2307,2,27]},{"path":[4,136,2,3,4],"span":[2307,2,10]},{"path":[4,136,2,3,5],"span":[2307,11,17]},{"path":[4,136,2,3,1],"span":[2307,18,22]},{"path":[4,136,2,3,3],"span":[2307,25,26]},{"path":[4,137],"span":[2315,0,2320,1],"leadingComments":"\n Computer Windows only: from WindowsIdeController.\n WMI mappings from: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-idecontroller\n"},{"path":[4,137,1],"span":[2315,8,36]},{"path":[4,137,2,0],"span":[2316,2,30]},{"path":[4,137,2,0,4],"span":[2316,2,10]},{"path":[4,137,2,0,5],"span":[2316,11,17]},{"path":[4,137,2,0,1],"span":[2316,18,25]},{"path":[4,137,2,0,3],"span":[2316,28,29]},{"path":[4,137,2,1],"span":[2317,2,32]},{"path":[4,137,2,1,4],"span":[2317,2,10]},{"path":[4,137,2,1,5],"span":[2317,11,17]},{"path":[4,137,2,1,1],"span":[2317,18,27]},{"path":[4,137,2,1,3],"span":[2317,30,31]},{"path":[4,137,2,2],"span":[2318,2,35]},{"path":[4,137,2,2,4],"span":[2318,2,10]},{"path":[4,137,2,2,5],"span":[2318,11,17]},{"path":[4,137,2,2,1],"span":[2318,18,30]},{"path":[4,137,2,2,3],"span":[2318,33,34]},{"path":[4,137,2,3],"span":[2319,2,46]},{"path":[4,137,2,3,4],"span":[2319,2,10]},{"path":[4,137,2,3,6],"span":[2319,11,22]},{"path":[4,137,2,3,1],"span":[2319,23,41]},{"path":[4,137,2,3,3],"span":[2319,44,45]},{"path":[4,138],"span":[2326,0,2338,1],"leadingComments":"\n Computer Windows only: from WindowsDiskPartition.\n As per spec: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-diskpartition\n"},{"path":[4,138,1],"span":[2326,8,36]},{"path":[4,138,2,0],"span":[2327,2,32]},{"path":[4,138,2,0,4],"span":[2327,2,10]},{"path":[4,138,2,0,5],"span":[2327,11,16]},{"path":[4,138,2,0,1],"span":[2327,17,27]},{"path":[4,138,2,0,3],"span":[2327,30,31]},{"path":[4,138,2,1],"span":[2328,2,29]},{"path":[4,138,2,1,4],"span":[2328,2,10]},{"path":[4,138,2,1,5],"span":[2328,11,15]},{"path":[4,138,2,1,1],"span":[2328,16,24]},{"path":[4,138,2,1,3],"span":[2328,27,28]},{"path":[4,138,2,2],"span":[2329,2,35]},{"path":[4,138,2,2,4],"span":[2329,2,10]},{"path":[4,138,2,2,5],"span":[2329,11,15]},{"path":[4,138,2,2,1],"span":[2329,16,30]},{"path":[4,138,2,2,3],"span":[2329,33,34]},{"path":[4,138,2,3],"span":[2330,2,32]},{"path":[4,138,2,3,4],"span":[2330,2,10]},{"path":[4,138,2,3,5],"span":[2330,11,17]},{"path":[4,138,2,3,1],"span":[2330,18,27]},{"path":[4,138,2,3,3],"span":[2330,30,31]},{"path":[4,138,2,4],"span":[2331,2,32]},{"path":[4,138,2,4,4],"span":[2331,2,10]},{"path":[4,138,2,4,5],"span":[2331,11,16]},{"path":[4,138,2,4,1],"span":[2331,17,27]},{"path":[4,138,2,4,3],"span":[2331,30,31]},{"path":[4,138,2,5],"span":[2332,2,27]},{"path":[4,138,2,5,4],"span":[2332,2,10]},{"path":[4,138,2,5,5],"span":[2332,11,16]},{"path":[4,138,2,5,1],"span":[2332,17,22]},{"path":[4,138,2,5,3],"span":[2332,25,26]},{"path":[4,138,2,6],"span":[2333,2,38]},{"path":[4,138,2,6,4],"span":[2333,2,10]},{"path":[4,138,2,6,5],"span":[2333,11,16]},{"path":[4,138,2,6,1],"span":[2333,17,33]},{"path":[4,138,2,6,3],"span":[2333,36,37]},{"path":[4,138,2,7],"span":[2334,2,38]},{"path":[4,138,2,7,4],"span":[2334,2,10]},{"path":[4,138,2,7,5],"span":[2334,11,15]},{"path":[4,138,2,7,1],"span":[2334,16,33]},{"path":[4,138,2,7,3],"span":[2334,36,37]},{"path":[4,138,2,8],"span":[2335,2,26]},{"path":[4,138,2,8,4],"span":[2335,2,10]},{"path":[4,138,2,8,5],"span":[2335,11,16]},{"path":[4,138,2,8,1],"span":[2335,17,21]},{"path":[4,138,2,8,3],"span":[2335,24,25]},{"path":[4,138,2,9],"span":[2336,2,38]},{"path":[4,138,2,9,4],"span":[2336,2,10]},{"path":[4,138,2,9,5],"span":[2336,11,16]},{"path":[4,138,2,9,1],"span":[2336,17,32]},{"path":[4,138,2,9,3],"span":[2336,35,37]},{"path":[4,138,2,10],"span":[2337,2,28]},{"path":[4,138,2,10,4],"span":[2337,2,10]},{"path":[4,138,2,10,5],"span":[2337,11,17]},{"path":[4,138,2,10,1],"span":[2337,18,22]},{"path":[4,138,2,10,3],"span":[2337,25,27]},{"path":[4,139],"span":[2343,0,2363,1],"leadingComments":"\n Computer Windows only: from WindowsFloppy. Mapped in LEC adapter to DiskDrive.\n"},{"path":[4,139,1],"span":[2343,8,29]},{"path":[4,139,2,0],"span":[2344,2,39]},{"path":[4,139,2,0,4],"span":[2344,2,10]},{"path":[4,139,2,0,5],"span":[2344,11,17]},{"path":[4,139,2,0,1],"span":[2344,18,34]},{"path":[4,139,2,0,3],"span":[2344,37,38]},{"path":[4,139,2,1],"span":[2345,2,34]},{"path":[4,139,2,1,4],"span":[2345,2,10]},{"path":[4,139,2,1,5],"span":[2345,11,17]},{"path":[4,139,2,1,1],"span":[2345,18,29]},{"path":[4,139,2,1,3],"span":[2345,32,33]},{"path":[4,139,2,2],"span":[2346,2,37]},{"path":[4,139,2,2,4],"span":[2346,2,10]},{"path":[4,139,2,2,5],"span":[2346,11,17]},{"path":[4,139,2,2,1],"span":[2346,18,32]},{"path":[4,139,2,2,3],"span":[2346,35,36]},{"path":[4,139,2,3],"span":[2347,2,35]},{"path":[4,139,2,3,4],"span":[2347,2,10]},{"path":[4,139,2,3,5],"span":[2347,11,17]},{"path":[4,139,2,3,1],"span":[2347,18,30]},{"path":[4,139,2,3,3],"span":[2347,33,34]},{"path":[4,139,2,4],"span":[2348,2,28]},{"path":[4,139,2,4,4],"span":[2348,2,10]},{"path":[4,139,2,4,5],"span":[2348,11,17]},{"path":[4,139,2,4,1],"span":[2348,18,23]},{"path":[4,139,2,4,3],"span":[2348,26,27]},{"path":[4,139,2,5],"span":[2349,2,27]},{"path":[4,139,2,5,4],"span":[2349,2,10]},{"path":[4,139,2,5,5],"span":[2349,11,17]},{"path":[4,139,2,5,1],"span":[2349,18,22]},{"path":[4,139,2,5,3],"span":[2349,25,26]},{"path":[4,139,2,6],"span":[2350,2,33]},{"path":[4,139,2,6,4],"span":[2350,2,10]},{"path":[4,139,2,6,5],"span":[2350,11,17]},{"path":[4,139,2,6,1],"span":[2350,18,28]},{"path":[4,139,2,6,3],"span":[2350,31,32]},{"path":[4,139,2,7],"span":[2351,2,36]},{"path":[4,139,2,7,4],"span":[2351,2,10]},{"path":[4,139,2,7,5],"span":[2351,11,17]},{"path":[4,139,2,7,1],"span":[2351,18,31]},{"path":[4,139,2,7,3],"span":[2351,34,35]},{"path":[4,139,2,8],"span":[2352,2,41]},{"path":[4,139,2,8,4],"span":[2352,2,10]},{"path":[4,139,2,8,5],"span":[2352,11,17]},{"path":[4,139,2,8,1],"span":[2352,18,35]},{"path":[4,139,2,8,3],"span":[2352,38,40]},{"path":[4,139,2,9],"span":[2353,2,27]},{"path":[4,139,2,9,4],"span":[2353,2,10]},{"path":[4,139,2,9,5],"span":[2353,11,16]},{"path":[4,139,2,9,1],"span":[2353,17,21]},{"path":[4,139,2,9,3],"span":[2353,24,26]},{"path":[4,139,2,10],"span":[2354,2,38]},{"path":[4,139,2,10,4],"span":[2354,2,10]},{"path":[4,139,2,10,5],"span":[2354,11,16]},{"path":[4,139,2,10,1],"span":[2354,17,32]},{"path":[4,139,2,10,3],"span":[2354,35,37]},{"path":[4,139,2,11],"span":[2355,2,35]},{"path":[4,139,2,11,4],"span":[2355,2,10]},{"path":[4,139,2,11,5],"span":[2355,11,17]},{"path":[4,139,2,11,1],"span":[2355,18,29]},{"path":[4,139,2,11,3],"span":[2355,32,34]},{"path":[4,139,2,12],"span":[2356,2,36]},{"path":[4,139,2,12,4],"span":[2356,2,10]},{"path":[4,139,2,12,5],"span":[2356,11,16]},{"path":[4,139,2,12,1],"span":[2356,17,30]},{"path":[4,139,2,12,3],"span":[2356,33,35]},{"path":[4,139,2,13],"span":[2357,2,35]},{"path":[4,139,2,13,4],"span":[2357,2,10]},{"path":[4,139,2,13,5],"span":[2357,11,16]},{"path":[4,139,2,13,1],"span":[2357,17,29]},{"path":[4,139,2,13,3],"span":[2357,32,34]},{"path":[4,139,2,14],"span":[2358,2,43]},{"path":[4,139,2,14,4],"span":[2358,2,10]},{"path":[4,139,2,14,5],"span":[2358,11,17]},{"path":[4,139,2,14,1],"span":[2358,18,37]},{"path":[4,139,2,14,3],"span":[2358,40,42]},{"path":[4,139,2,15],"span":[2359,2,33]},{"path":[4,139,2,15,4],"span":[2359,2,10]},{"path":[4,139,2,15,5],"span":[2359,11,17]},{"path":[4,139,2,15,1],"span":[2359,18,27]},{"path":[4,139,2,15,3],"span":[2359,30,32]},{"path":[4,139,2,16],"span":[2360,2,30]},{"path":[4,139,2,16,4],"span":[2360,2,10]},{"path":[4,139,2,16,5],"span":[2360,11,17]},{"path":[4,139,2,16,1],"span":[2360,18,24]},{"path":[4,139,2,16,3],"span":[2360,27,29]},{"path":[4,139,2,17],"span":[2361,2,41]},{"path":[4,139,2,17,4],"span":[2361,2,10]},{"path":[4,139,2,17,5],"span":[2361,11,17]},{"path":[4,139,2,17,1],"span":[2361,18,35]},{"path":[4,139,2,17,3],"span":[2361,38,40]},{"path":[4,139,2,18],"span":[2362,2,37]},{"path":[4,139,2,18,4],"span":[2362,2,10]},{"path":[4,139,2,18,5],"span":[2362,11,17]},{"path":[4,139,2,18,1],"span":[2362,18,31]},{"path":[4,139,2,18,3],"span":[2362,34,36]},{"path":[4,140],"span":[2369,0,2381,1],"leadingComments":"\n PortableBattery, only Windows atm.\n WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-portablebattery\n"},{"path":[4,140,1],"span":[2369,8,23]},{"path":[4,140,2,0],"span":[2370,2,41]},{"path":[4,140,2,0,4],"span":[2370,2,10]},{"path":[4,140,2,0,5],"span":[2370,11,16]},{"path":[4,140,2,0,1],"span":[2370,17,36]},{"path":[4,140,2,0,3],"span":[2370,39,40]},{"path":[4,140,2,1],"span":[2371,2,37]},{"path":[4,140,2,1,4],"span":[2371,2,10]},{"path":[4,140,2,1,6],"span":[2371,11,22]},{"path":[4,140,2,1,1],"span":[2371,23,32]},{"path":[4,140,2,1,3],"span":[2371,35,36]},{"path":[4,140,2,2],"span":[2372,2,37]},{"path":[4,140,2,2,4],"span":[2372,2,10]},{"path":[4,140,2,2,5],"span":[2372,11,16]},{"path":[4,140,2,2,1],"span":[2372,17,32]},{"path":[4,140,2,2,3],"span":[2372,35,36]},{"path":[4,140,2,3],"span":[2373,2,36]},{"path":[4,140,2,3,4],"span":[2373,2,10]},{"path":[4,140,2,3,5],"span":[2373,11,16]},{"path":[4,140,2,3,1],"span":[2373,17,31]},{"path":[4,140,2,3,3],"span":[2373,34,35]},{"path":[4,140,2,4],"span":[2374,2,32]},{"path":[4,140,2,4,4],"span":[2374,2,10]},{"path":[4,140,2,4,5],"span":[2374,11,17]},{"path":[4,140,2,4,1],"span":[2374,18,27]},{"path":[4,140,2,4,3],"span":[2374,30,31]},{"path":[4,140,2,5],"span":[2375,2,31]},{"path":[4,140,2,5,4],"span":[2375,2,10]},{"path":[4,140,2,5,5],"span":[2375,11,17]},{"path":[4,140,2,5,1],"span":[2375,18,26]},{"path":[4,140,2,5,3],"span":[2375,29,30]},{"path":[4,140,2,6],"span":[2376,2,39]},{"path":[4,140,2,6,4],"span":[2376,2,10]},{"path":[4,140,2,6,5],"span":[2376,11,17]},{"path":[4,140,2,6,1],"span":[2376,18,34]},{"path":[4,140,2,6,3],"span":[2376,37,38]},{"path":[4,140,2,7],"span":[2377,2,35]},{"path":[4,140,2,7,4],"span":[2377,2,10]},{"path":[4,140,2,7,5],"span":[2377,11,17]},{"path":[4,140,2,7,1],"span":[2377,18,30]},{"path":[4,140,2,7,3],"span":[2377,33,34]},{"path":[4,140,2,8],"span":[2378,2,39]},{"path":[4,140,2,8,4],"span":[2378,2,10]},{"path":[4,140,2,8,5],"span":[2378,11,16]},{"path":[4,140,2,8,1],"span":[2378,17,34]},{"path":[4,140,2,8,3],"span":[2378,37,38]},{"path":[4,140,2,9],"span":[2379,2,28]},{"path":[4,140,2,9,4],"span":[2379,2,10]},{"path":[4,140,2,9,5],"span":[2379,11,17]},{"path":[4,140,2,9,1],"span":[2379,18,22]},{"path":[4,140,2,9,3],"span":[2379,25,27]},{"path":[4,140,2,10],"span":[2380,2,45]},{"path":[4,140,2,10,4],"span":[2380,2,10]},{"path":[4,140,2,10,5],"span":[2380,11,17]},{"path":[4,140,2,10,1],"span":[2380,18,39]},{"path":[4,140,2,10,3],"span":[2380,42,44]},{"path":[4,141],"span":[2384,0,2394,1],"leadingComments":" MacOS Frameworks system library. To be mapped from MacFramework inbound model\n"},{"path":[4,141,1],"span":[2384,8,30]},{"path":[4,141,2,0],"span":[2385,2,27]},{"path":[4,141,2,0,4],"span":[2385,2,10]},{"path":[4,141,2,0,5],"span":[2385,11,17]},{"path":[4,141,2,0,1],"span":[2385,18,22]},{"path":[4,141,2,0,3],"span":[2385,25,26]},{"path":[4,141,2,1],"span":[2386,2,32]},{"path":[4,141,2,1,4],"span":[2386,2,10]},{"path":[4,141,2,1,5],"span":[2386,11,17]},{"path":[4,141,2,1,1],"span":[2386,18,27]},{"path":[4,141,2,1,3],"span":[2386,30,31]},{"path":[4,141,2,2],"span":[2387,2,27]},{"path":[4,141,2,2,4],"span":[2387,2,10]},{"path":[4,141,2,2,5],"span":[2387,11,17]},{"path":[4,141,2,2,1],"span":[2387,18,22]},{"path":[4,141,2,2,3],"span":[2387,25,26]},{"path":[4,141,2,3],"span":[2388,2,55]},{"path":[4,141,2,3,4],"span":[2388,2,10]},{"path":[4,141,2,3,6],"span":[2388,11,36]},{"path":[4,141,2,3,1],"span":[2388,37,50]},{"path":[4,141,2,3,3],"span":[2388,53,54]},{"path":[4,141,2,4],"span":[2389,2,36]},{"path":[4,141,2,4,4],"span":[2389,2,10]},{"path":[4,141,2,4,5],"span":[2389,11,17]},{"path":[4,141,2,4,1],"span":[2389,18,31]},{"path":[4,141,2,4,3],"span":[2389,34,35]},{"path":[4,141,2,5],"span":[2390,2,36]},{"path":[4,141,2,5,4],"span":[2390,2,10]},{"path":[4,141,2,5,5],"span":[2390,11,17]},{"path":[4,141,2,5,1],"span":[2390,18,31]},{"path":[4,141,2,5,3],"span":[2390,34,35]},{"path":[4,141,2,6],"span":[2391,2,40]},{"path":[4,141,2,6,4],"span":[2391,2,10]},{"path":[4,141,2,6,5],"span":[2391,11,17]},{"path":[4,141,2,6,1],"span":[2391,18,35]},{"path":[4,141,2,6,3],"span":[2391,38,39]},{"path":[4,141,2,7],"span":[2392,2,32]},{"path":[4,141,2,7,4],"span":[2392,2,10]},{"path":[4,141,2,7,5],"span":[2392,11,17]},{"path":[4,141,2,7,1],"span":[2392,18,27]},{"path":[4,141,2,7,3],"span":[2392,30,31]},{"path":[4,141,2,8],"span":[2393,2,30]},{"path":[4,141,2,8,4],"span":[2393,2,10]},{"path":[4,141,2,8,5],"span":[2393,11,17]},{"path":[4,141,2,8,1],"span":[2393,18,25]},{"path":[4,141,2,8,3],"span":[2393,28,29]},{"path":[4,142],"span":[2400,0,2403,1],"leadingComments":"\n A Mapped value is a numeric field that can optionally have a text looked up value.\n Typical in WMI fields.\n"},{"path":[4,142,1],"span":[2400,8,19]},{"path":[4,142,2,0],"span":[2401,2,18]},{"path":[4,142,2,0,5],"span":[2401,2,7]},{"path":[4,142,2,0,1],"span":[2401,8,13]},{"path":[4,142,2,0,3],"span":[2401,16,17]},{"path":[4,142,2,1],"span":[2402,2,27]},{"path":[4,142,2,1,4],"span":[2402,2,10]},{"path":[4,142,2,1,5],"span":[2402,11,17]},{"path":[4,142,2,1,1],"span":[2402,18,22]},{"path":[4,142,2,1,3],"span":[2402,25,26]},{"path":[4,143],"span":[2406,0,2409,1],"leadingComments":" Monitor Inventory with list of connected monitors "},{"path":[4,143,1],"span":[2406,8,24]},{"path":[4,143,2,0],"span":[2407,2,42]},{"path":[4,143,2,0,6],"span":[2407,2,27]},{"path":[4,143,2,0,1],"span":[2407,28,37]},{"path":[4,143,2,0,3],"span":[2407,40,41]},{"path":[4,143,2,1],"span":[2408,2,31]},{"path":[4,143,2,1,4],"span":[2408,2,10]},{"path":[4,143,2,1,6],"span":[2408,11,18]},{"path":[4,143,2,1,1],"span":[2408,19,26]},{"path":[4,143,2,1,3],"span":[2408,29,30]},{"path":[4,144],"span":[2413,0,2434,1],"leadingComments":" Monitor definition: normalized and with link to raw "},{"path":[4,144,1],"span":[2413,8,15]},{"path":[4,144,2,0],"span":[2415,2,24],"leadingComments":" catalog id of: CatalogMonitor\n"},{"path":[4,144,2,0,4],"span":[2415,2,10]},{"path":[4,144,2,0,5],"span":[2415,11,16]},{"path":[4,144,2,0,1],"span":[2415,17,19]},{"path":[4,144,2,0,3],"span":[2415,22,23]},{"path":[4,144,2,1],"span":[2418,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,144,2,1,4],"span":[2418,2,10]},{"path":[4,144,2,1,5],"span":[2418,11,16]},{"path":[4,144,2,1,1],"span":[2418,17,24]},{"path":[4,144,2,1,3],"span":[2418,27,28]},{"path":[4,144,2,2],"span":[2420,2,23]},{"path":[4,144,2,2,5],"span":[2420,2,8]},{"path":[4,144,2,2,1],"span":[2420,9,18]},{"path":[4,144,2,2,3],"span":[2420,21,22]},{"path":[4,144,2,3],"span":[2421,2,24]},{"path":[4,144,2,3,5],"span":[2421,2,8]},{"path":[4,144,2,3,1],"span":[2421,9,19]},{"path":[4,144,2,3,3],"span":[2421,22,23]},{"path":[4,144,2,4],"span":[2423,2,36]},{"path":[4,144,2,4,4],"span":[2423,2,10]},{"path":[4,144,2,4,5],"span":[2423,11,17]},{"path":[4,144,2,4,1],"span":[2423,18,31]},{"path":[4,144,2,4,3],"span":[2423,34,35]},{"path":[4,144,2,5],"span":[2424,2,50]},{"path":[4,144,2,5,6],"span":[2424,2,27]},{"path":[4,144,2,5,1],"span":[2424,28,45]},{"path":[4,144,2,5,3],"span":[2424,48,49]},{"path":[4,144,8,0],"span":[2426,2,2428,3]},{"path":[4,144,8,0,1],"span":[2426,8,12]},{"path":[4,144,2,6],"span":[2427,4,36]},{"path":[4,144,2,6,6],"span":[2427,4,22]},{"path":[4,144,2,6,1],"span":[2427,23,30]},{"path":[4,144,2,6,3],"span":[2427,33,35]},{"path":[4,144,2,7],"span":[2431,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,144,2,7,4],"span":[2431,2,10]},{"path":[4,144,2,7,6],"span":[2431,11,23]},{"path":[4,144,2,7,1],"span":[2431,24,37]},{"path":[4,144,2,7,3],"span":[2431,40,42]},{"path":[4,144,2,8],"span":[2433,2,47],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,144,2,8,4],"span":[2433,2,10]},{"path":[4,144,2,8,6],"span":[2433,11,25]},{"path":[4,144,2,8,1],"span":[2433,26,41]},{"path":[4,144,2,8,3],"span":[2433,44,46]},{"path":[4,145],"span":[2436,0,2445,1]},{"path":[4,145,1],"span":[2436,8,26]},{"path":[4,145,2,0],"span":[2437,2,19]},{"path":[4,145,2,0,5],"span":[2437,2,8]},{"path":[4,145,2,0,1],"span":[2437,9,14]},{"path":[4,145,2,0,3],"span":[2437,17,18]},{"path":[4,145,2,1],"span":[2438,2,36]},{"path":[4,145,2,1,4],"span":[2438,2,10]},{"path":[4,145,2,1,5],"span":[2438,11,17]},{"path":[4,145,2,1,1],"span":[2438,18,31]},{"path":[4,145,2,1,3],"span":[2438,34,35]},{"path":[4,145,2,2],"span":[2439,2,36]},{"path":[4,145,2,2,4],"span":[2439,2,10]},{"path":[4,145,2,2,5],"span":[2439,11,17]},{"path":[4,145,2,2,1],"span":[2439,18,31]},{"path":[4,145,2,2,3],"span":[2439,34,35]},{"path":[4,145,2,3],"span":[2440,2,33]},{"path":[4,145,2,3,4],"span":[2440,2,10]},{"path":[4,145,2,3,5],"span":[2440,11,17]},{"path":[4,145,2,3,1],"span":[2440,18,28]},{"path":[4,145,2,3,3],"span":[2440,31,32]},{"path":[4,145,2,4],"span":[2441,2,40]},{"path":[4,145,2,4,4],"span":[2441,2,10]},{"path":[4,145,2,4,5],"span":[2441,11,17]},{"path":[4,145,2,4,1],"span":[2441,18,35]},{"path":[4,145,2,4,3],"span":[2441,38,39]},{"path":[4,145,2,5],"span":[2442,2,39]},{"path":[4,145,2,5,4],"span":[2442,2,10]},{"path":[4,145,2,5,5],"span":[2442,11,17]},{"path":[4,145,2,5,1],"span":[2442,18,34]},{"path":[4,145,2,5,3],"span":[2442,37,38]},{"path":[4,145,2,6],"span":[2443,2,59]},{"path":[4,145,2,6,4],"span":[2443,2,10]},{"path":[4,145,2,6,6],"span":[2443,11,36]},{"path":[4,145,2,6,1],"span":[2443,37,54]},{"path":[4,145,2,6,3],"span":[2443,57,58]},{"path":[4,145,2,7],"span":[2444,2,32]},{"path":[4,145,2,7,4],"span":[2444,2,10]},{"path":[4,145,2,7,5],"span":[2444,11,17]},{"path":[4,145,2,7,1],"span":[2444,18,27]},{"path":[4,145,2,7,3],"span":[2444,30,31]},{"path":[4,146],"span":[2448,0,2451,1],"leadingComments":" Section element for Wi-Fi (AirPort) info on Mac. To be mapper from MacWifi from inbound model\n"},{"path":[4,146,1],"span":[2448,8,33]},{"path":[4,146,2,0],"span":[2449,2,48]},{"path":[4,146,2,0,4],"span":[2449,2,10]},{"path":[4,146,2,0,6],"span":[2449,11,24]},{"path":[4,146,2,0,1],"span":[2449,25,43]},{"path":[4,146,2,0,3],"span":[2449,46,47]},{"path":[4,146,2,1],"span":[2450,2,49]},{"path":[4,146,2,1,4],"span":[2450,2,10]},{"path":[4,146,2,1,6],"span":[2450,11,23]},{"path":[4,146,2,1,1],"span":[2450,24,44]},{"path":[4,146,2,1,3],"span":[2450,47,48]},{"path":[4,147],"span":[2453,0,2469,1]},{"path":[4,147,1],"span":[2453,8,21]},{"path":[4,147,2,0],"span":[2454,2,27]},{"path":[4,147,2,0,4],"span":[2454,2,10]},{"path":[4,147,2,0,5],"span":[2454,11,17]},{"path":[4,147,2,0,1],"span":[2454,18,22]},{"path":[4,147,2,0,3],"span":[2454,25,26]},{"path":[4,147,2,1],"span":[2455,2,38]},{"path":[4,147,2,1,4],"span":[2455,2,10]},{"path":[4,147,2,1,5],"span":[2455,11,17]},{"path":[4,147,2,1,1],"span":[2455,18,33]},{"path":[4,147,2,1,3],"span":[2455,36,37]},{"path":[4,147,2,2],"span":[2456,2,40]},{"path":[4,147,2,2,4],"span":[2456,2,10]},{"path":[4,147,2,2,5],"span":[2456,11,17]},{"path":[4,147,2,2,1],"span":[2456,18,35]},{"path":[4,147,2,2,3],"span":[2456,38,39]},{"path":[4,147,2,3],"span":[2457,2,44]},{"path":[4,147,2,3,4],"span":[2457,2,10]},{"path":[4,147,2,3,5],"span":[2457,11,17]},{"path":[4,147,2,3,1],"span":[2457,18,39]},{"path":[4,147,2,3,3],"span":[2457,42,43]},{"path":[4,147,2,4],"span":[2458,2,32]},{"path":[4,147,2,4,4],"span":[2458,2,10]},{"path":[4,147,2,4,5],"span":[2458,11,17]},{"path":[4,147,2,4,1],"span":[2458,18,27]},{"path":[4,147,2,4,3],"span":[2458,30,31]},{"path":[4,147,2,5],"span":[2459,2,35]},{"path":[4,147,2,5,4],"span":[2459,2,10]},{"path":[4,147,2,5,5],"span":[2459,11,17]},{"path":[4,147,2,5,1],"span":[2459,18,30]},{"path":[4,147,2,5,3],"span":[2459,33,34]},{"path":[4,147,2,6],"span":[2460,2,39]},{"path":[4,147,2,6,4],"span":[2460,2,10]},{"path":[4,147,2,6,5],"span":[2460,11,17]},{"path":[4,147,2,6,1],"span":[2460,18,34]},{"path":[4,147,2,6,3],"span":[2460,37,38]},{"path":[4,147,2,7],"span":[2461,2,29]},{"path":[4,147,2,7,4],"span":[2461,2,10]},{"path":[4,147,2,7,5],"span":[2461,11,17]},{"path":[4,147,2,7,1],"span":[2461,18,24]},{"path":[4,147,2,7,3],"span":[2461,27,28]},{"path":[4,147,2,8],"span":[2462,2,34]},{"path":[4,147,2,8,4],"span":[2462,2,10]},{"path":[4,147,2,8,5],"span":[2462,11,17]},{"path":[4,147,2,8,1],"span":[2462,18,29]},{"path":[4,147,2,8,3],"span":[2462,32,33]},{"path":[4,147,2,9],"span":[2463,2,42]},{"path":[4,147,2,9,4],"span":[2463,2,10]},{"path":[4,147,2,9,5],"span":[2463,11,17]},{"path":[4,147,2,9,1],"span":[2463,18,36]},{"path":[4,147,2,9,3],"span":[2463,39,41]},{"path":[4,147,2,10],"span":[2464,2,42]},{"path":[4,147,2,10,4],"span":[2464,2,10]},{"path":[4,147,2,10,5],"span":[2464,11,17]},{"path":[4,147,2,10,1],"span":[2464,18,36]},{"path":[4,147,2,10,3],"span":[2464,39,41]},{"path":[4,147,2,11],"span":[2465,2,43]},{"path":[4,147,2,11,4],"span":[2465,2,10]},{"path":[4,147,2,11,5],"span":[2465,11,17]},{"path":[4,147,2,11,1],"span":[2465,18,37]},{"path":[4,147,2,11,3],"span":[2465,40,42]},{"path":[4,147,2,12],"span":[2466,2,50]},{"path":[4,147,2,12,4],"span":[2466,2,10]},{"path":[4,147,2,12,5],"span":[2466,11,17]},{"path":[4,147,2,12,1],"span":[2466,18,44]},{"path":[4,147,2,12,3],"span":[2466,47,49]},{"path":[4,147,2,13],"span":[2467,2,44]},{"path":[4,147,2,13,4],"span":[2467,2,10]},{"path":[4,147,2,13,6],"span":[2467,11,22]},{"path":[4,147,2,13,1],"span":[2467,23,38]},{"path":[4,147,2,13,3],"span":[2467,41,43]},{"path":[4,147,2,14],"span":[2468,2,49]},{"path":[4,147,2,14,4],"span":[2468,2,10]},{"path":[4,147,2,14,6],"span":[2468,11,22]},{"path":[4,147,2,14,1],"span":[2468,23,43]},{"path":[4,147,2,14,3],"span":[2468,46,48]},{"path":[4,148],"span":[2471,0,2482,1]},{"path":[4,148,1],"span":[2471,8,19]},{"path":[4,148,2,0],"span":[2472,2,27]},{"path":[4,148,2,0,4],"span":[2472,2,10]},{"path":[4,148,2,0,5],"span":[2472,11,17]},{"path":[4,148,2,0,1],"span":[2472,18,22]},{"path":[4,148,2,0,3],"span":[2472,25,26]},{"path":[4,148,2,1],"span":[2473,2,36]},{"path":[4,148,2,1,4],"span":[2473,2,10]},{"path":[4,148,2,1,5],"span":[2473,11,17]},{"path":[4,148,2,1,1],"span":[2473,18,31]},{"path":[4,148,2,1,3],"span":[2473,34,35]},{"path":[4,148,2,2],"span":[2474,2,38]},{"path":[4,148,2,2,4],"span":[2474,2,10]},{"path":[4,148,2,2,5],"span":[2474,11,17]},{"path":[4,148,2,2,1],"span":[2474,18,33]},{"path":[4,148,2,2,3],"span":[2474,36,37]},{"path":[4,148,2,3],"span":[2475,2,43]},{"path":[4,148,2,3,4],"span":[2475,2,10]},{"path":[4,148,2,3,5],"span":[2475,11,17]},{"path":[4,148,2,3,1],"span":[2475,18,38]},{"path":[4,148,2,3,3],"span":[2475,41,42]},{"path":[4,148,2,4],"span":[2476,2,40]},{"path":[4,148,2,4,4],"span":[2476,2,10]},{"path":[4,148,2,4,5],"span":[2476,11,17]},{"path":[4,148,2,4,1],"span":[2476,18,35]},{"path":[4,148,2,4,3],"span":[2476,38,39]},{"path":[4,148,2,5],"span":[2477,2,39]},{"path":[4,148,2,5,4],"span":[2477,2,10]},{"path":[4,148,2,5,5],"span":[2477,11,17]},{"path":[4,148,2,5,1],"span":[2477,18,34]},{"path":[4,148,2,5,3],"span":[2477,37,38]},{"path":[4,148,2,6],"span":[2478,2,44]},{"path":[4,148,2,6,4],"span":[2478,2,10]},{"path":[4,148,2,6,5],"span":[2478,11,17]},{"path":[4,148,2,6,1],"span":[2478,18,39]},{"path":[4,148,2,6,3],"span":[2478,42,43]},{"path":[4,148,2,7],"span":[2479,2,35]},{"path":[4,148,2,7,4],"span":[2479,2,10]},{"path":[4,148,2,7,5],"span":[2479,11,17]},{"path":[4,148,2,7,1],"span":[2479,18,30]},{"path":[4,148,2,7,3],"span":[2479,33,34]},{"path":[4,148,2,8],"span":[2480,2,36]},{"path":[4,148,2,8,4],"span":[2480,2,10]},{"path":[4,148,2,8,5],"span":[2480,11,17]},{"path":[4,148,2,8,1],"span":[2480,18,31]},{"path":[4,148,2,8,3],"span":[2480,34,35]},{"path":[4,148,2,9],"span":[2481,2,36]},{"path":[4,148,2,9,4],"span":[2481,2,10]},{"path":[4,148,2,9,5],"span":[2481,11,17]},{"path":[4,148,2,9,1],"span":[2481,18,30]},{"path":[4,148,2,9,3],"span":[2481,33,35]},{"path":[4,149],"span":[2484,0,2492,1]},{"path":[4,149,1],"span":[2484,8,20]},{"path":[4,149,2,0],"span":[2485,2,46]},{"path":[4,149,2,0,4],"span":[2485,2,10]},{"path":[4,149,2,0,5],"span":[2485,11,17]},{"path":[4,149,2,0,1],"span":[2485,18,41]},{"path":[4,149,2,0,3],"span":[2485,44,45]},{"path":[4,149,2,1],"span":[2486,2,40]},{"path":[4,149,2,1,4],"span":[2486,2,10]},{"path":[4,149,2,1,5],"span":[2486,11,17]},{"path":[4,149,2,1,1],"span":[2486,18,35]},{"path":[4,149,2,1,3],"span":[2486,38,39]},{"path":[4,149,2,2],"span":[2487,2,44]},{"path":[4,149,2,2,4],"span":[2487,2,10]},{"path":[4,149,2,2,5],"span":[2487,11,17]},{"path":[4,149,2,2,1],"span":[2487,18,39]},{"path":[4,149,2,2,3],"span":[2487,42,43]},{"path":[4,149,2,3],"span":[2488,2,42]},{"path":[4,149,2,3,4],"span":[2488,2,10]},{"path":[4,149,2,3,5],"span":[2488,11,17]},{"path":[4,149,2,3,1],"span":[2488,18,37]},{"path":[4,149,2,3,3],"span":[2488,40,41]},{"path":[4,149,2,4],"span":[2489,2,45]},{"path":[4,149,2,4,4],"span":[2489,2,10]},{"path":[4,149,2,4,5],"span":[2489,11,17]},{"path":[4,149,2,4,1],"span":[2489,18,40]},{"path":[4,149,2,4,3],"span":[2489,43,44]},{"path":[4,149,2,5],"span":[2490,2,41]},{"path":[4,149,2,5,4],"span":[2490,2,10]},{"path":[4,149,2,5,5],"span":[2490,11,17]},{"path":[4,149,2,5,1],"span":[2490,18,36]},{"path":[4,149,2,5,3],"span":[2490,39,40]},{"path":[4,149,2,6],"span":[2491,2,49]},{"path":[4,149,2,6,4],"span":[2491,2,10]},{"path":[4,149,2,6,5],"span":[2491,11,17]},{"path":[4,149,2,6,1],"span":[2491,18,44]},{"path":[4,149,2,6,3],"span":[2491,47,48]},{"path":[4,150],"span":[2497,0,2503,1],"leadingComments":"\n Antivirus software (that could be even missing from scanned SW list.\n"},{"path":[4,150,1],"span":[2497,8,25]},{"path":[4,150,2,0],"span":[2498,2,27]},{"path":[4,150,2,0,4],"span":[2498,2,10]},{"path":[4,150,2,0,5],"span":[2498,11,17]},{"path":[4,150,2,0,1],"span":[2498,18,22]},{"path":[4,150,2,0,3],"span":[2498,25,26]},{"path":[4,150,2,1],"span":[2499,2,27]},{"path":[4,150,2,1,4],"span":[2499,2,10]},{"path":[4,150,2,1,5],"span":[2499,11,17]},{"path":[4,150,2,1,1],"span":[2499,18,22]},{"path":[4,150,2,1,3],"span":[2499,25,26]},{"path":[4,150,2,2],"span":[2500,2,28]},{"path":[4,150,2,2,4],"span":[2500,2,10]},{"path":[4,150,2,2,5],"span":[2500,11,15]},{"path":[4,150,2,2,1],"span":[2500,16,23]},{"path":[4,150,2,2,3],"span":[2500,26,27]},{"path":[4,150,2,3],"span":[2501,2,31]},{"path":[4,150,2,3,4],"span":[2501,2,10]},{"path":[4,150,2,3,5],"span":[2501,11,15]},{"path":[4,150,2,3,1],"span":[2501,16,26]},{"path":[4,150,2,3,3],"span":[2501,29,30]},{"path":[4,150,2,4],"span":[2502,2,33],"trailingComments":" filled only in case it was scanned sw (not windows registry)\n"},{"path":[4,150,2,4,4],"span":[2502,2,10]},{"path":[4,150,2,4,6],"span":[2502,11,19]},{"path":[4,150,2,4,1],"span":[2502,20,28]},{"path":[4,150,2,4,3],"span":[2502,31,32]},{"path":[4,151],"span":[2508,0,2518,1],"leadingComments":"\n Internet IP info, if external_ip is present and valid.\n"},{"path":[4,151,1],"span":[2508,8,14]},{"path":[4,151,2,0],"span":[2509,2,21]},{"path":[4,151,2,0,5],"span":[2509,2,8]},{"path":[4,151,2,0,1],"span":[2509,9,16]},{"path":[4,151,2,0,3],"span":[2509,19,20]},{"path":[4,151,2,1],"span":[2510,2,31]},{"path":[4,151,2,1,4],"span":[2510,2,10]},{"path":[4,151,2,1,5],"span":[2510,11,17]},{"path":[4,151,2,1,1],"span":[2510,18,26]},{"path":[4,151,2,1,3],"span":[2510,29,30]},{"path":[4,151,2,2],"span":[2511,2,31]},{"path":[4,151,2,2,4],"span":[2511,2,10]},{"path":[4,151,2,2,5],"span":[2511,11,17]},{"path":[4,151,2,2,1],"span":[2511,18,26]},{"path":[4,151,2,2,3],"span":[2511,29,30]},{"path":[4,151,2,3],"span":[2512,2,37]},{"path":[4,151,2,3,4],"span":[2512,2,10]},{"path":[4,151,2,3,5],"span":[2512,11,17]},{"path":[4,151,2,3,1],"span":[2512,18,32]},{"path":[4,151,2,3,3],"span":[2512,35,36]},{"path":[4,151,2,4],"span":[2513,2,35]},{"path":[4,151,2,4,4],"span":[2513,2,10]},{"path":[4,151,2,4,5],"span":[2513,11,17]},{"path":[4,151,2,4,1],"span":[2513,18,30]},{"path":[4,151,2,4,3],"span":[2513,33,34]},{"path":[4,151,2,5],"span":[2514,2,34]},{"path":[4,151,2,5,4],"span":[2514,2,10]},{"path":[4,151,2,5,5],"span":[2514,11,17]},{"path":[4,151,2,5,1],"span":[2514,18,29]},{"path":[4,151,2,5,3],"span":[2514,32,33]},{"path":[4,151,2,6],"span":[2515,2,35]},{"path":[4,151,2,6,4],"span":[2515,2,10]},{"path":[4,151,2,6,5],"span":[2515,11,17]},{"path":[4,151,2,6,1],"span":[2515,18,30]},{"path":[4,151,2,6,3],"span":[2515,33,34]},{"path":[4,151,2,7],"span":[2516,2,26]},{"path":[4,151,2,7,4],"span":[2516,2,10]},{"path":[4,151,2,7,5],"span":[2516,11,17]},{"path":[4,151,2,7,1],"span":[2516,18,21]},{"path":[4,151,2,7,3],"span":[2516,24,25]},{"path":[4,151,2,8],"span":[2517,2,35]},{"path":[4,151,2,8,4],"span":[2517,2,10]},{"path":[4,151,2,8,5],"span":[2517,11,17]},{"path":[4,151,2,8,1],"span":[2517,18,30]},{"path":[4,151,2,8,3],"span":[2517,33,34]},{"path":[4,152],"span":[2527,0,2531,1],"leadingComments":"\n Software Inventory with list of installed SW.\n Sources:\n - com.lansweeper.discovery.sensor.windows.v1.WindowsSoftwareInfo: section on Windows WMI/Local/SCCM\n - com.lansweeper.discovery.sensor.mac.v1.MacSoftware: section on Mac via SSH or local\n - com.lansweeper.discovery.sensor.unix.v1.Software: section Linux/Unix via SSH or local\n"},{"path":[4,152,1],"span":[2527,8,25]},{"path":[4,152,2,0],"span":[2528,2,42]},{"path":[4,152,2,0,6],"span":[2528,2,27]},{"path":[4,152,2,0,1],"span":[2528,28,37]},{"path":[4,152,2,0,3],"span":[2528,40,41]},{"path":[4,152,2,1],"span":[2529,2,33]},{"path":[4,152,2,1,4],"span":[2529,2,10]},{"path":[4,152,2,1,6],"span":[2529,11,19]},{"path":[4,152,2,1,1],"span":[2529,20,28]},{"path":[4,152,2,1,3],"span":[2529,31,32]},{"path":[4,152,9],"span":[2530,2,13],"trailingComments":" depcrecated software change event log\n"},{"path":[4,152,9,0],"span":[2530,11,12]},{"path":[4,152,9,0,1],"span":[2530,11,12]},{"path":[4,153],"span":[2542,0,2580,1],"leadingComments":"\n Software definition: normalized and with link to raw.\n Translated and enriched from:\n - com.lansweeper.discovery.sensor.windows.v1.SoftwareInfo\n - com.lansweeper.discovery.sensor.mac.v1.Software\n - com.lansweeper.discovery.sensor.unix.v1.SoftwareEntry\n"},{"path":[4,153,1],"span":[2542,8,16]},{"path":[4,153,2,0],"span":[2544,2,26]},{"path":[4,153,2,0,4],"span":[2544,2,10]},{"path":[4,153,2,0,5],"span":[2544,11,16]},{"path":[4,153,2,0,1],"span":[2544,17,21]},{"path":[4,153,2,0,3],"span":[2544,24,25]},{"path":[4,153,2,1],"span":[2545,2,29]},{"path":[4,153,2,1,4],"span":[2545,2,10]},{"path":[4,153,2,1,5],"span":[2545,11,16]},{"path":[4,153,2,1,1],"span":[2545,17,24]},{"path":[4,153,2,1,3],"span":[2545,27,28]},{"path":[4,153,2,2],"span":[2546,2,28]},{"path":[4,153,2,2,4],"span":[2546,2,10]},{"path":[4,153,2,2,5],"span":[2546,11,16]},{"path":[4,153,2,2,1],"span":[2546,17,23]},{"path":[4,153,2,2,3],"span":[2546,26,27]},{"path":[4,153,2,3],"span":[2549,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,153,2,3,4],"span":[2549,2,10]},{"path":[4,153,2,3,5],"span":[2549,11,16]},{"path":[4,153,2,3,1],"span":[2549,17,24]},{"path":[4,153,2,3,3],"span":[2549,27,28]},{"path":[4,153,2,4],"span":[2552,2,27],"leadingComments":" catalog id of: CatalogSoftware\n"},{"path":[4,153,2,4,4],"span":[2552,2,10]},{"path":[4,153,2,4,5],"span":[2552,11,16]},{"path":[4,153,2,4,1],"span":[2552,17,22]},{"path":[4,153,2,4,3],"span":[2552,25,26]},{"path":[4,153,2,5],"span":[2555,2,31],"leadingComments":" catalog id of: CatalogSoftware\n"},{"path":[4,153,2,5,4],"span":[2555,2,10]},{"path":[4,153,2,5,5],"span":[2555,11,16]},{"path":[4,153,2,5,1],"span":[2555,17,26]},{"path":[4,153,2,5,3],"span":[2555,29,30]},{"path":[4,153,2,6],"span":[2557,2,32]},{"path":[4,153,2,6,4],"span":[2557,2,10]},{"path":[4,153,2,6,5],"span":[2557,11,17]},{"path":[4,153,2,6,1],"span":[2557,18,27]},{"path":[4,153,2,6,3],"span":[2557,30,31]},{"path":[4,153,2,7],"span":[2558,2,31]},{"path":[4,153,2,7,4],"span":[2558,2,10]},{"path":[4,153,2,7,5],"span":[2558,11,17]},{"path":[4,153,2,7,1],"span":[2558,18,26]},{"path":[4,153,2,7,3],"span":[2558,29,30]},{"path":[4,153,2,8],"span":[2559,2,32]},{"path":[4,153,2,8,4],"span":[2559,2,10]},{"path":[4,153,2,8,5],"span":[2559,11,17]},{"path":[4,153,2,8,1],"span":[2559,18,27]},{"path":[4,153,2,8,3],"span":[2559,30,31]},{"path":[4,153,2,9],"span":[2560,2,28]},{"path":[4,153,2,9,4],"span":[2560,2,10]},{"path":[4,153,2,9,5],"span":[2560,11,17]},{"path":[4,153,2,9,1],"span":[2560,18,22]},{"path":[4,153,2,9,3],"span":[2560,25,27]},{"path":[4,153,2,10],"span":[2561,2,31]},{"path":[4,153,2,10,4],"span":[2561,2,10]},{"path":[4,153,2,10,5],"span":[2561,11,17]},{"path":[4,153,2,10,1],"span":[2561,18,25]},{"path":[4,153,2,10,3],"span":[2561,28,30]},{"path":[4,153,2,11],"span":[2562,2,34]},{"path":[4,153,2,11,4],"span":[2562,2,10]},{"path":[4,153,2,11,5],"span":[2562,11,17]},{"path":[4,153,2,11,1],"span":[2562,18,28]},{"path":[4,153,2,11,3],"span":[2562,31,33]},{"path":[4,153,2,12],"span":[2563,2,31]},{"path":[4,153,2,12,4],"span":[2563,2,10]},{"path":[4,153,2,12,5],"span":[2563,11,17]},{"path":[4,153,2,12,1],"span":[2563,18,25]},{"path":[4,153,2,12,3],"span":[2563,28,30]},{"path":[4,153,2,13],"span":[2564,2,29]},{"path":[4,153,2,13,4],"span":[2564,2,10]},{"path":[4,153,2,13,5],"span":[2564,11,17]},{"path":[4,153,2,13,1],"span":[2564,18,23]},{"path":[4,153,2,13,3],"span":[2564,26,28]},{"path":[4,153,2,14],"span":[2565,2,28]},{"path":[4,153,2,14,4],"span":[2565,2,10]},{"path":[4,153,2,14,5],"span":[2565,11,17]},{"path":[4,153,2,14,1],"span":[2565,18,22]},{"path":[4,153,2,14,3],"span":[2565,25,27]},{"path":[4,153,2,15],"span":[2566,2,28]},{"path":[4,153,2,15,4],"span":[2566,2,10]},{"path":[4,153,2,15,5],"span":[2566,11,17]},{"path":[4,153,2,15,1],"span":[2566,18,22]},{"path":[4,153,2,15,3],"span":[2566,25,27]},{"path":[4,153,2,16],"span":[2568,2,27]},{"path":[4,153,2,16,4],"span":[2568,2,10]},{"path":[4,153,2,16,5],"span":[2568,11,17]},{"path":[4,153,2,16,1],"span":[2568,18,21]},{"path":[4,153,2,16,3],"span":[2568,24,26]},{"path":[4,153,2,17],"span":[2570,2,23]},{"path":[4,153,2,17,6],"span":[2570,2,13]},{"path":[4,153,2,17,1],"span":[2570,14,17]},{"path":[4,153,2,17,3],"span":[2570,20,22]},{"path":[4,153,2,18],"span":[2571,2,32],"trailingComments":" optional raw hash of SW\n"},{"path":[4,153,2,18,4],"span":[2571,2,10]},{"path":[4,153,2,18,5],"span":[2571,11,17]},{"path":[4,153,2,18,1],"span":[2571,18,26]},{"path":[4,153,2,18,3],"span":[2571,29,31]},{"path":[4,153,2,19],"span":[2572,2,32],"trailingComments":" optional NRE hash of SW\n"},{"path":[4,153,2,19,4],"span":[2572,2,10]},{"path":[4,153,2,19,5],"span":[2572,11,17]},{"path":[4,153,2,19,1],"span":[2572,18,26]},{"path":[4,153,2,19,3],"span":[2572,29,31]},{"path":[4,153,2,20],"span":[2575,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,153,2,20,4],"span":[2575,2,10]},{"path":[4,153,2,20,6],"span":[2575,11,23]},{"path":[4,153,2,20,1],"span":[2575,24,37]},{"path":[4,153,2,20,3],"span":[2575,40,42]},{"path":[4,153,2,21],"span":[2577,2,49],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,153,2,21,4],"span":[2577,2,10]},{"path":[4,153,2,21,6],"span":[2577,11,26]},{"path":[4,153,2,21,1],"span":[2577,27,43]},{"path":[4,153,2,21,3],"span":[2577,46,48]},{"path":[4,153,2,22],"span":[2579,2,47],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,153,2,22,4],"span":[2579,2,10]},{"path":[4,153,2,22,6],"span":[2579,11,26]},{"path":[4,153,2,22,1],"span":[2579,27,41]},{"path":[4,153,2,22,3],"span":[2579,44,46]},{"path":[4,154],"span":[2585,0,2599,1],"leadingComments":"\n Raw Software definition, as mapped from Windows, Mac, Linux.\n"},{"path":[4,154,1],"span":[2585,8,19]},{"path":[4,154,2,0],"span":[2586,2,18]},{"path":[4,154,2,0,5],"span":[2586,2,8]},{"path":[4,154,2,0,1],"span":[2586,9,13]},{"path":[4,154,2,0,3],"span":[2586,16,17]},{"path":[4,154,2,1],"span":[2588,2,29]},{"path":[4,154,2,1,4],"span":[2588,2,10]},{"path":[4,154,2,1,5],"span":[2588,11,17]},{"path":[4,154,2,1,1],"span":[2588,18,24]},{"path":[4,154,2,1,3],"span":[2588,27,28]},{"path":[4,154,2,2],"span":[2589,2,30]},{"path":[4,154,2,2,4],"span":[2589,2,10]},{"path":[4,154,2,2,5],"span":[2589,11,17]},{"path":[4,154,2,2,1],"span":[2589,18,25]},{"path":[4,154,2,2,3],"span":[2589,28,29]},{"path":[4,154,2,3],"span":[2590,2,27]},{"path":[4,154,2,3,4],"span":[2590,2,10]},{"path":[4,154,2,3,5],"span":[2590,11,17]},{"path":[4,154,2,3,1],"span":[2590,18,22]},{"path":[4,154,2,3,3],"span":[2590,25,26]},{"path":[4,154,2,4],"span":[2591,2,31]},{"path":[4,154,2,4,4],"span":[2591,2,10]},{"path":[4,154,2,4,5],"span":[2591,11,17]},{"path":[4,154,2,4,1],"span":[2591,18,26]},{"path":[4,154,2,4,3],"span":[2591,29,30]},{"path":[4,154,2,5],"span":[2592,2,27],"trailingComments":" when available the specific sw arch\n"},{"path":[4,154,2,5,4],"span":[2592,2,10]},{"path":[4,154,2,5,5],"span":[2592,11,17]},{"path":[4,154,2,5,1],"span":[2592,18,22]},{"path":[4,154,2,5,3],"span":[2592,25,26]},{"path":[4,154,2,6],"span":[2593,2,54]},{"path":[4,154,2,6,4],"span":[2593,2,10]},{"path":[4,154,2,6,6],"span":[2593,11,36]},{"path":[4,154,2,6,1],"span":[2593,37,49]},{"path":[4,154,2,6,3],"span":[2593,52,53]},{"path":[4,154,2,7],"span":[2594,2,34],"trailingComments":" Registry | System | MsStore | Package | Custom | etc\n"},{"path":[4,154,2,7,4],"span":[2594,2,10]},{"path":[4,154,2,7,5],"span":[2594,11,17]},{"path":[4,154,2,7,1],"span":[2594,18,29]},{"path":[4,154,2,7,3],"span":[2594,32,33]},{"path":[4,154,2,8],"span":[2596,2,28],"trailingComments":" optional SW id on the client side\n"},{"path":[4,154,2,8,4],"span":[2596,2,10]},{"path":[4,154,2,8,5],"span":[2596,11,17]},{"path":[4,154,2,8,1],"span":[2596,18,23]},{"path":[4,154,2,8,3],"span":[2596,26,27]},{"path":[4,154,2,9],"span":[2598,2,37]},{"path":[4,154,2,9,4],"span":[2598,2,10]},{"path":[4,154,2,9,5],"span":[2598,11,15]},{"path":[4,154,2,9,1],"span":[2598,16,31]},{"path":[4,154,2,9,3],"span":[2598,34,36]},{"path":[4,155],"span":[2605,0,2620,1],"leadingComments":"\n Log entry for software change log, tracking install, uninstall and update.\n"},{"path":[4,155,1],"span":[2605,8,27]},{"path":[4,155,4,0],"span":[2606,2,2610,3]},{"path":[4,155,4,0,1],"span":[2606,7,16]},{"path":[4,155,4,0,2,0],"span":[2607,4,16]},{"path":[4,155,4,0,2,0,1],"span":[2607,4,11]},{"path":[4,155,4,0,2,0,2],"span":[2607,14,15]},{"path":[4,155,4,0,2,1],"span":[2608,4,18]},{"path":[4,155,4,0,2,1,1],"span":[2608,4,13]},{"path":[4,155,4,0,2,1,2],"span":[2608,16,17]},{"path":[4,155,4,0,2,2],"span":[2609,4,15]},{"path":[4,155,4,0,2,2,1],"span":[2609,4,10]},{"path":[4,155,4,0,2,2,2],"span":[2609,13,14]},{"path":[4,155,2,0],"span":[2612,2,27]},{"path":[4,155,2,0,6],"span":[2612,2,11]},{"path":[4,155,2,0,1],"span":[2612,12,22]},{"path":[4,155,2,0,3],"span":[2612,25,26]},{"path":[4,155,2,1],"span":[2614,2,38]},{"path":[4,155,2,1,6],"span":[2614,2,27]},{"path":[4,155,2,1,1],"span":[2614,28,33]},{"path":[4,155,2,1,3],"span":[2614,36,37]},{"path":[4,155,2,2],"span":[2615,2,45]},{"path":[4,155,2,2,4],"span":[2615,2,10]},{"path":[4,155,2,2,6],"span":[2615,11,36]},{"path":[4,155,2,2,1],"span":[2615,37,40]},{"path":[4,155,2,2,3],"span":[2615,43,44]},{"path":[4,155,2,3],"span":[2617,2,24]},{"path":[4,155,2,3,6],"span":[2617,2,10]},{"path":[4,155,2,3,1],"span":[2617,11,19]},{"path":[4,155,2,3,3],"span":[2617,22,23]},{"path":[4,155,2,4],"span":[2618,2,38]},{"path":[4,155,2,4,4],"span":[2618,2,10]},{"path":[4,155,2,4,6],"span":[2618,11,19]},{"path":[4,155,2,4,1],"span":[2618,20,33]},{"path":[4,155,2,4,3],"span":[2618,36,37]},{"path":[4,156],"span":[2623,0,2628,1],"leadingComments":" macOS installation history - To be mapped from inbound entity: MacInstallHistory\n"},{"path":[4,156,1],"span":[2623,8,33]},{"path":[4,156,2,0],"span":[2624,2,27]},{"path":[4,156,2,0,4],"span":[2624,2,10]},{"path":[4,156,2,0,5],"span":[2624,11,17]},{"path":[4,156,2,0,1],"span":[2624,18,22]},{"path":[4,156,2,0,3],"span":[2624,25,26]},{"path":[4,156,2,1],"span":[2625,2,54]},{"path":[4,156,2,1,4],"span":[2625,2,10]},{"path":[4,156,2,1,6],"span":[2625,11,36]},{"path":[4,156,2,1,1],"span":[2625,37,49]},{"path":[4,156,2,1,3],"span":[2625,52,53]},{"path":[4,156,2,2],"span":[2626,2,38]},{"path":[4,156,2,2,4],"span":[2626,2,10]},{"path":[4,156,2,2,5],"span":[2626,11,17]},{"path":[4,156,2,2,1],"span":[2626,18,33]},{"path":[4,156,2,2,3],"span":[2626,36,37]},{"path":[4,156,2,3],"span":[2627,2,37]},{"path":[4,156,2,3,4],"span":[2627,2,10]},{"path":[4,156,2,3,5],"span":[2627,11,17]},{"path":[4,156,2,3,1],"span":[2627,18,32]},{"path":[4,156,2,3,3],"span":[2627,35,36]},{"path":[4,157],"span":[2632,0,2666,1],"leadingDetachedComments":[" <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< CATALOG ENTITIES >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n"]},{"path":[4,157,1],"span":[2632,8,20]},{"path":[4,157,2,0],"span":[2633,2,16]},{"path":[4,157,2,0,5],"span":[2633,2,7]},{"path":[4,157,2,0,1],"span":[2633,9,11]},{"path":[4,157,2,0,3],"span":[2633,14,15]},{"path":[4,157,2,1],"span":[2634,2,23]},{"path":[4,157,2,1,5],"span":[2634,2,8]},{"path":[4,157,2,1,1],"span":[2634,9,18]},{"path":[4,157,2,1,3],"span":[2634,21,22]},{"path":[4,157,2,2],"span":[2636,2,32]},{"path":[4,157,2,2,4],"span":[2636,2,10]},{"path":[4,157,2,2,5],"span":[2636,11,16]},{"path":[4,157,2,2,1],"span":[2636,17,26]},{"path":[4,157,2,2,3],"span":[2636,29,31]},{"path":[4,157,2,3],"span":[2637,2,58]},{"path":[4,157,2,3,4],"span":[2637,2,10]},{"path":[4,157,2,3,6],"span":[2637,11,36]},{"path":[4,157,2,3,1],"span":[2637,37,53]},{"path":[4,157,2,3,3],"span":[2637,56,57]},{"path":[4,157,2,4],"span":[2639,2,35]},{"path":[4,157,2,4,4],"span":[2639,2,10]},{"path":[4,157,2,4,5],"span":[2639,11,17]},{"path":[4,157,2,4,1],"span":[2639,18,30]},{"path":[4,157,2,4,3],"span":[2639,33,34]},{"path":[4,157,2,5],"span":[2640,2,37]},{"path":[4,157,2,5,4],"span":[2640,2,10]},{"path":[4,157,2,5,5],"span":[2640,11,17]},{"path":[4,157,2,5,1],"span":[2640,18,32]},{"path":[4,157,2,5,3],"span":[2640,35,36]},{"path":[4,157,2,6],"span":[2641,2,39]},{"path":[4,157,2,6,4],"span":[2641,2,10]},{"path":[4,157,2,6,5],"span":[2641,11,17]},{"path":[4,157,2,6,1],"span":[2641,18,34]},{"path":[4,157,2,6,3],"span":[2641,37,38]},{"path":[4,157,2,7],"span":[2642,2,35]},{"path":[4,157,2,7,4],"span":[2642,2,10]},{"path":[4,157,2,7,5],"span":[2642,11,17]},{"path":[4,157,2,7,1],"span":[2642,18,30]},{"path":[4,157,2,7,3],"span":[2642,33,34]},{"path":[4,157,2,8],"span":[2643,2,43]},{"path":[4,157,2,8,4],"span":[2643,2,10]},{"path":[4,157,2,8,5],"span":[2643,11,17]},{"path":[4,157,2,8,1],"span":[2643,18,37]},{"path":[4,157,2,8,3],"span":[2643,40,42]},{"path":[4,157,2,9],"span":[2644,2,35]},{"path":[4,157,2,9,4],"span":[2644,2,10]},{"path":[4,157,2,9,5],"span":[2644,11,17]},{"path":[4,157,2,9,1],"span":[2644,18,29]},{"path":[4,157,2,9,3],"span":[2644,32,34]},{"path":[4,157,2,10],"span":[2645,2,35]},{"path":[4,157,2,10,4],"span":[2645,2,10]},{"path":[4,157,2,10,5],"span":[2645,11,17]},{"path":[4,157,2,10,1],"span":[2645,18,29]},{"path":[4,157,2,10,3],"span":[2645,32,34]},{"path":[4,157,2,11],"span":[2646,2,37]},{"path":[4,157,2,11,4],"span":[2646,2,10]},{"path":[4,157,2,11,5],"span":[2646,11,17]},{"path":[4,157,2,11,1],"span":[2646,18,31]},{"path":[4,157,2,11,3],"span":[2646,34,36]},{"path":[4,157,2,12],"span":[2647,2,40]},{"path":[4,157,2,12,4],"span":[2647,2,10]},{"path":[4,157,2,12,5],"span":[2647,11,17]},{"path":[4,157,2,12,1],"span":[2647,18,34]},{"path":[4,157,2,12,3],"span":[2647,37,39]},{"path":[4,157,2,13],"span":[2648,2,39]},{"path":[4,157,2,13,4],"span":[2648,2,10]},{"path":[4,157,2,13,5],"span":[2648,11,17]},{"path":[4,157,2,13,1],"span":[2648,18,33]},{"path":[4,157,2,13,3],"span":[2648,36,38]},{"path":[4,157,2,14],"span":[2649,2,36]},{"path":[4,157,2,14,4],"span":[2649,2,10]},{"path":[4,157,2,14,5],"span":[2649,11,17]},{"path":[4,157,2,14,1],"span":[2649,18,30]},{"path":[4,157,2,14,3],"span":[2649,33,35]},{"path":[4,157,2,15],"span":[2650,2,43]},{"path":[4,157,2,15,4],"span":[2650,2,10]},{"path":[4,157,2,15,5],"span":[2650,11,17]},{"path":[4,157,2,15,1],"span":[2650,18,37]},{"path":[4,157,2,15,3],"span":[2650,40,42]},{"path":[4,157,2,16],"span":[2651,2,37]},{"path":[4,157,2,16,4],"span":[2651,2,10]},{"path":[4,157,2,16,5],"span":[2651,11,17]},{"path":[4,157,2,16,1],"span":[2651,18,31]},{"path":[4,157,2,16,3],"span":[2651,34,36]},{"path":[4,157,2,17],"span":[2652,2,40]},{"path":[4,157,2,17,4],"span":[2652,2,10]},{"path":[4,157,2,17,5],"span":[2652,11,17]},{"path":[4,157,2,17,1],"span":[2652,18,34]},{"path":[4,157,2,17,3],"span":[2652,37,39]},{"path":[4,157,2,18],"span":[2653,2,41]},{"path":[4,157,2,18,4],"span":[2653,2,10]},{"path":[4,157,2,18,5],"span":[2653,11,17]},{"path":[4,157,2,18,1],"span":[2653,18,35]},{"path":[4,157,2,18,3],"span":[2653,38,40]},{"path":[4,157,2,19],"span":[2654,2,39]},{"path":[4,157,2,19,4],"span":[2654,2,10]},{"path":[4,157,2,19,5],"span":[2654,11,17]},{"path":[4,157,2,19,1],"span":[2654,18,33]},{"path":[4,157,2,19,3],"span":[2654,36,38]},{"path":[4,157,2,20],"span":[2655,2,41]},{"path":[4,157,2,20,4],"span":[2655,2,10]},{"path":[4,157,2,20,5],"span":[2655,11,17]},{"path":[4,157,2,20,1],"span":[2655,18,35]},{"path":[4,157,2,20,3],"span":[2655,38,40]},{"path":[4,157,2,21],"span":[2656,2,38]},{"path":[4,157,2,21,4],"span":[2656,2,10]},{"path":[4,157,2,21,5],"span":[2656,11,17]},{"path":[4,157,2,21,1],"span":[2656,18,32]},{"path":[4,157,2,21,3],"span":[2656,35,37]},{"path":[4,157,2,22],"span":[2658,2,36]},{"path":[4,157,2,22,4],"span":[2658,2,10]},{"path":[4,157,2,22,5],"span":[2658,11,15]},{"path":[4,157,2,22,1],"span":[2658,16,30]},{"path":[4,157,2,22,3],"span":[2658,33,35]},{"path":[4,157,2,23],"span":[2659,2,36]},{"path":[4,157,2,23,4],"span":[2659,2,10]},{"path":[4,157,2,23,5],"span":[2659,11,15]},{"path":[4,157,2,23,1],"span":[2659,16,30]},{"path":[4,157,2,23,3],"span":[2659,33,35]},{"path":[4,157,2,24],"span":[2660,2,36]},{"path":[4,157,2,24,4],"span":[2660,2,10]},{"path":[4,157,2,24,5],"span":[2660,11,15]},{"path":[4,157,2,24,1],"span":[2660,16,30]},{"path":[4,157,2,24,3],"span":[2660,33,35]},{"path":[4,157,2,25],"span":[2661,2,38]},{"path":[4,157,2,25,4],"span":[2661,2,10]},{"path":[4,157,2,25,5],"span":[2661,11,15]},{"path":[4,157,2,25,1],"span":[2661,16,32]},{"path":[4,157,2,25,3],"span":[2661,35,37]},{"path":[4,157,2,26],"span":[2662,2,38]},{"path":[4,157,2,26,4],"span":[2662,2,10]},{"path":[4,157,2,26,5],"span":[2662,11,15]},{"path":[4,157,2,26,1],"span":[2662,16,32]},{"path":[4,157,2,26,3],"span":[2662,35,37]},{"path":[4,157,2,27],"span":[2663,2,38]},{"path":[4,157,2,27,4],"span":[2663,2,10]},{"path":[4,157,2,27,5],"span":[2663,11,15]},{"path":[4,157,2,27,1],"span":[2663,16,32]},{"path":[4,157,2,27,3],"span":[2663,35,37]},{"path":[4,157,2,28],"span":[2665,2,34],"trailingComments":" relevant only in search result\n"},{"path":[4,157,2,28,4],"span":[2665,2,10]},{"path":[4,157,2,28,5],"span":[2665,11,16]},{"path":[4,157,2,28,1],"span":[2665,17,28]},{"path":[4,157,2,28,3],"span":[2665,31,33]},{"path":[4,158],"span":[2668,0,2703,1]},{"path":[4,158,1],"span":[2668,8,20]},{"path":[4,158,2,0],"span":[2669,2,15]},{"path":[4,158,2,0,5],"span":[2669,2,7]},{"path":[4,158,2,0,1],"span":[2669,8,10]},{"path":[4,158,2,0,3],"span":[2669,13,14]},{"path":[4,158,2,1],"span":[2671,2,20]},{"path":[4,158,2,1,5],"span":[2671,2,7]},{"path":[4,158,2,1,1],"span":[2671,8,15]},{"path":[4,158,2,1,3],"span":[2671,18,19]},{"path":[4,158,2,2],"span":[2672,2,26]},{"path":[4,158,2,2,5],"span":[2672,2,8]},{"path":[4,158,2,2,1],"span":[2672,9,21]},{"path":[4,158,2,2,3],"span":[2672,24,25]},{"path":[4,158,2,3],"span":[2674,2,36]},{"path":[4,158,2,3,4],"span":[2674,2,10]},{"path":[4,158,2,3,5],"span":[2674,11,16]},{"path":[4,158,2,3,1],"span":[2674,17,31]},{"path":[4,158,2,3,3],"span":[2674,34,35]},{"path":[4,158,2,4],"span":[2675,2,40]},{"path":[4,158,2,4,4],"span":[2675,2,10]},{"path":[4,158,2,4,5],"span":[2675,11,17]},{"path":[4,158,2,4,1],"span":[2675,18,35]},{"path":[4,158,2,4,3],"span":[2675,38,39]},{"path":[4,158,2,5],"span":[2677,2,32]},{"path":[4,158,2,5,4],"span":[2677,2,10]},{"path":[4,158,2,5,5],"span":[2677,11,16]},{"path":[4,158,2,5,1],"span":[2677,17,26]},{"path":[4,158,2,5,3],"span":[2677,29,31]},{"path":[4,158,2,6],"span":[2678,2,31]},{"path":[4,158,2,6,4],"span":[2678,2,10]},{"path":[4,158,2,6,5],"span":[2678,11,15]},{"path":[4,158,2,6,1],"span":[2678,16,25]},{"path":[4,158,2,6,3],"span":[2678,28,30]},{"path":[4,158,2,7],"span":[2679,2,34]},{"path":[4,158,2,7,4],"span":[2679,2,10]},{"path":[4,158,2,7,5],"span":[2679,11,17]},{"path":[4,158,2,7,1],"span":[2679,18,28]},{"path":[4,158,2,7,3],"span":[2679,31,33]},{"path":[4,158,2,8],"span":[2680,2,31]},{"path":[4,158,2,8,4],"span":[2680,2,10]},{"path":[4,158,2,8,5],"span":[2680,11,17]},{"path":[4,158,2,8,1],"span":[2680,18,25]},{"path":[4,158,2,8,3],"span":[2680,28,30]},{"path":[4,158,2,9],"span":[2681,2,55]},{"path":[4,158,2,9,4],"span":[2681,2,10]},{"path":[4,158,2,9,6],"span":[2681,11,36]},{"path":[4,158,2,9,1],"span":[2681,37,49]},{"path":[4,158,2,9,3],"span":[2681,52,54]},{"path":[4,158,2,10],"span":[2682,2,52]},{"path":[4,158,2,10,4],"span":[2682,2,10]},{"path":[4,158,2,10,6],"span":[2682,11,36]},{"path":[4,158,2,10,1],"span":[2682,37,46]},{"path":[4,158,2,10,3],"span":[2682,49,51]},{"path":[4,158,2,11],"span":[2683,2,51]},{"path":[4,158,2,11,4],"span":[2683,2,10]},{"path":[4,158,2,11,6],"span":[2683,11,36]},{"path":[4,158,2,11,1],"span":[2683,37,45]},{"path":[4,158,2,11,3],"span":[2683,48,50]},{"path":[4,158,2,12],"span":[2684,2,43]},{"path":[4,158,2,12,4],"span":[2684,2,10]},{"path":[4,158,2,12,5],"span":[2684,11,17]},{"path":[4,158,2,12,1],"span":[2684,18,37]},{"path":[4,158,2,12,3],"span":[2684,40,42]},{"path":[4,158,2,13],"span":[2686,2,35]},{"path":[4,158,2,13,4],"span":[2686,2,10]},{"path":[4,158,2,13,5],"span":[2686,11,17]},{"path":[4,158,2,13,1],"span":[2686,18,29]},{"path":[4,158,2,13,3],"span":[2686,32,34]},{"path":[4,158,2,14],"span":[2687,2,37]},{"path":[4,158,2,14,4],"span":[2687,2,10]},{"path":[4,158,2,14,5],"span":[2687,11,17]},{"path":[4,158,2,14,1],"span":[2687,18,31]},{"path":[4,158,2,14,3],"span":[2687,34,36]},{"path":[4,158,2,15],"span":[2689,2,39]},{"path":[4,158,2,15,4],"span":[2689,2,10]},{"path":[4,158,2,15,5],"span":[2689,11,17]},{"path":[4,158,2,15,1],"span":[2689,18,33]},{"path":[4,158,2,15,3],"span":[2689,36,38]},{"path":[4,158,2,16],"span":[2690,2,43]},{"path":[4,158,2,16,4],"span":[2690,2,10]},{"path":[4,158,2,16,5],"span":[2690,11,17]},{"path":[4,158,2,16,1],"span":[2690,18,37]},{"path":[4,158,2,16,3],"span":[2690,40,42]},{"path":[4,158,2,17],"span":[2691,2,38]},{"path":[4,158,2,17,4],"span":[2691,2,10]},{"path":[4,158,2,17,5],"span":[2691,11,17]},{"path":[4,158,2,17,1],"span":[2691,18,32]},{"path":[4,158,2,17,3],"span":[2691,35,37]},{"path":[4,158,2,18],"span":[2692,2,38]},{"path":[4,158,2,18,4],"span":[2692,2,10]},{"path":[4,158,2,18,5],"span":[2692,11,17]},{"path":[4,158,2,18,1],"span":[2692,18,32]},{"path":[4,158,2,18,3],"span":[2692,35,37]},{"path":[4,158,2,19],"span":[2693,2,41]},{"path":[4,158,2,19,4],"span":[2693,2,10]},{"path":[4,158,2,19,5],"span":[2693,11,15]},{"path":[4,158,2,19,1],"span":[2693,18,35]},{"path":[4,158,2,19,3],"span":[2693,38,40]},{"path":[4,158,2,20],"span":[2694,2,42]},{"path":[4,158,2,20,4],"span":[2694,2,10]},{"path":[4,158,2,20,5],"span":[2694,11,17]},{"path":[4,158,2,20,1],"span":[2694,18,36]},{"path":[4,158,2,20,3],"span":[2694,39,41]},{"path":[4,158,2,21],"span":[2696,2,32]},{"path":[4,158,2,21,4],"span":[2696,2,10]},{"path":[4,158,2,21,5],"span":[2696,11,17]},{"path":[4,158,2,21,1],"span":[2696,18,26]},{"path":[4,158,2,21,3],"span":[2696,29,31]},{"path":[4,158,2,22],"span":[2698,2,33]},{"path":[4,158,2,22,4],"span":[2698,2,10]},{"path":[4,158,2,22,5],"span":[2698,11,16]},{"path":[4,158,2,22,1],"span":[2698,17,27]},{"path":[4,158,2,22,3],"span":[2698,30,32]},{"path":[4,158,2,23],"span":[2700,2,59]},{"path":[4,158,2,23,4],"span":[2700,2,10]},{"path":[4,158,2,23,6],"span":[2700,11,36]},{"path":[4,158,2,23,1],"span":[2700,37,53]},{"path":[4,158,2,23,3],"span":[2700,56,58]},{"path":[4,158,2,24],"span":[2702,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,158,2,24,4],"span":[2702,2,10]},{"path":[4,158,2,24,5],"span":[2702,11,16]},{"path":[4,158,2,24,1],"span":[2702,17,28]},{"path":[4,158,2,24,3],"span":[2702,31,33]},{"path":[4,159],"span":[2705,0,2738,1]},{"path":[4,159,1],"span":[2705,8,17]},{"path":[4,159,2,0],"span":[2706,2,15]},{"path":[4,159,2,0,5],"span":[2706,2,7]},{"path":[4,159,2,0,1],"span":[2706,8,10]},{"path":[4,159,2,0,3],"span":[2706,13,14]},{"path":[4,159,2,1],"span":[2708,2,21]},{"path":[4,159,2,1,5],"span":[2708,2,8]},{"path":[4,159,2,1,1],"span":[2708,9,16]},{"path":[4,159,2,1,3],"span":[2708,19,20]},{"path":[4,159,2,2],"span":[2710,2,33]},{"path":[4,159,2,2,4],"span":[2710,2,10]},{"path":[4,159,2,2,5],"span":[2710,11,17]},{"path":[4,159,2,2,1],"span":[2710,18,28]},{"path":[4,159,2,2,3],"span":[2710,31,32]},{"path":[4,159,2,3],"span":[2711,2,32]},{"path":[4,159,2,3,4],"span":[2711,2,10]},{"path":[4,159,2,3,5],"span":[2711,11,17]},{"path":[4,159,2,3,1],"span":[2711,18,26]},{"path":[4,159,2,3,3],"span":[2711,29,31]},{"path":[4,159,2,4],"span":[2712,2,38]},{"path":[4,159,2,4,4],"span":[2712,2,10]},{"path":[4,159,2,4,5],"span":[2712,11,17]},{"path":[4,159,2,4,1],"span":[2712,18,33]},{"path":[4,159,2,4,3],"span":[2712,36,37]},{"path":[4,159,2,5],"span":[2714,2,33]},{"path":[4,159,2,5,4],"span":[2714,2,10]},{"path":[4,159,2,5,5],"span":[2714,11,16]},{"path":[4,159,2,5,1],"span":[2714,17,28]},{"path":[4,159,2,5,3],"span":[2714,31,32]},{"path":[4,159,2,6],"span":[2715,2,29]},{"path":[4,159,2,6,4],"span":[2715,2,10]},{"path":[4,159,2,6,5],"span":[2715,11,16]},{"path":[4,159,2,6,1],"span":[2715,17,24]},{"path":[4,159,2,6,3],"span":[2715,27,28]},{"path":[4,159,2,7],"span":[2716,2,31]},{"path":[4,159,2,7,4],"span":[2716,2,10]},{"path":[4,159,2,7,5],"span":[2716,11,16]},{"path":[4,159,2,7,1],"span":[2716,17,26]},{"path":[4,159,2,7,3],"span":[2716,29,30]},{"path":[4,159,2,8],"span":[2718,2,54]},{"path":[4,159,2,8,4],"span":[2718,2,10]},{"path":[4,159,2,8,6],"span":[2718,11,36]},{"path":[4,159,2,8,1],"span":[2718,37,49]},{"path":[4,159,2,8,3],"span":[2718,52,53]},{"path":[4,159,2,9],"span":[2719,2,51]},{"path":[4,159,2,9,4],"span":[2719,2,10]},{"path":[4,159,2,9,6],"span":[2719,11,36]},{"path":[4,159,2,9,1],"span":[2719,37,45]},{"path":[4,159,2,9,3],"span":[2719,48,50]},{"path":[4,159,2,10],"span":[2720,2,51]},{"path":[4,159,2,10,4],"span":[2720,2,10]},{"path":[4,159,2,10,6],"span":[2720,11,36]},{"path":[4,159,2,10,1],"span":[2720,37,45]},{"path":[4,159,2,10,3],"span":[2720,48,50]},{"path":[4,159,2,11],"span":[2721,2,52]},{"path":[4,159,2,11,4],"span":[2721,2,10]},{"path":[4,159,2,11,6],"span":[2721,11,36]},{"path":[4,159,2,11,1],"span":[2721,37,46]},{"path":[4,159,2,11,3],"span":[2721,49,51]},{"path":[4,159,2,12],"span":[2722,2,43]},{"path":[4,159,2,12,4],"span":[2722,2,10]},{"path":[4,159,2,12,5],"span":[2722,11,17]},{"path":[4,159,2,12,1],"span":[2722,18,37]},{"path":[4,159,2,12,3],"span":[2722,40,42]},{"path":[4,159,2,13],"span":[2723,2,38]},{"path":[4,159,2,13,4],"span":[2723,2,10]},{"path":[4,159,2,13,5],"span":[2723,11,17]},{"path":[4,159,2,13,1],"span":[2723,18,32]},{"path":[4,159,2,13,3],"span":[2723,35,37]},{"path":[4,159,2,14],"span":[2724,2,40]},{"path":[4,159,2,14,4],"span":[2724,2,10]},{"path":[4,159,2,14,5],"span":[2724,11,17]},{"path":[4,159,2,14,1],"span":[2724,18,34]},{"path":[4,159,2,14,3],"span":[2724,37,39]},{"path":[4,159,2,15],"span":[2725,2,36]},{"path":[4,159,2,15,4],"span":[2725,2,10]},{"path":[4,159,2,15,5],"span":[2725,11,17]},{"path":[4,159,2,15,1],"span":[2725,18,30]},{"path":[4,159,2,15,3],"span":[2725,33,35]},{"path":[4,159,2,16],"span":[2726,2,43]},{"path":[4,159,2,16,4],"span":[2726,2,10]},{"path":[4,159,2,16,5],"span":[2726,11,17]},{"path":[4,159,2,16,1],"span":[2726,18,37]},{"path":[4,159,2,16,3],"span":[2726,40,42]},{"path":[4,159,2,17],"span":[2727,2,35]},{"path":[4,159,2,17,4],"span":[2727,2,10]},{"path":[4,159,2,17,5],"span":[2727,11,17]},{"path":[4,159,2,17,1],"span":[2727,18,29]},{"path":[4,159,2,17,3],"span":[2727,32,34]},{"path":[4,159,2,18],"span":[2728,2,35]},{"path":[4,159,2,18,4],"span":[2728,2,10]},{"path":[4,159,2,18,5],"span":[2728,11,17]},{"path":[4,159,2,18,1],"span":[2728,18,29]},{"path":[4,159,2,18,3],"span":[2728,32,34]},{"path":[4,159,2,19],"span":[2729,2,37]},{"path":[4,159,2,19,4],"span":[2729,2,10]},{"path":[4,159,2,19,5],"span":[2729,11,17]},{"path":[4,159,2,19,1],"span":[2729,18,31]},{"path":[4,159,2,19,3],"span":[2729,34,36]},{"path":[4,159,2,20],"span":[2730,2,40]},{"path":[4,159,2,20,4],"span":[2730,2,10]},{"path":[4,159,2,20,5],"span":[2730,11,17]},{"path":[4,159,2,20,1],"span":[2730,18,34]},{"path":[4,159,2,20,3],"span":[2730,37,39]},{"path":[4,159,2,21],"span":[2731,2,39]},{"path":[4,159,2,21,4],"span":[2731,2,10]},{"path":[4,159,2,21,5],"span":[2731,11,17]},{"path":[4,159,2,21,1],"span":[2731,18,33]},{"path":[4,159,2,21,3],"span":[2731,36,38]},{"path":[4,159,2,22],"span":[2733,2,32]},{"path":[4,159,2,22,4],"span":[2733,2,10]},{"path":[4,159,2,22,5],"span":[2733,11,17]},{"path":[4,159,2,22,1],"span":[2733,18,26]},{"path":[4,159,2,22,3],"span":[2733,29,31]},{"path":[4,159,2,23],"span":[2735,2,59]},{"path":[4,159,2,23,4],"span":[2735,2,10]},{"path":[4,159,2,23,6],"span":[2735,11,36]},{"path":[4,159,2,23,1],"span":[2735,37,53]},{"path":[4,159,2,23,3],"span":[2735,56,58]},{"path":[4,159,2,24],"span":[2737,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,159,2,24,4],"span":[2737,2,10]},{"path":[4,159,2,24,5],"span":[2737,11,16]},{"path":[4,159,2,24,1],"span":[2737,17,28]},{"path":[4,159,2,24,3],"span":[2737,31,33]},{"path":[4,160],"span":[2740,0,2770,1]},{"path":[4,160,1],"span":[2740,8,23]},{"path":[4,160,2,0],"span":[2741,2,15]},{"path":[4,160,2,0,5],"span":[2741,2,7]},{"path":[4,160,2,0,1],"span":[2741,8,10]},{"path":[4,160,2,0,3],"span":[2741,13,14]},{"path":[4,160,2,1],"span":[2742,2,21]},{"path":[4,160,2,1,5],"span":[2742,2,8]},{"path":[4,160,2,1,1],"span":[2742,9,16]},{"path":[4,160,2,1,3],"span":[2742,19,20]},{"path":[4,160,2,2],"span":[2744,2,33]},{"path":[4,160,2,2,4],"span":[2744,2,10]},{"path":[4,160,2,2,5],"span":[2744,11,17]},{"path":[4,160,2,2,1],"span":[2744,18,28]},{"path":[4,160,2,2,3],"span":[2744,31,32]},{"path":[4,160,2,3],"span":[2745,2,36]},{"path":[4,160,2,3,4],"span":[2745,2,10]},{"path":[4,160,2,3,5],"span":[2745,11,17]},{"path":[4,160,2,3,1],"span":[2745,18,31]},{"path":[4,160,2,3,3],"span":[2745,34,35]},{"path":[4,160,2,4],"span":[2746,2,33]},{"path":[4,160,2,4,4],"span":[2746,2,10]},{"path":[4,160,2,4,5],"span":[2746,11,17]},{"path":[4,160,2,4,1],"span":[2746,18,28]},{"path":[4,160,2,4,3],"span":[2746,31,32]},{"path":[4,160,2,5],"span":[2747,2,30]},{"path":[4,160,2,5,4],"span":[2747,2,10]},{"path":[4,160,2,5,5],"span":[2747,11,17]},{"path":[4,160,2,5,1],"span":[2747,18,25]},{"path":[4,160,2,5,3],"span":[2747,28,29]},{"path":[4,160,2,6],"span":[2748,2,31]},{"path":[4,160,2,6,4],"span":[2748,2,10]},{"path":[4,160,2,6,5],"span":[2748,11,17]},{"path":[4,160,2,6,1],"span":[2748,18,26]},{"path":[4,160,2,6,3],"span":[2748,29,30]},{"path":[4,160,2,7],"span":[2750,2,29]},{"path":[4,160,2,7,4],"span":[2750,2,10]},{"path":[4,160,2,7,5],"span":[2750,11,16]},{"path":[4,160,2,7,1],"span":[2750,17,24]},{"path":[4,160,2,7,3],"span":[2750,27,28]},{"path":[4,160,2,8],"span":[2751,2,31]},{"path":[4,160,2,8,4],"span":[2751,2,10]},{"path":[4,160,2,8,5],"span":[2751,11,16]},{"path":[4,160,2,8,1],"span":[2751,17,26]},{"path":[4,160,2,8,3],"span":[2751,29,30]},{"path":[4,160,2,9],"span":[2752,2,32]},{"path":[4,160,2,9,4],"span":[2752,2,10]},{"path":[4,160,2,9,5],"span":[2752,11,16]},{"path":[4,160,2,9,1],"span":[2752,17,26]},{"path":[4,160,2,9,3],"span":[2752,29,31]},{"path":[4,160,2,10],"span":[2754,2,31]},{"path":[4,160,2,10,4],"span":[2754,2,10]},{"path":[4,160,2,10,5],"span":[2754,11,17]},{"path":[4,160,2,10,1],"span":[2754,18,25]},{"path":[4,160,2,10,3],"span":[2754,28,30]},{"path":[4,160,2,11],"span":[2755,2,35]},{"path":[4,160,2,11,4],"span":[2755,2,10]},{"path":[4,160,2,11,5],"span":[2755,11,17]},{"path":[4,160,2,11,1],"span":[2755,18,29]},{"path":[4,160,2,11,3],"span":[2755,32,34]},{"path":[4,160,2,12],"span":[2757,2,55]},{"path":[4,160,2,12,4],"span":[2757,2,10]},{"path":[4,160,2,12,6],"span":[2757,11,36]},{"path":[4,160,2,12,1],"span":[2757,37,49]},{"path":[4,160,2,12,3],"span":[2757,52,54]},{"path":[4,160,2,13],"span":[2758,2,51]},{"path":[4,160,2,13,4],"span":[2758,2,10]},{"path":[4,160,2,13,6],"span":[2758,11,36]},{"path":[4,160,2,13,1],"span":[2758,37,45]},{"path":[4,160,2,13,3],"span":[2758,48,50]},{"path":[4,160,2,14],"span":[2759,2,51]},{"path":[4,160,2,14,4],"span":[2759,2,10]},{"path":[4,160,2,14,6],"span":[2759,11,36]},{"path":[4,160,2,14,1],"span":[2759,37,45]},{"path":[4,160,2,14,3],"span":[2759,48,50]},{"path":[4,160,2,15],"span":[2760,2,52]},{"path":[4,160,2,15,4],"span":[2760,2,10]},{"path":[4,160,2,15,6],"span":[2760,11,36]},{"path":[4,160,2,15,1],"span":[2760,37,46]},{"path":[4,160,2,15,3],"span":[2760,49,51]},{"path":[4,160,2,16],"span":[2761,2,43]},{"path":[4,160,2,16,4],"span":[2761,2,10]},{"path":[4,160,2,16,5],"span":[2761,11,17]},{"path":[4,160,2,16,1],"span":[2761,18,37]},{"path":[4,160,2,16,3],"span":[2761,40,42]},{"path":[4,160,2,17],"span":[2763,2,33]},{"path":[4,160,2,17,4],"span":[2763,2,10]},{"path":[4,160,2,17,5],"span":[2763,11,15]},{"path":[4,160,2,17,1],"span":[2763,16,27]},{"path":[4,160,2,17,3],"span":[2763,30,32]},{"path":[4,160,2,18],"span":[2764,2,37]},{"path":[4,160,2,18,4],"span":[2764,2,10]},{"path":[4,160,2,18,5],"span":[2764,11,15]},{"path":[4,160,2,18,1],"span":[2764,16,31]},{"path":[4,160,2,18,3],"span":[2764,34,36]},{"path":[4,160,2,19],"span":[2765,2,37]},{"path":[4,160,2,19,4],"span":[2765,2,10]},{"path":[4,160,2,19,5],"span":[2765,11,15]},{"path":[4,160,2,19,1],"span":[2765,16,31]},{"path":[4,160,2,19,3],"span":[2765,34,36]},{"path":[4,160,2,20],"span":[2767,2,59]},{"path":[4,160,2,20,4],"span":[2767,2,10]},{"path":[4,160,2,20,6],"span":[2767,11,36]},{"path":[4,160,2,20,1],"span":[2767,37,53]},{"path":[4,160,2,20,3],"span":[2767,56,58]},{"path":[4,160,2,21],"span":[2769,2,35],"trailingComments":" filled only when a result of search\n"},{"path":[4,160,2,21,4],"span":[2769,2,10]},{"path":[4,160,2,21,5],"span":[2769,11,16]},{"path":[4,160,2,21,1],"span":[2769,17,28]},{"path":[4,160,2,21,3],"span":[2769,31,34]},{"path":[4,161],"span":[2772,0,2828,1]},{"path":[4,161,1],"span":[2772,8,22]},{"path":[4,161,2,0],"span":[2773,2,16]},{"path":[4,161,2,0,5],"span":[2773,2,7]},{"path":[4,161,2,0,1],"span":[2773,9,11]},{"path":[4,161,2,0,3],"span":[2773,14,15]},{"path":[4,161,2,1],"span":[2775,2,19]},{"path":[4,161,2,1,5],"span":[2775,2,8]},{"path":[4,161,2,1,1],"span":[2775,9,14]},{"path":[4,161,2,1,3],"span":[2775,17,18]},{"path":[4,161,2,2],"span":[2776,2,32]},{"path":[4,161,2,2,4],"span":[2776,2,10]},{"path":[4,161,2,2,5],"span":[2776,11,17]},{"path":[4,161,2,2,1],"span":[2776,18,27]},{"path":[4,161,2,2,3],"span":[2776,30,31]},{"path":[4,161,2,3],"span":[2777,2,29]},{"path":[4,161,2,3,4],"span":[2777,2,10]},{"path":[4,161,2,3,5],"span":[2777,11,16]},{"path":[4,161,2,3,1],"span":[2777,17,24]},{"path":[4,161,2,3,3],"span":[2777,27,28]},{"path":[4,161,2,4],"span":[2779,2,31]},{"path":[4,161,2,4,4],"span":[2779,2,10]},{"path":[4,161,2,4,5],"span":[2779,11,16]},{"path":[4,161,2,4,1],"span":[2779,17,26]},{"path":[4,161,2,4,3],"span":[2779,29,30]},{"path":[4,161,2,5],"span":[2780,2,30]},{"path":[4,161,2,5,4],"span":[2780,2,10]},{"path":[4,161,2,5,5],"span":[2780,11,15]},{"path":[4,161,2,5,1],"span":[2780,16,25]},{"path":[4,161,2,5,3],"span":[2780,28,29]},{"path":[4,161,2,6],"span":[2781,2,36]},{"path":[4,161,2,6,4],"span":[2781,2,10]},{"path":[4,161,2,6,5],"span":[2781,11,17]},{"path":[4,161,2,6,1],"span":[2781,18,31]},{"path":[4,161,2,6,3],"span":[2781,34,35]},{"path":[4,161,2,7],"span":[2782,2,35]},{"path":[4,161,2,7,4],"span":[2782,2,10]},{"path":[4,161,2,7,5],"span":[2782,11,17]},{"path":[4,161,2,7,1],"span":[2782,18,30]},{"path":[4,161,2,7,3],"span":[2782,33,34]},{"path":[4,161,2,8],"span":[2784,2,33]},{"path":[4,161,2,8,4],"span":[2784,2,10]},{"path":[4,161,2,8,5],"span":[2784,11,17]},{"path":[4,161,2,8,1],"span":[2784,18,27]},{"path":[4,161,2,8,3],"span":[2784,30,32]},{"path":[4,161,2,9],"span":[2785,2,38]},{"path":[4,161,2,9,4],"span":[2785,2,10]},{"path":[4,161,2,9,5],"span":[2785,11,17]},{"path":[4,161,2,9,1],"span":[2785,18,32]},{"path":[4,161,2,9,3],"span":[2785,35,37]},{"path":[4,161,2,10],"span":[2786,2,36]},{"path":[4,161,2,10,4],"span":[2786,2,10]},{"path":[4,161,2,10,5],"span":[2786,11,17]},{"path":[4,161,2,10,1],"span":[2786,18,30]},{"path":[4,161,2,10,3],"span":[2786,33,35]},{"path":[4,161,2,11],"span":[2787,2,40]},{"path":[4,161,2,11,4],"span":[2787,2,10]},{"path":[4,161,2,11,5],"span":[2787,11,17]},{"path":[4,161,2,11,1],"span":[2787,18,34]},{"path":[4,161,2,11,3],"span":[2787,37,39]},{"path":[4,161,2,12],"span":[2788,2,31]},{"path":[4,161,2,12,4],"span":[2788,2,10]},{"path":[4,161,2,12,5],"span":[2788,11,17]},{"path":[4,161,2,12,1],"span":[2788,18,25]},{"path":[4,161,2,12,3],"span":[2788,28,30]},{"path":[4,161,2,13],"span":[2789,2,36]},{"path":[4,161,2,13,4],"span":[2789,2,10]},{"path":[4,161,2,13,5],"span":[2789,11,17]},{"path":[4,161,2,13,1],"span":[2789,18,30]},{"path":[4,161,2,13,3],"span":[2789,33,35]},{"path":[4,161,2,14],"span":[2790,2,35]},{"path":[4,161,2,14,4],"span":[2790,2,10]},{"path":[4,161,2,14,5],"span":[2790,11,16]},{"path":[4,161,2,14,1],"span":[2790,17,29]},{"path":[4,161,2,14,3],"span":[2790,32,34]},{"path":[4,161,2,15],"span":[2791,2,29]},{"path":[4,161,2,15,4],"span":[2791,2,10]},{"path":[4,161,2,15,5],"span":[2791,11,17]},{"path":[4,161,2,15,1],"span":[2791,18,23]},{"path":[4,161,2,15,3],"span":[2791,26,28]},{"path":[4,161,2,16],"span":[2792,2,33]},{"path":[4,161,2,16,4],"span":[2792,2,10]},{"path":[4,161,2,16,5],"span":[2792,11,17]},{"path":[4,161,2,16,1],"span":[2792,18,27]},{"path":[4,161,2,16,3],"span":[2792,30,32]},{"path":[4,161,2,17],"span":[2793,2,32]},{"path":[4,161,2,17,4],"span":[2793,2,10]},{"path":[4,161,2,17,5],"span":[2793,11,17]},{"path":[4,161,2,17,1],"span":[2793,18,26]},{"path":[4,161,2,17,3],"span":[2793,29,31]},{"path":[4,161,2,18],"span":[2794,2,35]},{"path":[4,161,2,18,4],"span":[2794,2,10]},{"path":[4,161,2,18,5],"span":[2794,11,17]},{"path":[4,161,2,18,1],"span":[2794,18,29]},{"path":[4,161,2,18,3],"span":[2794,32,34]},{"path":[4,161,2,19],"span":[2796,2,36]},{"path":[4,161,2,19,4],"span":[2796,2,10]},{"path":[4,161,2,19,5],"span":[2796,11,17]},{"path":[4,161,2,19,1],"span":[2796,18,30]},{"path":[4,161,2,19,3],"span":[2796,33,35]},{"path":[4,161,2,20],"span":[2797,2,38]},{"path":[4,161,2,20,4],"span":[2797,2,10]},{"path":[4,161,2,20,5],"span":[2797,11,16]},{"path":[4,161,2,20,1],"span":[2797,17,32]},{"path":[4,161,2,20,3],"span":[2797,35,37]},{"path":[4,161,2,21],"span":[2798,2,47]},{"path":[4,161,2,21,4],"span":[2798,2,10]},{"path":[4,161,2,21,5],"span":[2798,11,16]},{"path":[4,161,2,21,1],"span":[2798,17,41]},{"path":[4,161,2,21,3],"span":[2798,44,46]},{"path":[4,161,2,22],"span":[2799,2,30]},{"path":[4,161,2,22,4],"span":[2799,2,10]},{"path":[4,161,2,22,5],"span":[2799,11,16]},{"path":[4,161,2,22,1],"span":[2799,17,24]},{"path":[4,161,2,22,3],"span":[2799,27,29]},{"path":[4,161,2,23],"span":[2800,2,29]},{"path":[4,161,2,23,4],"span":[2800,2,10]},{"path":[4,161,2,23,5],"span":[2800,11,16]},{"path":[4,161,2,23,1],"span":[2800,17,23]},{"path":[4,161,2,23,3],"span":[2800,26,28]},{"path":[4,161,2,24],"span":[2801,2,29]},{"path":[4,161,2,24,4],"span":[2801,2,10]},{"path":[4,161,2,24,5],"span":[2801,11,16]},{"path":[4,161,2,24,1],"span":[2801,17,23]},{"path":[4,161,2,24,3],"span":[2801,26,28]},{"path":[4,161,2,25],"span":[2802,2,36]},{"path":[4,161,2,25,4],"span":[2802,2,10]},{"path":[4,161,2,25,5],"span":[2802,11,17]},{"path":[4,161,2,25,1],"span":[2802,18,30]},{"path":[4,161,2,25,3],"span":[2802,33,35]},{"path":[4,161,2,26],"span":[2803,2,39]},{"path":[4,161,2,26,4],"span":[2803,2,10]},{"path":[4,161,2,26,5],"span":[2803,11,16]},{"path":[4,161,2,26,1],"span":[2803,17,33]},{"path":[4,161,2,26,3],"span":[2803,36,38]},{"path":[4,161,2,27],"span":[2804,2,44]},{"path":[4,161,2,27,4],"span":[2804,2,10]},{"path":[4,161,2,27,5],"span":[2804,11,17]},{"path":[4,161,2,27,1],"span":[2804,18,38]},{"path":[4,161,2,27,3],"span":[2804,41,43]},{"path":[4,161,2,28],"span":[2806,2,36]},{"path":[4,161,2,28,4],"span":[2806,2,10]},{"path":[4,161,2,28,5],"span":[2806,11,17]},{"path":[4,161,2,28,1],"span":[2806,18,30]},{"path":[4,161,2,28,3],"span":[2806,33,35]},{"path":[4,161,2,29],"span":[2807,2,37]},{"path":[4,161,2,29,4],"span":[2807,2,10]},{"path":[4,161,2,29,5],"span":[2807,11,16]},{"path":[4,161,2,29,1],"span":[2807,17,31]},{"path":[4,161,2,29,3],"span":[2807,34,36]},{"path":[4,161,2,30],"span":[2808,2,42]},{"path":[4,161,2,30,4],"span":[2808,2,10]},{"path":[4,161,2,30,5],"span":[2808,11,17]},{"path":[4,161,2,30,1],"span":[2808,18,36]},{"path":[4,161,2,30,3],"span":[2808,39,41]},{"path":[4,161,2,31],"span":[2809,2,38]},{"path":[4,161,2,31,4],"span":[2809,2,10]},{"path":[4,161,2,31,5],"span":[2809,11,17]},{"path":[4,161,2,31,1],"span":[2809,18,32]},{"path":[4,161,2,31,3],"span":[2809,35,37]},{"path":[4,161,2,32],"span":[2810,2,42]},{"path":[4,161,2,32,4],"span":[2810,2,10]},{"path":[4,161,2,32,5],"span":[2810,11,17]},{"path":[4,161,2,32,1],"span":[2810,18,36]},{"path":[4,161,2,32,3],"span":[2810,39,41]},{"path":[4,161,2,33],"span":[2811,2,39]},{"path":[4,161,2,33,4],"span":[2811,2,10]},{"path":[4,161,2,33,5],"span":[2811,11,17]},{"path":[4,161,2,33,1],"span":[2811,18,33]},{"path":[4,161,2,33,3],"span":[2811,36,38]},{"path":[4,161,2,34],"span":[2812,2,34]},{"path":[4,161,2,34,4],"span":[2812,2,10]},{"path":[4,161,2,34,5],"span":[2812,11,17]},{"path":[4,161,2,34,1],"span":[2812,18,28]},{"path":[4,161,2,34,3],"span":[2812,31,33]},{"path":[4,161,2,35],"span":[2813,2,34]},{"path":[4,161,2,35,4],"span":[2813,2,10]},{"path":[4,161,2,35,5],"span":[2813,11,17]},{"path":[4,161,2,35,1],"span":[2813,18,28]},{"path":[4,161,2,35,3],"span":[2813,31,33]},{"path":[4,161,2,36],"span":[2814,2,33]},{"path":[4,161,2,36,4],"span":[2814,2,10]},{"path":[4,161,2,36,5],"span":[2814,11,17]},{"path":[4,161,2,36,1],"span":[2814,18,27]},{"path":[4,161,2,36,3],"span":[2814,30,32]},{"path":[4,161,2,37],"span":[2816,2,33]},{"path":[4,161,2,37,4],"span":[2816,2,10]},{"path":[4,161,2,37,5],"span":[2816,11,15]},{"path":[4,161,2,37,1],"span":[2816,16,27]},{"path":[4,161,2,37,3],"span":[2816,30,32]},{"path":[4,161,2,38],"span":[2817,2,36]},{"path":[4,161,2,38,4],"span":[2817,2,10]},{"path":[4,161,2,38,5],"span":[2817,11,15]},{"path":[4,161,2,38,1],"span":[2817,16,30]},{"path":[4,161,2,38,3],"span":[2817,33,35]},{"path":[4,161,2,39],"span":[2818,2,38]},{"path":[4,161,2,39,4],"span":[2818,2,10]},{"path":[4,161,2,39,5],"span":[2818,11,15]},{"path":[4,161,2,39,1],"span":[2818,16,32]},{"path":[4,161,2,39,3],"span":[2818,35,37]},{"path":[4,161,2,40],"span":[2819,2,34]},{"path":[4,161,2,40,4],"span":[2819,2,10]},{"path":[4,161,2,40,5],"span":[2819,11,15]},{"path":[4,161,2,40,1],"span":[2819,16,28]},{"path":[4,161,2,40,3],"span":[2819,31,33]},{"path":[4,161,2,41],"span":[2820,2,33]},{"path":[4,161,2,41,4],"span":[2820,2,10]},{"path":[4,161,2,41,5],"span":[2820,11,15]},{"path":[4,161,2,41,1],"span":[2820,16,27]},{"path":[4,161,2,41,3],"span":[2820,30,32]},{"path":[4,161,2,42],"span":[2821,2,38]},{"path":[4,161,2,42,4],"span":[2821,2,10]},{"path":[4,161,2,42,5],"span":[2821,11,15]},{"path":[4,161,2,42,1],"span":[2821,16,32]},{"path":[4,161,2,42,3],"span":[2821,35,37]},{"path":[4,161,2,43],"span":[2822,2,36]},{"path":[4,161,2,43,4],"span":[2822,2,10]},{"path":[4,161,2,43,5],"span":[2822,11,15]},{"path":[4,161,2,43,1],"span":[2822,16,30]},{"path":[4,161,2,43,3],"span":[2822,33,35]},{"path":[4,161,2,44],"span":[2824,2,59]},{"path":[4,161,2,44,4],"span":[2824,2,10]},{"path":[4,161,2,44,6],"span":[2824,11,36]},{"path":[4,161,2,44,1],"span":[2824,37,53]},{"path":[4,161,2,44,3],"span":[2824,56,58]},{"path":[4,161,2,45],"span":[2826,2,35],"trailingComments":" filled only when a result of search\n"},{"path":[4,161,2,45,4],"span":[2826,2,10]},{"path":[4,161,2,45,5],"span":[2826,11,16]},{"path":[4,161,2,45,1],"span":[2826,17,28]},{"path":[4,161,2,45,3],"span":[2826,31,34]},{"path":[4,162],"span":[2836,0,2852,1],"leadingComments":"\n Configuration of rules for IP location.\n","leadingDetachedComments":[" ---------------------------------------------------------------------------------------------------------------------\n"]},{"path":[4,162,1],"span":[2836,8,24]},{"path":[4,162,2,0],"span":[2838,2,18],"trailingComments":" IP location name, to set when match\n"},{"path":[4,162,2,0,5],"span":[2838,2,8]},{"path":[4,162,2,0,1],"span":[2838,9,13]},{"path":[4,162,2,0,3],"span":[2838,16,17]},{"path":[4,162,2,1],"span":[2841,2,36],"leadingComments":" Local IP Address filter\n"},{"path":[4,162,2,1,4],"span":[2841,2,10]},{"path":[4,162,2,1,5],"span":[2841,11,17]},{"path":[4,162,2,1,1],"span":[2841,18,31]},{"path":[4,162,2,1,3],"span":[2841,34,35]},{"path":[4,162,2,2],"span":[2842,2,37]},{"path":[4,162,2,2,4],"span":[2842,2,10]},{"path":[4,162,2,2,5],"span":[2842,11,17]},{"path":[4,162,2,2,1],"span":[2842,18,32]},{"path":[4,162,2,2,3],"span":[2842,35,36]},{"path":[4,162,2,3],"span":[2843,2,35]},{"path":[4,162,2,3,4],"span":[2843,2,10]},{"path":[4,162,2,3,5],"span":[2843,11,17]},{"path":[4,162,2,3,1],"span":[2843,18,30]},{"path":[4,162,2,3,3],"span":[2843,33,34]},{"path":[4,162,2,4],"span":[2845,2,32],"trailingComments":" source id / name (optional in vNext, this was mandatory in LS-classic)\n"},{"path":[4,162,2,4,4],"span":[2845,2,10]},{"path":[4,162,2,4,5],"span":[2845,11,17]},{"path":[4,162,2,4,1],"span":[2845,18,27]},{"path":[4,162,2,4,3],"span":[2845,30,31]},{"path":[4,162,2,5],"span":[2848,2,39],"leadingComments":" Internet public rules: vNext new\n"},{"path":[4,162,2,5,4],"span":[2848,2,10]},{"path":[4,162,2,5,5],"span":[2848,11,17]},{"path":[4,162,2,5,1],"span":[2848,18,34]},{"path":[4,162,2,5,3],"span":[2848,37,38]},{"path":[4,162,2,6],"span":[2849,2,44]},{"path":[4,162,2,6,4],"span":[2849,2,10]},{"path":[4,162,2,6,5],"span":[2849,11,17]},{"path":[4,162,2,6,1],"span":[2849,18,39]},{"path":[4,162,2,6,3],"span":[2849,42,43]},{"path":[4,162,2,7],"span":[2850,2,44]},{"path":[4,162,2,7,4],"span":[2850,2,10]},{"path":[4,162,2,7,5],"span":[2850,11,17]},{"path":[4,162,2,7,1],"span":[2850,18,39]},{"path":[4,162,2,7,3],"span":[2850,42,43]}]},"syntax":"proto3","bufExtension":{"isImport":false,"isSyntaxUnspecified":false}}]}