@lansweeper/data-platform-outbound-grpc 0.1.83 → 0.1.85
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.
- package/CHANGELOG.md +16 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +302 -0
- package/gen-proto/outbound_pb.js +3554 -1144
- package/generated-go/outbound.pb.go +5430 -4682
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +83 -1
package/gen-proto/image.json
CHANGED
|
@@ -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":"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":"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":4,"jsonName":"hw","proto3Optional":true},{"name":"os","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystem","oneofIndex":5,"jsonName":"os","proto3Optional":true},{"name":"monitor_inventory","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MonitorInventory","oneofIndex":6,"jsonName":"monitorInventory","proto3Optional":true},{"name":"network_interfaces","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetworkInterfaces","oneofIndex":7,"jsonName":"networkInterfaces","proto3Optional":true},{"name":"network_protocols","number":76,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetworkProtocols","oneofIndex":8,"jsonName":"networkProtocols","proto3Optional":true},{"name":"port_scan","number":77,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.PortScan","oneofIndex":9,"jsonName":"portScan","proto3Optional":true},{"name":"computer","number":75,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Computer","oneofIndex":10,"jsonName":"computer","proto3Optional":true},{"name":"ot_module","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OtModule","oneofIndex":11,"jsonName":"otModule","proto3Optional":true},{"name":"cloud","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CloudEntity","oneofIndex":12,"jsonName":"cloud","proto3Optional":true}],"oneofDecl":[{"name":"_last_synced_source_agent"},{"name":"_last_synced_source_name"},{"name":"_unique_key"},{"name":"_internet_ip"},{"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":"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_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":"software_inventory","number":201,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SoftwareInventory","oneofIndex":6,"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":7,"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":8,"jsonName":"internetExplorer","proto3Optional":true},{"name":"windows_sql_server","number":209,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsSqlServer","oneofIndex":9,"jsonName":"windowsSqlServer","proto3Optional":true},{"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":"last_user","number":301,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.LastUser","oneofIndex":10,"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":"_software_inventory"},{"name":"_boot_config"},{"name":"_internet_explorer"},{"name":"_windows_sql_server"},{"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":"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_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OtBusConfig","oneofIndex":1,"jsonName":"busConfig","proto3Optional":true},{"name":"is_main_module","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isMainModule"},{"name":"part_number","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"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":3,"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":4,"jsonName":"scanProtocol","proto3Optional":true},{"name":"scan_info","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OtScanInfo","oneofIndex":5,"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":"_bus_config"},{"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}],"oneofDecl":[{"name":"_name"},{"name":"_type"},{"name":"_position"},{"name":"_width"}]},{"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":"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":"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}],"oneofDecl":[{"name":"_caption"},{"name":"_command"},{"name":"_location"},{"name":"_name"},{"name":"_user"},{"name":"_user_sid"}]},{"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":"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":"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":"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":"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":"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":"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":"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":"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"}]},{"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":"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"}]}],"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":{}}]}],"options":{"javaMultipleFiles":true,"goPackage":"./generated-go"},"sourceCodeInfo":{"location":[{"span":[7,0,2335,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,33,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":[26,2,65],"leadingComments":" Retrieve a single entity by site/inst-id/type/id\n"},{"path":[6,0,2,0,1],"span":[26,6,15]},{"path":[6,0,2,0,2],"span":[26,17,33]},{"path":[6,0,2,0,3],"span":[26,44,61]},{"path":[6,0,2,1],"span":[29,2,76],"leadingComments":" lists entities for a site or site/type\n"},{"path":[6,0,2,1,1],"span":[29,6,18]},{"path":[6,0,2,1,2],"span":[29,19,36]},{"path":[6,0,2,1,6],"span":[29,47,53]},{"path":[6,0,2,1,3],"span":[29,54,72]},{"path":[6,0,2,2],"span":[32,2,77],"leadingComments":" Retrieve a single entity by site/inst-id/type/id\n"},{"path":[6,0,2,2,1],"span":[32,6,19]},{"path":[6,0,2,2,2],"span":[32,21,41]},{"path":[6,0,2,2,3],"span":[32,52,73]},{"path":[4,0],"span":[38,0,41,1],"leadingComments":"\n Retrieve an Entity through his path\n"},{"path":[4,0,1],"span":[38,8,24]},{"path":[4,0,2,0],"span":[39,2,29],"trailingComments":" bool send_related = 2; // send also related entities\n"},{"path":[4,0,2,0,6],"span":[39,2,12]},{"path":[4,0,2,0,1],"span":[39,13,24]},{"path":[4,0,2,0,3],"span":[39,27,28]},{"path":[4,1],"span":[43,0,49,1]},{"path":[4,1,1],"span":[43,8,25]},{"path":[4,1,2,0],"span":[44,2,19]},{"path":[4,1,2,0,5],"span":[44,2,6]},{"path":[4,1,2,0,1],"span":[44,7,14]},{"path":[4,1,2,0,3],"span":[44,17,18]},{"path":[4,1,2,1],"span":[45,2,40]},{"path":[4,1,2,1,4],"span":[45,2,10]},{"path":[4,1,2,1,5],"span":[45,11,17]},{"path":[4,1,2,1,1],"span":[45,18,35]},{"path":[4,1,2,1,3],"span":[45,38,39]},{"path":[4,1,2,2],"span":[47,2,29]},{"path":[4,1,2,2,4],"span":[47,2,10]},{"path":[4,1,2,2,6],"span":[47,11,17]},{"path":[4,1,2,2,1],"span":[47,18,24]},{"path":[4,1,2,2,3],"span":[47,27,28]},{"path":[4,1,2,3],"span":[48,2,30]},{"path":[4,1,2,3,4],"span":[48,2,10]},{"path":[4,1,2,3,6],"span":[48,11,17]},{"path":[4,1,2,3,1],"span":[48,18,25]},{"path":[4,1,2,3,3],"span":[48,28,29]},{"path":[4,2],"span":[51,0,53,1]},{"path":[4,2,1],"span":[51,8,25]},{"path":[4,2,2,0],"span":[52,2,24],"trailingComments":" minimum is for a site\n"},{"path":[4,2,2,0,6],"span":[52,2,12]},{"path":[4,2,2,0,1],"span":[52,13,19]},{"path":[4,2,2,0,3],"span":[52,22,23]},{"path":[4,3],"span":[55,0,58,1]},{"path":[4,3,1],"span":[55,8,26]},{"path":[4,3,2,0],"span":[56,2,20]},{"path":[4,3,2,0,6],"span":[56,2,8]},{"path":[4,3,2,0,1],"span":[56,9,15]},{"path":[4,3,2,0,3],"span":[56,18,19]},{"path":[4,3,2,1],"span":[57,2,30]},{"path":[4,3,2,1,4],"span":[57,2,10]},{"path":[4,3,2,1,6],"span":[57,11,17]},{"path":[4,3,2,1,1],"span":[57,18,25]},{"path":[4,3,2,1,3],"span":[57,28,29]},{"path":[4,4],"span":[60,0,68,1]},{"path":[4,4,1],"span":[60,8,28]},{"path":[4,4,2,0],"span":[61,2,30]},{"path":[4,4,2,0,4],"span":[61,2,10]},{"path":[4,4,2,0,5],"span":[61,11,16]},{"path":[4,4,2,0,1],"span":[61,17,25]},{"path":[4,4,2,0,3],"span":[61,28,29]},{"path":[4,4,2,1],"span":[62,2,30]},{"path":[4,4,2,1,4],"span":[62,2,10]},{"path":[4,4,2,1,5],"span":[62,11,16]},{"path":[4,4,2,1,1],"span":[62,17,25]},{"path":[4,4,2,1,3],"span":[62,28,29]},{"path":[4,4,2,2],"span":[63,2,27]},{"path":[4,4,2,2,4],"span":[63,2,10]},{"path":[4,4,2,2,5],"span":[63,11,16]},{"path":[4,4,2,2,1],"span":[63,17,22]},{"path":[4,4,2,2,3],"span":[63,25,26]},{"path":[4,4,2,3],"span":[64,2,27]},{"path":[4,4,2,3,4],"span":[64,2,10]},{"path":[4,4,2,3,5],"span":[64,11,16]},{"path":[4,4,2,3,1],"span":[64,17,22]},{"path":[4,4,2,3,3],"span":[64,25,26]},{"path":[4,4,2,4],"span":[65,2,32]},{"path":[4,4,2,4,4],"span":[65,2,10]},{"path":[4,4,2,4,5],"span":[65,11,16]},{"path":[4,4,2,4,1],"span":[65,17,27]},{"path":[4,4,2,4,3],"span":[65,30,31]},{"path":[4,4,2,5],"span":[67,2,36],"trailingComments":" false by default: to avoid to get full path\n"},{"path":[4,4,2,5,4],"span":[67,2,10]},{"path":[4,4,2,5,5],"span":[67,11,15]},{"path":[4,4,2,5,1],"span":[67,16,30]},{"path":[4,4,2,5,3],"span":[67,33,35]},{"path":[4,5],"span":[70,0,78,1]},{"path":[4,5,1],"span":[70,8,29]},{"path":[4,5,2,0],"span":[71,2,34]},{"path":[4,5,2,0,4],"span":[71,2,10]},{"path":[4,5,2,0,6],"span":[71,11,23]},{"path":[4,5,2,0,1],"span":[71,24,29]},{"path":[4,5,2,0,3],"span":[71,32,33]},{"path":[4,5,2,1],"span":[72,2,34]},{"path":[4,5,2,1,4],"span":[72,2,10]},{"path":[4,5,2,1,6],"span":[72,11,23]},{"path":[4,5,2,1,1],"span":[72,24,29]},{"path":[4,5,2,1,3],"span":[72,32,33]},{"path":[4,5,2,2],"span":[73,2,28]},{"path":[4,5,2,2,4],"span":[73,2,10]},{"path":[4,5,2,2,6],"span":[73,11,20]},{"path":[4,5,2,2,1],"span":[73,21,23]},{"path":[4,5,2,2,3],"span":[73,26,27]},{"path":[4,5,2,3],"span":[74,2,34]},{"path":[4,5,2,3,4],"span":[74,2,10]},{"path":[4,5,2,3,6],"span":[74,11,26]},{"path":[4,5,2,3,1],"span":[74,27,29]},{"path":[4,5,2,3,3],"span":[74,32,33]},{"path":[4,5,2,4],"span":[75,2,38]},{"path":[4,5,2,4,4],"span":[75,2,10]},{"path":[4,5,2,4,6],"span":[75,11,25]},{"path":[4,5,2,4,1],"span":[75,26,33]},{"path":[4,5,2,4,3],"span":[75,36,37]},{"path":[4,5,2,5],"span":[76,2,28]},{"path":[4,5,2,5,4],"span":[76,2,10]},{"path":[4,5,2,5,5],"span":[76,11,15]},{"path":[4,5,2,5,1],"span":[76,16,23]},{"path":[4,5,2,5,3],"span":[76,26,27]},{"path":[4,5,2,6],"span":[77,2,40]},{"path":[4,5,2,6,4],"span":[77,2,10]},{"path":[4,5,2,6,5],"span":[77,11,17]},{"path":[4,5,2,6,1],"span":[77,18,35]},{"path":[4,5,2,6,3],"span":[77,38,39]},{"path":[4,6],"span":[82,0,88,1],"leadingDetachedComments":[" ----- Data Part ------\n"]},{"path":[4,6,1],"span":[82,8,18]},{"path":[4,6,2,0],"span":[83,2,21]},{"path":[4,6,2,0,5],"span":[83,2,8]},{"path":[4,6,2,0,1],"span":[83,9,16]},{"path":[4,6,2,0,3],"span":[83,19,20]},{"path":[4,6,2,1],"span":[84,2,32]},{"path":[4,6,2,1,4],"span":[84,2,10]},{"path":[4,6,2,1,5],"span":[84,11,17]},{"path":[4,6,2,1,1],"span":[84,18,27]},{"path":[4,6,2,1,3],"span":[84,30,31]},{"path":[4,6,2,2],"span":[85,2,34],"trailingComments":" IT, OT, CDK, 3rdParty\n"},{"path":[4,6,2,2,4],"span":[85,2,10]},{"path":[4,6,2,2,5],"span":[85,11,17]},{"path":[4,6,2,2,1],"span":[85,18,29]},{"path":[4,6,2,2,3],"span":[85,32,33]},{"path":[4,6,2,3],"span":[86,2,34],"trailingComments":" \"asset\" \"user\" etc\n"},{"path":[4,6,2,3,4],"span":[86,2,10]},{"path":[4,6,2,3,5],"span":[86,11,17]},{"path":[4,6,2,3,1],"span":[86,18,29]},{"path":[4,6,2,3,3],"span":[86,32,33]},{"path":[4,6,2,4],"span":[87,2,32]},{"path":[4,6,2,4,4],"span":[87,2,10]},{"path":[4,6,2,4,5],"span":[87,11,17]},{"path":[4,6,2,4,1],"span":[87,18,27]},{"path":[4,6,2,4,3],"span":[87,30,31]},{"path":[4,7],"span":[91,0,97,1],"leadingComments":" Main Entity object: variant "},{"path":[4,7,1],"span":[91,8,14]},{"path":[4,7,8,0],"span":[92,2,96,3]},{"path":[4,7,8,0,1],"span":[92,8,14]},{"path":[4,7,2,0],"span":[93,4,20],"trailingComments":" User user = 2;\n Other ...\n"},{"path":[4,7,2,0,6],"span":[93,4,9]},{"path":[4,7,2,0,1],"span":[93,10,15]},{"path":[4,7,2,0,3],"span":[93,18,19]},{"path":[4,8],"span":[102,0,162,1],"leadingComments":" Asset object: IT/OT/CDR "},{"path":[4,8,1],"span":[102,8,13]},{"path":[4,8,2,0],"span":[104,2,20]},{"path":[4,8,2,0,6],"span":[104,2,12]},{"path":[4,8,2,0,1],"span":[104,13,15]},{"path":[4,8,2,0,3],"span":[104,18,19]},{"path":[4,8,2,1],"span":[106,2,44]},{"path":[4,8,2,1,6],"span":[106,2,27]},{"path":[4,8,2,1,1],"span":[106,28,39]},{"path":[4,8,2,1,3],"span":[106,42,43]},{"path":[4,8,2,2],"span":[107,2,43]},{"path":[4,8,2,2,6],"span":[107,2,27]},{"path":[4,8,2,2,1],"span":[107,28,38]},{"path":[4,8,2,2,3],"span":[107,41,42]},{"path":[4,8,2,3],"span":[108,2,45]},{"path":[4,8,2,3,6],"span":[108,2,27]},{"path":[4,8,2,3,1],"span":[108,28,40]},{"path":[4,8,2,3,3],"span":[108,43,44]},{"path":[4,8,2,4],"span":[109,2,46]},{"path":[4,8,2,4,6],"span":[109,2,27]},{"path":[4,8,2,4,1],"span":[109,28,41]},{"path":[4,8,2,4,3],"span":[109,44,45]},{"path":[4,8,2,5],"span":[111,2,48],"trailingComments":" last synced source agent name and version\n"},{"path":[4,8,2,5,4],"span":[111,2,10]},{"path":[4,8,2,5,5],"span":[111,11,17]},{"path":[4,8,2,5,1],"span":[111,18,42]},{"path":[4,8,2,5,3],"span":[111,45,47]},{"path":[4,8,2,6],"span":[112,2,47],"trailingComments":" last synced source name\n"},{"path":[4,8,2,6,4],"span":[112,2,10]},{"path":[4,8,2,6,5],"span":[112,11,17]},{"path":[4,8,2,6,1],"span":[112,18,41]},{"path":[4,8,2,6,3],"span":[112,44,46]},{"path":[4,8,2,7],"span":[119,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,8,2,7,4],"span":[119,2,10]},{"path":[4,8,2,7,6],"span":[119,11,21]},{"path":[4,8,2,7,1],"span":[119,22,33]},{"path":[4,8,2,7,3],"span":[119,36,38]},{"path":[4,8,2,8],"span":[127,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,8,2,8,4],"span":[127,2,10]},{"path":[4,8,2,8,5],"span":[127,11,17]},{"path":[4,8,2,8,1],"span":[127,18,28]},{"path":[4,8,2,8,3],"span":[127,31,33]},{"path":[4,8,2,9],"span":[129,2,37]},{"path":[4,8,2,9,4],"span":[129,2,10]},{"path":[4,8,2,9,6],"span":[129,11,20]},{"path":[4,8,2,9,1],"span":[129,21,31]},{"path":[4,8,2,9,3],"span":[129,34,36]},{"path":[4,8,2,10],"span":[131,2,35],"trailingComments":" Internet IP and related geo-location info, when available\n"},{"path":[4,8,2,10,4],"span":[131,2,10]},{"path":[4,8,2,10,6],"span":[131,11,17]},{"path":[4,8,2,10,1],"span":[131,18,29]},{"path":[4,8,2,10,3],"span":[131,32,34]},{"path":[4,8,2,11],"span":[133,2,24]},{"path":[4,8,2,11,4],"span":[133,2,10]},{"path":[4,8,2,11,6],"span":[133,11,14]},{"path":[4,8,2,11,1],"span":[133,15,18]},{"path":[4,8,2,11,3],"span":[133,21,23]},{"path":[4,8,2,12],"span":[134,2,34],"trailingComments":" e.g. relations to and from OT parent module to sub-modules\n"},{"path":[4,8,2,12,4],"span":[134,2,10]},{"path":[4,8,2,12,6],"span":[134,11,19]},{"path":[4,8,2,12,1],"span":[134,20,28]},{"path":[4,8,2,12,3],"span":[134,31,33]},{"path":[4,8,2,13],"span":[136,2,22]},{"path":[4,8,2,13,6],"span":[136,2,12]},{"path":[4,8,2,13,1],"span":[136,13,17]},{"path":[4,8,2,13,3],"span":[136,20,21]},{"path":[4,8,2,14],"span":[138,2,31]},{"path":[4,8,2,14,4],"span":[138,2,10]},{"path":[4,8,2,14,6],"span":[138,11,23]},{"path":[4,8,2,14,1],"span":[138,24,26]},{"path":[4,8,2,14,3],"span":[138,29,30]},{"path":[4,8,2,15],"span":[139,2,34]},{"path":[4,8,2,15,4],"span":[139,2,10]},{"path":[4,8,2,15,6],"span":[139,11,26]},{"path":[4,8,2,15,1],"span":[139,27,29]},{"path":[4,8,2,15,3],"span":[139,32,33]},{"path":[4,8,2,16],"span":[141,2,51]},{"path":[4,8,2,16,4],"span":[141,2,10]},{"path":[4,8,2,16,6],"span":[141,11,27]},{"path":[4,8,2,16,1],"span":[141,28,45]},{"path":[4,8,2,16,3],"span":[141,48,50]},{"path":[4,8,2,17],"span":[142,2,53]},{"path":[4,8,2,17,4],"span":[142,2,10]},{"path":[4,8,2,17,6],"span":[142,11,28]},{"path":[4,8,2,17,1],"span":[142,29,47]},{"path":[4,8,2,17,3],"span":[142,50,52]},{"path":[4,8,2,18],"span":[143,2,51]},{"path":[4,8,2,18,4],"span":[143,2,10]},{"path":[4,8,2,18,6],"span":[143,11,27]},{"path":[4,8,2,18,1],"span":[143,28,45]},{"path":[4,8,2,18,3],"span":[143,48,50]},{"path":[4,8,2,19],"span":[144,2,35]},{"path":[4,8,2,19,4],"span":[144,2,10]},{"path":[4,8,2,19,6],"span":[144,11,19]},{"path":[4,8,2,19,1],"span":[144,20,29]},{"path":[4,8,2,19,3],"span":[144,32,34]},{"path":[4,8,9],"span":[147,2,69],"leadingComments":" list of deprecated fields, now moved to computer message\n"},{"path":[4,8,9,0],"span":[147,11,12]},{"path":[4,8,9,0,1],"span":[147,11,12]},{"path":[4,8,9,1],"span":[147,14,16]},{"path":[4,8,9,1,1],"span":[147,14,16]},{"path":[4,8,9,2],"span":[147,18,20]},{"path":[4,8,9,2,1],"span":[147,18,20]},{"path":[4,8,9,3],"span":[147,22,24]},{"path":[4,8,9,3,1],"span":[147,22,24]},{"path":[4,8,9,4],"span":[147,26,28]},{"path":[4,8,9,4,1],"span":[147,26,28]},{"path":[4,8,9,5],"span":[147,30,32]},{"path":[4,8,9,5,1],"span":[147,30,32]},{"path":[4,8,9,6],"span":[147,34,36]},{"path":[4,8,9,6,1],"span":[147,34,36]},{"path":[4,8,9,7],"span":[147,38,40]},{"path":[4,8,9,7,1],"span":[147,38,40]},{"path":[4,8,9,8],"span":[147,42,44]},{"path":[4,8,9,8,1],"span":[147,42,44]},{"path":[4,8,9,9],"span":[147,46,48]},{"path":[4,8,9,9,1],"span":[147,46,48]},{"path":[4,8,9,10],"span":[147,50,52]},{"path":[4,8,9,10,1],"span":[147,50,52]},{"path":[4,8,9,11],"span":[147,54,56]},{"path":[4,8,9,11,1],"span":[147,54,56]},{"path":[4,8,9,12],"span":[147,58,60]},{"path":[4,8,9,12,1],"span":[147,58,60]},{"path":[4,8,9,13],"span":[147,62,64]},{"path":[4,8,9,13,1],"span":[147,62,64]},{"path":[4,8,9,14],"span":[147,66,68]},{"path":[4,8,9,14,1],"span":[147,66,68]},{"path":[4,8,2,20],"span":[149,2,34]},{"path":[4,8,2,20,4],"span":[149,2,10]},{"path":[4,8,2,20,6],"span":[149,11,19]},{"path":[4,8,2,20,1],"span":[149,20,28]},{"path":[4,8,2,20,3],"span":[149,31,33]},{"path":[4,8,2,21],"span":[151,2,35],"trailingComments":" OT specific module info when asset type is 'OT'\n"},{"path":[4,8,2,21,4],"span":[151,2,10]},{"path":[4,8,2,21,6],"span":[151,11,19]},{"path":[4,8,2,21,1],"span":[151,20,29]},{"path":[4,8,2,21,3],"span":[151,32,34]},{"path":[4,8,2,22],"span":[153,2,34]},{"path":[4,8,2,22,4],"span":[153,2,10]},{"path":[4,8,2,22,6],"span":[153,11,22]},{"path":[4,8,2,22,1],"span":[153,23,28]},{"path":[4,8,2,22,3],"span":[153,31,33]},{"path":[4,9],"span":[167,0,232,1],"leadingComments":"\n Computer message keeping all sections of asset.computer.\n"},{"path":[4,9,1],"span":[167,8,16]},{"path":[4,9,2,0],"span":[169,2,31],"leadingComments":" HW\n"},{"path":[4,9,2,0,4],"span":[169,2,10]},{"path":[4,9,2,0,6],"span":[169,11,18]},{"path":[4,9,2,0,1],"span":[169,19,26]},{"path":[4,9,2,0,3],"span":[169,29,30]},{"path":[4,9,2,1],"span":[170,2,39]},{"path":[4,9,2,1,4],"span":[170,2,10]},{"path":[4,9,2,1,6],"span":[170,11,22]},{"path":[4,9,2,1,1],"span":[170,23,34]},{"path":[4,9,2,1,3],"span":[170,37,38]},{"path":[4,9,2,2],"span":[171,2,35]},{"path":[4,9,2,2,4],"span":[171,2,10]},{"path":[4,9,2,2,6],"span":[171,11,20]},{"path":[4,9,2,2,1],"span":[171,21,30]},{"path":[4,9,2,2,3],"span":[171,33,34]},{"path":[4,9,2,3],"span":[172,2,29]},{"path":[4,9,2,3,4],"span":[172,2,10]},{"path":[4,9,2,3,6],"span":[172,11,17]},{"path":[4,9,2,3,1],"span":[172,18,24]},{"path":[4,9,2,3,3],"span":[172,27,28]},{"path":[4,9,2,4],"span":[173,2,42]},{"path":[4,9,2,4,4],"span":[173,2,10]},{"path":[4,9,2,4,6],"span":[173,11,23]},{"path":[4,9,2,4,1],"span":[173,24,37]},{"path":[4,9,2,4,3],"span":[173,40,41]},{"path":[4,9,2,5],"span":[174,2,36]},{"path":[4,9,2,5,4],"span":[174,2,10]},{"path":[4,9,2,5,6],"span":[174,11,20]},{"path":[4,9,2,5,1],"span":[174,21,31]},{"path":[4,9,2,5,3],"span":[174,34,35]},{"path":[4,9,2,6],"span":[175,2,33]},{"path":[4,9,2,6,4],"span":[175,2,10]},{"path":[4,9,2,6,6],"span":[175,11,19]},{"path":[4,9,2,6,1],"span":[175,20,28]},{"path":[4,9,2,6,3],"span":[175,31,32]},{"path":[4,9,2,7],"span":[176,2,46]},{"path":[4,9,2,7,4],"span":[176,2,10]},{"path":[4,9,2,7,6],"span":[176,11,25]},{"path":[4,9,2,7,1],"span":[176,26,41]},{"path":[4,9,2,7,3],"span":[176,44,45]},{"path":[4,9,2,8],"span":[177,2,40]},{"path":[4,9,2,8,4],"span":[177,2,10]},{"path":[4,9,2,8,6],"span":[177,11,22]},{"path":[4,9,2,8,1],"span":[177,23,35]},{"path":[4,9,2,8,3],"span":[177,38,39]},{"path":[4,9,2,9],"span":[178,2,51]},{"path":[4,9,2,9,4],"span":[178,2,10]},{"path":[4,9,2,9,6],"span":[178,11,27]},{"path":[4,9,2,9,1],"span":[178,28,45]},{"path":[4,9,2,9,3],"span":[178,48,50]},{"path":[4,9,2,10],"span":[179,2,43]},{"path":[4,9,2,10,4],"span":[179,2,10]},{"path":[4,9,2,10,6],"span":[179,11,23]},{"path":[4,9,2,10,1],"span":[179,24,37]},{"path":[4,9,2,10,3],"span":[179,40,42]},{"path":[4,9,2,11],"span":[180,2,39]},{"path":[4,9,2,11,4],"span":[180,2,10]},{"path":[4,9,2,11,6],"span":[180,11,21]},{"path":[4,9,2,11,1],"span":[180,22,33]},{"path":[4,9,2,11,3],"span":[180,36,38]},{"path":[4,9,2,12],"span":[181,2,40]},{"path":[4,9,2,12,4],"span":[181,2,10]},{"path":[4,9,2,12,6],"span":[181,11,27]},{"path":[4,9,2,12,1],"span":[181,28,34]},{"path":[4,9,2,12,3],"span":[181,37,39]},{"path":[4,9,2,13],"span":[182,2,45]},{"path":[4,9,2,13,4],"span":[182,2,10]},{"path":[4,9,2,13,6],"span":[182,11,24]},{"path":[4,9,2,13,1],"span":[182,25,39]},{"path":[4,9,2,13,3],"span":[182,42,44]},{"path":[4,9,2,14],"span":[183,2,47]},{"path":[4,9,2,14,4],"span":[183,2,10]},{"path":[4,9,2,14,6],"span":[183,11,25]},{"path":[4,9,2,14,1],"span":[183,26,41]},{"path":[4,9,2,14,3],"span":[183,44,46]},{"path":[4,9,2,15],"span":[184,2,49]},{"path":[4,9,2,15,4],"span":[184,2,10]},{"path":[4,9,2,15,6],"span":[184,11,26]},{"path":[4,9,2,15,1],"span":[184,27,43]},{"path":[4,9,2,15,3],"span":[184,46,48]},{"path":[4,9,2,16],"span":[185,2,49]},{"path":[4,9,2,16,4],"span":[185,2,10]},{"path":[4,9,2,16,6],"span":[185,11,26]},{"path":[4,9,2,16,1],"span":[185,27,43]},{"path":[4,9,2,16,3],"span":[185,46,48]},{"path":[4,9,2,17],"span":[186,2,43]},{"path":[4,9,2,17,4],"span":[186,2,10]},{"path":[4,9,2,17,6],"span":[186,11,23]},{"path":[4,9,2,17,1],"span":[186,24,37]},{"path":[4,9,2,17,3],"span":[186,40,42]},{"path":[4,9,2,18],"span":[187,2,37]},{"path":[4,9,2,18,4],"span":[187,2,10]},{"path":[4,9,2,18,6],"span":[187,11,20]},{"path":[4,9,2,18,1],"span":[187,21,31]},{"path":[4,9,2,18,3],"span":[187,34,36]},{"path":[4,9,2,19],"span":[188,2,41]},{"path":[4,9,2,19,4],"span":[188,2,10]},{"path":[4,9,2,19,6],"span":[188,11,22]},{"path":[4,9,2,19,1],"span":[188,23,35]},{"path":[4,9,2,19,3],"span":[188,38,40]},{"path":[4,9,2,20],"span":[189,2,42]},{"path":[4,9,2,20,4],"span":[189,2,10]},{"path":[4,9,2,20,6],"span":[189,11,32]},{"path":[4,9,2,20,1],"span":[189,33,36]},{"path":[4,9,2,20,3],"span":[189,39,41]},{"path":[4,9,2,21],"span":[190,2,62]},{"path":[4,9,2,21,4],"span":[190,2,10]},{"path":[4,9,2,21,6],"span":[190,11,41]},{"path":[4,9,2,21,1],"span":[190,42,56]},{"path":[4,9,2,21,3],"span":[190,59,61]},{"path":[4,9,2,22],"span":[191,2,63]},{"path":[4,9,2,22,4],"span":[191,2,10]},{"path":[4,9,2,22,6],"span":[191,11,41]},{"path":[4,9,2,22,1],"span":[191,42,57]},{"path":[4,9,2,22,3],"span":[191,60,62]},{"path":[4,9,2,23],"span":[192,2,45]},{"path":[4,9,2,23,4],"span":[192,2,10]},{"path":[4,9,2,23,6],"span":[192,11,33]},{"path":[4,9,2,23,1],"span":[192,34,39]},{"path":[4,9,2,23,3],"span":[192,42,44]},{"path":[4,9,2,24],"span":[193,2,49]},{"path":[4,9,2,24,4],"span":[193,2,10]},{"path":[4,9,2,24,6],"span":[193,11,35]},{"path":[4,9,2,24,1],"span":[193,36,43]},{"path":[4,9,2,24,3],"span":[193,46,48]},{"path":[4,9,2,25],"span":[194,2,54]},{"path":[4,9,2,25,4],"span":[194,2,10]},{"path":[4,9,2,25,6],"span":[194,11,37]},{"path":[4,9,2,25,1],"span":[194,38,48]},{"path":[4,9,2,25,3],"span":[194,51,53]},{"path":[4,9,2,26],"span":[195,2,55]},{"path":[4,9,2,26,4],"span":[195,2,10]},{"path":[4,9,2,26,6],"span":[195,11,33]},{"path":[4,9,2,26,1],"span":[195,34,49]},{"path":[4,9,2,26,3],"span":[195,52,54]},{"path":[4,9,2,27],"span":[196,2,70]},{"path":[4,9,2,27,4],"span":[196,2,10]},{"path":[4,9,2,27,6],"span":[196,11,40]},{"path":[4,9,2,27,1],"span":[196,41,64]},{"path":[4,9,2,27,3],"span":[196,67,69]},{"path":[4,9,2,28],"span":[197,2,55]},{"path":[4,9,2,28,4],"span":[197,2,10]},{"path":[4,9,2,28,6],"span":[197,11,33]},{"path":[4,9,2,28,1],"span":[197,34,49]},{"path":[4,9,2,28,3],"span":[197,52,54]},{"path":[4,9,2,29],"span":[198,2,76]},{"path":[4,9,2,29,4],"span":[198,2,10]},{"path":[4,9,2,29,6],"span":[198,11,43]},{"path":[4,9,2,29,1],"span":[198,44,70]},{"path":[4,9,2,29,3],"span":[198,73,75]},{"path":[4,9,2,30],"span":[199,2,68]},{"path":[4,9,2,30,4],"span":[199,2,10]},{"path":[4,9,2,30,6],"span":[199,11,39]},{"path":[4,9,2,30,1],"span":[199,40,62]},{"path":[4,9,2,30,3],"span":[199,65,67]},{"path":[4,9,2,31],"span":[200,2,68]},{"path":[4,9,2,31,4],"span":[200,2,10]},{"path":[4,9,2,31,6],"span":[200,11,39]},{"path":[4,9,2,31,1],"span":[200,40,62]},{"path":[4,9,2,31,3],"span":[200,65,67]},{"path":[4,9,2,32],"span":[203,2,27],"leadingComments":" OS\n"},{"path":[4,9,2,32,4],"span":[203,2,10]},{"path":[4,9,2,32,6],"span":[203,11,15]},{"path":[4,9,2,32,1],"span":[203,16,20]},{"path":[4,9,2,32,3],"span":[203,23,26]},{"path":[4,9,2,33],"span":[204,2,47]},{"path":[4,9,2,33,4],"span":[204,2,10]},{"path":[4,9,2,33,6],"span":[204,11,31]},{"path":[4,9,2,33,1],"span":[204,32,40]},{"path":[4,9,2,33,3],"span":[204,43,46]},{"path":[4,9,2,34],"span":[205,2,51]},{"path":[4,9,2,34,4],"span":[205,2,10]},{"path":[4,9,2,34,6],"span":[205,11,33]},{"path":[4,9,2,34,1],"span":[205,34,44]},{"path":[4,9,2,34,3],"span":[205,47,50]},{"path":[4,9,2,35],"span":[206,2,53]},{"path":[4,9,2,35,4],"span":[206,2,10]},{"path":[4,9,2,35,6],"span":[206,11,34]},{"path":[4,9,2,35,1],"span":[206,35,46]},{"path":[4,9,2,35,3],"span":[206,49,52]},{"path":[4,9,2,36],"span":[207,2,51]},{"path":[4,9,2,36,4],"span":[207,2,10]},{"path":[4,9,2,36,6],"span":[207,11,33]},{"path":[4,9,2,36,1],"span":[207,34,44]},{"path":[4,9,2,36,3],"span":[207,47,50]},{"path":[4,9,2,37],"span":[208,2,63]},{"path":[4,9,2,37,4],"span":[208,2,10]},{"path":[4,9,2,37,6],"span":[208,11,32]},{"path":[4,9,2,37,1],"span":[208,33,56]},{"path":[4,9,2,37,3],"span":[208,59,62]},{"path":[4,9,2,38],"span":[209,2,51]},{"path":[4,9,2,38,4],"span":[209,2,10]},{"path":[4,9,2,38,6],"span":[209,11,34]},{"path":[4,9,2,38,1],"span":[209,35,44]},{"path":[4,9,2,38,3],"span":[209,47,50]},{"path":[4,9,2,39],"span":[212,2,54],"leadingComments":" SW\n"},{"path":[4,9,2,39,4],"span":[212,2,10]},{"path":[4,9,2,39,6],"span":[212,11,28]},{"path":[4,9,2,39,1],"span":[212,29,47]},{"path":[4,9,2,39,3],"span":[212,50,53]},{"path":[4,9,2,40],"span":[213,2,45]},{"path":[4,9,2,40,4],"span":[213,2,10]},{"path":[4,9,2,40,6],"span":[213,11,28]},{"path":[4,9,2,40,1],"span":[213,29,38]},{"path":[4,9,2,40,3],"span":[213,41,44]},{"path":[4,9,2,41],"span":[214,2,49]},{"path":[4,9,2,41,4],"span":[214,2,10]},{"path":[4,9,2,41,6],"span":[214,11,25]},{"path":[4,9,2,41,1],"span":[214,26,42]},{"path":[4,9,2,41,3],"span":[214,45,48]},{"path":[4,9,2,42],"span":[215,2,40]},{"path":[4,9,2,42,4],"span":[215,2,10]},{"path":[4,9,2,42,6],"span":[215,11,21]},{"path":[4,9,2,42,1],"span":[215,22,33]},{"path":[4,9,2,42,3],"span":[215,36,39]},{"path":[4,9,2,43],"span":[216,2,31]},{"path":[4,9,2,43,4],"span":[216,2,10]},{"path":[4,9,2,43,6],"span":[216,11,17]},{"path":[4,9,2,43,1],"span":[216,18,24]},{"path":[4,9,2,43,3],"span":[216,27,30]},{"path":[4,9,2,44],"span":[217,2,48]},{"path":[4,9,2,44,4],"span":[217,2,10]},{"path":[4,9,2,44,6],"span":[217,11,25]},{"path":[4,9,2,44,1],"span":[217,26,41]},{"path":[4,9,2,44,3],"span":[217,44,47]},{"path":[4,9,2,45],"span":[218,2,48]},{"path":[4,9,2,45,4],"span":[218,2,10]},{"path":[4,9,2,45,6],"span":[218,11,25]},{"path":[4,9,2,45,1],"span":[218,26,41]},{"path":[4,9,2,45,3],"span":[218,44,47]},{"path":[4,9,2,46],"span":[219,2,52],"trailingComments":" specific to IE on Windows\n"},{"path":[4,9,2,46,4],"span":[219,2,10]},{"path":[4,9,2,46,6],"span":[219,11,27]},{"path":[4,9,2,46,1],"span":[219,28,45]},{"path":[4,9,2,46,3],"span":[219,48,51]},{"path":[4,9,2,47],"span":[220,2,53],"trailingComments":" specific to SQL server on Windows\n"},{"path":[4,9,2,47,4],"span":[220,2,10]},{"path":[4,9,2,47,6],"span":[220,11,27]},{"path":[4,9,2,47,1],"span":[220,28,46]},{"path":[4,9,2,47,3],"span":[220,49,52]},{"path":[4,9,2,48],"span":[221,2,69]},{"path":[4,9,2,48,4],"span":[221,2,10]},{"path":[4,9,2,48,6],"span":[221,11,39]},{"path":[4,9,2,48,1],"span":[221,40,62]},{"path":[4,9,2,48,3],"span":[221,65,68]},{"path":[4,9,2,49],"span":[222,2,46]},{"path":[4,9,2,49,4],"span":[222,2,10]},{"path":[4,9,2,49,6],"span":[222,11,24]},{"path":[4,9,2,49,1],"span":[222,25,39]},{"path":[4,9,2,49,3],"span":[222,42,45]},{"path":[4,9,2,50],"span":[223,2,57]},{"path":[4,9,2,50,4],"span":[223,2,10]},{"path":[4,9,2,50,6],"span":[223,11,37]},{"path":[4,9,2,50,1],"span":[223,38,50]},{"path":[4,9,2,50,3],"span":[223,53,56]},{"path":[4,9,2,51],"span":[228,2,36],"leadingComments":" USERS AND ACCOUNT\n","trailingComments":" i.e. computer current user\n"},{"path":[4,9,2,51,4],"span":[228,2,10]},{"path":[4,9,2,51,6],"span":[228,11,19]},{"path":[4,9,2,51,1],"span":[228,20,29]},{"path":[4,9,2,51,3],"span":[228,32,35]},{"path":[4,9,2,52],"span":[229,2,34]},{"path":[4,9,2,52,4],"span":[229,2,10]},{"path":[4,9,2,52,6],"span":[229,11,22]},{"path":[4,9,2,52,1],"span":[229,23,27]},{"path":[4,9,2,52,3],"span":[229,30,33]},{"path":[4,9,2,53],"span":[230,2,38]},{"path":[4,9,2,53,4],"span":[230,2,10]},{"path":[4,9,2,53,6],"span":[230,11,20]},{"path":[4,9,2,53,1],"span":[230,21,31]},{"path":[4,9,2,53,3],"span":[230,34,37]},{"path":[4,9,2,54],"span":[231,2,43]},{"path":[4,9,2,54,4],"span":[231,2,10]},{"path":[4,9,2,54,6],"span":[231,11,22]},{"path":[4,9,2,54,1],"span":[231,23,36]},{"path":[4,9,2,54,3],"span":[231,39,42]},{"path":[4,10],"span":[251,0,254,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,10,1],"span":[251,8,11]},{"path":[4,10,2,0],"span":[252,2,17]},{"path":[4,10,2,0,5],"span":[252,2,8]},{"path":[4,10,2,0,1],"span":[252,9,12]},{"path":[4,10,2,0,3],"span":[252,15,16]},{"path":[4,10,2,1],"span":[253,2,28]},{"path":[4,10,2,1,4],"span":[253,2,10]},{"path":[4,10,2,1,5],"span":[253,11,17]},{"path":[4,10,2,1,1],"span":[253,18,23]},{"path":[4,10,2,1,3],"span":[253,26,27]},{"path":[4,11],"span":[261,0,268,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,11,1],"span":[261,8,16]},{"path":[4,11,2,0],"span":[262,2,31],"trailingComments":" if missing, 'self' assumed\n"},{"path":[4,11,2,0,4],"span":[262,2,10]},{"path":[4,11,2,0,6],"span":[262,11,21]},{"path":[4,11,2,0,1],"span":[262,22,26]},{"path":[4,11,2,0,3],"span":[262,29,30]},{"path":[4,11,2,1],"span":[263,2,29],"trailingComments":" if missing, 'self' assumed\n"},{"path":[4,11,2,1,4],"span":[263,2,10]},{"path":[4,11,2,1,6],"span":[263,11,21]},{"path":[4,11,2,1,1],"span":[263,22,24]},{"path":[4,11,2,1,3],"span":[263,27,28]},{"path":[4,11,2,2],"span":[264,2,38]},{"path":[4,11,2,2,6],"span":[264,2,27]},{"path":[4,11,2,2,1],"span":[264,28,33]},{"path":[4,11,2,2,3],"span":[264,36,37]},{"path":[4,11,2,3],"span":[265,2,45],"trailingComments":" if end is marked, it's over\n"},{"path":[4,11,2,3,4],"span":[265,2,10]},{"path":[4,11,2,3,6],"span":[265,11,36]},{"path":[4,11,2,3,1],"span":[265,37,40]},{"path":[4,11,2,3,3],"span":[265,43,44]},{"path":[4,11,2,4],"span":[266,2,18]},{"path":[4,11,2,4,5],"span":[266,2,8]},{"path":[4,11,2,4,1],"span":[266,9,13]},{"path":[4,11,2,4,3],"span":[266,16,17]},{"path":[4,11,2,5],"span":[267,2,23]},{"path":[4,11,2,5,4],"span":[267,2,10]},{"path":[4,11,2,5,6],"span":[267,11,14]},{"path":[4,11,2,5,1],"span":[267,15,18]},{"path":[4,11,2,5,3],"span":[267,21,22]},{"path":[4,12],"span":[278,0,285,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,12,1],"span":[278,8,19]},{"path":[4,12,2,0],"span":[279,2,31]},{"path":[4,12,2,0,6],"span":[279,2,21]},{"path":[4,12,2,0,1],"span":[279,22,26]},{"path":[4,12,2,0,3],"span":[279,29,30]},{"path":[4,12,2,1],"span":[280,2,28]},{"path":[4,12,2,1,5],"span":[280,2,8]},{"path":[4,12,2,1,1],"span":[280,9,23]},{"path":[4,12,2,1,3],"span":[280,26,27]},{"path":[4,12,2,2],"span":[281,2,28]},{"path":[4,12,2,2,5],"span":[281,2,8]},{"path":[4,12,2,2,1],"span":[281,9,23]},{"path":[4,12,2,2,3],"span":[281,26,27]},{"path":[4,12,2,3],"span":[282,2,32]},{"path":[4,12,2,3,4],"span":[282,2,10]},{"path":[4,12,2,3,5],"span":[282,11,17]},{"path":[4,12,2,3,1],"span":[282,18,27]},{"path":[4,12,2,3,3],"span":[282,30,31]},{"path":[4,12,2,4],"span":[283,2,30]},{"path":[4,12,2,4,5],"span":[283,2,8]},{"path":[4,12,2,4,1],"span":[283,9,25]},{"path":[4,12,2,4,3],"span":[283,28,29]},{"path":[4,12,2,5],"span":[284,2,22]},{"path":[4,12,2,5,5],"span":[284,2,8]},{"path":[4,12,2,5,1],"span":[284,9,17]},{"path":[4,12,2,5,3],"span":[284,20,21]},{"path":[4,13],"span":[295,0,310,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,13,1],"span":[295,8,16]},{"path":[4,13,2,0],"span":[296,2,37]},{"path":[4,13,2,0,4],"span":[296,2,10]},{"path":[4,13,2,0,5],"span":[296,11,17]},{"path":[4,13,2,0,1],"span":[296,18,32]},{"path":[4,13,2,0,3],"span":[296,35,36]},{"path":[4,13,2,1],"span":[297,2,38]},{"path":[4,13,2,1,4],"span":[297,2,10]},{"path":[4,13,2,1,6],"span":[297,11,22]},{"path":[4,13,2,1,1],"span":[297,23,33]},{"path":[4,13,2,1,3],"span":[297,36,37]},{"path":[4,13,2,2],"span":[299,2,26]},{"path":[4,13,2,2,5],"span":[299,2,6]},{"path":[4,13,2,2,1],"span":[299,7,21]},{"path":[4,13,2,2,3],"span":[299,24,25]},{"path":[4,13,2,3],"span":[301,2,34]},{"path":[4,13,2,3,4],"span":[301,2,10]},{"path":[4,13,2,3,5],"span":[301,11,17]},{"path":[4,13,2,3,1],"span":[301,18,29]},{"path":[4,13,2,3,3],"span":[301,32,33]},{"path":[4,13,2,4],"span":[302,2,40]},{"path":[4,13,2,4,4],"span":[302,2,10]},{"path":[4,13,2,4,6],"span":[302,11,26]},{"path":[4,13,2,4,1],"span":[302,27,35]},{"path":[4,13,2,4,3],"span":[302,38,39]},{"path":[4,13,2,5],"span":[304,2,33]},{"path":[4,13,2,5,4],"span":[304,2,10]},{"path":[4,13,2,5,5],"span":[304,11,17]},{"path":[4,13,2,5,1],"span":[304,18,28]},{"path":[4,13,2,5,3],"span":[304,31,32]},{"path":[4,13,2,6],"span":[306,2,27]},{"path":[4,13,2,6,5],"span":[306,2,6]},{"path":[4,13,2,6,1],"span":[306,7,22]},{"path":[4,13,2,6,3],"span":[306,25,26]},{"path":[4,13,2,7],"span":[307,2,36]},{"path":[4,13,2,7,4],"span":[307,2,10]},{"path":[4,13,2,7,5],"span":[307,11,17]},{"path":[4,13,2,7,1],"span":[307,18,31]},{"path":[4,13,2,7,3],"span":[307,34,35]},{"path":[4,13,2,8],"span":[308,2,36]},{"path":[4,13,2,8,4],"span":[308,2,10]},{"path":[4,13,2,8,6],"span":[308,11,21]},{"path":[4,13,2,8,1],"span":[308,22,31]},{"path":[4,13,2,8,3],"span":[308,34,35]},{"path":[4,13,2,9],"span":[309,2,45]},{"path":[4,13,2,9,4],"span":[309,2,10]},{"path":[4,13,2,9,6],"span":[309,11,28]},{"path":[4,13,2,9,1],"span":[309,29,39]},{"path":[4,13,2,9,3],"span":[309,42,44]},{"path":[4,14],"span":[313,0,321,1],"leadingComments":" Information about the OT rack the module is plugged into\n"},{"path":[4,14,1],"span":[313,8,19]},{"path":[4,14,2,0],"span":[314,2,19]},{"path":[4,14,2,0,5],"span":[314,2,7]},{"path":[4,14,2,0,1],"span":[314,8,14]},{"path":[4,14,2,0,3],"span":[314,17,18]},{"path":[4,14,2,1],"span":[315,2,27]},{"path":[4,14,2,1,4],"span":[315,2,10]},{"path":[4,14,2,1,5],"span":[315,11,17]},{"path":[4,14,2,1,1],"span":[315,18,22]},{"path":[4,14,2,1,3],"span":[315,25,26]},{"path":[4,14,2,2],"span":[316,2,27]},{"path":[4,14,2,2,4],"span":[316,2,10]},{"path":[4,14,2,2,5],"span":[316,11,17]},{"path":[4,14,2,2,1],"span":[316,18,22]},{"path":[4,14,2,2,3],"span":[316,25,26]},{"path":[4,14,2,3],"span":[317,2,17]},{"path":[4,14,2,3,5],"span":[317,2,7]},{"path":[4,14,2,3,1],"span":[317,8,12]},{"path":[4,14,2,3,3],"span":[317,15,16]},{"path":[4,14,2,4],"span":[318,2,24]},{"path":[4,14,2,4,5],"span":[318,2,7]},{"path":[4,14,2,4,1],"span":[318,8,19]},{"path":[4,14,2,4,3],"span":[318,22,23]},{"path":[4,14,2,5],"span":[319,2,30],"trailingComments":" the specific slot number for this module in the rack\n"},{"path":[4,14,2,5,4],"span":[319,2,10]},{"path":[4,14,2,5,5],"span":[319,11,16]},{"path":[4,14,2,5,1],"span":[319,17,25]},{"path":[4,14,2,5,3],"span":[319,28,29]},{"path":[4,14,2,6],"span":[320,2,27],"trailingComments":" the specific slot width for this module in the rack\n"},{"path":[4,14,2,6,4],"span":[320,2,10]},{"path":[4,14,2,6,5],"span":[320,11,16]},{"path":[4,14,2,6,1],"span":[320,17,22]},{"path":[4,14,2,6,3],"span":[320,25,26]},{"path":[4,15],"span":[323,0,326,1]},{"path":[4,15,1],"span":[323,8,23]},{"path":[4,15,2,0],"span":[324,2,17]},{"path":[4,15,2,0,5],"span":[324,2,8]},{"path":[4,15,2,0,1],"span":[324,9,12]},{"path":[4,15,2,0,3],"span":[324,15,16]},{"path":[4,15,2,1],"span":[325,2,19]},{"path":[4,15,2,1,5],"span":[325,2,8]},{"path":[4,15,2,1,1],"span":[325,9,14]},{"path":[4,15,2,1,3],"span":[325,17,18]},{"path":[4,16],"span":[329,0,340,1],"leadingComments":" Information about the Scan config and last run of OT scan\n"},{"path":[4,16,1],"span":[329,8,18]},{"path":[4,16,2,0],"span":[330,2,37]},{"path":[4,16,2,0,4],"span":[330,2,10]},{"path":[4,16,2,0,5],"span":[330,11,17]},{"path":[4,16,2,0,1],"span":[330,18,32]},{"path":[4,16,2,0,3],"span":[330,35,36]},{"path":[4,16,2,1],"span":[331,2,39]},{"path":[4,16,2,1,4],"span":[331,2,10]},{"path":[4,16,2,1,5],"span":[331,11,17]},{"path":[4,16,2,1,1],"span":[331,18,34]},{"path":[4,16,2,1,3],"span":[331,37,38]},{"path":[4,16,2,2],"span":[332,2,32]},{"path":[4,16,2,2,4],"span":[332,2,10]},{"path":[4,16,2,2,5],"span":[332,11,17]},{"path":[4,16,2,2,1],"span":[332,18,27]},{"path":[4,16,2,2,3],"span":[332,30,31]},{"path":[4,16,2,3],"span":[333,2,34]},{"path":[4,16,2,3,4],"span":[333,2,10]},{"path":[4,16,2,3,5],"span":[333,11,17]},{"path":[4,16,2,3,1],"span":[333,18,29]},{"path":[4,16,2,3,3],"span":[333,32,33]},{"path":[4,16,2,4],"span":[334,2,34]},{"path":[4,16,2,4,4],"span":[334,2,10]},{"path":[4,16,2,4,5],"span":[334,11,17]},{"path":[4,16,2,4,1],"span":[334,18,29]},{"path":[4,16,2,4,3],"span":[334,32,33]},{"path":[4,16,2,5],"span":[335,2,36]},{"path":[4,16,2,5,4],"span":[335,2,10]},{"path":[4,16,2,5,5],"span":[335,11,17]},{"path":[4,16,2,5,1],"span":[335,18,31]},{"path":[4,16,2,5,3],"span":[335,34,35]},{"path":[4,16,2,6],"span":[336,2,26]},{"path":[4,16,2,6,4],"span":[336,2,10]},{"path":[4,16,2,6,5],"span":[336,11,16]},{"path":[4,16,2,6,1],"span":[336,17,21]},{"path":[4,16,2,6,3],"span":[336,24,25]},{"path":[4,16,2,7],"span":[337,2,39]},{"path":[4,16,2,7,4],"span":[337,2,10]},{"path":[4,16,2,7,5],"span":[337,11,17]},{"path":[4,16,2,7,1],"span":[337,18,34]},{"path":[4,16,2,7,3],"span":[337,37,38]},{"path":[4,16,2,8],"span":[338,2,52]},{"path":[4,16,2,8,4],"span":[338,2,10]},{"path":[4,16,2,8,6],"span":[338,11,36]},{"path":[4,16,2,8,1],"span":[338,37,47]},{"path":[4,16,2,8,3],"span":[338,50,51]},{"path":[4,16,2,9],"span":[339,2,52]},{"path":[4,16,2,9,4],"span":[339,2,10]},{"path":[4,16,2,9,6],"span":[339,11,36]},{"path":[4,16,2,9,1],"span":[339,37,46]},{"path":[4,16,2,9,3],"span":[339,49,51]},{"path":[4,17],"span":[343,0,347,1],"leadingComments":" Information about OT firmware history\n"},{"path":[4,17,1],"span":[343,8,25]},{"path":[4,17,2,0],"span":[344,2,22]},{"path":[4,17,2,0,5],"span":[344,2,8]},{"path":[4,17,2,0,1],"span":[344,9,17]},{"path":[4,17,2,0,3],"span":[344,20,21]},{"path":[4,17,2,1],"span":[345,2,37]},{"path":[4,17,2,1,6],"span":[345,2,27]},{"path":[4,17,2,1,1],"span":[345,28,32]},{"path":[4,17,2,1,3],"span":[345,35,36]},{"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,18],"span":[353,0,361,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,18,1],"span":[353,8,17]},{"path":[4,18,2,0],"span":[355,2,21],"leadingComments":" Lansweeper Asset Type. Full list available here: /lansweeperapis/packages/model/masterData/content/masterData.json\n"},{"path":[4,18,2,0,5],"span":[355,2,8]},{"path":[4,18,2,0,1],"span":[355,9,16]},{"path":[4,18,2,0,3],"span":[355,19,20]},{"path":[4,18,2,1],"span":[357,2,18],"leadingComments":" Lansweeper type ID\n"},{"path":[4,18,2,1,5],"span":[357,2,7]},{"path":[4,18,2,1,1],"span":[357,8,13]},{"path":[4,18,2,1,3],"span":[357,16,17]},{"path":[4,18,2,2],"span":[359,2,32],"leadingComments":" Fing Type\n"},{"path":[4,18,2,2,4],"span":[359,2,10]},{"path":[4,18,2,2,5],"span":[359,11,17]},{"path":[4,18,2,2,1],"span":[359,18,27]},{"path":[4,18,2,2,3],"span":[359,30,31]},{"path":[4,18,2,3],"span":[360,2,31],"trailingComments":" sub type for OT and CDK\n"},{"path":[4,18,2,3,4],"span":[360,2,10]},{"path":[4,18,2,3,5],"span":[360,11,17]},{"path":[4,18,2,3,1],"span":[360,18,26]},{"path":[4,18,2,3,3],"span":[360,29,30]},{"path":[4,19],"span":[368,0,376,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,19,1],"span":[368,8,18]},{"path":[4,19,2,0],"span":[369,2,23],"trailingComments":" source id, like installation id of IT\n"},{"path":[4,19,2,0,5],"span":[369,2,8]},{"path":[4,19,2,0,1],"span":[369,9,18]},{"path":[4,19,2,0,3],"span":[369,21,22]},{"path":[4,19,2,1],"span":[370,2,25],"trailingComments":" source type like e.g. IT\n"},{"path":[4,19,2,1,5],"span":[370,2,8]},{"path":[4,19,2,1,1],"span":[370,9,20]},{"path":[4,19,2,1,3],"span":[370,23,24]},{"path":[4,19,2,2],"span":[371,2,35],"trailingComments":" source agent name and version\n"},{"path":[4,19,2,2,4],"span":[371,2,10]},{"path":[4,19,2,2,5],"span":[371,11,17]},{"path":[4,19,2,2,1],"span":[371,18,30]},{"path":[4,19,2,2,3],"span":[371,33,34]},{"path":[4,19,2,3],"span":[372,2,34],"trailingComments":" source name\n"},{"path":[4,19,2,3,4],"span":[372,2,10]},{"path":[4,19,2,3,5],"span":[372,11,17]},{"path":[4,19,2,3,1],"span":[372,18,29]},{"path":[4,19,2,3,3],"span":[372,32,33]},{"path":[4,19,2,4],"span":[373,2,20],"trailingComments":" entity/asset raw id for source\n"},{"path":[4,19,2,4,5],"span":[373,2,8]},{"path":[4,19,2,4,1],"span":[373,9,15]},{"path":[4,19,2,4,3],"span":[373,18,19]},{"path":[4,19,2,5],"span":[374,2,44],"trailingComments":" later here we could also have a summary of errors, if needed to keep history\n"},{"path":[4,19,2,5,6],"span":[374,2,27]},{"path":[4,19,2,5,1],"span":[374,28,39]},{"path":[4,19,2,5,3],"span":[374,42,43]},{"path":[4,20],"span":[381,0,387,1],"leadingComments":"\n Scan errors.\n"},{"path":[4,20,1],"span":[381,8,17]},{"path":[4,20,2,0],"span":[382,2,21],"trailingComments":" name of section\n"},{"path":[4,20,2,0,5],"span":[382,2,8]},{"path":[4,20,2,0,1],"span":[382,9,16]},{"path":[4,20,2,0,3],"span":[382,19,20]},{"path":[4,20,2,1],"span":[383,2,19],"trailingComments":" error descr\n"},{"path":[4,20,2,1,5],"span":[383,2,8]},{"path":[4,20,2,1,1],"span":[383,9,14]},{"path":[4,20,2,1,3],"span":[383,17,18]},{"path":[4,20,2,2],"span":[384,2,29],"trailingComments":" e.g. \"WMI\"\n"},{"path":[4,20,2,2,4],"span":[384,2,10]},{"path":[4,20,2,2,5],"span":[384,11,17]},{"path":[4,20,2,2,1],"span":[384,18,24]},{"path":[4,20,2,2,3],"span":[384,27,28]},{"path":[4,20,2,3],"span":[385,2,51]},{"path":[4,20,2,3,4],"span":[385,2,10]},{"path":[4,20,2,3,6],"span":[385,11,36]},{"path":[4,20,2,3,1],"span":[385,37,46]},{"path":[4,20,2,3,3],"span":[385,49,50]},{"path":[4,20,2,4],"span":[386,2,30]},{"path":[4,20,2,4,4],"span":[386,2,10]},{"path":[4,20,2,4,5],"span":[386,11,16]},{"path":[4,20,2,4,1],"span":[386,17,25]},{"path":[4,20,2,4,3],"span":[386,28,29]},{"path":[4,21],"span":[392,0,409,1],"leadingComments":"\n Core Fields for all Assets.\n"},{"path":[4,21,1],"span":[392,8,18]},{"path":[4,21,2,0],"span":[393,2,21]},{"path":[4,21,2,0,6],"span":[393,2,11]},{"path":[4,21,2,0,1],"span":[393,12,16]},{"path":[4,21,2,0,3],"span":[393,19,20]},{"path":[4,21,2,1],"span":[394,2,18]},{"path":[4,21,2,1,5],"span":[394,2,8]},{"path":[4,21,2,1,1],"span":[394,9,13]},{"path":[4,21,2,1,3],"span":[394,16,17]},{"path":[4,21,2,2],"span":[395,2,29]},{"path":[4,21,2,2,4],"span":[395,2,10]},{"path":[4,21,2,2,5],"span":[395,11,17]},{"path":[4,21,2,2,1],"span":[395,18,24]},{"path":[4,21,2,2,3],"span":[395,27,28]},{"path":[4,21,2,3],"span":[396,2,33]},{"path":[4,21,2,3,4],"span":[396,2,10]},{"path":[4,21,2,3,5],"span":[396,11,17]},{"path":[4,21,2,3,1],"span":[396,18,28]},{"path":[4,21,2,3,3],"span":[396,31,32]},{"path":[4,21,2,4],"span":[397,2,29]},{"path":[4,21,2,4,4],"span":[397,2,10]},{"path":[4,21,2,4,5],"span":[397,11,17]},{"path":[4,21,2,4,1],"span":[397,18,24]},{"path":[4,21,2,4,3],"span":[397,27,28]},{"path":[4,21,2,5],"span":[398,2,26]},{"path":[4,21,2,5,4],"span":[398,2,10]},{"path":[4,21,2,5,5],"span":[398,11,17]},{"path":[4,21,2,5,1],"span":[398,18,21]},{"path":[4,21,2,5,3],"span":[398,24,25]},{"path":[4,21,2,6],"span":[399,2,33]},{"path":[4,21,2,6,4],"span":[399,2,10]},{"path":[4,21,2,6,5],"span":[399,11,17]},{"path":[4,21,2,6,1],"span":[399,18,28]},{"path":[4,21,2,6,3],"span":[399,31,32]},{"path":[4,21,2,7],"span":[400,2,32]},{"path":[4,21,2,7,4],"span":[400,2,10]},{"path":[4,21,2,7,5],"span":[400,11,17]},{"path":[4,21,2,7,1],"span":[400,18,27]},{"path":[4,21,2,7,3],"span":[400,30,31]},{"path":[4,21,2,8],"span":[401,2,27]},{"path":[4,21,2,8,4],"span":[401,2,10]},{"path":[4,21,2,8,5],"span":[401,11,17]},{"path":[4,21,2,8,1],"span":[401,18,22]},{"path":[4,21,2,8,3],"span":[401,25,26]},{"path":[4,21,2,9],"span":[408,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,21,2,9,5],"span":[408,2,7]},{"path":[4,21,2,9,1],"span":[408,8,18]},{"path":[4,21,2,9,3],"span":[408,21,23]},{"path":[4,22],"span":[411,0,416,1]},{"path":[4,22,1],"span":[411,8,16]},{"path":[4,22,2,0],"span":[412,4,25]},{"path":[4,22,2,0,5],"span":[412,4,10]},{"path":[4,22,2,0,1],"span":[412,11,20]},{"path":[4,22,2,0,3],"span":[412,23,24]},{"path":[4,22,2,1],"span":[413,4,34]},{"path":[4,22,2,1,4],"span":[413,4,12]},{"path":[4,22,2,1,5],"span":[413,13,19]},{"path":[4,22,2,1,1],"span":[413,20,29]},{"path":[4,22,2,1,3],"span":[413,32,33]},{"path":[4,22,2,2],"span":[414,4,28]},{"path":[4,22,2,2,4],"span":[414,4,12]},{"path":[4,22,2,2,5],"span":[414,13,19]},{"path":[4,22,2,2,1],"span":[414,20,23]},{"path":[4,22,2,2,3],"span":[414,26,27]},{"path":[4,22,2,3],"span":[415,4,28]},{"path":[4,22,2,3,4],"span":[415,4,12]},{"path":[4,22,2,3,5],"span":[415,13,19]},{"path":[4,22,2,3,1],"span":[415,20,23]},{"path":[4,22,2,3,3],"span":[415,26,27]},{"path":[4,23],"span":[421,0,448,1],"leadingComments":"\n User account: from Windows.WindowsUser and Unix.Users.\n"},{"path":[4,23,1],"span":[421,8,19]},{"path":[4,23,2,0],"span":[422,2,27],"trailingComments":" unix:user_name\n"},{"path":[4,23,2,0,4],"span":[422,2,10]},{"path":[4,23,2,0,5],"span":[422,11,17]},{"path":[4,23,2,0,1],"span":[422,18,22]},{"path":[4,23,2,0,3],"span":[422,25,26]},{"path":[4,23,2,1],"span":[423,2,29]},{"path":[4,23,2,1,4],"span":[423,2,10]},{"path":[4,23,2,1,5],"span":[423,11,17]},{"path":[4,23,2,1,1],"span":[423,18,24]},{"path":[4,23,2,1,3],"span":[423,27,28]},{"path":[4,23,2,2],"span":[424,2,30]},{"path":[4,23,2,2,4],"span":[424,2,10]},{"path":[4,23,2,2,5],"span":[424,11,17]},{"path":[4,23,2,2,1],"span":[424,18,25]},{"path":[4,23,2,2,3],"span":[424,28,29]},{"path":[4,23,2,3],"span":[425,2,34],"trailingComments":" unix:comment\n"},{"path":[4,23,2,3,4],"span":[425,2,10]},{"path":[4,23,2,3,5],"span":[425,11,17]},{"path":[4,23,2,3,1],"span":[425,18,29]},{"path":[4,23,2,3,3],"span":[425,32,33]},{"path":[4,23,2,4],"span":[426,2,32]},{"path":[4,23,2,4,4],"span":[426,2,10]},{"path":[4,23,2,4,5],"span":[426,11,17]},{"path":[4,23,2,4,1],"span":[426,18,27]},{"path":[4,23,2,4,3],"span":[426,30,31]},{"path":[4,23,2,5],"span":[428,2,40],"trailingComments":" unix:type\n"},{"path":[4,23,2,5,4],"span":[428,2,10]},{"path":[4,23,2,5,6],"span":[428,11,22]},{"path":[4,23,2,5,1],"span":[428,23,35]},{"path":[4,23,2,5,3],"span":[428,38,39]},{"path":[4,23,2,6],"span":[430,2,26]},{"path":[4,23,2,6,4],"span":[430,2,10]},{"path":[4,23,2,6,5],"span":[430,11,17]},{"path":[4,23,2,6,1],"span":[430,18,21]},{"path":[4,23,2,6,3],"span":[430,24,25]},{"path":[4,23,2,7],"span":[431,2,36]},{"path":[4,23,2,7,4],"span":[431,2,10]},{"path":[4,23,2,7,6],"span":[431,11,22]},{"path":[4,23,2,7,1],"span":[431,23,31]},{"path":[4,23,2,7,3],"span":[431,34,35]},{"path":[4,23,2,8],"span":[433,2,34]},{"path":[4,23,2,8,4],"span":[433,2,10]},{"path":[4,23,2,8,5],"span":[433,11,15]},{"path":[4,23,2,8,1],"span":[433,16,29]},{"path":[4,23,2,8,3],"span":[433,32,33]},{"path":[4,23,2,9],"span":[434,2,30]},{"path":[4,23,2,9,4],"span":[434,2,10]},{"path":[4,23,2,9,5],"span":[434,11,15]},{"path":[4,23,2,9,1],"span":[434,16,24]},{"path":[4,23,2,9,3],"span":[434,27,29]},{"path":[4,23,2,10],"span":[435,2,29]},{"path":[4,23,2,10,4],"span":[435,2,10]},{"path":[4,23,2,10,5],"span":[435,11,15]},{"path":[4,23,2,10,1],"span":[435,16,23]},{"path":[4,23,2,10,3],"span":[435,26,28]},{"path":[4,23,2,11],"span":[436,2,41]},{"path":[4,23,2,11,4],"span":[436,2,10]},{"path":[4,23,2,11,5],"span":[436,11,15]},{"path":[4,23,2,11,1],"span":[436,16,35]},{"path":[4,23,2,11,3],"span":[436,38,40]},{"path":[4,23,2,12],"span":[437,2,38]},{"path":[4,23,2,12,4],"span":[437,2,10]},{"path":[4,23,2,12,5],"span":[437,11,15]},{"path":[4,23,2,12,1],"span":[437,16,32]},{"path":[4,23,2,12,3],"span":[437,35,37]},{"path":[4,23,2,13],"span":[438,2,39]},{"path":[4,23,2,13,4],"span":[438,2,10]},{"path":[4,23,2,13,5],"span":[438,11,15]},{"path":[4,23,2,13,1],"span":[438,16,33]},{"path":[4,23,2,13,3],"span":[438,36,38]},{"path":[4,23,2,14],"span":[440,2,30]},{"path":[4,23,2,14,4],"span":[440,2,10]},{"path":[4,23,2,14,5],"span":[440,11,17]},{"path":[4,23,2,14,1],"span":[440,18,24]},{"path":[4,23,2,14,3],"span":[440,27,29]},{"path":[4,23,2,15],"span":[443,2,30],"leadingComments":" unix specific\n"},{"path":[4,23,2,15,4],"span":[443,2,10]},{"path":[4,23,2,15,5],"span":[443,11,16]},{"path":[4,23,2,15,1],"span":[443,17,24]},{"path":[4,23,2,15,3],"span":[443,27,29]},{"path":[4,23,2,16],"span":[444,2,31]},{"path":[4,23,2,16,4],"span":[444,2,10]},{"path":[4,23,2,16,5],"span":[444,11,16]},{"path":[4,23,2,16,1],"span":[444,17,25]},{"path":[4,23,2,16,3],"span":[444,28,30]},{"path":[4,23,2,17],"span":[446,2,38]},{"path":[4,23,2,17,4],"span":[446,2,10]},{"path":[4,23,2,17,5],"span":[446,11,17]},{"path":[4,23,2,17,1],"span":[446,18,32]},{"path":[4,23,2,17,3],"span":[446,35,37]},{"path":[4,23,2,18],"span":[447,2,35]},{"path":[4,23,2,18,4],"span":[447,2,10]},{"path":[4,23,2,18,5],"span":[447,11,17]},{"path":[4,23,2,18,1],"span":[447,18,29]},{"path":[4,23,2,18,3],"span":[447,32,34]},{"path":[4,24],"span":[454,0,466,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,24,1],"span":[454,8,17]},{"path":[4,24,2,0],"span":[455,2,27]},{"path":[4,24,2,0,4],"span":[455,2,10]},{"path":[4,24,2,0,5],"span":[455,11,17]},{"path":[4,24,2,0,1],"span":[455,18,22]},{"path":[4,24,2,0,3],"span":[455,25,26]},{"path":[4,24,2,1],"span":[456,2,30]},{"path":[4,24,2,1,4],"span":[456,2,10]},{"path":[4,24,2,1,5],"span":[456,11,17]},{"path":[4,24,2,1,1],"span":[456,18,25]},{"path":[4,24,2,1,3],"span":[456,28,29]},{"path":[4,24,2,2],"span":[457,2,34]},{"path":[4,24,2,2,4],"span":[457,2,10]},{"path":[4,24,2,2,5],"span":[457,11,17]},{"path":[4,24,2,2,1],"span":[457,18,29]},{"path":[4,24,2,2,3],"span":[457,32,33]},{"path":[4,24,2,3],"span":[458,2,29]},{"path":[4,24,2,3,4],"span":[458,2,10]},{"path":[4,24,2,3,5],"span":[458,11,17]},{"path":[4,24,2,3,1],"span":[458,18,24]},{"path":[4,24,2,3,3],"span":[458,27,28]},{"path":[4,24,2,4],"span":[460,2,26]},{"path":[4,24,2,4,4],"span":[460,2,10]},{"path":[4,24,2,4,5],"span":[460,11,17]},{"path":[4,24,2,4,1],"span":[460,18,21]},{"path":[4,24,2,4,3],"span":[460,24,25]},{"path":[4,24,2,5],"span":[461,2,34]},{"path":[4,24,2,5,4],"span":[461,2,10]},{"path":[4,24,2,5,5],"span":[461,11,15]},{"path":[4,24,2,5,1],"span":[461,16,29]},{"path":[4,24,2,5,3],"span":[461,32,33]},{"path":[4,24,2,6],"span":[464,2,30],"leadingComments":" unix specific\n"},{"path":[4,24,2,6,4],"span":[464,2,10]},{"path":[4,24,2,6,5],"span":[464,11,16]},{"path":[4,24,2,6,1],"span":[464,17,25]},{"path":[4,24,2,6,3],"span":[464,28,29]},{"path":[4,24,2,7],"span":[465,2,27]},{"path":[4,24,2,7,4],"span":[465,2,10]},{"path":[4,24,2,7,5],"span":[465,11,17]},{"path":[4,24,2,7,1],"span":[465,18,22]},{"path":[4,24,2,7,3],"span":[465,25,26]},{"path":[4,25],"span":[473,0,480,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,25,1],"span":[473,8,19]},{"path":[4,25,2,0],"span":[474,2,33]},{"path":[4,25,2,0,4],"span":[474,2,10]},{"path":[4,25,2,0,5],"span":[474,11,17]},{"path":[4,25,2,0,1],"span":[474,18,28]},{"path":[4,25,2,0,3],"span":[474,31,32]},{"path":[4,25,2,1],"span":[475,2,32]},{"path":[4,25,2,1,4],"span":[475,2,10]},{"path":[4,25,2,1,5],"span":[475,11,17]},{"path":[4,25,2,1,1],"span":[475,18,27]},{"path":[4,25,2,1,3],"span":[475,30,31]},{"path":[4,25,2,2],"span":[476,2,39]},{"path":[4,25,2,2,4],"span":[476,2,10]},{"path":[4,25,2,2,5],"span":[476,11,17]},{"path":[4,25,2,2,1],"span":[476,18,34]},{"path":[4,25,2,2,3],"span":[476,37,38]},{"path":[4,25,2,3],"span":[477,2,35]},{"path":[4,25,2,3,4],"span":[477,2,10]},{"path":[4,25,2,3,5],"span":[477,11,17]},{"path":[4,25,2,3,1],"span":[477,18,30]},{"path":[4,25,2,3,3],"span":[477,33,34]},{"path":[4,25,2,4],"span":[479,2,35]},{"path":[4,25,2,4,4],"span":[479,2,10]},{"path":[4,25,2,4,5],"span":[479,11,15]},{"path":[4,25,2,4,1],"span":[479,16,30]},{"path":[4,25,2,4,3],"span":[479,33,34]},{"path":[4,26],"span":[487,0,524,1],"leadingComments":"\n IE on Windows. Very specific.\n From sections: WindowsActiveX, WindowsInternetExplorerBarInfo,\n WindowsInternetExplorerBrowserObjectInfo, WindowsInternetExplorerExtensionInfo.\n"},{"path":[4,26,1],"span":[487,8,24]},{"path":[4,26,3,0],"span":[489,4,494,5],"leadingComments":" from WindowsActiveX\n"},{"path":[4,26,3,0,1],"span":[489,12,19]},{"path":[4,26,3,0,2,0],"span":[490,6,34]},{"path":[4,26,3,0,2,0,4],"span":[490,6,14]},{"path":[4,26,3,0,2,0,5],"span":[490,15,21]},{"path":[4,26,3,0,2,0,1],"span":[490,22,29]},{"path":[4,26,3,0,2,0,3],"span":[490,32,33]},{"path":[4,26,3,0,2,1],"span":[491,6,36]},{"path":[4,26,3,0,2,1,4],"span":[491,6,14]},{"path":[4,26,3,0,2,1,5],"span":[491,15,21]},{"path":[4,26,3,0,2,1,1],"span":[491,22,31]},{"path":[4,26,3,0,2,1,3],"span":[491,34,35]},{"path":[4,26,3,0,2,2],"span":[492,6,31]},{"path":[4,26,3,0,2,2,4],"span":[492,6,14]},{"path":[4,26,3,0,2,2,5],"span":[492,15,21]},{"path":[4,26,3,0,2,2,1],"span":[492,22,26]},{"path":[4,26,3,0,2,2,3],"span":[492,29,30]},{"path":[4,26,3,0,2,3],"span":[493,6,30]},{"path":[4,26,3,0,2,3,4],"span":[493,6,14]},{"path":[4,26,3,0,2,3,5],"span":[493,15,21]},{"path":[4,26,3,0,2,3,1],"span":[493,22,25]},{"path":[4,26,3,0,2,3,3],"span":[493,28,29]},{"path":[4,26,3,1],"span":[497,4,507,5],"leadingComments":" InternetExplorerExtensionInfo\n"},{"path":[4,26,3,1,1],"span":[497,12,21]},{"path":[4,26,3,1,2,0],"span":[498,6,34]},{"path":[4,26,3,1,2,0,4],"span":[498,6,14]},{"path":[4,26,3,1,2,0,5],"span":[498,15,21]},{"path":[4,26,3,1,2,0,1],"span":[498,22,29]},{"path":[4,26,3,1,2,0,3],"span":[498,32,33]},{"path":[4,26,3,1,2,1],"span":[499,6,38]},{"path":[4,26,3,1,2,1,4],"span":[499,6,14]},{"path":[4,26,3,1,2,1,5],"span":[499,15,21]},{"path":[4,26,3,1,2,1,1],"span":[499,22,33]},{"path":[4,26,3,1,2,1,3],"span":[499,36,37]},{"path":[4,26,3,1,2,2],"span":[500,6,33]},{"path":[4,26,3,1,2,2,4],"span":[500,6,14]},{"path":[4,26,3,1,2,2,5],"span":[500,15,21]},{"path":[4,26,3,1,2,2,1],"span":[500,22,28]},{"path":[4,26,3,1,2,2,3],"span":[500,31,32]},{"path":[4,26,3,1,2,3],"span":[501,6,42]},{"path":[4,26,3,1,2,3,4],"span":[501,6,14]},{"path":[4,26,3,1,2,3,5],"span":[501,15,21]},{"path":[4,26,3,1,2,3,1],"span":[501,22,37]},{"path":[4,26,3,1,2,3,3],"span":[501,40,41]},{"path":[4,26,3,1,2,4],"span":[502,6,31]},{"path":[4,26,3,1,2,4,4],"span":[502,6,14]},{"path":[4,26,3,1,2,4,5],"span":[502,15,21]},{"path":[4,26,3,1,2,4,1],"span":[502,22,26]},{"path":[4,26,3,1,2,4,3],"span":[502,29,30]},{"path":[4,26,3,1,2,5],"span":[503,6,35]},{"path":[4,26,3,1,2,5,4],"span":[503,6,14]},{"path":[4,26,3,1,2,5,5],"span":[503,15,21]},{"path":[4,26,3,1,2,5,1],"span":[503,22,30]},{"path":[4,26,3,1,2,5,3],"span":[503,33,34]},{"path":[4,26,3,1,2,6],"span":[504,6,31]},{"path":[4,26,3,1,2,6,4],"span":[504,6,14]},{"path":[4,26,3,1,2,6,5],"span":[504,15,21]},{"path":[4,26,3,1,2,6,1],"span":[504,22,26]},{"path":[4,26,3,1,2,6,3],"span":[504,29,30]},{"path":[4,26,3,1,2,7],"span":[505,6,36]},{"path":[4,26,3,1,2,7,4],"span":[505,6,14]},{"path":[4,26,3,1,2,7,5],"span":[505,15,21]},{"path":[4,26,3,1,2,7,1],"span":[505,22,31]},{"path":[4,26,3,1,2,7,3],"span":[505,34,35]},{"path":[4,26,3,1,2,8],"span":[506,6,34]},{"path":[4,26,3,1,2,8,4],"span":[506,6,14]},{"path":[4,26,3,1,2,8,5],"span":[506,15,21]},{"path":[4,26,3,1,2,8,1],"span":[506,22,29]},{"path":[4,26,3,1,2,8,3],"span":[506,32,33]},{"path":[4,26,3,2],"span":[510,2,512,3],"leadingComments":" from InternetExplorerBrowserObjectInfo\n"},{"path":[4,26,3,2,1],"span":[510,10,23]},{"path":[4,26,3,2,2,0],"span":[511,4,23]},{"path":[4,26,3,2,2,0,5],"span":[511,4,10]},{"path":[4,26,3,2,2,0,1],"span":[511,11,18]},{"path":[4,26,3,2,2,0,3],"span":[511,21,22]},{"path":[4,26,3,3],"span":[515,2,517,3],"leadingComments":" from WindowsInternetExplorerBarInfo\n"},{"path":[4,26,3,3,1],"span":[515,10,17]},{"path":[4,26,3,3,2,0],"span":[516,4,23]},{"path":[4,26,3,3,2,0,5],"span":[516,4,10]},{"path":[4,26,3,3,2,0,1],"span":[516,11,18]},{"path":[4,26,3,3,2,0,3],"span":[516,21,22]},{"path":[4,26,2,0],"span":[520,2,32]},{"path":[4,26,2,0,4],"span":[520,2,10]},{"path":[4,26,2,0,6],"span":[520,11,18]},{"path":[4,26,2,0,1],"span":[520,19,27]},{"path":[4,26,2,0,3],"span":[520,30,31]},{"path":[4,26,2,1],"span":[521,2,33]},{"path":[4,26,2,1,4],"span":[521,2,10]},{"path":[4,26,2,1,6],"span":[521,11,24]},{"path":[4,26,2,1,1],"span":[521,25,28]},{"path":[4,26,2,1,3],"span":[521,31,32]},{"path":[4,26,2,2],"span":[522,2,44]},{"path":[4,26,2,2,4],"span":[522,2,10]},{"path":[4,26,2,2,6],"span":[522,11,24]},{"path":[4,26,2,2,1],"span":[522,25,39]},{"path":[4,26,2,2,3],"span":[522,42,43]},{"path":[4,26,2,3],"span":[523,2,35]},{"path":[4,26,2,3,4],"span":[523,2,10]},{"path":[4,26,2,3,6],"span":[523,11,20]},{"path":[4,26,2,3,1],"span":[523,21,30]},{"path":[4,26,2,3,3],"span":[523,33,34]},{"path":[4,27],"span":[529,0,553,1],"leadingComments":"\n SQL Server extended information on Windows Computers.\n"},{"path":[4,27,1],"span":[529,8,24]},{"path":[4,27,4,0],"span":[530,2,534,3]},{"path":[4,27,4,0,1],"span":[530,7,28]},{"path":[4,27,4,0,2,0],"span":[531,4,21]},{"path":[4,27,4,0,2,0,1],"span":[531,4,16]},{"path":[4,27,4,0,2,0,2],"span":[531,19,20]},{"path":[4,27,4,0,2,1],"span":[532,4,16]},{"path":[4,27,4,0,2,1,1],"span":[532,4,11]},{"path":[4,27,4,0,2,1,2],"span":[532,14,15]},{"path":[4,27,4,0,2,2],"span":[533,4,14]},{"path":[4,27,4,0,2,2,1],"span":[533,4,9]},{"path":[4,27,4,0,2,2,2],"span":[533,12,13]},{"path":[4,27,2,0],"span":[536,4,26]},{"path":[4,27,2,0,5],"span":[536,4,8]},{"path":[4,27,2,0,1],"span":[536,9,21]},{"path":[4,27,2,0,3],"span":[536,24,25]},{"path":[4,27,2,1],"span":[537,4,54]},{"path":[4,27,2,1,6],"span":[537,4,25]},{"path":[4,27,2,1,1],"span":[537,26,49]},{"path":[4,27,2,1,3],"span":[537,52,53]},{"path":[4,27,2,2],"span":[538,4,45]},{"path":[4,27,2,2,4],"span":[538,4,12]},{"path":[4,27,2,2,6],"span":[538,13,30]},{"path":[4,27,2,2,1],"span":[538,31,40]},{"path":[4,27,2,2,3],"span":[538,43,44]},{"path":[4,27,2,3],"span":[539,4,43]},{"path":[4,27,2,3,4],"span":[539,4,12]},{"path":[4,27,2,3,6],"span":[539,13,29]},{"path":[4,27,2,3,1],"span":[539,30,38]},{"path":[4,27,2,3,3],"span":[539,41,42]},{"path":[4,27,2,4],"span":[540,4,28]},{"path":[4,27,2,4,5],"span":[540,4,10]},{"path":[4,27,2,4,1],"span":[540,11,23]},{"path":[4,27,2,4,3],"span":[540,26,27]},{"path":[4,27,2,5],"span":[541,4,31]},{"path":[4,27,2,5,5],"span":[541,4,10]},{"path":[4,27,2,5,1],"span":[541,11,26]},{"path":[4,27,2,5,3],"span":[541,29,30]},{"path":[4,27,2,6],"span":[542,4,23]},{"path":[4,27,2,6,5],"span":[542,4,10]},{"path":[4,27,2,6,1],"span":[542,11,18]},{"path":[4,27,2,6,3],"span":[542,21,22]},{"path":[4,27,2,7],"span":[543,4,32]},{"path":[4,27,2,7,4],"span":[543,4,12]},{"path":[4,27,2,7,5],"span":[543,13,18]},{"path":[4,27,2,7,1],"span":[543,19,27]},{"path":[4,27,2,7,3],"span":[543,30,31]},{"path":[4,27,2,8],"span":[544,4,33]},{"path":[4,27,2,8,4],"span":[544,4,12]},{"path":[4,27,2,8,5],"span":[544,13,19]},{"path":[4,27,2,8,1],"span":[544,20,28]},{"path":[4,27,2,8,3],"span":[544,31,32]},{"path":[4,27,2,9],"span":[545,4,39]},{"path":[4,27,2,9,4],"span":[545,4,12]},{"path":[4,27,2,9,6],"span":[545,13,24]},{"path":[4,27,2,9,1],"span":[545,25,33]},{"path":[4,27,2,9,3],"span":[545,36,38]},{"path":[4,27,2,10],"span":[546,4,32]},{"path":[4,27,2,10,4],"span":[546,4,12]},{"path":[4,27,2,10,5],"span":[546,13,17]},{"path":[4,27,2,10,1],"span":[546,18,26]},{"path":[4,27,2,10,3],"span":[546,29,31]},{"path":[4,27,2,11],"span":[547,4,38]},{"path":[4,27,2,11,4],"span":[547,4,12]},{"path":[4,27,2,11,5],"span":[547,13,19]},{"path":[4,27,2,11,1],"span":[547,20,32]},{"path":[4,27,2,11,3],"span":[547,35,37]},{"path":[4,27,2,12],"span":[548,4,38]},{"path":[4,27,2,12,4],"span":[548,4,12]},{"path":[4,27,2,12,5],"span":[548,13,19]},{"path":[4,27,2,12,1],"span":[548,20,32]},{"path":[4,27,2,12,3],"span":[548,35,37]},{"path":[4,27,2,13],"span":[549,4,35]},{"path":[4,27,2,13,4],"span":[549,4,12]},{"path":[4,27,2,13,5],"span":[549,13,19]},{"path":[4,27,2,13,1],"span":[549,20,29]},{"path":[4,27,2,13,3],"span":[549,32,34]},{"path":[4,27,2,14],"span":[550,4,43]},{"path":[4,27,2,14,4],"span":[550,4,12]},{"path":[4,27,2,14,6],"span":[550,13,29]},{"path":[4,27,2,14,1],"span":[550,30,37]},{"path":[4,27,2,14,3],"span":[550,40,42]},{"path":[4,27,2,15],"span":[551,4,28]},{"path":[4,27,2,15,5],"span":[551,4,10]},{"path":[4,27,2,15,1],"span":[551,11,22]},{"path":[4,27,2,15,3],"span":[551,25,27]},{"path":[4,27,2,16],"span":[552,4,39]},{"path":[4,27,2,16,4],"span":[552,4,12]},{"path":[4,27,2,16,5],"span":[552,13,19]},{"path":[4,27,2,16,1],"span":[552,20,33]},{"path":[4,27,2,16,3],"span":[552,36,38]},{"path":[4,28],"span":[556,0,561,1]},{"path":[4,28,1],"span":[556,8,25]},{"path":[4,28,2,0],"span":[557,2,40]},{"path":[4,28,2,0,4],"span":[557,2,10]},{"path":[4,28,2,0,5],"span":[557,11,16]},{"path":[4,28,2,0,1],"span":[557,17,35]},{"path":[4,28,2,0,3],"span":[557,38,39]},{"path":[4,28,2,1],"span":[558,2,39]},{"path":[4,28,2,1,4],"span":[558,2,10]},{"path":[4,28,2,1,5],"span":[558,11,16]},{"path":[4,28,2,1,1],"span":[558,17,34]},{"path":[4,28,2,1,3],"span":[558,37,38]},{"path":[4,28,2,2],"span":[559,2,44]},{"path":[4,28,2,2,4],"span":[559,2,10]},{"path":[4,28,2,2,5],"span":[559,11,16]},{"path":[4,28,2,2,1],"span":[559,17,39]},{"path":[4,28,2,2,3],"span":[559,42,43]},{"path":[4,28,2,3],"span":[560,2,27]},{"path":[4,28,2,3,4],"span":[560,2,10]},{"path":[4,28,2,3,5],"span":[560,11,17]},{"path":[4,28,2,3,1],"span":[560,18,22]},{"path":[4,28,2,3,3],"span":[560,25,26]},{"path":[4,29],"span":[563,0,587,1]},{"path":[4,29,1],"span":[563,8,24]},{"path":[4,29,4,0],"span":[564,2,573,3]},{"path":[4,29,4,0,1],"span":[564,7,19]},{"path":[4,29,4,0,2,0],"span":[565,4,25]},{"path":[4,29,4,0,2,0,1],"span":[565,4,20]},{"path":[4,29,4,0,2,0,2],"span":[565,23,24]},{"path":[4,29,4,0,2,1],"span":[566,4,16]},{"path":[4,29,4,0,2,1,1],"span":[566,4,11]},{"path":[4,29,4,0,2,1,2],"span":[566,14,15]},{"path":[4,29,4,0,2,2],"span":[567,4,22]},{"path":[4,29,4,0,2,2,1],"span":[567,4,17]},{"path":[4,29,4,0,2,2,2],"span":[567,20,21]},{"path":[4,29,4,0,2,3],"span":[568,4,21]},{"path":[4,29,4,0,2,3,1],"span":[568,4,16]},{"path":[4,29,4,0,2,3,2],"span":[568,19,20]},{"path":[4,29,4,0,2,4],"span":[569,4,16]},{"path":[4,29,4,0,2,4,1],"span":[569,4,11]},{"path":[4,29,4,0,2,4,2],"span":[569,14,15]},{"path":[4,29,4,0,2,5],"span":[570,4,25]},{"path":[4,29,4,0,2,5,1],"span":[570,4,20]},{"path":[4,29,4,0,2,5,2],"span":[570,23,24]},{"path":[4,29,4,0,2,6],"span":[571,4,22]},{"path":[4,29,4,0,2,6,1],"span":[571,4,17]},{"path":[4,29,4,0,2,6,2],"span":[571,20,21]},{"path":[4,29,4,0,2,7],"span":[572,4,15]},{"path":[4,29,4,0,2,7,1],"span":[572,4,10]},{"path":[4,29,4,0,2,7,2],"span":[572,13,14]},{"path":[4,29,4,1],"span":[575,2,581,3]},{"path":[4,29,4,1,1],"span":[575,7,25]},{"path":[4,29,4,1,2,0],"span":[576,4,32]},{"path":[4,29,4,1,2,0,1],"span":[576,4,27]},{"path":[4,29,4,1,2,0,2],"span":[576,30,31]},{"path":[4,29,4,1,2,1],"span":[577,4,27]},{"path":[4,29,4,1,2,1,1],"span":[577,4,22]},{"path":[4,29,4,1,2,1,2],"span":[577,25,26]},{"path":[4,29,4,1,2,2],"span":[578,4,18]},{"path":[4,29,4,1,2,2,1],"span":[578,4,13]},{"path":[4,29,4,1,2,2,2],"span":[578,16,17]},{"path":[4,29,4,1,2,3],"span":[579,4,15]},{"path":[4,29,4,1,2,3,1],"span":[579,4,10]},{"path":[4,29,4,1,2,3,2],"span":[579,13,14]},{"path":[4,29,4,1,2,4],"span":[580,4,17]},{"path":[4,29,4,1,2,4,1],"span":[580,4,12]},{"path":[4,29,4,1,2,4,2],"span":[580,15,16]},{"path":[4,29,2,0],"span":[583,2,34]},{"path":[4,29,2,0,4],"span":[583,2,10]},{"path":[4,29,2,0,6],"span":[583,11,23]},{"path":[4,29,2,0,1],"span":[583,24,29]},{"path":[4,29,2,0,3],"span":[583,32,33]},{"path":[4,29,2,1],"span":[584,2,47]},{"path":[4,29,2,1,4],"span":[584,2,10]},{"path":[4,29,2,1,6],"span":[584,11,29]},{"path":[4,29,2,1,1],"span":[584,30,42]},{"path":[4,29,2,1,3],"span":[584,45,46]},{"path":[4,29,2,2],"span":[585,2,27]},{"path":[4,29,2,2,4],"span":[585,2,10]},{"path":[4,29,2,2,5],"span":[585,11,17]},{"path":[4,29,2,2,1],"span":[585,18,22]},{"path":[4,29,2,2,3],"span":[585,25,26]},{"path":[4,29,2,3],"span":[586,2,34]},{"path":[4,29,2,3,4],"span":[586,2,10]},{"path":[4,29,2,3,5],"span":[586,11,17]},{"path":[4,29,2,3,1],"span":[586,18,29]},{"path":[4,29,2,3,3],"span":[586,32,33]},{"path":[4,30],"span":[589,0,592,1]},{"path":[4,30,1],"span":[589,8,24]},{"path":[4,30,2,0],"span":[590,2,27]},{"path":[4,30,2,0,4],"span":[590,2,10]},{"path":[4,30,2,0,5],"span":[590,11,17]},{"path":[4,30,2,0,1],"span":[590,18,22]},{"path":[4,30,2,0,3],"span":[590,25,26]},{"path":[4,30,2,1],"span":[591,2,50]},{"path":[4,30,2,1,4],"span":[591,2,10]},{"path":[4,30,2,1,6],"span":[591,11,31]},{"path":[4,30,2,1,1],"span":[591,32,45]},{"path":[4,30,2,1,3],"span":[591,48,49]},{"path":[4,31],"span":[594,0,596,1]},{"path":[4,31,1],"span":[594,8,28]},{"path":[4,31,2,0],"span":[595,2,27]},{"path":[4,31,2,0,4],"span":[595,2,10]},{"path":[4,31,2,0,5],"span":[595,11,17]},{"path":[4,31,2,0,1],"span":[595,18,22]},{"path":[4,31,2,0,3],"span":[595,25,26]},{"path":[4,32],"span":[602,0,636,1],"leadingComments":"\n General section for any HW, normalized and with raw data.\n"},{"path":[4,32,1],"span":[602,8,20]},{"path":[4,32,2,0],"span":[603,2,29]},{"path":[4,32,2,0,4],"span":[603,2,10]},{"path":[4,32,2,0,5],"span":[603,11,16]},{"path":[4,32,2,0,1],"span":[603,17,24]},{"path":[4,32,2,0,3],"span":[603,27,28]},{"path":[4,32,2,1],"span":[606,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,32,2,1,4],"span":[606,2,10]},{"path":[4,32,2,1,5],"span":[606,11,16]},{"path":[4,32,2,1,1],"span":[606,17,24]},{"path":[4,32,2,1,3],"span":[606,27,28]},{"path":[4,32,2,2],"span":[609,2,30],"leadingComments":" catalog id of: CatalogModel\n"},{"path":[4,32,2,2,4],"span":[609,2,10]},{"path":[4,32,2,2,5],"span":[609,11,16]},{"path":[4,32,2,2,1],"span":[609,17,25]},{"path":[4,32,2,2,3],"span":[609,28,29]},{"path":[4,32,2,3],"span":[612,2,31],"leadingComments":" catalog id of: CatalogModel\n"},{"path":[4,32,2,3,4],"span":[612,2,10]},{"path":[4,32,2,3,5],"span":[612,11,16]},{"path":[4,32,2,3,1],"span":[612,17,26]},{"path":[4,32,2,3,3],"span":[612,29,30]},{"path":[4,32,2,4],"span":[614,2,30]},{"path":[4,32,2,4,4],"span":[614,2,10]},{"path":[4,32,2,4,5],"span":[614,11,15]},{"path":[4,32,2,4,1],"span":[614,16,25]},{"path":[4,32,2,4,3],"span":[614,28,29]},{"path":[4,32,2,5],"span":[615,2,29]},{"path":[4,32,2,5,4],"span":[615,2,10]},{"path":[4,32,2,5,5],"span":[615,11,17]},{"path":[4,32,2,5,1],"span":[615,18,24]},{"path":[4,32,2,5,3],"span":[615,27,28]},{"path":[4,32,2,6],"span":[617,2,33],"trailingComments":" e.g.: \"SMART_HOME\"\n"},{"path":[4,32,2,6,4],"span":[617,2,10]},{"path":[4,32,2,6,5],"span":[617,11,17]},{"path":[4,32,2,6,1],"span":[617,18,27]},{"path":[4,32,2,6,3],"span":[617,30,32]},{"path":[4,32,2,7],"span":[618,2,36],"trailingComments":" e.g.: \"Smart Device\"\n"},{"path":[4,32,2,7,4],"span":[618,2,10]},{"path":[4,32,2,7,5],"span":[618,11,17]},{"path":[4,32,2,7,1],"span":[618,18,30]},{"path":[4,32,2,7,3],"span":[618,33,35]},{"path":[4,32,2,8],"span":[619,2,34],"trailingComments":" e.g.: \"Smart Home\"\n"},{"path":[4,32,2,8,4],"span":[619,2,10]},{"path":[4,32,2,8,5],"span":[619,11,17]},{"path":[4,32,2,8,1],"span":[619,18,28]},{"path":[4,32,2,8,3],"span":[619,31,33]},{"path":[4,32,2,9],"span":[621,2,33]},{"path":[4,32,2,9,4],"span":[621,2,10]},{"path":[4,32,2,9,5],"span":[621,11,17]},{"path":[4,32,2,9,1],"span":[621,18,27]},{"path":[4,32,2,9,3],"span":[621,30,32]},{"path":[4,32,2,10],"span":[622,2,34]},{"path":[4,32,2,10,4],"span":[622,2,10]},{"path":[4,32,2,10,5],"span":[622,11,17]},{"path":[4,32,2,10,1],"span":[622,18,28]},{"path":[4,32,2,10,3],"span":[622,31,33]},{"path":[4,32,2,11],"span":[623,2,35]},{"path":[4,32,2,11,4],"span":[623,2,10]},{"path":[4,32,2,11,5],"span":[623,11,17]},{"path":[4,32,2,11,1],"span":[623,18,29]},{"path":[4,32,2,11,3],"span":[623,32,34]},{"path":[4,32,2,12],"span":[625,2,27]},{"path":[4,32,2,12,4],"span":[625,2,10]},{"path":[4,32,2,12,5],"span":[625,11,17]},{"path":[4,32,2,12,1],"span":[625,18,21]},{"path":[4,32,2,12,3],"span":[625,24,26]},{"path":[4,32,2,13],"span":[626,2,27]},{"path":[4,32,2,13,4],"span":[626,2,10]},{"path":[4,32,2,13,5],"span":[626,11,16]},{"path":[4,32,2,13,1],"span":[626,17,21]},{"path":[4,32,2,13,3],"span":[626,24,26]},{"path":[4,32,2,14],"span":[628,2,38]},{"path":[4,32,2,14,4],"span":[628,2,10]},{"path":[4,32,2,14,6],"span":[628,11,27]},{"path":[4,32,2,14,1],"span":[628,28,32]},{"path":[4,32,2,14,3],"span":[628,35,37]},{"path":[4,32,2,15],"span":[631,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,32,2,15,4],"span":[631,2,10]},{"path":[4,32,2,15,6],"span":[631,11,23]},{"path":[4,32,2,15,1],"span":[631,24,37]},{"path":[4,32,2,15,3],"span":[631,40,42]},{"path":[4,32,2,16],"span":[633,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,32,2,16,4],"span":[633,2,10]},{"path":[4,32,2,16,6],"span":[633,11,23]},{"path":[4,32,2,16,1],"span":[633,24,37]},{"path":[4,32,2,16,3],"span":[633,40,42]},{"path":[4,32,2,17],"span":[635,2,44],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,32,2,17,4],"span":[635,2,10]},{"path":[4,32,2,17,6],"span":[635,11,23]},{"path":[4,32,2,17,1],"span":[635,24,38]},{"path":[4,32,2,17,3],"span":[635,41,43]},{"path":[4,33],"span":[638,0,649,1]},{"path":[4,33,1],"span":[638,8,24]},{"path":[4,33,2,0],"span":[639,2,35]},{"path":[4,33,2,0,4],"span":[639,2,10]},{"path":[4,33,2,0,5],"span":[639,11,17]},{"path":[4,33,2,0,1],"span":[639,18,30]},{"path":[4,33,2,0,3],"span":[639,33,34]},{"path":[4,33,2,1],"span":[640,2,28]},{"path":[4,33,2,1,4],"span":[640,2,10]},{"path":[4,33,2,1,5],"span":[640,11,17]},{"path":[4,33,2,1,1],"span":[640,18,23]},{"path":[4,33,2,1,3],"span":[640,26,27]},{"path":[4,33,2,2],"span":[641,2,35]},{"path":[4,33,2,2,4],"span":[641,2,10]},{"path":[4,33,2,2,5],"span":[641,11,17]},{"path":[4,33,2,2,1],"span":[641,18,30]},{"path":[4,33,2,2,3],"span":[641,33,34]},{"path":[4,33,2,3],"span":[642,2,36]},{"path":[4,33,2,3,4],"span":[642,2,10]},{"path":[4,33,2,3,5],"span":[642,11,17]},{"path":[4,33,2,3,1],"span":[642,18,31]},{"path":[4,33,2,3,3],"span":[642,34,35]},{"path":[4,33,2,4],"span":[643,2,33]},{"path":[4,33,2,4,4],"span":[643,2,10]},{"path":[4,33,2,4,5],"span":[643,11,17]},{"path":[4,33,2,4,1],"span":[643,18,28]},{"path":[4,33,2,4,3],"span":[643,31,32]},{"path":[4,33,2,5],"span":[644,2,29]},{"path":[4,33,2,5,4],"span":[644,2,10]},{"path":[4,33,2,5,5],"span":[644,11,16]},{"path":[4,33,2,5,1],"span":[644,18,24]},{"path":[4,33,2,5,3],"span":[644,27,28]},{"path":[4,33,2,6],"span":[645,2,32],"trailingComments":" mac\n"},{"path":[4,33,2,6,4],"span":[645,2,10]},{"path":[4,33,2,6,5],"span":[645,11,17]},{"path":[4,33,2,6,1],"span":[645,18,27]},{"path":[4,33,2,6,3],"span":[645,30,31]},{"path":[4,33,2,7],"span":[646,2,39],"trailingComments":" mac\n"},{"path":[4,33,2,7,4],"span":[646,2,10]},{"path":[4,33,2,7,5],"span":[646,11,17]},{"path":[4,33,2,7,1],"span":[646,18,34]},{"path":[4,33,2,7,3],"span":[646,37,38]},{"path":[4,33,2,8],"span":[647,2,41],"trailingComments":" mac\n"},{"path":[4,33,2,8,4],"span":[647,2,10]},{"path":[4,33,2,8,5],"span":[647,11,17]},{"path":[4,33,2,8,1],"span":[647,18,36]},{"path":[4,33,2,8,3],"span":[647,39,40]},{"path":[4,34],"span":[653,0,676,1]},{"path":[4,34,1],"span":[653,8,23]},{"path":[4,34,2,0],"span":[655,2,24],"leadingComments":" catalog id of: CatalogOs\n"},{"path":[4,34,2,0,4],"span":[655,2,10]},{"path":[4,34,2,0,5],"span":[655,11,16]},{"path":[4,34,2,0,1],"span":[655,17,19]},{"path":[4,34,2,0,3],"span":[655,22,23]},{"path":[4,34,2,1],"span":[658,2,30],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,34,2,1,4],"span":[658,2,10]},{"path":[4,34,2,1,5],"span":[658,11,16]},{"path":[4,34,2,1,1],"span":[658,17,24]},{"path":[4,34,2,1,3],"span":[658,27,29]},{"path":[4,34,2,2],"span":[660,2,27]},{"path":[4,34,2,2,4],"span":[660,2,10]},{"path":[4,34,2,2,5],"span":[660,11,17]},{"path":[4,34,2,2,1],"span":[660,18,22]},{"path":[4,34,2,2,3],"span":[660,25,26]},{"path":[4,34,2,3],"span":[661,2,30]},{"path":[4,34,2,3,4],"span":[661,2,10]},{"path":[4,34,2,3,5],"span":[661,11,17]},{"path":[4,34,2,3,1],"span":[661,18,25]},{"path":[4,34,2,3,3],"span":[661,28,29]},{"path":[4,34,2,4],"span":[662,2,28]},{"path":[4,34,2,4,4],"span":[662,2,10]},{"path":[4,34,2,4,5],"span":[662,11,17]},{"path":[4,34,2,4,1],"span":[662,18,23]},{"path":[4,34,2,4,3],"span":[662,26,27]},{"path":[4,34,2,5],"span":[664,2,33]},{"path":[4,34,2,5,4],"span":[664,2,10]},{"path":[4,34,2,5,5],"span":[664,11,17]},{"path":[4,34,2,5,1],"span":[664,18,28]},{"path":[4,34,2,5,3],"span":[664,31,32]},{"path":[4,34,2,6],"span":[666,2,26]},{"path":[4,34,2,6,4],"span":[666,2,10]},{"path":[4,34,2,6,5],"span":[666,11,17]},{"path":[4,34,2,6,1],"span":[666,18,21]},{"path":[4,34,2,6,3],"span":[666,24,25]},{"path":[4,34,2,7],"span":[667,2,29]},{"path":[4,34,2,7,4],"span":[667,2,10]},{"path":[4,34,2,7,5],"span":[667,11,17]},{"path":[4,34,2,7,1],"span":[667,18,24]},{"path":[4,34,2,7,3],"span":[667,27,28]},{"path":[4,34,2,8],"span":[669,2,26]},{"path":[4,34,2,8,4],"span":[669,2,10]},{"path":[4,34,2,8,5],"span":[669,11,16]},{"path":[4,34,2,8,1],"span":[669,17,21]},{"path":[4,34,2,8,3],"span":[669,24,25]},{"path":[4,34,8,0],"span":[671,2,675,3]},{"path":[4,34,8,0,1],"span":[671,8,12]},{"path":[4,34,2,9],"span":[672,4,44]},{"path":[4,34,2,9,6],"span":[672,4,30]},{"path":[4,34,2,9,1],"span":[672,31,38]},{"path":[4,34,2,9,3],"span":[672,41,43]},{"path":[4,34,2,10],"span":[673,4,36]},{"path":[4,34,2,10,6],"span":[673,4,26]},{"path":[4,34,2,10,1],"span":[673,27,30]},{"path":[4,34,2,10,3],"span":[673,33,35]},{"path":[4,34,2,11],"span":[674,4,40]},{"path":[4,34,2,11,6],"span":[674,4,28]},{"path":[4,34,2,11,1],"span":[674,29,34]},{"path":[4,34,2,11,3],"span":[674,37,39]},{"path":[4,35],"span":[678,0,689,1]},{"path":[4,35,1],"span":[678,8,30]},{"path":[4,35,2,0],"span":[679,2,37]},{"path":[4,35,2,0,4],"span":[679,2,10]},{"path":[4,35,2,0,5],"span":[679,11,17]},{"path":[4,35,2,0,1],"span":[679,18,32]},{"path":[4,35,2,0,3],"span":[679,35,36]},{"path":[4,35,2,1],"span":[680,2,37]},{"path":[4,35,2,1,4],"span":[680,2,10]},{"path":[4,35,2,1,5],"span":[680,11,17]},{"path":[4,35,2,1,1],"span":[680,18,32]},{"path":[4,35,2,1,3],"span":[680,35,36]},{"path":[4,35,2,2],"span":[681,2,34]},{"path":[4,35,2,2,4],"span":[681,2,10]},{"path":[4,35,2,2,5],"span":[681,11,17]},{"path":[4,35,2,2,1],"span":[681,18,29]},{"path":[4,35,2,2,3],"span":[681,32,33]},{"path":[4,35,2,3],"span":[682,2,32]},{"path":[4,35,2,3,4],"span":[682,2,10]},{"path":[4,35,2,3,5],"span":[682,11,17]},{"path":[4,35,2,3,1],"span":[682,18,27]},{"path":[4,35,2,3,3],"span":[682,30,31]},{"path":[4,35,2,4],"span":[683,2,36]},{"path":[4,35,2,4,4],"span":[683,2,10]},{"path":[4,35,2,4,5],"span":[683,11,17]},{"path":[4,35,2,4,1],"span":[683,18,31]},{"path":[4,35,2,4,3],"span":[683,34,35]},{"path":[4,35,2,5],"span":[684,2,32]},{"path":[4,35,2,5,4],"span":[684,2,10]},{"path":[4,35,2,5,5],"span":[684,11,17]},{"path":[4,35,2,5,1],"span":[684,18,27]},{"path":[4,35,2,5,3],"span":[684,30,31]},{"path":[4,35,2,6],"span":[685,2,30]},{"path":[4,35,2,6,4],"span":[685,2,10]},{"path":[4,35,2,6,5],"span":[685,11,17]},{"path":[4,35,2,6,1],"span":[685,18,25]},{"path":[4,35,2,6,3],"span":[685,28,29]},{"path":[4,35,2,7],"span":[686,2,44]},{"path":[4,35,2,7,4],"span":[686,2,10]},{"path":[4,35,2,7,5],"span":[686,11,17]},{"path":[4,35,2,7,1],"span":[686,18,39]},{"path":[4,35,2,7,3],"span":[686,42,43]},{"path":[4,35,2,8],"span":[687,2,53]},{"path":[4,35,2,8,4],"span":[687,2,10]},{"path":[4,35,2,8,5],"span":[687,11,17]},{"path":[4,35,2,8,1],"span":[687,18,48]},{"path":[4,35,2,8,3],"span":[687,51,52]},{"path":[4,35,2,9],"span":[688,2,40]},{"path":[4,35,2,9,4],"span":[688,2,10]},{"path":[4,35,2,9,5],"span":[688,11,17]},{"path":[4,35,2,9,1],"span":[688,18,34]},{"path":[4,35,2,9,3],"span":[688,37,39]},{"path":[4,36],"span":[691,0,697,1]},{"path":[4,36,1],"span":[691,8,32]},{"path":[4,36,2,0],"span":[692,2,34]},{"path":[4,36,2,0,4],"span":[692,2,10]},{"path":[4,36,2,0,5],"span":[692,11,17]},{"path":[4,36,2,0,1],"span":[692,18,29]},{"path":[4,36,2,0,3],"span":[692,32,33]},{"path":[4,36,2,1],"span":[693,2,37]},{"path":[4,36,2,1,4],"span":[693,2,10]},{"path":[4,36,2,1,5],"span":[693,11,17]},{"path":[4,36,2,1,1],"span":[693,18,32]},{"path":[4,36,2,1,3],"span":[693,35,36]},{"path":[4,36,2,2],"span":[694,2,37]},{"path":[4,36,2,2,4],"span":[694,2,10]},{"path":[4,36,2,2,5],"span":[694,11,17]},{"path":[4,36,2,2,1],"span":[694,18,32]},{"path":[4,36,2,2,3],"span":[694,35,36]},{"path":[4,36,2,3],"span":[695,2,35]},{"path":[4,36,2,3,4],"span":[695,2,10]},{"path":[4,36,2,3,5],"span":[695,11,17]},{"path":[4,36,2,3,1],"span":[695,18,30]},{"path":[4,36,2,3,3],"span":[695,33,34]},{"path":[4,36,2,4],"span":[696,2,33]},{"path":[4,36,2,4,4],"span":[696,2,10]},{"path":[4,36,2,4,5],"span":[696,11,17]},{"path":[4,36,2,4,1],"span":[696,18,28]},{"path":[4,36,2,4,3],"span":[696,31,32]},{"path":[4,37],"span":[699,0,752,1]},{"path":[4,37,1],"span":[699,8,34]},{"path":[4,37,2,0],"span":[700,2,30]},{"path":[4,37,2,0,4],"span":[700,2,10]},{"path":[4,37,2,0,5],"span":[700,11,17]},{"path":[4,37,2,0,1],"span":[700,18,25]},{"path":[4,37,2,0,3],"span":[700,28,29]},{"path":[4,37,2,1],"span":[701,2,34]},{"path":[4,37,2,1,4],"span":[701,2,10]},{"path":[4,37,2,1,5],"span":[701,11,16]},{"path":[4,37,2,1,1],"span":[701,17,29]},{"path":[4,37,2,1,3],"span":[701,32,33]},{"path":[4,37,2,2],"span":[702,2,28],"trailingComments":" \"WindowsVersion\": \"10.0.19045\"\n"},{"path":[4,37,2,2,4],"span":[702,2,10]},{"path":[4,37,2,2,5],"span":[702,11,17]},{"path":[4,37,2,2,1],"span":[702,18,23]},{"path":[4,37,2,2,3],"span":[702,26,27]},{"path":[4,37,2,3],"span":[703,2,35],"trailingComments":" OsVersion\": \"22H2\",\n"},{"path":[4,37,2,3,4],"span":[703,2,10]},{"path":[4,37,2,3,5],"span":[703,11,17]},{"path":[4,37,2,3,1],"span":[703,18,30]},{"path":[4,37,2,3,3],"span":[703,33,34]},{"path":[4,37,2,4],"span":[704,2,41]},{"path":[4,37,2,4,4],"span":[704,2,10]},{"path":[4,37,2,4,5],"span":[704,11,15]},{"path":[4,37,2,4,1],"span":[704,16,36]},{"path":[4,37,2,4,3],"span":[704,39,40]},{"path":[4,37,2,5],"span":[705,2,35]},{"path":[4,37,2,5,4],"span":[705,2,10]},{"path":[4,37,2,5,5],"span":[705,11,15]},{"path":[4,37,2,5,1],"span":[705,16,30]},{"path":[4,37,2,5,3],"span":[705,33,34]},{"path":[4,37,2,6],"span":[706,2,39]},{"path":[4,37,2,6,4],"span":[706,2,10]},{"path":[4,37,2,6,5],"span":[706,11,15]},{"path":[4,37,2,6,1],"span":[706,16,34]},{"path":[4,37,2,6,3],"span":[706,37,38]},{"path":[4,37,2,7],"span":[708,2,31],"trailingComments":" \"OsCode\": \"10.0.19045\" - with S if server\n"},{"path":[4,37,2,7,4],"span":[708,2,10]},{"path":[4,37,2,7,5],"span":[708,11,17]},{"path":[4,37,2,7,1],"span":[708,18,25]},{"path":[4,37,2,7,3],"span":[708,28,30]},{"path":[4,37,2,8],"span":[710,2,35]},{"path":[4,37,2,8,4],"span":[710,2,10]},{"path":[4,37,2,8,5],"span":[710,11,17]},{"path":[4,37,2,8,1],"span":[710,18,29]},{"path":[4,37,2,8,3],"span":[710,32,34]},{"path":[4,37,2,9],"span":[711,2,36],"trailingComments":" \"OsBuildNumber\": \"2486\",\n"},{"path":[4,37,2,9,4],"span":[711,2,10]},{"path":[4,37,2,9,5],"span":[711,11,17]},{"path":[4,37,2,9,1],"span":[711,18,30]},{"path":[4,37,2,9,3],"span":[711,33,35]},{"path":[4,37,2,10],"span":[712,2,34]},{"path":[4,37,2,10,4],"span":[712,2,10]},{"path":[4,37,2,10,5],"span":[712,11,17]},{"path":[4,37,2,10,1],"span":[712,18,28]},{"path":[4,37,2,10,3],"span":[712,31,33]},{"path":[4,37,2,11],"span":[713,2,31]},{"path":[4,37,2,11,4],"span":[713,2,10]},{"path":[4,37,2,11,5],"span":[713,11,17]},{"path":[4,37,2,11,1],"span":[713,18,25]},{"path":[4,37,2,11,3],"span":[713,28,30]},{"path":[4,37,2,12],"span":[714,2,32]},{"path":[4,37,2,12,4],"span":[714,2,10]},{"path":[4,37,2,12,5],"span":[714,11,17]},{"path":[4,37,2,12,1],"span":[714,18,26]},{"path":[4,37,2,12,3],"span":[714,29,31]},{"path":[4,37,2,13],"span":[715,2,36]},{"path":[4,37,2,13,4],"span":[715,2,10]},{"path":[4,37,2,13,5],"span":[715,11,17]},{"path":[4,37,2,13,1],"span":[715,18,30]},{"path":[4,37,2,13,3],"span":[715,33,35]},{"path":[4,37,2,14],"span":[716,2,35]},{"path":[4,37,2,14,4],"span":[716,2,10]},{"path":[4,37,2,14,5],"span":[716,11,17]},{"path":[4,37,2,14,1],"span":[716,18,29]},{"path":[4,37,2,14,3],"span":[716,32,34]},{"path":[4,37,2,15],"span":[717,2,39]},{"path":[4,37,2,15,4],"span":[717,2,10]},{"path":[4,37,2,15,5],"span":[717,11,16]},{"path":[4,37,2,15,1],"span":[717,17,33]},{"path":[4,37,2,15,3],"span":[717,36,38]},{"path":[4,37,2,16],"span":[718,2,27]},{"path":[4,37,2,16,4],"span":[718,2,10]},{"path":[4,37,2,16,5],"span":[718,11,15]},{"path":[4,37,2,16,1],"span":[718,16,21]},{"path":[4,37,2,16,3],"span":[718,24,26]},{"path":[4,37,2,17],"span":[719,2,35]},{"path":[4,37,2,17,4],"span":[719,2,10]},{"path":[4,37,2,17,5],"span":[719,11,17]},{"path":[4,37,2,17,1],"span":[719,18,29]},{"path":[4,37,2,17,3],"span":[719,32,34]},{"path":[4,37,2,18],"span":[720,2,52]},{"path":[4,37,2,18,4],"span":[720,2,10]},{"path":[4,37,2,18,5],"span":[720,11,17]},{"path":[4,37,2,18,1],"span":[720,18,46]},{"path":[4,37,2,18,3],"span":[720,49,51]},{"path":[4,37,2,19],"span":[721,2,55]},{"path":[4,37,2,19,4],"span":[721,2,10]},{"path":[4,37,2,19,6],"span":[721,11,36]},{"path":[4,37,2,19,1],"span":[721,37,49]},{"path":[4,37,2,19,3],"span":[721,52,54]},{"path":[4,37,2,20],"span":[722,2,47]},{"path":[4,37,2,20,4],"span":[722,2,10]},{"path":[4,37,2,20,5],"span":[722,11,17]},{"path":[4,37,2,20,1],"span":[722,18,41]},{"path":[4,37,2,20,3],"span":[722,44,46]},{"path":[4,37,2,21],"span":[723,2,48]},{"path":[4,37,2,21,4],"span":[723,2,10]},{"path":[4,37,2,21,5],"span":[723,11,17]},{"path":[4,37,2,21,1],"span":[723,18,42]},{"path":[4,37,2,21,3],"span":[723,45,47]},{"path":[4,37,2,22],"span":[724,2,36]},{"path":[4,37,2,22,4],"span":[724,2,10]},{"path":[4,37,2,22,5],"span":[724,11,17]},{"path":[4,37,2,22,1],"span":[724,18,30]},{"path":[4,37,2,22,3],"span":[724,33,35]},{"path":[4,37,2,23],"span":[725,2,40]},{"path":[4,37,2,23,4],"span":[725,2,10]},{"path":[4,37,2,23,6],"span":[725,11,22]},{"path":[4,37,2,23,1],"span":[725,23,34]},{"path":[4,37,2,23,3],"span":[725,37,39]},{"path":[4,37,2,24],"span":[726,2,45]},{"path":[4,37,2,24,4],"span":[726,2,10]},{"path":[4,37,2,24,6],"span":[726,11,22]},{"path":[4,37,2,24,1],"span":[726,23,39]},{"path":[4,37,2,24,3],"span":[726,42,44]},{"path":[4,37,2,25],"span":[727,2,36]},{"path":[4,37,2,25,4],"span":[727,2,10]},{"path":[4,37,2,25,6],"span":[727,11,22]},{"path":[4,37,2,25,1],"span":[727,23,30]},{"path":[4,37,2,25,3],"span":[727,33,35]},{"path":[4,37,2,26],"span":[728,2,39]},{"path":[4,37,2,26,4],"span":[728,2,10]},{"path":[4,37,2,26,5],"span":[728,11,17]},{"path":[4,37,2,26,1],"span":[728,18,33]},{"path":[4,37,2,26,3],"span":[728,36,38]},{"path":[4,37,2,27],"span":[729,2,43]},{"path":[4,37,2,27,4],"span":[729,2,10]},{"path":[4,37,2,27,5],"span":[729,11,17]},{"path":[4,37,2,27,1],"span":[729,18,37]},{"path":[4,37,2,27,3],"span":[729,40,42]},{"path":[4,37,2,28],"span":[730,2,39]},{"path":[4,37,2,28,4],"span":[730,2,10]},{"path":[4,37,2,28,5],"span":[730,11,17]},{"path":[4,37,2,28,1],"span":[730,18,33]},{"path":[4,37,2,28,3],"span":[730,36,38]},{"path":[4,37,2,29],"span":[731,2,37]},{"path":[4,37,2,29,4],"span":[731,2,10]},{"path":[4,37,2,29,5],"span":[731,11,17]},{"path":[4,37,2,29,1],"span":[731,18,31]},{"path":[4,37,2,29,3],"span":[731,34,36]},{"path":[4,37,2,30],"span":[732,2,50]},{"path":[4,37,2,30,4],"span":[732,2,10]},{"path":[4,37,2,30,5],"span":[732,11,17]},{"path":[4,37,2,30,1],"span":[732,18,44]},{"path":[4,37,2,30,3],"span":[732,47,49]},{"path":[4,37,2,31],"span":[733,2,50]},{"path":[4,37,2,31,4],"span":[733,2,10]},{"path":[4,37,2,31,5],"span":[733,11,17]},{"path":[4,37,2,31,1],"span":[733,18,44]},{"path":[4,37,2,31,3],"span":[733,47,49]},{"path":[4,37,2,32],"span":[734,2,51]},{"path":[4,37,2,32,4],"span":[734,2,10]},{"path":[4,37,2,32,5],"span":[734,11,17]},{"path":[4,37,2,32,1],"span":[734,18,45]},{"path":[4,37,2,32,3],"span":[734,48,50]},{"path":[4,37,2,33],"span":[735,2,30]},{"path":[4,37,2,33,4],"span":[735,2,10]},{"path":[4,37,2,33,5],"span":[735,11,17]},{"path":[4,37,2,33,1],"span":[735,18,24]},{"path":[4,37,2,33,3],"span":[735,27,29]},{"path":[4,37,2,34],"span":[736,2,37]},{"path":[4,37,2,34,4],"span":[736,2,10]},{"path":[4,37,2,34,5],"span":[736,11,17]},{"path":[4,37,2,34,1],"span":[736,18,31]},{"path":[4,37,2,34,3],"span":[736,34,36]},{"path":[4,37,2,35],"span":[737,2,40]},{"path":[4,37,2,35,4],"span":[737,2,10]},{"path":[4,37,2,35,5],"span":[737,11,17]},{"path":[4,37,2,35,1],"span":[737,18,34]},{"path":[4,37,2,35,3],"span":[737,37,39]},{"path":[4,37,2,36],"span":[738,2,49]},{"path":[4,37,2,36,4],"span":[738,2,10]},{"path":[4,37,2,36,5],"span":[738,11,17]},{"path":[4,37,2,36,1],"span":[738,18,43]},{"path":[4,37,2,36,3],"span":[738,46,48]},{"path":[4,37,2,37],"span":[739,2,49]},{"path":[4,37,2,37,4],"span":[739,2,10]},{"path":[4,37,2,37,5],"span":[739,11,17]},{"path":[4,37,2,37,1],"span":[739,18,43]},{"path":[4,37,2,37,3],"span":[739,46,48]},{"path":[4,37,2,38],"span":[740,2,41]},{"path":[4,37,2,38,4],"span":[740,2,10]},{"path":[4,37,2,38,5],"span":[740,11,17]},{"path":[4,37,2,38,1],"span":[740,18,35]},{"path":[4,37,2,38,3],"span":[740,38,40]},{"path":[4,37,2,39],"span":[741,2,45]},{"path":[4,37,2,39,4],"span":[741,2,10]},{"path":[4,37,2,39,5],"span":[741,11,17]},{"path":[4,37,2,39,1],"span":[741,18,39]},{"path":[4,37,2,39,3],"span":[741,42,44]},{"path":[4,37,2,40],"span":[742,2,42]},{"path":[4,37,2,40,4],"span":[742,2,10]},{"path":[4,37,2,40,5],"span":[742,11,17]},{"path":[4,37,2,40,1],"span":[742,18,36]},{"path":[4,37,2,40,3],"span":[742,39,41]},{"path":[4,37,2,41],"span":[743,2,46]},{"path":[4,37,2,41,4],"span":[743,2,10]},{"path":[4,37,2,41,5],"span":[743,11,17]},{"path":[4,37,2,41,1],"span":[743,18,40]},{"path":[4,37,2,41,3],"span":[743,43,45]},{"path":[4,37,2,42],"span":[744,2,41]},{"path":[4,37,2,42,4],"span":[744,2,10]},{"path":[4,37,2,42,6],"span":[744,11,22]},{"path":[4,37,2,42,1],"span":[744,23,35]},{"path":[4,37,2,42,3],"span":[744,38,40]},{"path":[4,37,2,43],"span":[745,2,34]},{"path":[4,37,2,43,4],"span":[745,2,10]},{"path":[4,37,2,43,5],"span":[745,11,17]},{"path":[4,37,2,43,1],"span":[745,18,28]},{"path":[4,37,2,43,3],"span":[745,31,33]},{"path":[4,37,2,44],"span":[746,2,36]},{"path":[4,37,2,44,4],"span":[746,2,10]},{"path":[4,37,2,44,5],"span":[746,11,17]},{"path":[4,37,2,44,1],"span":[746,18,30]},{"path":[4,37,2,44,3],"span":[746,33,35]},{"path":[4,37,2,45],"span":[747,2,40]},{"path":[4,37,2,45,4],"span":[747,2,10]},{"path":[4,37,2,45,5],"span":[747,11,17]},{"path":[4,37,2,45,1],"span":[747,18,34]},{"path":[4,37,2,45,3],"span":[747,37,39]},{"path":[4,37,2,46],"span":[748,2,66]},{"path":[4,37,2,46,4],"span":[748,2,10]},{"path":[4,37,2,46,5],"span":[748,11,15]},{"path":[4,37,2,46,1],"span":[748,16,60]},{"path":[4,37,2,46,3],"span":[748,63,65]},{"path":[4,37,2,47],"span":[749,2,60]},{"path":[4,37,2,47,4],"span":[749,2,10]},{"path":[4,37,2,47,5],"span":[749,11,15]},{"path":[4,37,2,47,1],"span":[749,16,54]},{"path":[4,37,2,47,3],"span":[749,57,59]},{"path":[4,37,2,48],"span":[750,2,55]},{"path":[4,37,2,48,4],"span":[750,2,10]},{"path":[4,37,2,48,5],"span":[750,11,15]},{"path":[4,37,2,48,1],"span":[750,16,49]},{"path":[4,37,2,48,3],"span":[750,52,54]},{"path":[4,37,2,49],"span":[751,2,64]},{"path":[4,37,2,49,4],"span":[751,2,10]},{"path":[4,37,2,49,5],"span":[751,11,17]},{"path":[4,37,2,49,1],"span":[751,18,58]},{"path":[4,37,2,49,3],"span":[751,61,63]},{"path":[4,38],"span":[756,0,759,1],"leadingComments":" OS Feature, i.e. WindowsFeature "},{"path":[4,38,1],"span":[756,8,30]},{"path":[4,38,2,0],"span":[757,2,18]},{"path":[4,38,2,0,5],"span":[757,2,8]},{"path":[4,38,2,0,1],"span":[757,9,13]},{"path":[4,38,2,0,3],"span":[757,16,17]},{"path":[4,38,2,1],"span":[758,2,21]},{"path":[4,38,2,1,5],"span":[758,2,8]},{"path":[4,38,2,1,1],"span":[758,9,16]},{"path":[4,38,2,1,3],"span":[758,19,20]},{"path":[4,39],"span":[762,0,778,1],"leadingComments":" OS Patch, i.e. Windows KB's, aka Hotfix, aka QuickFixEngieering "},{"path":[4,39,1],"span":[762,8,28]},{"path":[4,39,2,0],"span":[764,2,16],"leadingComments":" from hot_fix_id, e.g.: \"KB4570334\"\n"},{"path":[4,39,2,0,5],"span":[764,2,8]},{"path":[4,39,2,0,1],"span":[764,9,11]},{"path":[4,39,2,0,3],"span":[764,14,15]},{"path":[4,39,2,1],"span":[767,2,27],"leadingComments":" from description, e.g.: Security Update\n"},{"path":[4,39,2,1,4],"span":[767,2,10]},{"path":[4,39,2,1,5],"span":[767,11,17]},{"path":[4,39,2,1,1],"span":[767,18,22]},{"path":[4,39,2,1,3],"span":[767,25,26]},{"path":[4,39,2,2],"span":[769,2,54]},{"path":[4,39,2,2,4],"span":[769,2,10]},{"path":[4,39,2,2,6],"span":[769,11,36]},{"path":[4,39,2,2,1],"span":[769,37,49]},{"path":[4,39,2,2,3],"span":[769,52,53]},{"path":[4,39,2,3],"span":[772,2,33],"leadingComments":" e.g.: \"NT AUTHORITY\\\\SYSTEM\"\n"},{"path":[4,39,2,3,4],"span":[772,2,10]},{"path":[4,39,2,3,5],"span":[772,11,17]},{"path":[4,39,2,3,1],"span":[772,18,28]},{"path":[4,39,2,3,3],"span":[772,31,32]},{"path":[4,39,2,4],"span":[774,2,31]},{"path":[4,39,2,4,4],"span":[774,2,10]},{"path":[4,39,2,4,5],"span":[774,11,17]},{"path":[4,39,2,4,1],"span":[774,18,26]},{"path":[4,39,2,4,3],"span":[774,29,30]},{"path":[4,39,2,5],"span":[776,2,43]},{"path":[4,39,2,5,4],"span":[776,2,10]},{"path":[4,39,2,5,5],"span":[776,11,17]},{"path":[4,39,2,5,1],"span":[776,18,38]},{"path":[4,39,2,5,3],"span":[776,41,42]},{"path":[4,40],"span":[781,0,784,1],"leadingComments":" Network Interface cards "},{"path":[4,40,1],"span":[781,8,25]},{"path":[4,40,2,0],"span":[782,2,42]},{"path":[4,40,2,0,6],"span":[782,2,27]},{"path":[4,40,2,0,1],"span":[782,28,37]},{"path":[4,40,2,0,3],"span":[782,40,41]},{"path":[4,40,2,1],"span":[783,2,42]},{"path":[4,40,2,1,4],"span":[783,2,10]},{"path":[4,40,2,1,6],"span":[783,11,27]},{"path":[4,40,2,1,1],"span":[783,28,37]},{"path":[4,40,2,1,3],"span":[783,40,41]},{"path":[4,41],"span":[786,0,809,1]},{"path":[4,41,1],"span":[786,8,24]},{"path":[4,41,2,0],"span":[787,2,18]},{"path":[4,41,2,0,5],"span":[787,2,8]},{"path":[4,41,2,0,1],"span":[787,9,13]},{"path":[4,41,2,0,3],"span":[787,16,17]},{"path":[4,41,2,1],"span":[788,2,18]},{"path":[4,41,2,1,5],"span":[788,2,8]},{"path":[4,41,2,1,1],"span":[788,9,13]},{"path":[4,41,2,1,3],"span":[788,16,17]},{"path":[4,41,2,2],"span":[789,2,22]},{"path":[4,41,2,2,5],"span":[789,2,8]},{"path":[4,41,2,2,1],"span":[789,9,17]},{"path":[4,41,2,2,3],"span":[789,20,21]},{"path":[4,41,2,3],"span":[791,2,25]},{"path":[4,41,2,3,4],"span":[791,2,10]},{"path":[4,41,2,3,5],"span":[791,11,17]},{"path":[4,41,2,3,1],"span":[791,18,20]},{"path":[4,41,2,3,3],"span":[791,23,24]},{"path":[4,41,2,4],"span":[793,2,26]},{"path":[4,41,2,4,4],"span":[793,2,10]},{"path":[4,41,2,4,5],"span":[793,11,17]},{"path":[4,41,2,4,1],"span":[793,18,21]},{"path":[4,41,2,4,3],"span":[793,24,25]},{"path":[4,41,2,5],"span":[795,2,33]},{"path":[4,41,2,5,4],"span":[795,2,10]},{"path":[4,41,2,5,5],"span":[795,11,15]},{"path":[4,41,2,5,1],"span":[795,16,28]},{"path":[4,41,2,5,3],"span":[795,31,32]},{"path":[4,41,2,6],"span":[796,2,37]},{"path":[4,41,2,6,4],"span":[796,2,10]},{"path":[4,41,2,6,5],"span":[796,11,17]},{"path":[4,41,2,6,1],"span":[796,18,32]},{"path":[4,41,2,6,3],"span":[796,35,36]},{"path":[4,41,2,7],"span":[798,2,31]},{"path":[4,41,2,7,4],"span":[798,2,10]},{"path":[4,41,2,7,6],"span":[798,11,23]},{"path":[4,41,2,7,1],"span":[798,24,26]},{"path":[4,41,2,7,3],"span":[798,29,30]},{"path":[4,41,2,8],"span":[800,2,33]},{"path":[4,41,2,8,4],"span":[800,2,10]},{"path":[4,41,2,8,5],"span":[800,11,17]},{"path":[4,41,2,8,1],"span":[800,18,28]},{"path":[4,41,2,8,3],"span":[800,31,32]},{"path":[4,41,2,9],"span":[801,2,35]},{"path":[4,41,2,9,4],"span":[801,2,10]},{"path":[4,41,2,9,5],"span":[801,11,17]},{"path":[4,41,2,9,1],"span":[801,18,29]},{"path":[4,41,2,9,3],"span":[801,32,34]},{"path":[4,41,2,10],"span":[803,2,34]},{"path":[4,41,2,10,4],"span":[803,2,10]},{"path":[4,41,2,10,5],"span":[803,11,17]},{"path":[4,41,2,10,1],"span":[803,18,28]},{"path":[4,41,2,10,3],"span":[803,31,33]},{"path":[4,41,2,11],"span":[804,2,37]},{"path":[4,41,2,11,4],"span":[804,2,10]},{"path":[4,41,2,11,5],"span":[804,11,17]},{"path":[4,41,2,11,1],"span":[804,18,31]},{"path":[4,41,2,11,3],"span":[804,34,36]},{"path":[4,41,2,12],"span":[805,2,54]},{"path":[4,41,2,12,4],"span":[805,2,10]},{"path":[4,41,2,12,5],"span":[805,11,17]},{"path":[4,41,2,12,1],"span":[805,18,48]},{"path":[4,41,2,12,3],"span":[805,51,53]},{"path":[4,41,2,13],"span":[807,2,36]},{"path":[4,41,2,13,4],"span":[807,2,10]},{"path":[4,41,2,13,5],"span":[807,11,17]},{"path":[4,41,2,13,1],"span":[807,18,30]},{"path":[4,41,2,13,3],"span":[807,33,35]},{"path":[4,41,2,14],"span":[808,2,37]},{"path":[4,41,2,14,4],"span":[808,2,10]},{"path":[4,41,2,14,5],"span":[808,11,17]},{"path":[4,41,2,14,1],"span":[808,18,31]},{"path":[4,41,2,14,3],"span":[808,34,36]},{"path":[4,42],"span":[812,0,815,1],"leadingComments":" Network IP address with IP and subnet "},{"path":[4,42,1],"span":[812,8,20]},{"path":[4,42,2,0],"span":[813,2,16]},{"path":[4,42,2,0,5],"span":[813,2,8]},{"path":[4,42,2,0,1],"span":[813,9,11]},{"path":[4,42,2,0,3],"span":[813,14,15]},{"path":[4,42,2,1],"span":[814,2,20]},{"path":[4,42,2,1,5],"span":[814,2,8]},{"path":[4,42,2,1,1],"span":[814,9,15]},{"path":[4,42,2,1,3],"span":[814,18,19]},{"path":[4,43],"span":[820,0,825,1],"leadingComments":"\n Network protocols, summary and detailed info.\n"},{"path":[4,43,1],"span":[820,8,24]},{"path":[4,43,2,0],"span":[821,4,33],"trailingComments":" summary list of protocols and data points available\n"},{"path":[4,43,2,0,4],"span":[821,4,12]},{"path":[4,43,2,0,5],"span":[821,13,19]},{"path":[4,43,2,0,1],"span":[821,20,28]},{"path":[4,43,2,0,3],"span":[821,31,32]},{"path":[4,44],"span":[830,0,833,1],"leadingComments":"\n Full port scan.\n"},{"path":[4,44,1],"span":[830,8,16]},{"path":[4,44,2,0],"span":[831,2,42]},{"path":[4,44,2,0,6],"span":[831,2,27]},{"path":[4,44,2,0,1],"span":[831,28,37]},{"path":[4,44,2,0,3],"span":[831,40,41]},{"path":[4,44,2,1],"span":[832,2,40]},{"path":[4,44,2,1,4],"span":[832,2,10]},{"path":[4,44,2,1,6],"span":[832,11,22]},{"path":[4,44,2,1,1],"span":[832,23,35]},{"path":[4,44,2,1,3],"span":[832,38,39]},{"path":[4,45],"span":[835,0,844,1]},{"path":[4,45,1],"span":[835,8,19]},{"path":[4,45,2,0],"span":[836,2,22]},{"path":[4,45,2,0,5],"span":[836,2,8]},{"path":[4,45,2,0,1],"span":[836,9,17]},{"path":[4,45,2,0,3],"span":[836,20,21]},{"path":[4,45,2,1],"span":[837,2,24]},{"path":[4,45,2,1,5],"span":[837,2,7]},{"path":[4,45,2,1,1],"span":[837,8,19]},{"path":[4,45,2,1,3],"span":[837,22,23]},{"path":[4,45,2,2],"span":[838,2,36]},{"path":[4,45,2,2,4],"span":[838,2,10]},{"path":[4,45,2,2,5],"span":[838,11,17]},{"path":[4,45,2,2,1],"span":[838,18,31]},{"path":[4,45,2,2,3],"span":[838,34,35]},{"path":[4,45,2,3],"span":[839,2,35]},{"path":[4,45,2,3,4],"span":[839,2,10]},{"path":[4,45,2,3,5],"span":[839,11,17]},{"path":[4,45,2,3,1],"span":[839,18,30]},{"path":[4,45,2,3,3],"span":[839,33,34]},{"path":[4,45,2,4],"span":[841,2,29]},{"path":[4,45,2,4,4],"span":[841,2,10]},{"path":[4,45,2,4,5],"span":[841,11,17]},{"path":[4,45,2,4,1],"span":[841,18,24]},{"path":[4,45,2,4,3],"span":[841,27,28]},{"path":[4,45,2,5],"span":[842,2,42]},{"path":[4,45,2,5,4],"span":[842,2,10]},{"path":[4,45,2,5,6],"span":[842,11,25]},{"path":[4,45,2,5,1],"span":[842,26,37]},{"path":[4,45,2,5,3],"span":[842,40,41]},{"path":[4,46],"span":[846,0,859,1]},{"path":[4,46,1],"span":[846,8,22]},{"path":[4,46,2,0],"span":[847,2,17]},{"path":[4,46,2,0,5],"span":[847,2,7]},{"path":[4,46,2,0,1],"span":[847,8,12]},{"path":[4,46,2,0,3],"span":[847,15,16]},{"path":[4,46,2,1],"span":[848,2,24]},{"path":[4,46,2,1,4],"span":[848,2,10]},{"path":[4,46,2,1,5],"span":[848,11,15]},{"path":[4,46,2,1,1],"span":[848,16,19]},{"path":[4,46,2,1,3],"span":[848,22,23]},{"path":[4,46,2,2],"span":[850,2,29],"trailingComments":" http_header.server\n"},{"path":[4,46,2,2,4],"span":[850,2,10]},{"path":[4,46,2,2,5],"span":[850,11,17]},{"path":[4,46,2,2,1],"span":[850,18,24]},{"path":[4,46,2,2,3],"span":[850,27,28]},{"path":[4,46,2,3],"span":[851,2,30],"trailingComments":" http_header.wwwauth\n"},{"path":[4,46,2,3,4],"span":[851,2,10]},{"path":[4,46,2,3,5],"span":[851,11,17]},{"path":[4,46,2,3,1],"span":[851,18,25]},{"path":[4,46,2,3,3],"span":[851,28,29]},{"path":[4,46,2,4],"span":[852,2,29],"trailingComments":" http_header.cookie\n"},{"path":[4,46,2,4,4],"span":[852,2,10]},{"path":[4,46,2,4,5],"span":[852,11,17]},{"path":[4,46,2,4,1],"span":[852,18,24]},{"path":[4,46,2,4,3],"span":[852,27,28]},{"path":[4,46,2,5],"span":[854,2,28],"trailingComments":" html_title\n"},{"path":[4,46,2,5,4],"span":[854,2,10]},{"path":[4,46,2,5,5],"span":[854,11,17]},{"path":[4,46,2,5,1],"span":[854,18,23]},{"path":[4,46,2,5,3],"span":[854,26,27]},{"path":[4,46,2,6],"span":[855,2,34],"trailingComments":" favicon.md5\n"},{"path":[4,46,2,6,4],"span":[855,2,10]},{"path":[4,46,2,6,5],"span":[855,11,17]},{"path":[4,46,2,6,1],"span":[855,18,29]},{"path":[4,46,2,6,3],"span":[855,32,33]},{"path":[4,46,2,7],"span":[856,2,29],"trailingComments":" in case at some point we want to store full\n"},{"path":[4,46,2,7,4],"span":[856,2,10]},{"path":[4,46,2,7,5],"span":[856,11,16]},{"path":[4,46,2,7,1],"span":[856,17,24]},{"path":[4,46,2,7,3],"span":[856,27,28]},{"path":[4,46,2,8],"span":[858,2,44],"trailingComments":" Captured certificates\n"},{"path":[4,46,2,8,4],"span":[858,2,10]},{"path":[4,46,2,8,6],"span":[858,11,26]},{"path":[4,46,2,8,1],"span":[858,27,39]},{"path":[4,46,2,8,3],"span":[858,42,43]},{"path":[4,47],"span":[861,0,876,1]},{"path":[4,47,1],"span":[861,8,23]},{"path":[4,47,2,0],"span":[862,2,33],"trailingComments":" thumbprint\n"},{"path":[4,47,2,0,4],"span":[862,2,10]},{"path":[4,47,2,0,5],"span":[862,11,17]},{"path":[4,47,2,0,1],"span":[862,18,28]},{"path":[4,47,2,0,3],"span":[862,31,32]},{"path":[4,47,2,1],"span":[863,2,36],"trailingComments":" serial_number (as a big-endian hexadecimal string)\n"},{"path":[4,47,2,1,4],"span":[863,2,10]},{"path":[4,47,2,1,5],"span":[863,11,17]},{"path":[4,47,2,1,1],"span":[863,18,31]},{"path":[4,47,2,1,3],"span":[863,34,35]},{"path":[4,47,2,2],"span":[864,2,34],"trailingComments":" x509.issuer\n"},{"path":[4,47,2,2,4],"span":[864,2,10]},{"path":[4,47,2,2,5],"span":[864,11,17]},{"path":[4,47,2,2,1],"span":[864,18,29]},{"path":[4,47,2,2,3],"span":[864,32,33]},{"path":[4,47,2,3],"span":[865,2,35],"trailingComments":" x509.subject\n"},{"path":[4,47,2,3,4],"span":[865,2,10]},{"path":[4,47,2,3,5],"span":[865,11,17]},{"path":[4,47,2,3,1],"span":[865,18,30]},{"path":[4,47,2,3,3],"span":[865,33,34]},{"path":[4,47,2,4],"span":[866,2,56],"trailingComments":" not_before\n"},{"path":[4,47,2,4,4],"span":[866,2,10]},{"path":[4,47,2,4,6],"span":[866,11,36]},{"path":[4,47,2,4,1],"span":[866,37,51]},{"path":[4,47,2,4,3],"span":[866,54,55]},{"path":[4,47,2,5],"span":[867,2,57],"trailingComments":" not_after\n"},{"path":[4,47,2,5,4],"span":[867,2,10]},{"path":[4,47,2,5,6],"span":[867,11,36]},{"path":[4,47,2,5,1],"span":[867,37,52]},{"path":[4,47,2,5,3],"span":[867,55,56]},{"path":[4,47,4,0],"span":[869,2,873,3]},{"path":[4,47,4,0,1],"span":[869,7,22]},{"path":[4,47,4,0,2,0],"span":[870,4,45]},{"path":[4,47,4,0,2,0,1],"span":[870,4,40]},{"path":[4,47,4,0,2,0,2],"span":[870,43,44]},{"path":[4,47,4,0,2,1],"span":[871,4,45]},{"path":[4,47,4,0,2,1,1],"span":[871,4,40]},{"path":[4,47,4,0,2,1,2],"span":[871,43,44]},{"path":[4,47,4,0,2,2],"span":[872,4,44]},{"path":[4,47,4,0,2,2,1],"span":[872,4,39]},{"path":[4,47,4,0,2,2,2],"span":[872,42,43]},{"path":[4,47,2,6],"span":[875,2,38],"trailingComments":" ssl errors\n"},{"path":[4,47,2,6,4],"span":[875,2,10]},{"path":[4,47,2,6,6],"span":[875,11,26]},{"path":[4,47,2,6,1],"span":[875,27,33]},{"path":[4,47,2,6,3],"span":[875,36,37]},{"path":[4,48],"span":[880,0,921,1],"leadingComments":" Processor *"},{"path":[4,48,1],"span":[880,8,17]},{"path":[4,48,2,0],"span":[881,2,21]},{"path":[4,48,2,0,5],"span":[881,2,8]},{"path":[4,48,2,0,1],"span":[881,10,14]},{"path":[4,48,2,0,3],"span":[881,17,18]},{"path":[4,48,2,1],"span":[882,2,36],"trailingComments":" Linux-only\n"},{"path":[4,48,2,1,4],"span":[882,2,10]},{"path":[4,48,2,1,5],"span":[882,11,17]},{"path":[4,48,2,1,1],"span":[882,18,31]},{"path":[4,48,2,1,3],"span":[882,34,35]},{"path":[4,48,2,2],"span":[883,2,35],"trailingComments":" Windows-only\n"},{"path":[4,48,2,2,4],"span":[883,2,10]},{"path":[4,48,2,2,5],"span":[883,11,16]},{"path":[4,48,2,2,1],"span":[883,17,30]},{"path":[4,48,2,2,3],"span":[883,33,34]},{"path":[4,48,2,3],"span":[884,2,40],"trailingComments":" Consolidate on-prem fields into single numeric list with translations\n"},{"path":[4,48,2,3,4],"span":[884,2,10]},{"path":[4,48,2,3,6],"span":[884,11,22]},{"path":[4,48,2,3,1],"span":[884,23,35]},{"path":[4,48,2,3,3],"span":[884,38,39]},{"path":[4,48,2,4],"span":[885,2,34],"trailingComments":" Windows-only\n"},{"path":[4,48,2,4,4],"span":[885,2,10]},{"path":[4,48,2,4,5],"span":[885,11,16]},{"path":[4,48,2,4,1],"span":[885,17,29]},{"path":[4,48,2,4,3],"span":[885,32,33]},{"path":[4,48,2,5],"span":[886,2,32],"trailingComments":" Standardize to numeric\n"},{"path":[4,48,2,5,4],"span":[886,2,10]},{"path":[4,48,2,5,5],"span":[886,11,17]},{"path":[4,48,2,5,1],"span":[886,18,27]},{"path":[4,48,2,5,3],"span":[886,30,31]},{"path":[4,48,2,6],"span":[887,2,33],"trailingComments":" Linux-only\n"},{"path":[4,48,2,6,4],"span":[887,2,10]},{"path":[4,48,2,6,5],"span":[887,11,17]},{"path":[4,48,2,6,1],"span":[887,18,28]},{"path":[4,48,2,6,3],"span":[887,31,32]},{"path":[4,48,2,7],"span":[888,2,30],"trailingComments":" Windows-only\n"},{"path":[4,48,2,7,4],"span":[888,2,10]},{"path":[4,48,2,7,5],"span":[888,11,17]},{"path":[4,48,2,7,1],"span":[888,18,25]},{"path":[4,48,2,7,3],"span":[888,28,29]},{"path":[4,48,2,8],"span":[889,2,41],"trailingComments":" Standardize values to numeric (MHz)\n"},{"path":[4,48,2,8,4],"span":[889,2,10]},{"path":[4,48,2,8,5],"span":[889,11,16]},{"path":[4,48,2,8,1],"span":[889,17,36]},{"path":[4,48,2,8,3],"span":[889,39,40]},{"path":[4,48,2,9],"span":[890,2,33],"trailingComments":" Windows-only\n"},{"path":[4,48,2,9,4],"span":[890,2,10]},{"path":[4,48,2,9,5],"span":[890,11,16]},{"path":[4,48,2,9,1],"span":[890,17,27]},{"path":[4,48,2,9,3],"span":[890,30,32]},{"path":[4,48,2,10],"span":[891,2,33],"trailingComments":" Windows-only\n"},{"path":[4,48,2,10,4],"span":[891,2,10]},{"path":[4,48,2,10,5],"span":[891,11,17]},{"path":[4,48,2,10,1],"span":[891,18,27]},{"path":[4,48,2,10,3],"span":[891,30,32]},{"path":[4,48,2,11],"span":[892,2,41],"trailingComments":" Windows-only\n"},{"path":[4,48,2,11,4],"span":[892,2,10]},{"path":[4,48,2,11,5],"span":[892,11,16]},{"path":[4,48,2,11,1],"span":[892,17,35]},{"path":[4,48,2,11,3],"span":[892,38,40]},{"path":[4,48,2,12],"span":[893,2,35],"trailingComments":" Consolidate on-prem fields into single numeric list with translations\n"},{"path":[4,48,2,12,4],"span":[893,2,10]},{"path":[4,48,2,12,6],"span":[893,11,22]},{"path":[4,48,2,12,1],"span":[893,23,29]},{"path":[4,48,2,12,3],"span":[893,32,34]},{"path":[4,48,2,13],"span":[894,2,41],"trailingComments":" Linux-only\n"},{"path":[4,48,2,13,4],"span":[894,2,10]},{"path":[4,48,2,13,5],"span":[894,11,17]},{"path":[4,48,2,13,1],"span":[894,18,35]},{"path":[4,48,2,13,3],"span":[894,38,40]},{"path":[4,48,2,14],"span":[895,2,40],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,48,2,14,4],"span":[895,2,10]},{"path":[4,48,2,14,5],"span":[895,11,16]},{"path":[4,48,2,14,1],"span":[895,17,34]},{"path":[4,48,2,14,3],"span":[895,37,39]},{"path":[4,48,2,15],"span":[896,2,40],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,48,2,15,4],"span":[896,2,10]},{"path":[4,48,2,15,5],"span":[896,11,16]},{"path":[4,48,2,15,1],"span":[896,17,34]},{"path":[4,48,2,15,3],"span":[896,37,39]},{"path":[4,48,2,16],"span":[897,2,39],"trailingComments":" Standardize values to int (kilobytes)\n"},{"path":[4,48,2,16,4],"span":[897,2,10]},{"path":[4,48,2,16,5],"span":[897,11,16]},{"path":[4,48,2,16,1],"span":[897,17,33]},{"path":[4,48,2,16,3],"span":[897,36,38]},{"path":[4,48,2,17],"span":[898,2,41],"trailingComments":" Windows-only\n"},{"path":[4,48,2,17,4],"span":[898,2,10]},{"path":[4,48,2,17,5],"span":[898,11,16]},{"path":[4,48,2,17,1],"span":[898,17,35]},{"path":[4,48,2,17,3],"span":[898,38,40]},{"path":[4,48,2,18],"span":[899,2,39],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,48,2,18,4],"span":[899,2,10]},{"path":[4,48,2,18,5],"span":[899,11,16]},{"path":[4,48,2,18,1],"span":[899,17,33]},{"path":[4,48,2,18,3],"span":[899,36,38]},{"path":[4,48,2,19],"span":[900,2,28],"trailingComments":" Windows-only, unclear meaning\n"},{"path":[4,48,2,19,4],"span":[900,2,10]},{"path":[4,48,2,19,5],"span":[900,11,16]},{"path":[4,48,2,19,1],"span":[900,17,22]},{"path":[4,48,2,19,3],"span":[900,25,27]},{"path":[4,48,2,20],"span":[901,2,44]},{"path":[4,48,2,20,4],"span":[901,2,10]},{"path":[4,48,2,20,5],"span":[901,11,16]},{"path":[4,48,2,20,1],"span":[901,17,36]},{"path":[4,48,2,20,3],"span":[901,39,41]},{"path":[4,48,2,21],"span":[902,2,38]},{"path":[4,48,2,21,4],"span":[902,2,10]},{"path":[4,48,2,21,5],"span":[902,11,17]},{"path":[4,48,2,21,1],"span":[902,18,30]},{"path":[4,48,2,21,3],"span":[902,33,35]},{"path":[4,48,2,22],"span":[903,2,42],"trailingComments":" Standardize Linux values to int (MHz)\n"},{"path":[4,48,2,22,4],"span":[903,2,10]},{"path":[4,48,2,22,5],"span":[903,11,16]},{"path":[4,48,2,22,1],"span":[903,17,36]},{"path":[4,48,2,22,3],"span":[903,39,41]},{"path":[4,48,2,23],"span":[904,2,42],"trailingComments":" Linux-only, standardize to numeric (MHz)\n"},{"path":[4,48,2,23,4],"span":[904,2,10]},{"path":[4,48,2,23,5],"span":[904,11,16]},{"path":[4,48,2,23,1],"span":[904,17,36]},{"path":[4,48,2,23,3],"span":[904,39,41]},{"path":[4,48,2,24],"span":[905,2,35],"trailingComments":" Linux-only, standardize to numeric\n"},{"path":[4,48,2,24,4],"span":[905,2,10]},{"path":[4,48,2,24,5],"span":[905,11,16]},{"path":[4,48,2,24,1],"span":[905,17,29]},{"path":[4,48,2,24,3],"span":[905,32,34]},{"path":[4,48,2,25],"span":[906,2,32],"trailingComments":" Linux-only\n"},{"path":[4,48,2,25,4],"span":[906,2,10]},{"path":[4,48,2,25,5],"span":[906,11,17]},{"path":[4,48,2,25,1],"span":[906,18,26]},{"path":[4,48,2,25,3],"span":[906,29,31]},{"path":[4,48,2,26],"span":[907,2,45]},{"path":[4,48,2,26,4],"span":[907,2,10]},{"path":[4,48,2,26,5],"span":[907,11,16]},{"path":[4,48,2,26,1],"span":[907,17,37]},{"path":[4,48,2,26,3],"span":[907,40,42]},{"path":[4,48,2,27],"span":[908,2,36],"trailingComments":" Windows-only, probably not used much by customers due to its complexity\n"},{"path":[4,48,2,27,4],"span":[908,2,10]},{"path":[4,48,2,27,5],"span":[908,11,17]},{"path":[4,48,2,27,1],"span":[908,18,30]},{"path":[4,48,2,27,3],"span":[908,33,35]},{"path":[4,48,2,28],"span":[909,2,43],"trailingComments":" Windows-only\n"},{"path":[4,48,2,28,4],"span":[909,2,10]},{"path":[4,48,2,28,6],"span":[909,11,22]},{"path":[4,48,2,28,1],"span":[909,23,37]},{"path":[4,48,2,28,3],"span":[909,40,42]},{"path":[4,48,2,29],"span":[910,2,31],"trailingComments":" Windows-only\n"},{"path":[4,48,2,29,4],"span":[910,2,10]},{"path":[4,48,2,29,5],"span":[910,11,16]},{"path":[4,48,2,29,1],"span":[910,17,25]},{"path":[4,48,2,29,3],"span":[910,28,30]},{"path":[4,48,2,30],"span":[911,2,42],"trailingComments":" Windows-only\n"},{"path":[4,48,2,30,4],"span":[911,2,10]},{"path":[4,48,2,30,5],"span":[911,11,17]},{"path":[4,48,2,30,1],"span":[911,18,36]},{"path":[4,48,2,30,3],"span":[911,39,41]},{"path":[4,48,2,31],"span":[912,2,31],"trailingComments":" Linux-only\n"},{"path":[4,48,2,31,4],"span":[912,2,10]},{"path":[4,48,2,31,5],"span":[912,11,16]},{"path":[4,48,2,31,1],"span":[912,18,25]},{"path":[4,48,2,31,3],"span":[912,28,30]},{"path":[4,48,2,32],"span":[913,2,35],"trailingComments":" Windows-only\n"},{"path":[4,48,2,32,4],"span":[913,2,10]},{"path":[4,48,2,32,6],"span":[913,11,22]},{"path":[4,48,2,32,1],"span":[913,23,29]},{"path":[4,48,2,32,3],"span":[913,32,34]},{"path":[4,48,2,33],"span":[914,2,31],"trailingComments":" Consolidate on-prem fields into single numeric list\n"},{"path":[4,48,2,33,4],"span":[914,2,10]},{"path":[4,48,2,33,5],"span":[914,11,16]},{"path":[4,48,2,33,1],"span":[914,17,25]},{"path":[4,48,2,33,3],"span":[914,28,30]},{"path":[4,48,2,34],"span":[915,2,54],"trailingComments":" Linux-only\n"},{"path":[4,48,2,34,4],"span":[915,2,10]},{"path":[4,48,2,34,5],"span":[915,11,16]},{"path":[4,48,2,34,1],"span":[915,17,48]},{"path":[4,48,2,34,3],"span":[915,51,53]},{"path":[4,48,2,35],"span":[916,2,33],"trailingComments":" Windows-only\n"},{"path":[4,48,2,35,4],"span":[916,2,10]},{"path":[4,48,2,35,5],"span":[916,11,17]},{"path":[4,48,2,35,1],"span":[916,18,27]},{"path":[4,48,2,35,3],"span":[916,30,32]},{"path":[4,48,2,36],"span":[917,2,43],"trailingComments":" Windows-only\n"},{"path":[4,48,2,36,4],"span":[917,2,10]},{"path":[4,48,2,36,6],"span":[917,11,22]},{"path":[4,48,2,36,1],"span":[917,23,37]},{"path":[4,48,2,36,3],"span":[917,40,42]},{"path":[4,48,2,37],"span":[918,2,31],"trailingComments":" Windows-only\n"},{"path":[4,48,2,37,4],"span":[918,2,10]},{"path":[4,48,2,37,5],"span":[918,11,17]},{"path":[4,48,2,37,1],"span":[918,18,25]},{"path":[4,48,2,37,3],"span":[918,28,30]},{"path":[4,48,2,38],"span":[919,2,38],"trailingComments":" Linux-only\n"},{"path":[4,48,2,38,4],"span":[919,2,10]},{"path":[4,48,2,38,5],"span":[919,11,17]},{"path":[4,48,2,38,1],"span":[919,18,32]},{"path":[4,48,2,38,3],"span":[919,35,37]},{"path":[4,48,2,39],"span":[920,2,49],"trailingComments":" Windows-only\n"},{"path":[4,48,2,39,4],"span":[920,2,10]},{"path":[4,48,2,39,6],"span":[920,11,22]},{"path":[4,48,2,39,1],"span":[920,23,43]},{"path":[4,48,2,39,3],"span":[920,46,48]},{"path":[4,49],"span":[924,0,934,1],"leadingComments":" Chassis *"},{"path":[4,49,1],"span":[924,8,15]},{"path":[4,49,2,0],"span":[926,2,25]},{"path":[4,49,2,0,6],"span":[926,2,13]},{"path":[4,49,2,0,1],"span":[926,16,20]},{"path":[4,49,2,0,3],"span":[926,23,24]},{"path":[4,49,2,1],"span":[927,2,33]},{"path":[4,49,2,1,4],"span":[927,2,10]},{"path":[4,49,2,1,5],"span":[927,11,15]},{"path":[4,49,2,1,1],"span":[927,16,28]},{"path":[4,49,2,1,3],"span":[927,31,32]},{"path":[4,49,2,2],"span":[928,2,41]},{"path":[4,49,2,2,4],"span":[928,2,10]},{"path":[4,49,2,2,5],"span":[928,11,17]},{"path":[4,49,2,2,1],"span":[928,24,36]},{"path":[4,49,2,2,3],"span":[928,39,40]},{"path":[4,49,2,3],"span":[929,2,43]},{"path":[4,49,2,3,4],"span":[929,2,10]},{"path":[4,49,2,3,6],"span":[929,11,22]},{"path":[4,49,2,3,1],"span":[929,23,38]},{"path":[4,49,2,3,3],"span":[929,41,42]},{"path":[4,49,2,4],"span":[930,2,42]},{"path":[4,49,2,4,4],"span":[930,2,10]},{"path":[4,49,2,4,5],"span":[930,11,17]},{"path":[4,49,2,4,1],"span":[930,24,37]},{"path":[4,49,2,4,3],"span":[930,40,41]},{"path":[4,49,2,5],"span":[931,2,38]},{"path":[4,49,2,5,4],"span":[931,2,10]},{"path":[4,49,2,5,5],"span":[931,11,17]},{"path":[4,49,2,5,1],"span":[931,24,33]},{"path":[4,49,2,5,3],"span":[931,36,37]},{"path":[4,49,2,6],"span":[932,2,36]},{"path":[4,49,2,6,4],"span":[932,2,10]},{"path":[4,49,2,6,5],"span":[932,11,17]},{"path":[4,49,2,6,1],"span":[932,24,31]},{"path":[4,49,2,6,3],"span":[932,34,35]},{"path":[4,49,2,7],"span":[933,2,40]},{"path":[4,49,2,7,4],"span":[933,2,10]},{"path":[4,49,2,7,6],"span":[933,11,22]},{"path":[4,49,2,7,1],"span":[933,23,35]},{"path":[4,49,2,7,3],"span":[933,38,39]},{"path":[4,50],"span":[939,0,951,1],"leadingComments":"\n Hard drive for computers: Windows.WindowsHardDisk, Unix.HardDisks, Mac.MacHardDisk\n"},{"path":[4,50,1],"span":[939,8,17]},{"path":[4,50,2,0],"span":[940,2,30]},{"path":[4,50,2,0,4],"span":[940,2,10]},{"path":[4,50,2,0,5],"span":[940,11,17]},{"path":[4,50,2,0,1],"span":[940,18,25]},{"path":[4,50,2,0,3],"span":[940,28,29]},{"path":[4,50,2,1],"span":[941,2,31]},{"path":[4,50,2,1,4],"span":[941,2,10]},{"path":[4,50,2,1,5],"span":[941,11,15]},{"path":[4,50,2,1,1],"span":[941,16,26]},{"path":[4,50,2,1,3],"span":[941,29,30]},{"path":[4,50,2,2],"span":[942,2,34]},{"path":[4,50,2,2,4],"span":[942,2,10]},{"path":[4,50,2,2,5],"span":[942,11,17]},{"path":[4,50,2,2,1],"span":[942,18,29]},{"path":[4,50,2,2,3],"span":[942,32,33]},{"path":[4,50,2,3],"span":[943,2,32]},{"path":[4,50,2,3,4],"span":[943,2,10]},{"path":[4,50,2,3,5],"span":[943,11,17]},{"path":[4,50,2,3,1],"span":[943,18,27]},{"path":[4,50,2,3,3],"span":[943,30,31]},{"path":[4,50,2,4],"span":[944,2,38]},{"path":[4,50,2,4,4],"span":[944,2,10]},{"path":[4,50,2,4,6],"span":[944,11,22]},{"path":[4,50,2,4,1],"span":[944,23,33]},{"path":[4,50,2,4,3],"span":[944,36,37]},{"path":[4,50,2,5],"span":[945,2,34]},{"path":[4,50,2,5,4],"span":[945,2,10]},{"path":[4,50,2,5,5],"span":[945,11,17]},{"path":[4,50,2,5,1],"span":[945,18,29]},{"path":[4,50,2,5,3],"span":[945,32,33]},{"path":[4,50,2,6],"span":[946,2,32]},{"path":[4,50,2,6,4],"span":[946,2,10]},{"path":[4,50,2,6,5],"span":[946,11,16]},{"path":[4,50,2,6,1],"span":[946,17,27]},{"path":[4,50,2,6,3],"span":[946,30,31]},{"path":[4,50,2,7],"span":[947,2,26]},{"path":[4,50,2,7,4],"span":[947,2,10]},{"path":[4,50,2,7,5],"span":[947,11,16]},{"path":[4,50,2,7,1],"span":[947,17,21]},{"path":[4,50,2,7,3],"span":[947,24,25]},{"path":[4,50,2,8],"span":[948,2,34]},{"path":[4,50,2,8,4],"span":[948,2,10]},{"path":[4,50,2,8,5],"span":[948,11,17]},{"path":[4,50,2,8,1],"span":[948,18,29]},{"path":[4,50,2,8,3],"span":[948,32,33]},{"path":[4,50,2,9],"span":[949,2,37]},{"path":[4,50,2,9,4],"span":[949,2,10]},{"path":[4,50,2,9,5],"span":[949,11,17]},{"path":[4,50,2,9,1],"span":[949,18,31]},{"path":[4,50,2,9,3],"span":[949,34,36]},{"path":[4,50,2,10],"span":[950,2,34]},{"path":[4,50,2,10,4],"span":[950,2,10]},{"path":[4,50,2,10,5],"span":[950,11,17]},{"path":[4,50,2,10,1],"span":[950,18,28]},{"path":[4,50,2,10,3],"span":[950,31,33]},{"path":[4,51],"span":[956,0,986,1],"leadingComments":"\n Volumes for Computers: Windows.Volume+Windows.EncryptableVolumes and Unix.Volumes\n"},{"path":[4,51,1],"span":[956,8,19]},{"path":[4,51,2,0],"span":[957,2,32]},{"path":[4,51,2,0,4],"span":[957,2,10]},{"path":[4,51,2,0,5],"span":[957,11,17]},{"path":[4,51,2,0,1],"span":[957,18,27]},{"path":[4,51,2,0,3],"span":[957,30,31]},{"path":[4,51,2,1],"span":[958,2,27],"trailingComments":" unix path, windows drive_letter\n"},{"path":[4,51,2,1,4],"span":[958,2,10]},{"path":[4,51,2,1,5],"span":[958,11,17]},{"path":[4,51,2,1,1],"span":[958,18,22]},{"path":[4,51,2,1,3],"span":[958,25,26]},{"path":[4,51,2,2],"span":[959,2,28],"trailingComments":" win and linux\n"},{"path":[4,51,2,2,4],"span":[959,2,10]},{"path":[4,51,2,2,5],"span":[959,11,17]},{"path":[4,51,2,2,1],"span":[959,18,23]},{"path":[4,51,2,2,3],"span":[959,26,27]},{"path":[4,51,2,3],"span":[960,2,27]},{"path":[4,51,2,3,4],"span":[960,2,10]},{"path":[4,51,2,3,5],"span":[960,11,17]},{"path":[4,51,2,3,1],"span":[960,18,22]},{"path":[4,51,2,3,3],"span":[960,25,26]},{"path":[4,51,2,4],"span":[962,2,30],"trailingComments":" windows capacity, size in unix\n"},{"path":[4,51,2,4,4],"span":[962,2,10]},{"path":[4,51,2,4,5],"span":[962,11,16]},{"path":[4,51,2,4,1],"span":[962,17,25]},{"path":[4,51,2,4,3],"span":[962,28,29]},{"path":[4,51,2,5],"span":[963,2,32]},{"path":[4,51,2,5,4],"span":[963,2,10]},{"path":[4,51,2,5,5],"span":[963,11,16]},{"path":[4,51,2,5,1],"span":[963,17,27]},{"path":[4,51,2,5,3],"span":[963,30,31]},{"path":[4,51,2,6],"span":[964,2,32]},{"path":[4,51,2,6,4],"span":[964,2,10]},{"path":[4,51,2,6,5],"span":[964,11,16]},{"path":[4,51,2,6,1],"span":[964,17,27]},{"path":[4,51,2,6,3],"span":[964,30,31]},{"path":[4,51,2,7],"span":[966,2,38],"trailingComments":" Windows: WMI mapped, Unix: string\n"},{"path":[4,51,2,7,4],"span":[966,2,10]},{"path":[4,51,2,7,6],"span":[966,11,22]},{"path":[4,51,2,7,1],"span":[966,23,33]},{"path":[4,51,2,7,3],"span":[966,36,37]},{"path":[4,51,2,8],"span":[967,2,45],"trailingComments":" from Windows if encrypted: Windows.EncryptableVolumes\n"},{"path":[4,51,2,8,4],"span":[967,2,10]},{"path":[4,51,2,8,6],"span":[967,11,22]},{"path":[4,51,2,8,1],"span":[967,23,40]},{"path":[4,51,2,8,3],"span":[967,43,44]},{"path":[4,51,2,9],"span":[969,2,41]},{"path":[4,51,2,9,4],"span":[969,2,10]},{"path":[4,51,2,9,5],"span":[969,11,17]},{"path":[4,51,2,9,1],"span":[969,18,35]},{"path":[4,51,2,9,3],"span":[969,38,40]},{"path":[4,51,2,10],"span":[970,2,41]},{"path":[4,51,2,10,4],"span":[970,2,10]},{"path":[4,51,2,10,5],"span":[970,11,17]},{"path":[4,51,2,10,1],"span":[970,18,35]},{"path":[4,51,2,10,3],"span":[970,38,40]},{"path":[4,51,2,11],"span":[971,2,35]},{"path":[4,51,2,11,4],"span":[971,2,10]},{"path":[4,51,2,11,5],"span":[971,11,17]},{"path":[4,51,2,11,1],"span":[971,18,29]},{"path":[4,51,2,11,3],"span":[971,32,34]},{"path":[4,51,2,12],"span":[973,2,32]},{"path":[4,51,2,12,4],"span":[973,2,10]},{"path":[4,51,2,12,5],"span":[973,11,15]},{"path":[4,51,2,12,1],"span":[973,16,26]},{"path":[4,51,2,12,3],"span":[973,29,31]},{"path":[4,51,2,13],"span":[974,2,32]},{"path":[4,51,2,13,4],"span":[974,2,10]},{"path":[4,51,2,13,5],"span":[974,11,15]},{"path":[4,51,2,13,1],"span":[974,16,26]},{"path":[4,51,2,13,3],"span":[974,29,31]},{"path":[4,51,2,14],"span":[975,2,35]},{"path":[4,51,2,14,4],"span":[975,2,10]},{"path":[4,51,2,14,5],"span":[975,11,15]},{"path":[4,51,2,14,1],"span":[975,16,29]},{"path":[4,51,2,14,3],"span":[975,32,34]},{"path":[4,51,2,15],"span":[976,2,35]},{"path":[4,51,2,15,4],"span":[976,2,10]},{"path":[4,51,2,15,5],"span":[976,11,15]},{"path":[4,51,2,15,1],"span":[976,16,29]},{"path":[4,51,2,15,3],"span":[976,32,34]},{"path":[4,51,2,16],"span":[977,2,38]},{"path":[4,51,2,16,4],"span":[977,2,10]},{"path":[4,51,2,16,5],"span":[977,11,15]},{"path":[4,51,2,16,1],"span":[977,16,32]},{"path":[4,51,2,16,3],"span":[977,35,37]},{"path":[4,51,2,17],"span":[978,2,39]},{"path":[4,51,2,17,4],"span":[978,2,10]},{"path":[4,51,2,17,5],"span":[978,11,15]},{"path":[4,51,2,17,1],"span":[978,16,33]},{"path":[4,51,2,17,3],"span":[978,36,38]},{"path":[4,51,2,18],"span":[979,2,42]},{"path":[4,51,2,18,4],"span":[979,2,10]},{"path":[4,51,2,18,5],"span":[979,11,15]},{"path":[4,51,2,18,1],"span":[979,16,36]},{"path":[4,51,2,18,3],"span":[979,39,41]},{"path":[4,51,2,19],"span":[980,2,53]},{"path":[4,51,2,19,4],"span":[980,2,10]},{"path":[4,51,2,19,5],"span":[980,11,15]},{"path":[4,51,2,19,1],"span":[980,16,47]},{"path":[4,51,2,19,3],"span":[980,50,52]},{"path":[4,51,2,20],"span":[983,2,31],"leadingComments":" unix\n"},{"path":[4,51,2,20,4],"span":[983,2,10]},{"path":[4,51,2,20,5],"span":[983,11,17]},{"path":[4,51,2,20,1],"span":[983,18,25]},{"path":[4,51,2,20,3],"span":[983,28,30]},{"path":[4,51,2,21],"span":[984,2,35]},{"path":[4,51,2,21,4],"span":[984,2,10]},{"path":[4,51,2,21,5],"span":[984,11,17]},{"path":[4,51,2,21,1],"span":[984,18,29]},{"path":[4,51,2,21,3],"span":[984,32,34]},{"path":[4,52],"span":[991,0,998,1],"leadingComments":"\n Network drives/volumes for Computers: Windows.MappedDrive and Mac.NetworkVolume\n"},{"path":[4,52,1],"span":[991,8,21]},{"path":[4,52,8,0],"span":[992,2,995,5]},{"path":[4,52,8,0,1],"span":[992,8,14]},{"path":[4,52,2,0],"span":[993,4,44]},{"path":[4,52,2,0,6],"span":[993,4,22]},{"path":[4,52,2,0,1],"span":[993,23,39]},{"path":[4,52,2,0,3],"span":[993,42,43]},{"path":[4,52,2,1],"span":[994,4,36]},{"path":[4,52,2,1,6],"span":[994,4,20]},{"path":[4,52,2,1,1],"span":[994,21,31]},{"path":[4,52,2,1,3],"span":[994,34,35]},{"path":[4,52,2,2],"span":[997,2,29]},{"path":[4,52,2,2,4],"span":[997,2,10]},{"path":[4,52,2,2,5],"span":[997,11,17]},{"path":[4,52,2,2,1],"span":[997,18,22]},{"path":[4,52,2,2,3],"span":[997,25,28]},{"path":[4,53],"span":[1001,0,1006,1],"leadingComments":" Network drive for Windows: Mapped drive.\n"},{"path":[4,53,1],"span":[1001,8,26]},{"path":[4,53,2,0],"span":[1002,2,26]},{"path":[4,53,2,0,5],"span":[1002,2,8]},{"path":[4,53,2,0,1],"span":[1002,9,21]},{"path":[4,53,2,0,3],"span":[1002,24,25]},{"path":[4,53,2,1],"span":[1003,2,32]},{"path":[4,53,2,1,4],"span":[1003,2,10]},{"path":[4,53,2,1,5],"span":[1003,11,17]},{"path":[4,53,2,1,1],"span":[1003,18,27]},{"path":[4,53,2,1,3],"span":[1003,30,31]},{"path":[4,53,2,2],"span":[1004,2,34]},{"path":[4,53,2,2,4],"span":[1004,2,10]},{"path":[4,53,2,2,5],"span":[1004,11,17]},{"path":[4,53,2,2,1],"span":[1004,18,29]},{"path":[4,53,2,2,3],"span":[1004,32,33]},{"path":[4,53,2,3],"span":[1005,2,34]},{"path":[4,53,2,3,4],"span":[1005,2,10]},{"path":[4,53,2,3,5],"span":[1005,11,17]},{"path":[4,53,2,3,1],"span":[1005,18,29]},{"path":[4,53,2,3,3],"span":[1005,32,33]},{"path":[4,54],"span":[1009,0,1015,1],"leadingComments":" Network volume for Mac: NetworkVolume.\n"},{"path":[4,54,1],"span":[1009,8,24]},{"path":[4,54,2,0],"span":[1010,2,27]},{"path":[4,54,2,0,4],"span":[1010,2,10]},{"path":[4,54,2,0,5],"span":[1010,11,17]},{"path":[4,54,2,0,1],"span":[1010,18,22]},{"path":[4,54,2,0,3],"span":[1010,25,26]},{"path":[4,54,2,1],"span":[1011,2,35]},{"path":[4,54,2,1,4],"span":[1011,2,10]},{"path":[4,54,2,1,5],"span":[1011,11,17]},{"path":[4,54,2,1,1],"span":[1011,18,30]},{"path":[4,54,2,1,3],"span":[1011,33,34]},{"path":[4,54,2,2],"span":[1012,2,36]},{"path":[4,54,2,2,4],"span":[1012,2,10]},{"path":[4,54,2,2,5],"span":[1012,11,17]},{"path":[4,54,2,2,1],"span":[1012,18,31]},{"path":[4,54,2,2,3],"span":[1012,34,35]},{"path":[4,54,2,3],"span":[1013,2,35]},{"path":[4,54,2,3,4],"span":[1013,2,10]},{"path":[4,54,2,3,5],"span":[1013,11,17]},{"path":[4,54,2,3,1],"span":[1013,18,30]},{"path":[4,54,2,3,3],"span":[1013,33,34]},{"path":[4,54,2,4],"span":[1014,2,36]},{"path":[4,54,2,4,4],"span":[1014,2,10]},{"path":[4,54,2,4,5],"span":[1014,11,17]},{"path":[4,54,2,4,1],"span":[1014,18,31]},{"path":[4,54,2,4,3],"span":[1014,34,35]},{"path":[4,55],"span":[1020,0,1027,1],"leadingComments":"\n Keyboard for computers: Windows.Keyboards\n"},{"path":[4,55,1],"span":[1020,8,16]},{"path":[4,55,2,0],"span":[1021,2,53]},{"path":[4,55,2,0,4],"span":[1021,2,10]},{"path":[4,55,2,0,6],"span":[1021,11,22]},{"path":[4,55,2,0,1],"span":[1021,23,48]},{"path":[4,55,2,0,3],"span":[1021,51,52]},{"path":[4,55,2,1],"span":[1022,2,47]},{"path":[4,55,2,1,4],"span":[1022,2,10]},{"path":[4,55,2,1,5],"span":[1022,11,15]},{"path":[4,55,2,1,1],"span":[1022,16,42]},{"path":[4,55,2,1,3],"span":[1022,45,46]},{"path":[4,55,2,2],"span":[1023,2,34]},{"path":[4,55,2,2,4],"span":[1023,2,10]},{"path":[4,55,2,2,5],"span":[1023,11,17]},{"path":[4,55,2,2,1],"span":[1023,18,29]},{"path":[4,55,2,2,3],"span":[1023,32,33]},{"path":[4,55,2,3],"span":[1024,2,32]},{"path":[4,55,2,3,4],"span":[1024,2,10]},{"path":[4,55,2,3,5],"span":[1024,11,17]},{"path":[4,55,2,3,1],"span":[1024,18,27]},{"path":[4,55,2,3,3],"span":[1024,30,31]},{"path":[4,55,2,4],"span":[1025,2,29]},{"path":[4,55,2,4,4],"span":[1025,2,10]},{"path":[4,55,2,4,5],"span":[1025,11,17]},{"path":[4,55,2,4,1],"span":[1025,18,24]},{"path":[4,55,2,4,3],"span":[1025,27,28]},{"path":[4,55,2,5],"span":[1026,2,45]},{"path":[4,55,2,5,4],"span":[1026,2,10]},{"path":[4,55,2,5,5],"span":[1026,11,16]},{"path":[4,55,2,5,1],"span":[1026,17,40]},{"path":[4,55,2,5,3],"span":[1026,43,44]},{"path":[4,56],"span":[1033,0,1038,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,56,1],"span":[1033,8,19]},{"path":[4,56,2,0],"span":[1034,2,29]},{"path":[4,56,2,0,4],"span":[1034,2,10]},{"path":[4,56,2,0,5],"span":[1034,11,16]},{"path":[4,56,2,0,1],"span":[1034,17,24]},{"path":[4,56,2,0,3],"span":[1034,27,28]},{"path":[4,56,2,1],"span":[1035,2,36]},{"path":[4,56,2,1,4],"span":[1035,2,10]},{"path":[4,56,2,1,6],"span":[1035,11,22]},{"path":[4,56,2,1,1],"span":[1035,23,31]},{"path":[4,56,2,1,3],"span":[1035,34,35]},{"path":[4,56,2,2],"span":[1036,2,32]},{"path":[4,56,2,2,4],"span":[1036,2,10]},{"path":[4,56,2,2,5],"span":[1036,11,17]},{"path":[4,56,2,2,1],"span":[1036,18,27]},{"path":[4,56,2,2,3],"span":[1036,30,31]},{"path":[4,56,2,3],"span":[1037,2,36]},{"path":[4,56,2,3,4],"span":[1037,2,10]},{"path":[4,56,2,3,5],"span":[1037,11,17]},{"path":[4,56,2,3,1],"span":[1037,18,31]},{"path":[4,56,2,3,3],"span":[1037,34,35]},{"path":[4,57],"span":[1044,0,1052,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,57,1],"span":[1044,8,24]},{"path":[4,57,2,0],"span":[1045,2,40]},{"path":[4,57,2,0,4],"span":[1045,2,10]},{"path":[4,57,2,0,6],"span":[1045,11,22]},{"path":[4,57,2,0,1],"span":[1045,23,35]},{"path":[4,57,2,0,3],"span":[1045,38,39]},{"path":[4,57,2,1],"span":[1046,2,30]},{"path":[4,57,2,1,4],"span":[1046,2,10]},{"path":[4,57,2,1,5],"span":[1046,11,17]},{"path":[4,57,2,1,1],"span":[1046,18,25]},{"path":[4,57,2,1,3],"span":[1046,28,29]},{"path":[4,57,2,2],"span":[1047,2,53]},{"path":[4,57,2,2,4],"span":[1047,2,10]},{"path":[4,57,2,2,6],"span":[1047,11,22]},{"path":[4,57,2,2,1],"span":[1047,23,48]},{"path":[4,57,2,2,3],"span":[1047,51,52]},{"path":[4,57,2,3],"span":[1048,2,47]},{"path":[4,57,2,3,4],"span":[1048,2,10]},{"path":[4,57,2,3,5],"span":[1048,11,15]},{"path":[4,57,2,3,1],"span":[1048,16,42]},{"path":[4,57,2,3,3],"span":[1048,45,46]},{"path":[4,57,2,4],"span":[1049,2,32]},{"path":[4,57,2,4,4],"span":[1049,2,10]},{"path":[4,57,2,4,5],"span":[1049,11,17]},{"path":[4,57,2,4,1],"span":[1049,18,27]},{"path":[4,57,2,4,3],"span":[1049,30,31]},{"path":[4,57,2,5],"span":[1050,2,35]},{"path":[4,57,2,5,4],"span":[1050,2,10]},{"path":[4,57,2,5,5],"span":[1050,11,17]},{"path":[4,57,2,5,1],"span":[1050,18,30]},{"path":[4,57,2,5,3],"span":[1050,33,34]},{"path":[4,57,2,6],"span":[1051,2,46]},{"path":[4,57,2,6,4],"span":[1051,2,10]},{"path":[4,57,2,6,6],"span":[1051,11,22]},{"path":[4,57,2,6,1],"span":[1051,23,41]},{"path":[4,57,2,6,3],"span":[1051,44,45]},{"path":[4,58],"span":[1058,0,1070,1],"leadingComments":"\n Pointing Device for computers, like mouse or trackpad: Windows.PointingDevice\n"},{"path":[4,58,1],"span":[1058,8,22]},{"path":[4,58,2,0],"span":[1059,2,30]},{"path":[4,58,2,0,4],"span":[1059,2,10]},{"path":[4,58,2,0,5],"span":[1059,11,17]},{"path":[4,58,2,0,1],"span":[1059,18,25]},{"path":[4,58,2,0,3],"span":[1059,28,29]},{"path":[4,58,2,1],"span":[1060,2,32]},{"path":[4,58,2,1,4],"span":[1060,2,10]},{"path":[4,58,2,1,5],"span":[1060,11,17]},{"path":[4,58,2,1,1],"span":[1060,18,27]},{"path":[4,58,2,1,3],"span":[1060,30,31]},{"path":[4,58,2,2],"span":[1061,2,44]},{"path":[4,58,2,2,4],"span":[1061,2,10]},{"path":[4,58,2,2,6],"span":[1061,11,22]},{"path":[4,58,2,2,1],"span":[1061,23,39]},{"path":[4,58,2,2,3],"span":[1061,42,43]},{"path":[4,58,2,3],"span":[1062,2,45]},{"path":[4,58,2,3,4],"span":[1062,2,10]},{"path":[4,58,2,3,5],"span":[1062,11,16]},{"path":[4,58,2,3,1],"span":[1062,18,40]},{"path":[4,58,2,3,3],"span":[1062,43,44]},{"path":[4,58,2,4],"span":[1063,2,38]},{"path":[4,58,2,4,4],"span":[1063,2,10]},{"path":[4,58,2,4,6],"span":[1063,11,22]},{"path":[4,58,2,4,1],"span":[1063,23,33]},{"path":[4,58,2,4,3],"span":[1063,36,37]},{"path":[4,58,2,5],"span":[1064,2,36]},{"path":[4,58,2,5,4],"span":[1064,2,10]},{"path":[4,58,2,5,5],"span":[1064,11,17]},{"path":[4,58,2,5,1],"span":[1064,18,31]},{"path":[4,58,2,5,3],"span":[1064,34,35]},{"path":[4,58,2,6],"span":[1065,2,34]},{"path":[4,58,2,6,4],"span":[1065,2,10]},{"path":[4,58,2,6,5],"span":[1065,11,17]},{"path":[4,58,2,6,1],"span":[1065,18,29]},{"path":[4,58,2,6,3],"span":[1065,32,33]},{"path":[4,58,2,7],"span":[1066,2,35]},{"path":[4,58,2,7,4],"span":[1066,2,10]},{"path":[4,58,2,7,5],"span":[1066,11,17]},{"path":[4,58,2,7,1],"span":[1066,18,30]},{"path":[4,58,2,7,3],"span":[1066,33,34]},{"path":[4,58,2,8],"span":[1067,2,40]},{"path":[4,58,2,8,4],"span":[1067,2,10]},{"path":[4,58,2,8,5],"span":[1067,11,16]},{"path":[4,58,2,8,1],"span":[1067,18,35]},{"path":[4,58,2,8,3],"span":[1067,38,39]},{"path":[4,58,2,9],"span":[1068,2,42]},{"path":[4,58,2,9,4],"span":[1068,2,10]},{"path":[4,58,2,9,6],"span":[1068,11,22]},{"path":[4,58,2,9,1],"span":[1068,23,36]},{"path":[4,58,2,9,3],"span":[1068,39,41]},{"path":[4,58,2,10],"span":[1069,2,44]},{"path":[4,58,2,10,4],"span":[1069,2,10]},{"path":[4,58,2,10,5],"span":[1069,11,16]},{"path":[4,58,2,10,1],"span":[1069,18,38]},{"path":[4,58,2,10,3],"span":[1069,41,43]},{"path":[4,59],"span":[1075,0,1082,1],"leadingComments":"\n AutoRunCommand: Windows.Autorun\n"},{"path":[4,59,1],"span":[1075,8,22]},{"path":[4,59,2,0],"span":[1076,2,30]},{"path":[4,59,2,0,4],"span":[1076,2,10]},{"path":[4,59,2,0,5],"span":[1076,11,17]},{"path":[4,59,2,0,1],"span":[1076,18,25]},{"path":[4,59,2,0,3],"span":[1076,28,29]},{"path":[4,59,2,1],"span":[1077,2,30]},{"path":[4,59,2,1,4],"span":[1077,2,10]},{"path":[4,59,2,1,5],"span":[1077,11,17]},{"path":[4,59,2,1,1],"span":[1077,18,25]},{"path":[4,59,2,1,3],"span":[1077,28,29]},{"path":[4,59,2,2],"span":[1078,2,31]},{"path":[4,59,2,2,4],"span":[1078,2,10]},{"path":[4,59,2,2,5],"span":[1078,11,17]},{"path":[4,59,2,2,1],"span":[1078,18,26]},{"path":[4,59,2,2,3],"span":[1078,29,30]},{"path":[4,59,2,3],"span":[1079,2,27]},{"path":[4,59,2,3,4],"span":[1079,2,10]},{"path":[4,59,2,3,5],"span":[1079,11,17]},{"path":[4,59,2,3,1],"span":[1079,18,22]},{"path":[4,59,2,3,3],"span":[1079,25,26]},{"path":[4,59,2,4],"span":[1080,2,27]},{"path":[4,59,2,4,4],"span":[1080,2,10]},{"path":[4,59,2,4,5],"span":[1080,11,17]},{"path":[4,59,2,4,1],"span":[1080,18,22]},{"path":[4,59,2,4,3],"span":[1080,25,26]},{"path":[4,59,2,5],"span":[1081,2,31]},{"path":[4,59,2,5,4],"span":[1081,2,10]},{"path":[4,59,2,5,5],"span":[1081,11,17]},{"path":[4,59,2,5,1],"span":[1081,18,26]},{"path":[4,59,2,5,3],"span":[1081,29,30]},{"path":[4,60],"span":[1087,0,1098,1],"leadingComments":"\n BootConfig: Windows.BootConfig \n"},{"path":[4,60,1],"span":[1087,8,18]},{"path":[4,60,2,0],"span":[1088,2,37]},{"path":[4,60,2,0,4],"span":[1088,2,10]},{"path":[4,60,2,0,5],"span":[1088,11,17]},{"path":[4,60,2,0,1],"span":[1088,18,32]},{"path":[4,60,2,0,3],"span":[1088,35,36]},{"path":[4,60,2,1],"span":[1089,2,30]},{"path":[4,60,2,1,4],"span":[1089,2,10]},{"path":[4,60,2,1,5],"span":[1089,11,17]},{"path":[4,60,2,1,1],"span":[1089,18,25]},{"path":[4,60,2,1,3],"span":[1089,28,29]},{"path":[4,60,2,2],"span":[1090,2,27]},{"path":[4,60,2,2,4],"span":[1090,2,10]},{"path":[4,60,2,2,5],"span":[1090,11,17]},{"path":[4,60,2,2,1],"span":[1090,18,22]},{"path":[4,60,2,2,3],"span":[1090,25,26]},{"path":[4,60,2,3],"span":[1091,2,41]},{"path":[4,60,2,3,4],"span":[1091,2,10]},{"path":[4,60,2,3,5],"span":[1091,11,17]},{"path":[4,60,2,3,1],"span":[1091,18,36]},{"path":[4,60,2,3,3],"span":[1091,39,40]},{"path":[4,60,2,4],"span":[1092,2,40]},{"path":[4,60,2,4,4],"span":[1092,2,10]},{"path":[4,60,2,4,5],"span":[1092,11,17]},{"path":[4,60,2,4,1],"span":[1092,18,35]},{"path":[4,60,2,4,3],"span":[1092,38,39]},{"path":[4,60,2,5],"span":[1093,2,37]},{"path":[4,60,2,5,4],"span":[1093,2,10]},{"path":[4,60,2,5,5],"span":[1093,11,17]},{"path":[4,60,2,5,1],"span":[1093,18,32]},{"path":[4,60,2,5,3],"span":[1093,35,36]},{"path":[4,60,2,6],"span":[1096,2,34],"leadingComments":" from mac\n"},{"path":[4,60,2,6,4],"span":[1096,2,10]},{"path":[4,60,2,6,5],"span":[1096,11,17]},{"path":[4,60,2,6,1],"span":[1096,18,29]},{"path":[4,60,2,6,3],"span":[1096,32,33]},{"path":[4,60,2,7],"span":[1097,2,32]},{"path":[4,60,2,7,4],"span":[1097,2,10]},{"path":[4,60,2,7,5],"span":[1097,11,17]},{"path":[4,60,2,7,1],"span":[1097,18,27]},{"path":[4,60,2,7,3],"span":[1097,30,31]},{"path":[4,61],"span":[1103,0,1109,1],"leadingComments":"\n SharedResource: windows WindowsShare.\n"},{"path":[4,61,1],"span":[1103,8,22]},{"path":[4,61,2,0],"span":[1104,2,30]},{"path":[4,61,2,0,4],"span":[1104,2,10]},{"path":[4,61,2,0,5],"span":[1104,11,17]},{"path":[4,61,2,0,1],"span":[1104,18,25]},{"path":[4,61,2,0,3],"span":[1104,28,29]},{"path":[4,61,2,1],"span":[1105,2,28]},{"path":[4,61,2,1,4],"span":[1105,2,10]},{"path":[4,61,2,1,5],"span":[1105,11,17]},{"path":[4,61,2,1,1],"span":[1105,18,22]},{"path":[4,61,2,1,3],"span":[1105,26,27]},{"path":[4,61,2,2],"span":[1106,2,27]},{"path":[4,61,2,2,4],"span":[1106,2,10]},{"path":[4,61,2,2,5],"span":[1106,11,17]},{"path":[4,61,2,2,1],"span":[1106,18,22]},{"path":[4,61,2,2,3],"span":[1106,25,26]},{"path":[4,61,2,3],"span":[1107,2,32]},{"path":[4,61,2,3,4],"span":[1107,2,10]},{"path":[4,61,2,3,6],"span":[1107,11,22]},{"path":[4,61,2,3,1],"span":[1107,23,27]},{"path":[4,61,2,3,3],"span":[1107,30,31]},{"path":[4,61,2,4],"span":[1108,2,50]},{"path":[4,61,2,4,4],"span":[1108,2,10]},{"path":[4,61,2,4,6],"span":[1108,11,27]},{"path":[4,61,2,4,1],"span":[1108,28,45]},{"path":[4,61,2,4,3],"span":[1108,48,49]},{"path":[4,62],"span":[1114,1,1121,1],"leadingComments":"\n SharedPermission: windows SharePermissionInfo.\n"},{"path":[4,62,1],"span":[1114,9,25]},{"path":[4,62,2,0],"span":[1115,2,27]},{"path":[4,62,2,0,4],"span":[1115,2,10]},{"path":[4,62,2,0,5],"span":[1115,11,17]},{"path":[4,62,2,0,1],"span":[1115,18,22]},{"path":[4,62,2,0,3],"span":[1115,25,26]},{"path":[4,62,2,1],"span":[1116,2,31]},{"path":[4,62,2,1,4],"span":[1116,2,10]},{"path":[4,62,2,1,5],"span":[1116,11,17]},{"path":[4,62,2,1,1],"span":[1116,18,25]},{"path":[4,62,2,1,3],"span":[1116,29,30]},{"path":[4,62,2,2],"span":[1117,2,32]},{"path":[4,62,2,2,4],"span":[1117,2,10]},{"path":[4,62,2,2,5],"span":[1117,11,15]},{"path":[4,62,2,2,1],"span":[1117,16,27]},{"path":[4,62,2,2,3],"span":[1117,30,31]},{"path":[4,62,2,3],"span":[1118,2,33]},{"path":[4,62,2,3,4],"span":[1118,2,10]},{"path":[4,62,2,3,5],"span":[1118,11,15]},{"path":[4,62,2,3,1],"span":[1118,16,28]},{"path":[4,62,2,3,3],"span":[1118,31,32]},{"path":[4,62,2,4],"span":[1119,2,32]},{"path":[4,62,2,4,4],"span":[1119,2,10]},{"path":[4,62,2,4,5],"span":[1119,11,15]},{"path":[4,62,2,4,1],"span":[1119,16,27]},{"path":[4,62,2,4,3],"span":[1119,30,31]},{"path":[4,62,2,5],"span":[1120,2,34]},{"path":[4,62,2,5,4],"span":[1120,2,10]},{"path":[4,62,2,5,5],"span":[1120,11,17]},{"path":[4,62,2,5,1],"span":[1120,18,29]},{"path":[4,62,2,5,3],"span":[1120,32,33]},{"path":[4,63],"span":[1126,0,1132,1],"leadingComments":"\n RunningProcess: computer running processes. Windows.WindowsProcess\n"},{"path":[4,63,1],"span":[1126,8,22]},{"path":[4,63,2,0],"span":[1127,2,27],"trailingComments":" caption\n"},{"path":[4,63,2,0,4],"span":[1127,2,10]},{"path":[4,63,2,0,5],"span":[1127,11,17]},{"path":[4,63,2,0,1],"span":[1127,18,22]},{"path":[4,63,2,0,3],"span":[1127,25,26]},{"path":[4,63,2,1],"span":[1128,2,27],"trailingComments":" executable_path\n"},{"path":[4,63,2,1,4],"span":[1128,2,10]},{"path":[4,63,2,1,5],"span":[1128,11,17]},{"path":[4,63,2,1,1],"span":[1128,18,22]},{"path":[4,63,2,1,3],"span":[1128,25,26]},{"path":[4,63,2,2],"span":[1129,2,29]},{"path":[4,63,2,2,4],"span":[1129,2,10]},{"path":[4,63,2,2,5],"span":[1129,11,16]},{"path":[4,63,2,2,1],"span":[1129,17,24]},{"path":[4,63,2,2,3],"span":[1129,27,28]},{"path":[4,63,2,3],"span":[1130,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,63,2,3,4],"span":[1130,2,10]},{"path":[4,63,2,3,5],"span":[1130,11,16]},{"path":[4,63,2,3,1],"span":[1130,17,25]},{"path":[4,63,2,3,3],"span":[1130,28,29]},{"path":[4,63,2,4],"span":[1131,2,29]},{"path":[4,63,2,4,4],"span":[1131,2,10]},{"path":[4,63,2,4,5],"span":[1131,11,17]},{"path":[4,63,2,4,1],"span":[1131,18,24]},{"path":[4,63,2,4,3],"span":[1131,27,28]},{"path":[4,64],"span":[1137,0,1148,1],"leadingComments":"\n Operating System Service: WindowsService.\n"},{"path":[4,64,1],"span":[1137,8,30]},{"path":[4,64,2,0],"span":[1138,2,27]},{"path":[4,64,2,0,4],"span":[1138,2,10]},{"path":[4,64,2,0,5],"span":[1138,11,17]},{"path":[4,64,2,0,1],"span":[1138,18,22]},{"path":[4,64,2,0,3],"span":[1138,25,26]},{"path":[4,64,2,1],"span":[1139,2,30]},{"path":[4,64,2,1,4],"span":[1139,2,10]},{"path":[4,64,2,1,5],"span":[1139,11,17]},{"path":[4,64,2,1,1],"span":[1139,18,25]},{"path":[4,64,2,1,3],"span":[1139,28,29]},{"path":[4,64,2,2],"span":[1140,2,31]},{"path":[4,64,2,2,4],"span":[1140,2,10]},{"path":[4,64,2,2,5],"span":[1140,11,17]},{"path":[4,64,2,2,1],"span":[1140,18,26]},{"path":[4,64,2,2,3],"span":[1140,29,30]},{"path":[4,64,2,3],"span":[1141,2,33]},{"path":[4,64,2,3,4],"span":[1141,2,10]},{"path":[4,64,2,3,5],"span":[1141,11,17]},{"path":[4,64,2,3,1],"span":[1141,18,28]},{"path":[4,64,2,3,3],"span":[1141,31,32]},{"path":[4,64,2,4],"span":[1142,2,33]},{"path":[4,64,2,4,4],"span":[1142,2,10]},{"path":[4,64,2,4,5],"span":[1142,11,17]},{"path":[4,64,2,4,1],"span":[1142,18,28]},{"path":[4,64,2,4,3],"span":[1142,31,32]},{"path":[4,64,2,5],"span":[1143,2,28]},{"path":[4,64,2,5,4],"span":[1143,2,10]},{"path":[4,64,2,5,5],"span":[1143,11,17]},{"path":[4,64,2,5,1],"span":[1143,18,23]},{"path":[4,64,2,5,3],"span":[1143,26,27]},{"path":[4,64,2,6],"span":[1144,2,28]},{"path":[4,64,2,6,4],"span":[1144,2,10]},{"path":[4,64,2,6,5],"span":[1144,11,15]},{"path":[4,64,2,6,1],"span":[1144,16,23]},{"path":[4,64,2,6,3],"span":[1144,26,27]},{"path":[4,64,2,7],"span":[1145,2,33]},{"path":[4,64,2,7,4],"span":[1145,2,10]},{"path":[4,64,2,7,5],"span":[1145,11,15]},{"path":[4,64,2,7,1],"span":[1145,16,28]},{"path":[4,64,2,7,3],"span":[1145,31,32]},{"path":[4,64,2,8],"span":[1146,2,32]},{"path":[4,64,2,8,4],"span":[1146,2,10]},{"path":[4,64,2,8,5],"span":[1146,11,15]},{"path":[4,64,2,8,1],"span":[1146,16,27]},{"path":[4,64,2,8,3],"span":[1146,30,31]},{"path":[4,64,2,9],"span":[1147,2,38]},{"path":[4,64,2,9,4],"span":[1147,2,10]},{"path":[4,64,2,9,5],"span":[1147,11,15]},{"path":[4,64,2,9,1],"span":[1147,16,32]},{"path":[4,64,2,9,3],"span":[1147,35,37]},{"path":[4,65],"span":[1153,0,1157,1],"leadingComments":"\n Operating System Recovery: only windows atm.\n"},{"path":[4,65,1],"span":[1153,8,31]},{"path":[4,65,8,0],"span":[1154,2,1156,3]},{"path":[4,65,8,0,1],"span":[1154,8,10]},{"path":[4,65,2,0],"span":[1155,6,32]},{"path":[4,65,2,0,6],"span":[1155,6,23]},{"path":[4,65,2,0,1],"span":[1155,24,27]},{"path":[4,65,2,0,3],"span":[1155,30,31]},{"path":[4,66],"span":[1162,0,1173,1],"leadingComments":"\n Windows WindowsOsRecovery.\n"},{"path":[4,66,1],"span":[1162,8,25]},{"path":[4,66,2,0],"span":[1163,2,32]},{"path":[4,66,2,0,4],"span":[1163,2,10]},{"path":[4,66,2,0,5],"span":[1163,11,15]},{"path":[4,66,2,0,1],"span":[1163,16,27]},{"path":[4,66,2,0,3],"span":[1163,30,31]},{"path":[4,66,2,1],"span":[1164,2,38]},{"path":[4,66,2,1,4],"span":[1164,2,10]},{"path":[4,66,2,1,5],"span":[1164,11,17]},{"path":[4,66,2,1,1],"span":[1164,18,33]},{"path":[4,66,2,1,3],"span":[1164,36,37]},{"path":[4,66,2,2],"span":[1165,2,37]},{"path":[4,66,2,2,4],"span":[1165,2,10]},{"path":[4,66,2,2,5],"span":[1165,11,15]},{"path":[4,66,2,2,1],"span":[1165,16,32]},{"path":[4,66,2,2,3],"span":[1165,35,36]},{"path":[4,66,2,3],"span":[1166,2,27]},{"path":[4,66,2,3,4],"span":[1166,2,10]},{"path":[4,66,2,3,5],"span":[1166,11,17]},{"path":[4,66,2,3,1],"span":[1166,18,22]},{"path":[4,66,2,3,3],"span":[1166,25,26]},{"path":[4,66,2,4],"span":[1167,2,50]},{"path":[4,66,2,4,4],"span":[1167,2,10]},{"path":[4,66,2,4,5],"span":[1167,11,15]},{"path":[4,66,2,4,1],"span":[1167,16,45]},{"path":[4,66,2,4,3],"span":[1167,48,49]},{"path":[4,66,2,5],"span":[1168,2,37]},{"path":[4,66,2,5,4],"span":[1168,2,10]},{"path":[4,66,2,5,5],"span":[1168,11,15]},{"path":[4,66,2,5,1],"span":[1168,16,32]},{"path":[4,66,2,5,3],"span":[1168,35,36]},{"path":[4,66,2,6],"span":[1169,2,37]},{"path":[4,66,2,6,4],"span":[1169,2,10]},{"path":[4,66,2,6,5],"span":[1169,11,15]},{"path":[4,66,2,6,1],"span":[1169,16,32]},{"path":[4,66,2,6,3],"span":[1169,35,36]},{"path":[4,66,2,7],"span":[1170,2,40]},{"path":[4,66,2,7,4],"span":[1170,2,10]},{"path":[4,66,2,7,5],"span":[1170,11,15]},{"path":[4,66,2,7,1],"span":[1170,16,35]},{"path":[4,66,2,7,3],"span":[1170,38,39]},{"path":[4,66,2,8],"span":[1171,2,44]},{"path":[4,66,2,8,4],"span":[1171,2,10]},{"path":[4,66,2,8,6],"span":[1171,11,22]},{"path":[4,66,2,8,1],"span":[1171,23,38]},{"path":[4,66,2,8,3],"span":[1171,41,43]},{"path":[4,66,2,9],"span":[1172,2,43]},{"path":[4,66,2,9,4],"span":[1172,2,10]},{"path":[4,66,2,9,5],"span":[1172,11,17]},{"path":[4,66,2,9,1],"span":[1172,18,37]},{"path":[4,66,2,9,3],"span":[1172,40,42]},{"path":[4,67],"span":[1179,0,1188,1],"leadingComments":"\n Driver: computer drivers.\n"},{"path":[4,67,1],"span":[1179,8,14]},{"path":[4,67,8,0],"span":[1180,2,1184,3]},{"path":[4,67,8,0,1],"span":[1180,8,14]},{"path":[4,67,2,0],"span":[1181,4,36]},{"path":[4,67,2,0,6],"span":[1181,4,23]},{"path":[4,67,2,0,1],"span":[1181,24,31]},{"path":[4,67,2,0,3],"span":[1181,34,35]},{"path":[4,67,2,1],"span":[1182,4,39]},{"path":[4,67,2,1,6],"span":[1182,4,26]},{"path":[4,67,2,1,1],"span":[1182,27,34]},{"path":[4,67,2,1,3],"span":[1182,37,38]},{"path":[4,67,2,2],"span":[1183,4,41]},{"path":[4,67,2,2,6],"span":[1183,4,24]},{"path":[4,67,2,2,1],"span":[1183,25,36]},{"path":[4,67,2,2,3],"span":[1183,39,40]},{"path":[4,67,2,3],"span":[1186,2,29]},{"path":[4,67,2,3,4],"span":[1186,2,10]},{"path":[4,67,2,3,5],"span":[1186,11,17]},{"path":[4,67,2,3,1],"span":[1186,18,22]},{"path":[4,67,2,3,3],"span":[1186,25,28]},{"path":[4,67,2,4],"span":[1187,2,36]},{"path":[4,67,2,4,4],"span":[1187,2,10]},{"path":[4,67,2,4,5],"span":[1187,11,17]},{"path":[4,67,2,4,1],"span":[1187,18,29]},{"path":[4,67,2,4,3],"span":[1187,32,35]},{"path":[4,68],"span":[1193,0,1212,1],"leadingComments":"\n WindowsSystemDriver: Windows.SystemDriver\n"},{"path":[4,68,1],"span":[1193,8,27]},{"path":[4,68,2,0],"span":[1194,2,34]},{"path":[4,68,2,0,4],"span":[1194,2,10]},{"path":[4,68,2,0,5],"span":[1194,11,15]},{"path":[4,68,2,0,1],"span":[1194,17,29]},{"path":[4,68,2,0,3],"span":[1194,32,33]},{"path":[4,68,2,1],"span":[1195,2,33]},{"path":[4,68,2,1,4],"span":[1195,2,10]},{"path":[4,68,2,1,5],"span":[1195,11,15]},{"path":[4,68,2,1,1],"span":[1195,17,28]},{"path":[4,68,2,1,3],"span":[1195,31,32]},{"path":[4,68,2,2],"span":[1196,2,38]},{"path":[4,68,2,2,4],"span":[1196,2,10]},{"path":[4,68,2,2,5],"span":[1196,11,15]},{"path":[4,68,2,2,1],"span":[1196,17,33]},{"path":[4,68,2,2,3],"span":[1196,36,37]},{"path":[4,68,2,3],"span":[1197,2,36]},{"path":[4,68,2,3,4],"span":[1197,2,10]},{"path":[4,68,2,3,5],"span":[1197,11,17]},{"path":[4,68,2,3,1],"span":[1197,18,31]},{"path":[4,68,2,3,3],"span":[1197,34,35]},{"path":[4,68,2,4],"span":[1198,2,32]},{"path":[4,68,2,4,4],"span":[1198,2,10]},{"path":[4,68,2,4,5],"span":[1198,11,16]},{"path":[4,68,2,4,1],"span":[1198,18,27]},{"path":[4,68,2,4,3],"span":[1198,30,31]},{"path":[4,68,2,5],"span":[1199,2,32]},{"path":[4,68,2,5,4],"span":[1199,2,10]},{"path":[4,68,2,5,5],"span":[1199,11,17]},{"path":[4,68,2,5,1],"span":[1199,18,27]},{"path":[4,68,2,5,3],"span":[1199,30,31]},{"path":[4,68,2,6],"span":[1200,2,49]},{"path":[4,68,2,6,4],"span":[1200,2,10]},{"path":[4,68,2,6,5],"span":[1200,11,16]},{"path":[4,68,2,6,1],"span":[1200,18,44]},{"path":[4,68,2,6,3],"span":[1200,47,48]},{"path":[4,68,2,7],"span":[1201,2,34]},{"path":[4,68,2,7,4],"span":[1201,2,10]},{"path":[4,68,2,7,5],"span":[1201,11,17]},{"path":[4,68,2,7,1],"span":[1201,18,30]},{"path":[4,68,2,7,3],"span":[1201,32,33]},{"path":[4,68,2,8],"span":[1202,2,29]},{"path":[4,68,2,8,4],"span":[1202,2,10]},{"path":[4,68,2,8,5],"span":[1202,11,15]},{"path":[4,68,2,8,1],"span":[1202,17,24]},{"path":[4,68,2,8,3],"span":[1202,27,28]},{"path":[4,68,2,9],"span":[1203,2,34]},{"path":[4,68,2,9,4],"span":[1203,2,10]},{"path":[4,68,2,9,5],"span":[1203,11,17]},{"path":[4,68,2,9,1],"span":[1203,18,28]},{"path":[4,68,2,9,3],"span":[1203,31,33]},{"path":[4,68,2,10],"span":[1204,2,34]},{"path":[4,68,2,10,4],"span":[1204,2,10]},{"path":[4,68,2,10,5],"span":[1204,11,17]},{"path":[4,68,2,10,1],"span":[1204,18,28]},{"path":[4,68,2,10,3],"span":[1204,31,33]},{"path":[4,68,2,11],"span":[1205,2,29]},{"path":[4,68,2,11,4],"span":[1205,2,10]},{"path":[4,68,2,11,5],"span":[1205,11,17]},{"path":[4,68,2,11,1],"span":[1205,18,23]},{"path":[4,68,2,11,3],"span":[1205,26,28]},{"path":[4,68,2,12],"span":[1206,2,30]},{"path":[4,68,2,12,4],"span":[1206,2,10]},{"path":[4,68,2,12,5],"span":[1206,11,17]},{"path":[4,68,2,12,1],"span":[1206,18,24]},{"path":[4,68,2,12,3],"span":[1206,27,29]},{"path":[4,68,2,13],"span":[1207,2,30]},{"path":[4,68,2,13,4],"span":[1207,2,10]},{"path":[4,68,2,13,5],"span":[1207,11,16]},{"path":[4,68,2,13,1],"span":[1207,18,24]},{"path":[4,68,2,13,3],"span":[1207,27,29]},{"path":[4,68,2,14],"span":[1208,2,28]},{"path":[4,68,2,14,4],"span":[1208,2,10]},{"path":[4,68,2,14,5],"span":[1208,11,17]},{"path":[4,68,2,14,1],"span":[1208,18,22]},{"path":[4,68,2,14,3],"span":[1208,25,27]},{"path":[4,68,2,15],"span":[1209,2,35]},{"path":[4,68,2,15,4],"span":[1209,2,10]},{"path":[4,68,2,15,5],"span":[1209,11,17]},{"path":[4,68,2,15,1],"span":[1209,18,29]},{"path":[4,68,2,15,3],"span":[1209,32,34]},{"path":[4,68,2,16],"span":[1210,2,31]},{"path":[4,68,2,16,4],"span":[1210,2,10]},{"path":[4,68,2,16,5],"span":[1210,11,17]},{"path":[4,68,2,16,1],"span":[1210,18,25]},{"path":[4,68,2,16,3],"span":[1210,28,30]},{"path":[4,68,2,17],"span":[1211,2,36]},{"path":[4,68,2,17,4],"span":[1211,2,10]},{"path":[4,68,2,17,5],"span":[1211,11,17]},{"path":[4,68,2,17,1],"span":[1211,18,30]},{"path":[4,68,2,17,3],"span":[1211,33,35]},{"path":[4,69],"span":[1217,0,1236,1],"leadingComments":"\n WindowsPnpSignedDriver: Windows.PnpSignedDriver\n"},{"path":[4,69,1],"span":[1217,8,30]},{"path":[4,69,2,0],"span":[1218,2,32]},{"path":[4,69,2,0,4],"span":[1218,2,10]},{"path":[4,69,2,0,5],"span":[1218,11,17]},{"path":[4,69,2,0,1],"span":[1218,18,27]},{"path":[4,69,2,0,3],"span":[1218,30,31]},{"path":[4,69,2,1],"span":[1219,2,32]},{"path":[4,69,2,1,4],"span":[1219,2,10]},{"path":[4,69,2,1,5],"span":[1219,11,17]},{"path":[4,69,2,1,1],"span":[1219,18,27]},{"path":[4,69,2,1,3],"span":[1219,30,31]},{"path":[4,69,2,2],"span":[1220,2,33]},{"path":[4,69,2,2,4],"span":[1220,2,10]},{"path":[4,69,2,2,5],"span":[1220,11,17]},{"path":[4,69,2,2,1],"span":[1220,18,28]},{"path":[4,69,2,2,3],"span":[1220,31,32]},{"path":[4,69,2,3],"span":[1221,2,34]},{"path":[4,69,2,3,4],"span":[1221,2,10]},{"path":[4,69,2,3,5],"span":[1221,11,17]},{"path":[4,69,2,3,1],"span":[1221,18,29]},{"path":[4,69,2,3,3],"span":[1221,32,33]},{"path":[4,69,2,4],"span":[1222,2,36]},{"path":[4,69,2,4,4],"span":[1222,2,10]},{"path":[4,69,2,4,5],"span":[1222,11,17]},{"path":[4,69,2,4,1],"span":[1222,18,31]},{"path":[4,69,2,4,3],"span":[1222,34,35]},{"path":[4,69,2,5],"span":[1223,2,44]},{"path":[4,69,2,5,6],"span":[1223,2,27]},{"path":[4,69,2,5,1],"span":[1223,28,39]},{"path":[4,69,2,5,3],"span":[1223,42,43]},{"path":[4,69,2,6],"span":[1224,2,37]},{"path":[4,69,2,6,4],"span":[1224,2,10]},{"path":[4,69,2,6,5],"span":[1224,11,17]},{"path":[4,69,2,6,1],"span":[1224,18,32]},{"path":[4,69,2,6,3],"span":[1224,35,36]},{"path":[4,69,2,7],"span":[1225,2,34]},{"path":[4,69,2,7,4],"span":[1225,2,10]},{"path":[4,69,2,7,5],"span":[1225,11,17]},{"path":[4,69,2,7,1],"span":[1225,18,29]},{"path":[4,69,2,7,3],"span":[1225,32,33]},{"path":[4,69,2,8],"span":[1226,2,31]},{"path":[4,69,2,8,4],"span":[1226,2,10]},{"path":[4,69,2,8,5],"span":[1226,11,17]},{"path":[4,69,2,8,1],"span":[1226,18,26]},{"path":[4,69,2,8,3],"span":[1226,29,30]},{"path":[4,69,2,9],"span":[1227,2,32]},{"path":[4,69,2,9,4],"span":[1227,2,10]},{"path":[4,69,2,9,5],"span":[1227,11,15]},{"path":[4,69,2,9,1],"span":[1227,17,26]},{"path":[4,69,2,9,3],"span":[1227,29,31]},{"path":[4,69,2,10],"span":[1228,2,32]},{"path":[4,69,2,10,4],"span":[1228,2,10]},{"path":[4,69,2,10,5],"span":[1228,11,17]},{"path":[4,69,2,10,1],"span":[1228,18,26]},{"path":[4,69,2,10,3],"span":[1228,29,31]},{"path":[4,69,2,11],"span":[1229,2,27]},{"path":[4,69,2,11,4],"span":[1229,2,10]},{"path":[4,69,2,11,5],"span":[1229,11,17]},{"path":[4,69,2,11,1],"span":[1229,18,21]},{"path":[4,69,2,11,3],"span":[1229,24,26]},{"path":[4,69,2,12],"span":[1230,2,36]},{"path":[4,69,2,12,4],"span":[1230,2,10]},{"path":[4,69,2,12,5],"span":[1230,11,17]},{"path":[4,69,2,12,1],"span":[1230,18,30]},{"path":[4,69,2,12,3],"span":[1230,33,35]},{"path":[4,69,2,13],"span":[1231,2,35]},{"path":[4,69,2,13,4],"span":[1231,2,10]},{"path":[4,69,2,13,5],"span":[1231,11,17]},{"path":[4,69,2,13,1],"span":[1231,18,29]},{"path":[4,69,2,13,3],"span":[1231,32,34]},{"path":[4,69,2,14],"span":[1232,2,36]},{"path":[4,69,2,14,4],"span":[1232,2,10]},{"path":[4,69,2,14,5],"span":[1232,11,17]},{"path":[4,69,2,14,1],"span":[1232,18,30]},{"path":[4,69,2,14,3],"span":[1232,33,35]},{"path":[4,69,2,15],"span":[1233,2,35]},{"path":[4,69,2,15,4],"span":[1233,2,10]},{"path":[4,69,2,15,5],"span":[1233,11,17]},{"path":[4,69,2,15,1],"span":[1233,18,29]},{"path":[4,69,2,15,3],"span":[1233,32,34]},{"path":[4,69,2,16],"span":[1234,2,30]},{"path":[4,69,2,16,4],"span":[1234,2,10]},{"path":[4,69,2,16,5],"span":[1234,11,17]},{"path":[4,69,2,16,1],"span":[1234,18,24]},{"path":[4,69,2,16,3],"span":[1234,27,29]},{"path":[4,69,2,17],"span":[1235,2,44]},{"path":[4,69,2,17,4],"span":[1235,2,10]},{"path":[4,69,2,17,5],"span":[1235,11,17]},{"path":[4,69,2,17,1],"span":[1235,18,38]},{"path":[4,69,2,17,3],"span":[1235,41,43]},{"path":[4,70],"span":[1241,0,1261,1],"leadingComments":"\n WindowsPrinterDriver: Windows.PrinterDriver\n"},{"path":[4,70,1],"span":[1241,8,28]},{"path":[4,70,2,0],"span":[1242,2,34]},{"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,29]},{"path":[4,70,2,0,3],"span":[1242,32,33]},{"path":[4,70,2,1],"span":[1243,2,32]},{"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,27]},{"path":[4,70,2,1,3],"span":[1243,30,31]},{"path":[4,70,2,2],"span":[1244,2,40]},{"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,35]},{"path":[4,70,2,2,3],"span":[1244,38,39]},{"path":[4,70,2,3],"span":[1245,2,34]},{"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,29]},{"path":[4,70,2,3,3],"span":[1245,32,33]},{"path":[4,70,2,4],"span":[1246,2,32]},{"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,27]},{"path":[4,70,2,4,3],"span":[1246,30,31]},{"path":[4,70,2,5],"span":[1247,2,32]},{"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,27]},{"path":[4,70,2,5,3],"span":[1247,30,31]},{"path":[4,70,2,6],"span":[1248,2,35]},{"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,30]},{"path":[4,70,2,6,3],"span":[1248,33,34]},{"path":[4,70,2,7],"span":[1249,2,30]},{"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,25]},{"path":[4,70,2,7,3],"span":[1249,28,29]},{"path":[4,70,2,8],"span":[1250,2,30]},{"path":[4,70,2,8,4],"span":[1250,2,10]},{"path":[4,70,2,8,5],"span":[1250,11,16]},{"path":[4,70,2,8,1],"span":[1250,18,25]},{"path":[4,70,2,8,3],"span":[1250,28,29]},{"path":[4,70,2,9],"span":[1251,2,38]},{"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,32]},{"path":[4,70,2,9,3],"span":[1251,35,37]},{"path":[4,70,2,10],"span":[1252,2,35]},{"path":[4,70,2,10,4],"span":[1252,2,10]},{"path":[4,70,2,10,5],"span":[1252,11,17]},{"path":[4,70,2,10,1],"span":[1252,18,29]},{"path":[4,70,2,10,3],"span":[1252,32,34]},{"path":[4,70,2,11],"span":[1253,2,35]},{"path":[4,70,2,11,4],"span":[1253,2,10]},{"path":[4,70,2,11,5],"span":[1253,11,17]},{"path":[4,70,2,11,1],"span":[1253,18,29]},{"path":[4,70,2,11,3],"span":[1253,32,34]},{"path":[4,70,2,12],"span":[1254,2,32]},{"path":[4,70,2,12,4],"span":[1254,2,10]},{"path":[4,70,2,12,5],"span":[1254,11,17]},{"path":[4,70,2,12,1],"span":[1254,18,26]},{"path":[4,70,2,12,3],"span":[1254,29,31]},{"path":[4,70,2,13],"span":[1255,2,43]},{"path":[4,70,2,13,4],"span":[1255,2,10]},{"path":[4,70,2,13,5],"span":[1255,11,17]},{"path":[4,70,2,13,1],"span":[1255,18,37]},{"path":[4,70,2,13,3],"span":[1255,40,42]},{"path":[4,70,2,14],"span":[1256,2,39]},{"path":[4,70,2,14,4],"span":[1256,2,10]},{"path":[4,70,2,14,5],"span":[1256,11,17]},{"path":[4,70,2,14,1],"span":[1256,18,33]},{"path":[4,70,2,14,3],"span":[1256,36,38]},{"path":[4,70,2,15],"span":[1257,2,28]},{"path":[4,70,2,15,4],"span":[1257,2,10]},{"path":[4,70,2,15,5],"span":[1257,11,17]},{"path":[4,70,2,15,1],"span":[1257,18,22]},{"path":[4,70,2,15,3],"span":[1257,25,27]},{"path":[4,70,2,16],"span":[1258,2,32]},{"path":[4,70,2,16,4],"span":[1258,2,10]},{"path":[4,70,2,16,5],"span":[1258,11,17]},{"path":[4,70,2,16,1],"span":[1258,18,26]},{"path":[4,70,2,16,3],"span":[1258,29,31]},{"path":[4,70,2,17],"span":[1259,2,42]},{"path":[4,70,2,17,4],"span":[1259,2,10]},{"path":[4,70,2,17,5],"span":[1259,11,17]},{"path":[4,70,2,17,1],"span":[1259,18,36]},{"path":[4,70,2,17,3],"span":[1259,39,41]},{"path":[4,70,2,18],"span":[1260,2,36]},{"path":[4,70,2,18,4],"span":[1260,2,10]},{"path":[4,70,2,18,5],"span":[1260,11,17]},{"path":[4,70,2,18,1],"span":[1260,18,30]},{"path":[4,70,2,18,3],"span":[1260,33,35]},{"path":[4,71],"span":[1266,0,1275,1],"leadingComments":"\n Sound Card for computers: Windows.WindowsSound, Unix.SoundCards (=PciCards)\n"},{"path":[4,71,1],"span":[1266,8,17]},{"path":[4,71,2,0],"span":[1267,2,30],"trailingComments":" Windows, Linux(name)\n"},{"path":[4,71,2,0,4],"span":[1267,2,10]},{"path":[4,71,2,0,5],"span":[1267,11,17]},{"path":[4,71,2,0,1],"span":[1267,18,25]},{"path":[4,71,2,0,3],"span":[1267,28,29]},{"path":[4,71,2,1],"span":[1268,2,32],"trailingComments":" Windows, Linux\n"},{"path":[4,71,2,1,4],"span":[1268,2,10]},{"path":[4,71,2,1,5],"span":[1268,11,17]},{"path":[4,71,2,1,1],"span":[1268,18,27]},{"path":[4,71,2,1,3],"span":[1268,30,31]},{"path":[4,71,2,2],"span":[1269,2,35],"trailingComments":" Windows, Linux\n"},{"path":[4,71,2,2,4],"span":[1269,2,10]},{"path":[4,71,2,2,5],"span":[1269,11,17]},{"path":[4,71,2,2,1],"span":[1269,18,30]},{"path":[4,71,2,2,3],"span":[1269,33,34]},{"path":[4,71,2,3],"span":[1271,2,27],"trailingComments":" Linux\n"},{"path":[4,71,2,3,4],"span":[1271,2,10]},{"path":[4,71,2,3,5],"span":[1271,11,17]},{"path":[4,71,2,3,1],"span":[1271,18,22]},{"path":[4,71,2,3,3],"span":[1271,25,26]},{"path":[4,71,2,4],"span":[1272,2,37],"trailingComments":" Linux\n"},{"path":[4,71,2,4,4],"span":[1272,2,10]},{"path":[4,71,2,4,5],"span":[1272,11,17]},{"path":[4,71,2,4,1],"span":[1272,18,32]},{"path":[4,71,2,4,3],"span":[1272,35,36]},{"path":[4,71,2,5],"span":[1273,2,45],"trailingComments":" Linux\n"},{"path":[4,71,2,5,4],"span":[1273,2,10]},{"path":[4,71,2,5,5],"span":[1273,11,17]},{"path":[4,71,2,5,1],"span":[1273,18,40]},{"path":[4,71,2,5,3],"span":[1273,43,44]},{"path":[4,71,2,6],"span":[1274,2,29],"trailingComments":" Linux\n"},{"path":[4,71,2,6,4],"span":[1274,2,10]},{"path":[4,71,2,6,5],"span":[1274,11,17]},{"path":[4,71,2,6,1],"span":[1274,18,24]},{"path":[4,71,2,6,3],"span":[1274,27,28]},{"path":[4,72],"span":[1280,0,1309,1],"leadingComments":"\n Graphics Card for computers: Windows.VideoControllers, Unix.SoundCards (=PciCards)\n"},{"path":[4,72,1],"span":[1280,8,20]},{"path":[4,72,2,0],"span":[1281,2,33],"trailingComments":"\tWindows, Linux\n"},{"path":[4,72,2,0,4],"span":[1281,2,10]},{"path":[4,72,2,0,5],"span":[1281,16,22]},{"path":[4,72,2,0,1],"span":[1281,24,28]},{"path":[4,72,2,0,3],"span":[1281,31,32]},{"path":[4,72,2,1],"span":[1282,2,47],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,1,4],"span":[1282,2,10]},{"path":[4,72,2,1,5],"span":[1282,16,21]},{"path":[4,72,2,1,1],"span":[1282,24,42]},{"path":[4,72,2,1,3],"span":[1282,45,46]},{"path":[4,72,2,2],"span":[1283,2,51],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,2,4],"span":[1283,2,10]},{"path":[4,72,2,2,5],"span":[1283,16,21]},{"path":[4,72,2,2,1],"span":[1283,24,46]},{"path":[4,72,2,2,3],"span":[1283,49,50]},{"path":[4,72,2,3],"span":[1284,2,58],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,3,4],"span":[1284,2,10]},{"path":[4,72,2,3,5],"span":[1284,16,21]},{"path":[4,72,2,3,1],"span":[1284,24,53]},{"path":[4,72,2,3,3],"span":[1284,56,57]},{"path":[4,72,2,4],"span":[1285,2,53],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,4,4],"span":[1285,2,10]},{"path":[4,72,2,4,5],"span":[1285,16,21]},{"path":[4,72,2,4,1],"span":[1285,24,48]},{"path":[4,72,2,4,3],"span":[1285,51,52]},{"path":[4,72,2,5],"span":[1286,2,49],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,5,4],"span":[1286,2,10]},{"path":[4,72,2,5,5],"span":[1286,16,21]},{"path":[4,72,2,5,1],"span":[1286,24,44]},{"path":[4,72,2,5,3],"span":[1286,47,48]},{"path":[4,72,2,6],"span":[1287,2,54],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,6,4],"span":[1287,2,10]},{"path":[4,72,2,6,6],"span":[1287,16,27]},{"path":[4,72,2,6,1],"span":[1287,32,49]},{"path":[4,72,2,6,3],"span":[1287,52,53]},{"path":[4,72,2,7],"span":[1288,2,56],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,7,4],"span":[1288,2,10]},{"path":[4,72,2,7,5],"span":[1288,16,21]},{"path":[4,72,2,7,1],"span":[1288,24,51]},{"path":[4,72,2,7,3],"span":[1288,54,55]},{"path":[4,72,2,8],"span":[1289,2,38],"trailingComments":"\t\tWindows, Linux\n"},{"path":[4,72,2,8,4],"span":[1289,2,10]},{"path":[4,72,2,8,5],"span":[1289,16,22]},{"path":[4,72,2,8,1],"span":[1289,24,33]},{"path":[4,72,2,8,3],"span":[1289,36,37]},{"path":[4,72,2,9],"span":[1290,2,50],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,9,4],"span":[1290,2,10]},{"path":[4,72,2,9,5],"span":[1290,16,21]},{"path":[4,72,2,9,1],"span":[1290,24,44]},{"path":[4,72,2,9,3],"span":[1290,47,49]},{"path":[4,72,2,10],"span":[1291,2,44],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,10,4],"span":[1291,2,10]},{"path":[4,72,2,10,5],"span":[1291,16,22]},{"path":[4,72,2,10,1],"span":[1291,24,38]},{"path":[4,72,2,10,3],"span":[1291,41,43]},{"path":[4,72,2,11],"span":[1292,2,42],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,11,4],"span":[1292,2,10]},{"path":[4,72,2,11,5],"span":[1292,16,22]},{"path":[4,72,2,11,1],"span":[1292,24,36]},{"path":[4,72,2,11,3],"span":[1292,39,41]},{"path":[4,72,2,12],"span":[1293,2,41],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,12,4],"span":[1293,2,10]},{"path":[4,72,2,12,5],"span":[1293,16,22]},{"path":[4,72,2,12,1],"span":[1293,24,35]},{"path":[4,72,2,12,3],"span":[1293,38,40]},{"path":[4,72,2,13],"span":[1294,2,55],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,13,4],"span":[1294,2,10]},{"path":[4,72,2,13,5],"span":[1294,16,22]},{"path":[4,72,2,13,1],"span":[1294,24,49]},{"path":[4,72,2,13,3],"span":[1294,52,54]},{"path":[4,72,2,14],"span":[1295,2,43],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,14,4],"span":[1295,2,10]},{"path":[4,72,2,14,5],"span":[1295,16,20]},{"path":[4,72,2,14,1],"span":[1295,24,37]},{"path":[4,72,2,14,3],"span":[1295,40,42]},{"path":[4,72,2,15],"span":[1296,2,42],"trailingComments":"\t\tWindows, Linux\n"},{"path":[4,72,2,15,4],"span":[1296,2,10]},{"path":[4,72,2,15,5],"span":[1296,16,22]},{"path":[4,72,2,15,1],"span":[1296,24,36]},{"path":[4,72,2,15,3],"span":[1296,39,41]},{"path":[4,72,2,16],"span":[1297,2,46],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,16,4],"span":[1297,2,10]},{"path":[4,72,2,16,5],"span":[1297,16,21]},{"path":[4,72,2,16,1],"span":[1297,24,40]},{"path":[4,72,2,16,3],"span":[1297,43,45]},{"path":[4,72,2,17],"span":[1298,2,36],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,17,4],"span":[1298,2,10]},{"path":[4,72,2,17,5],"span":[1298,16,21]},{"path":[4,72,2,17,1],"span":[1298,24,30]},{"path":[4,72,2,17,3],"span":[1298,33,35]},{"path":[4,72,2,18],"span":[1299,2,49],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,18,4],"span":[1299,2,10]},{"path":[4,72,2,18,6],"span":[1299,16,27]},{"path":[4,72,2,18,1],"span":[1299,32,43]},{"path":[4,72,2,18,3],"span":[1299,46,48]},{"path":[4,72,2,19],"span":[1300,2,46],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,19,4],"span":[1300,2,10]},{"path":[4,72,2,19,5],"span":[1300,16,21]},{"path":[4,72,2,19,1],"span":[1300,24,40]},{"path":[4,72,2,19,3],"span":[1300,43,45]},{"path":[4,72,2,20],"span":[1301,2,38],"trailingComments":"\t\tLinux\n"},{"path":[4,72,2,20,4],"span":[1301,2,10]},{"path":[4,72,2,20,5],"span":[1301,16,22]},{"path":[4,72,2,20,1],"span":[1301,24,32]},{"path":[4,72,2,20,3],"span":[1301,35,37]},{"path":[4,72,2,21],"span":[1302,2,43],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,21,4],"span":[1302,2,10]},{"path":[4,72,2,21,5],"span":[1302,16,22]},{"path":[4,72,2,21,1],"span":[1302,24,37]},{"path":[4,72,2,21,3],"span":[1302,40,42]},{"path":[4,72,2,22],"span":[1303,2,43],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,22,4],"span":[1303,2,10]},{"path":[4,72,2,22,6],"span":[1303,16,27]},{"path":[4,72,2,22,1],"span":[1303,32,37]},{"path":[4,72,2,22,3],"span":[1303,40,42]},{"path":[4,72,2,23],"span":[1304,2,52],"trailingComments":"\t\tLinux\n"},{"path":[4,72,2,23,4],"span":[1304,2,10]},{"path":[4,72,2,23,5],"span":[1304,16,22]},{"path":[4,72,2,23,1],"span":[1304,24,46]},{"path":[4,72,2,23,3],"span":[1304,49,51]},{"path":[4,72,2,24],"span":[1305,2,44],"trailingComments":"\t\tLinux\n"},{"path":[4,72,2,24,4],"span":[1305,2,10]},{"path":[4,72,2,24,5],"span":[1305,16,22]},{"path":[4,72,2,24,1],"span":[1305,24,38]},{"path":[4,72,2,24,3],"span":[1305,41,43]},{"path":[4,72,2,25],"span":[1306,2,56],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,25,4],"span":[1306,2,10]},{"path":[4,72,2,25,6],"span":[1306,16,27]},{"path":[4,72,2,25,1],"span":[1306,32,50]},{"path":[4,72,2,25,3],"span":[1306,53,55]},{"path":[4,72,2,26],"span":[1307,2,40],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,26,4],"span":[1307,2,10]},{"path":[4,72,2,26,5],"span":[1307,16,22]},{"path":[4,72,2,26,1],"span":[1307,24,34]},{"path":[4,72,2,26,3],"span":[1307,37,39]},{"path":[4,72,2,27],"span":[1308,2,45],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,27,4],"span":[1308,2,10]},{"path":[4,72,2,27,5],"span":[1308,16,22]},{"path":[4,72,2,27,1],"span":[1308,24,39]},{"path":[4,72,2,27,3],"span":[1308,42,44]},{"path":[4,73],"span":[1314,0,1324,1],"leadingComments":"\n BIOS for computers.\n"},{"path":[4,73,1],"span":[1314,8,12]},{"path":[4,73,8,0],"span":[1315,2,1318,3]},{"path":[4,73,8,0,1],"span":[1315,8,12]},{"path":[4,73,2,0],"span":[1316,4,24]},{"path":[4,73,2,0,6],"span":[1316,4,15]},{"path":[4,73,2,0,1],"span":[1316,16,19]},{"path":[4,73,2,0,3],"span":[1316,22,23]},{"path":[4,73,2,1],"span":[1317,4,24]},{"path":[4,73,2,1,6],"span":[1317,4,13]},{"path":[4,73,2,1,1],"span":[1317,14,19]},{"path":[4,73,2,1,3],"span":[1317,22,23]},{"path":[4,73,2,2],"span":[1321,2,37],"leadingComments":" common fields summarized\n"},{"path":[4,73,2,2,4],"span":[1321,2,10]},{"path":[4,73,2,2,5],"span":[1321,11,17]},{"path":[4,73,2,2,1],"span":[1321,18,30]},{"path":[4,73,2,2,3],"span":[1321,33,36]},{"path":[4,73,2,3],"span":[1322,2,32]},{"path":[4,73,2,3,4],"span":[1322,2,10]},{"path":[4,73,2,3,5],"span":[1322,11,17]},{"path":[4,73,2,3,1],"span":[1322,18,25]},{"path":[4,73,2,3,3],"span":[1322,28,31]},{"path":[4,73,2,4],"span":[1323,2,56]},{"path":[4,73,2,4,4],"span":[1323,2,10]},{"path":[4,73,2,4,6],"span":[1323,11,36]},{"path":[4,73,2,4,1],"span":[1323,37,49]},{"path":[4,73,2,4,3],"span":[1323,52,55]},{"path":[4,74],"span":[1330,0,1350,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,74,1],"span":[1330,8,19]},{"path":[4,74,2,0],"span":[1331,2,48]},{"path":[4,74,2,0,4],"span":[1331,2,10]},{"path":[4,74,2,0,6],"span":[1331,11,22]},{"path":[4,74,2,0,1],"span":[1331,23,43]},{"path":[4,74,2,0,3],"span":[1331,46,47]},{"path":[4,74,2,1],"span":[1332,2,30]},{"path":[4,74,2,1,4],"span":[1332,2,10]},{"path":[4,74,2,1,5],"span":[1332,11,17]},{"path":[4,74,2,1,1],"span":[1332,18,25]},{"path":[4,74,2,1,3],"span":[1332,28,29]},{"path":[4,74,2,2],"span":[1333,2,39]},{"path":[4,74,2,2,4],"span":[1333,2,10]},{"path":[4,74,2,2,5],"span":[1333,11,17]},{"path":[4,74,2,2,1],"span":[1333,18,34]},{"path":[4,74,2,2,3],"span":[1333,37,38]},{"path":[4,74,2,3],"span":[1334,2,43]},{"path":[4,74,2,3,4],"span":[1334,2,10]},{"path":[4,74,2,3,5],"span":[1334,11,16]},{"path":[4,74,2,3,1],"span":[1334,17,38]},{"path":[4,74,2,3,3],"span":[1334,41,42]},{"path":[4,74,2,4],"span":[1335,2,35]},{"path":[4,74,2,4,4],"span":[1335,2,10]},{"path":[4,74,2,4,5],"span":[1335,11,17]},{"path":[4,74,2,4,1],"span":[1335,18,30]},{"path":[4,74,2,4,3],"span":[1335,33,34]},{"path":[4,74,2,5],"span":[1336,2,27]},{"path":[4,74,2,5,4],"span":[1336,2,10]},{"path":[4,74,2,5,5],"span":[1336,11,17]},{"path":[4,74,2,5,1],"span":[1336,18,22]},{"path":[4,74,2,5,3],"span":[1336,25,26]},{"path":[4,74,2,6],"span":[1337,2,33]},{"path":[4,74,2,6,4],"span":[1337,2,10]},{"path":[4,74,2,6,5],"span":[1337,11,15]},{"path":[4,74,2,6,1],"span":[1337,16,28]},{"path":[4,74,2,6,3],"span":[1337,31,32]},{"path":[4,74,2,7],"span":[1338,2,54]},{"path":[4,74,2,7,4],"span":[1338,2,10]},{"path":[4,74,2,7,6],"span":[1338,11,36]},{"path":[4,74,2,7,1],"span":[1338,37,49]},{"path":[4,74,2,7,3],"span":[1338,52,53]},{"path":[4,74,2,8],"span":[1339,2,37]},{"path":[4,74,2,8,4],"span":[1339,2,10]},{"path":[4,74,2,8,5],"span":[1339,11,17]},{"path":[4,74,2,8,1],"span":[1339,18,31]},{"path":[4,74,2,8,3],"span":[1339,34,36]},{"path":[4,74,2,9],"span":[1340,2,43]},{"path":[4,74,2,9,4],"span":[1340,2,10]},{"path":[4,74,2,9,5],"span":[1340,11,17]},{"path":[4,74,2,9,1],"span":[1340,18,37]},{"path":[4,74,2,9,3],"span":[1340,40,42]},{"path":[4,74,2,10],"span":[1341,2,43]},{"path":[4,74,2,10,4],"span":[1341,2,10]},{"path":[4,74,2,10,5],"span":[1341,11,16]},{"path":[4,74,2,10,1],"span":[1341,17,37]},{"path":[4,74,2,10,3],"span":[1341,40,42]},{"path":[4,74,2,11],"span":[1342,2,43]},{"path":[4,74,2,11,4],"span":[1342,2,10]},{"path":[4,74,2,11,5],"span":[1342,11,16]},{"path":[4,74,2,11,1],"span":[1342,17,37]},{"path":[4,74,2,11,3],"span":[1342,40,42]},{"path":[4,74,2,12],"span":[1343,2,36]},{"path":[4,74,2,12,4],"span":[1343,2,10]},{"path":[4,74,2,12,5],"span":[1343,11,15]},{"path":[4,74,2,12,1],"span":[1343,16,30]},{"path":[4,74,2,12,3],"span":[1343,33,35]},{"path":[4,74,2,13],"span":[1344,2,43]},{"path":[4,74,2,13,4],"span":[1344,2,10]},{"path":[4,74,2,13,5],"span":[1344,11,17]},{"path":[4,74,2,13,1],"span":[1344,18,37]},{"path":[4,74,2,13,3],"span":[1344,40,42]},{"path":[4,74,2,14],"span":[1345,2,51]},{"path":[4,74,2,14,4],"span":[1345,2,10]},{"path":[4,74,2,14,6],"span":[1345,11,22]},{"path":[4,74,2,14,1],"span":[1345,23,45]},{"path":[4,74,2,14,3],"span":[1345,48,50]},{"path":[4,74,2,15],"span":[1346,2,30]},{"path":[4,74,2,15,4],"span":[1346,2,10]},{"path":[4,74,2,15,5],"span":[1346,11,17]},{"path":[4,74,2,15,1],"span":[1346,18,24]},{"path":[4,74,2,15,3],"span":[1346,27,29]},{"path":[4,74,2,16],"span":[1347,2,52]},{"path":[4,74,2,16,4],"span":[1347,2,10]},{"path":[4,74,2,16,6],"span":[1347,11,22]},{"path":[4,74,2,16,1],"span":[1347,23,46]},{"path":[4,74,2,16,3],"span":[1347,49,51]},{"path":[4,74,2,17],"span":[1348,2,31]},{"path":[4,74,2,17,4],"span":[1348,2,10]},{"path":[4,74,2,17,5],"span":[1348,11,17]},{"path":[4,74,2,17,1],"span":[1348,18,25]},{"path":[4,74,2,17,3],"span":[1348,28,30]},{"path":[4,74,2,18],"span":[1349,2,36]},{"path":[4,74,2,18,4],"span":[1349,2,10]},{"path":[4,74,2,18,5],"span":[1349,11,17]},{"path":[4,74,2,18,1],"span":[1349,18,30]},{"path":[4,74,2,18,3],"span":[1349,33,35]},{"path":[4,75],"span":[1355,0,1362,1],"leadingComments":"\n Bios for Unix/Linux: Unix.Bios\n"},{"path":[4,75,1],"span":[1355,8,17]},{"path":[4,75,2,0],"span":[1356,2,30],"trailingComments":" e.g.: \"Hyper-V UEFI Release v4.1\"\n"},{"path":[4,75,2,0,4],"span":[1356,2,10]},{"path":[4,75,2,0,5],"span":[1356,11,17]},{"path":[4,75,2,0,1],"span":[1356,18,25]},{"path":[4,75,2,0,3],"span":[1356,28,29]},{"path":[4,75,2,1],"span":[1357,2,30]},{"path":[4,75,2,1,4],"span":[1357,2,10]},{"path":[4,75,2,1,5],"span":[1357,11,17]},{"path":[4,75,2,1,1],"span":[1357,18,25]},{"path":[4,75,2,1,3],"span":[1357,28,29]},{"path":[4,75,2,2],"span":[1358,2,29]},{"path":[4,75,2,2,4],"span":[1358,2,10]},{"path":[4,75,2,2,5],"span":[1358,11,17]},{"path":[4,75,2,2,1],"span":[1358,18,24]},{"path":[4,75,2,2,3],"span":[1358,27,28]},{"path":[4,75,2,3],"span":[1359,2,34],"trailingComments":" parsed from e.g. \"64 kB\"\n"},{"path":[4,75,2,3,4],"span":[1359,2,10]},{"path":[4,75,2,3,5],"span":[1359,11,16]},{"path":[4,75,2,3,1],"span":[1359,17,29]},{"path":[4,75,2,3,3],"span":[1359,32,33]},{"path":[4,75,2,4],"span":[1360,2,30],"trailingComments":" parsed from e.g. \"64 kB\"\n"},{"path":[4,75,2,4,4],"span":[1360,2,10]},{"path":[4,75,2,4,5],"span":[1360,11,16]},{"path":[4,75,2,4,1],"span":[1360,17,25]},{"path":[4,75,2,4,3],"span":[1360,28,29]},{"path":[4,75,2,5],"span":[1361,2,54]},{"path":[4,75,2,5,4],"span":[1361,2,10]},{"path":[4,75,2,5,6],"span":[1361,11,36]},{"path":[4,75,2,5,1],"span":[1361,37,49]},{"path":[4,75,2,5,3],"span":[1361,52,53]},{"path":[4,76],"span":[1367,0,1373,1],"leadingComments":"\n Computer Battery: Windows.WindowsBattery. Mac.Power battery messages.\n"},{"path":[4,76,1],"span":[1367,8,23]},{"path":[4,76,8,0],"span":[1368,2,1372,3]},{"path":[4,76,8,0,1],"span":[1368,8,12]},{"path":[4,76,2,0],"span":[1369,4,43]},{"path":[4,76,2,0,6],"span":[1369,4,26]},{"path":[4,76,2,0,1],"span":[1369,27,38]},{"path":[4,76,2,0,3],"span":[1369,41,42]},{"path":[4,76,2,1],"span":[1370,4,44]},{"path":[4,76,2,1,6],"span":[1370,4,26]},{"path":[4,76,2,1,1],"span":[1370,27,39]},{"path":[4,76,2,1,3],"span":[1370,42,43]},{"path":[4,76,2,2],"span":[1371,4,39]},{"path":[4,76,2,2,6],"span":[1371,4,22]},{"path":[4,76,2,2,1],"span":[1371,23,34]},{"path":[4,76,2,2,3],"span":[1371,37,38]},{"path":[4,77],"span":[1379,0,1390,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,77,1],"span":[1379,8,30]},{"path":[4,77,2,0],"span":[1380,2,40]},{"path":[4,77,2,0,4],"span":[1380,2,10]},{"path":[4,77,2,0,6],"span":[1380,11,22]},{"path":[4,77,2,0,1],"span":[1380,23,35]},{"path":[4,77,2,0,3],"span":[1380,38,39]},{"path":[4,77,2,1],"span":[1381,2,42]},{"path":[4,77,2,1,4],"span":[1381,2,10]},{"path":[4,77,2,1,6],"span":[1381,11,22]},{"path":[4,77,2,1,1],"span":[1381,23,37]},{"path":[4,77,2,1,3],"span":[1381,40,41]},{"path":[4,77,2,2],"span":[1382,2,37]},{"path":[4,77,2,2,4],"span":[1382,2,10]},{"path":[4,77,2,2,6],"span":[1382,11,22]},{"path":[4,77,2,2,1],"span":[1382,23,32]},{"path":[4,77,2,2,3],"span":[1382,35,36]},{"path":[4,77,2,3],"span":[1383,2,43]},{"path":[4,77,2,3,4],"span":[1383,2,10]},{"path":[4,77,2,3,6],"span":[1383,11,22]},{"path":[4,77,2,3,1],"span":[1383,23,38]},{"path":[4,77,2,3,3],"span":[1383,41,42]},{"path":[4,77,2,4],"span":[1384,2,32]},{"path":[4,77,2,4,4],"span":[1384,2,10]},{"path":[4,77,2,4,5],"span":[1384,11,17]},{"path":[4,77,2,4,1],"span":[1384,18,27]},{"path":[4,77,2,4,3],"span":[1384,30,31]},{"path":[4,77,2,5],"span":[1385,2,27]},{"path":[4,77,2,5,4],"span":[1385,2,10]},{"path":[4,77,2,5,5],"span":[1385,11,17]},{"path":[4,77,2,5,1],"span":[1385,18,22]},{"path":[4,77,2,5,3],"span":[1385,25,26]},{"path":[4,77,2,6],"span":[1386,2,57]},{"path":[4,77,2,6,4],"span":[1386,2,10]},{"path":[4,77,2,6,6],"span":[1386,11,22]},{"path":[4,77,2,6,1],"span":[1386,23,52]},{"path":[4,77,2,6,3],"span":[1386,55,56]},{"path":[4,77,2,7],"span":[1387,2,47]},{"path":[4,77,2,7,4],"span":[1387,2,10]},{"path":[4,77,2,7,5],"span":[1387,11,15]},{"path":[4,77,2,7,1],"span":[1387,16,42]},{"path":[4,77,2,7,3],"span":[1387,45,46]},{"path":[4,77,2,8],"span":[1388,2,44]},{"path":[4,77,2,8,4],"span":[1388,2,10]},{"path":[4,77,2,8,5],"span":[1388,11,17]},{"path":[4,77,2,8,1],"span":[1388,18,39]},{"path":[4,77,2,8,3],"span":[1388,42,43]},{"path":[4,77,2,9],"span":[1389,2,30]},{"path":[4,77,2,9,4],"span":[1389,2,10]},{"path":[4,77,2,9,5],"span":[1389,11,17]},{"path":[4,77,2,9,1],"span":[1389,18,24]},{"path":[4,77,2,9,3],"span":[1389,27,29]},{"path":[4,78],"span":[1396,0,1408,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,78,1],"span":[1396,8,30]},{"path":[4,78,2,0],"span":[1397,2,41]},{"path":[4,78,2,0,4],"span":[1397,2,10]},{"path":[4,78,2,0,5],"span":[1397,11,16]},{"path":[4,78,2,0,1],"span":[1397,17,36]},{"path":[4,78,2,0,3],"span":[1397,39,40]},{"path":[4,78,2,1],"span":[1398,2,37]},{"path":[4,78,2,1,4],"span":[1398,2,10]},{"path":[4,78,2,1,6],"span":[1398,11,22]},{"path":[4,78,2,1,1],"span":[1398,23,32]},{"path":[4,78,2,1,3],"span":[1398,35,36]},{"path":[4,78,2,2],"span":[1399,2,37]},{"path":[4,78,2,2,4],"span":[1399,2,10]},{"path":[4,78,2,2,5],"span":[1399,11,16]},{"path":[4,78,2,2,1],"span":[1399,17,32]},{"path":[4,78,2,2,3],"span":[1399,35,36]},{"path":[4,78,2,3],"span":[1400,2,36]},{"path":[4,78,2,3,4],"span":[1400,2,10]},{"path":[4,78,2,3,5],"span":[1400,11,16]},{"path":[4,78,2,3,1],"span":[1400,17,31]},{"path":[4,78,2,3,3],"span":[1400,34,35]},{"path":[4,78,2,4],"span":[1401,2,32]},{"path":[4,78,2,4,4],"span":[1401,2,10]},{"path":[4,78,2,4,5],"span":[1401,11,17]},{"path":[4,78,2,4,1],"span":[1401,18,27]},{"path":[4,78,2,4,3],"span":[1401,30,31]},{"path":[4,78,2,5],"span":[1402,2,31]},{"path":[4,78,2,5,4],"span":[1402,2,10]},{"path":[4,78,2,5,5],"span":[1402,11,17]},{"path":[4,78,2,5,1],"span":[1402,18,26]},{"path":[4,78,2,5,3],"span":[1402,29,30]},{"path":[4,78,2,6],"span":[1403,2,39]},{"path":[4,78,2,6,4],"span":[1403,2,10]},{"path":[4,78,2,6,5],"span":[1403,11,17]},{"path":[4,78,2,6,1],"span":[1403,18,34]},{"path":[4,78,2,6,3],"span":[1403,37,38]},{"path":[4,78,2,7],"span":[1404,2,35]},{"path":[4,78,2,7,4],"span":[1404,2,10]},{"path":[4,78,2,7,5],"span":[1404,11,17]},{"path":[4,78,2,7,1],"span":[1404,18,30]},{"path":[4,78,2,7,3],"span":[1404,33,34]},{"path":[4,78,2,8],"span":[1405,2,39]},{"path":[4,78,2,8,4],"span":[1405,2,10]},{"path":[4,78,2,8,5],"span":[1405,11,16]},{"path":[4,78,2,8,1],"span":[1405,17,34]},{"path":[4,78,2,8,3],"span":[1405,37,38]},{"path":[4,78,2,9],"span":[1406,2,28]},{"path":[4,78,2,9,4],"span":[1406,2,10]},{"path":[4,78,2,9,5],"span":[1406,11,17]},{"path":[4,78,2,9,1],"span":[1406,18,22]},{"path":[4,78,2,9,3],"span":[1406,25,27]},{"path":[4,78,2,10],"span":[1407,2,45]},{"path":[4,78,2,10,4],"span":[1407,2,10]},{"path":[4,78,2,10,5],"span":[1407,11,17]},{"path":[4,78,2,10,1],"span":[1407,18,39]},{"path":[4,78,2,10,3],"span":[1407,42,44]},{"path":[4,79],"span":[1413,0,1449,1],"leadingComments":"\n Computer Battery: Mac.Power battery messages.\n"},{"path":[4,79,1],"span":[1413,8,26]},{"path":[4,79,2,0],"span":[1415,2,38],"leadingComments":" from battery power\n"},{"path":[4,79,2,0,4],"span":[1415,2,10]},{"path":[4,79,2,0,5],"span":[1415,11,16]},{"path":[4,79,2,0,1],"span":[1415,17,33]},{"path":[4,79,2,0,3],"span":[1415,36,37]},{"path":[4,79,2,1],"span":[1416,2,41]},{"path":[4,79,2,1,4],"span":[1416,2,10]},{"path":[4,79,2,1,5],"span":[1416,11,16]},{"path":[4,79,2,1,1],"span":[1416,17,36]},{"path":[4,79,2,1,3],"span":[1416,39,40]},{"path":[4,79,2,2],"span":[1417,2,36]},{"path":[4,79,2,2,4],"span":[1417,2,10]},{"path":[4,79,2,2,5],"span":[1417,11,16]},{"path":[4,79,2,2,1],"span":[1417,17,31]},{"path":[4,79,2,2,3],"span":[1417,34,35]},{"path":[4,79,2,3],"span":[1418,2,64]},{"path":[4,79,2,3,4],"span":[1418,2,10]},{"path":[4,79,2,3,5],"span":[1418,11,16]},{"path":[4,79,2,3,1],"span":[1418,17,59]},{"path":[4,79,2,3,3],"span":[1418,62,63]},{"path":[4,79,2,4],"span":[1419,2,42],"trailingComments":" parse from: 'Yes'\n"},{"path":[4,79,2,4,4],"span":[1419,2,10]},{"path":[4,79,2,4,5],"span":[1419,11,15]},{"path":[4,79,2,4,1],"span":[1419,16,37]},{"path":[4,79,2,4,3],"span":[1419,40,41]},{"path":[4,79,2,5],"span":[1420,2,40]},{"path":[4,79,2,5,4],"span":[1420,2,10]},{"path":[4,79,2,5,5],"span":[1420,11,16]},{"path":[4,79,2,5,1],"span":[1420,17,35]},{"path":[4,79,2,5,3],"span":[1420,38,39]},{"path":[4,79,2,6],"span":[1421,2,32]},{"path":[4,79,2,6,4],"span":[1421,2,10]},{"path":[4,79,2,6,5],"span":[1421,11,15]},{"path":[4,79,2,6,1],"span":[1421,16,27]},{"path":[4,79,2,6,3],"span":[1421,30,31]},{"path":[4,79,2,7],"span":[1422,2,42]},{"path":[4,79,2,7,4],"span":[1422,2,10]},{"path":[4,79,2,7,5],"span":[1422,11,16]},{"path":[4,79,2,7,1],"span":[1422,17,37]},{"path":[4,79,2,7,3],"span":[1422,40,41]},{"path":[4,79,2,8],"span":[1423,2,37]},{"path":[4,79,2,8,4],"span":[1423,2,10]},{"path":[4,79,2,8,5],"span":[1423,11,16]},{"path":[4,79,2,8,1],"span":[1423,17,32]},{"path":[4,79,2,8,3],"span":[1423,35,36]},{"path":[4,79,2,9],"span":[1424,2,37]},{"path":[4,79,2,9,4],"span":[1424,2,10]},{"path":[4,79,2,9,5],"span":[1424,11,16]},{"path":[4,79,2,9,1],"span":[1424,17,31]},{"path":[4,79,2,9,3],"span":[1424,34,36]},{"path":[4,79,2,10],"span":[1425,2,39]},{"path":[4,79,2,10,4],"span":[1425,2,10]},{"path":[4,79,2,10,5],"span":[1425,11,15]},{"path":[4,79,2,10,1],"span":[1425,16,33]},{"path":[4,79,2,10,3],"span":[1425,36,38]},{"path":[4,79,2,11],"span":[1428,2,38],"leadingComments":" from battery charge (parse booleans)\n"},{"path":[4,79,2,11,4],"span":[1428,2,10]},{"path":[4,79,2,11,5],"span":[1428,11,15]},{"path":[4,79,2,11,1],"span":[1428,16,32]},{"path":[4,79,2,11,3],"span":[1428,35,37]},{"path":[4,79,2,12],"span":[1429,2,38]},{"path":[4,79,2,12,4],"span":[1429,2,10]},{"path":[4,79,2,12,5],"span":[1429,11,15]},{"path":[4,79,2,12,1],"span":[1429,16,32]},{"path":[4,79,2,12,3],"span":[1429,35,37]},{"path":[4,79,2,13],"span":[1430,2,33]},{"path":[4,79,2,13,4],"span":[1430,2,10]},{"path":[4,79,2,13,5],"span":[1430,11,15]},{"path":[4,79,2,13,1],"span":[1430,16,27]},{"path":[4,79,2,13,3],"span":[1430,30,32]},{"path":[4,79,2,14],"span":[1431,2,39]},{"path":[4,79,2,14,4],"span":[1431,2,10]},{"path":[4,79,2,14,5],"span":[1431,11,16]},{"path":[4,79,2,14,1],"span":[1431,18,33]},{"path":[4,79,2,14,3],"span":[1431,36,38]},{"path":[4,79,2,15],"span":[1434,2,34],"leadingComments":" from battery_health_info\n"},{"path":[4,79,2,15,4],"span":[1434,2,10]},{"path":[4,79,2,15,5],"span":[1434,11,16]},{"path":[4,79,2,15,1],"span":[1434,17,28]},{"path":[4,79,2,15,3],"span":[1434,31,33]},{"path":[4,79,2,16],"span":[1435,2,37]},{"path":[4,79,2,16,4],"span":[1435,2,10]},{"path":[4,79,2,16,5],"span":[1435,11,17]},{"path":[4,79,2,16,1],"span":[1435,18,31]},{"path":[4,79,2,16,3],"span":[1435,34,36]},{"path":[4,79,2,17],"span":[1436,2,54]},{"path":[4,79,2,17,4],"span":[1436,2,10]},{"path":[4,79,2,17,5],"span":[1436,11,17]},{"path":[4,79,2,17,1],"span":[1436,18,48]},{"path":[4,79,2,17,3],"span":[1436,51,53]},{"path":[4,79,2,18],"span":[1439,2,36],"leadingComments":" from battery_model_info\n"},{"path":[4,79,2,18,4],"span":[1439,2,10]},{"path":[4,79,2,18,5],"span":[1439,11,17]},{"path":[4,79,2,18,1],"span":[1439,18,30]},{"path":[4,79,2,18,3],"span":[1439,33,35]},{"path":[4,79,2,19],"span":[1440,2,37]},{"path":[4,79,2,19,4],"span":[1440,2,10]},{"path":[4,79,2,19,5],"span":[1440,11,17]},{"path":[4,79,2,19,1],"span":[1440,18,31]},{"path":[4,79,2,19,3],"span":[1440,34,36]},{"path":[4,79,2,20],"span":[1441,2,37]},{"path":[4,79,2,20,4],"span":[1441,2,10]},{"path":[4,79,2,20,5],"span":[1441,11,17]},{"path":[4,79,2,20,1],"span":[1441,18,31]},{"path":[4,79,2,20,3],"span":[1441,34,36]},{"path":[4,79,2,21],"span":[1442,2,35]},{"path":[4,79,2,21,4],"span":[1442,2,10]},{"path":[4,79,2,21,5],"span":[1442,11,17]},{"path":[4,79,2,21,1],"span":[1442,18,29]},{"path":[4,79,2,21,3],"span":[1442,32,34]},{"path":[4,79,2,22],"span":[1443,2,40]},{"path":[4,79,2,22,4],"span":[1443,2,10]},{"path":[4,79,2,22,5],"span":[1443,11,17]},{"path":[4,79,2,22,1],"span":[1443,18,34]},{"path":[4,79,2,22,3],"span":[1443,37,39]},{"path":[4,79,2,23],"span":[1444,2,41]},{"path":[4,79,2,23,4],"span":[1444,2,10]},{"path":[4,79,2,23,5],"span":[1444,11,17]},{"path":[4,79,2,23,1],"span":[1444,18,35]},{"path":[4,79,2,23,3],"span":[1444,38,40]},{"path":[4,79,2,24],"span":[1445,2,37]},{"path":[4,79,2,24,4],"span":[1445,2,10]},{"path":[4,79,2,24,5],"span":[1445,11,17]},{"path":[4,79,2,24,1],"span":[1445,18,31]},{"path":[4,79,2,24,3],"span":[1445,34,36]},{"path":[4,79,2,25],"span":[1447,2,47]},{"path":[4,79,2,25,4],"span":[1447,2,10]},{"path":[4,79,2,25,5],"span":[1447,11,15]},{"path":[4,79,2,25,1],"span":[1447,16,41]},{"path":[4,79,2,25,3],"span":[1447,44,46]},{"path":[4,79,2,26],"span":[1448,2,41]},{"path":[4,79,2,26,4],"span":[1448,2,10]},{"path":[4,79,2,26,5],"span":[1448,11,15]},{"path":[4,79,2,26,1],"span":[1448,16,35]},{"path":[4,79,2,26,3],"span":[1448,38,40]},{"path":[4,80],"span":[1454,0,1476,1],"leadingComments":"\n Optical disc drive for computers.\n"},{"path":[4,80,1],"span":[1454,8,20]},{"path":[4,80,2,0],"span":[1455,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,80,2,0,4],"span":[1455,2,10]},{"path":[4,80,2,0,5],"span":[1455,16,22]},{"path":[4,80,2,0,1],"span":[1455,24,28]},{"path":[4,80,2,0,3],"span":[1455,34,35]},{"path":[4,80,2,1],"span":[1456,2,36],"trailingComments":" \t\"OK\",\"Error\",\"Degraded\"\tWindows\n"},{"path":[4,80,2,1,4],"span":[1456,2,10]},{"path":[4,80,2,1,5],"span":[1456,16,22]},{"path":[4,80,2,1,1],"span":[1456,24,30]},{"path":[4,80,2,1,3],"span":[1456,34,35]},{"path":[4,80,2,2],"span":[1457,2,36],"trailingComments":" \t\"2:0:0:0\"\tLinux\n"},{"path":[4,80,2,2,4],"span":[1457,2,10]},{"path":[4,80,2,2,5],"span":[1457,16,22]},{"path":[4,80,2,2,1],"span":[1457,24,27]},{"path":[4,80,2,2,3],"span":[1457,34,35]},{"path":[4,80,2,3],"span":[1458,2,52],"trailingComments":" \t\"Supports writing, Random Access, Supports Removable Media\" \tWindows\n"},{"path":[4,80,2,3,4],"span":[1458,2,10]},{"path":[4,80,2,3,6],"span":[1458,16,27]},{"path":[4,80,2,3,1],"span":[1458,32,44]},{"path":[4,80,2,3,3],"span":[1458,50,51]},{"path":[4,80,2,4],"span":[1459,2,44],"trailingComments":" \t\"32 KB\", \"2048 KB\"\tMac\n"},{"path":[4,80,2,4,4],"span":[1459,2,10]},{"path":[4,80,2,4,5],"span":[1459,16,22]},{"path":[4,80,2,4,1],"span":[1459,24,34]},{"path":[4,80,2,4,3],"span":[1459,42,43]},{"path":[4,80,2,5],"span":[1460,2,44],"trailingComments":" \t\"DRDeviceSupportLevelUnsupported\",\"Yes (Apple Shipping Drive)\",\"Yes (Generic Drive Support)\"\tMac\n"},{"path":[4,80,2,5,4],"span":[1460,2,10]},{"path":[4,80,2,5,5],"span":[1460,16,22]},{"path":[4,80,2,5,1],"span":[1460,24,36]},{"path":[4,80,2,5,3],"span":[1460,42,43]},{"path":[4,80,2,6],"span":[1461,2,44],"trailingComments":" \t\"-R, -RW\"\tMac\n"},{"path":[4,80,2,6,4],"span":[1461,2,10]},{"path":[4,80,2,6,5],"span":[1461,16,22]},{"path":[4,80,2,6,1],"span":[1461,24,32]},{"path":[4,80,2,6,3],"span":[1461,42,43]},{"path":[4,80,2,7],"span":[1462,2,44],"trailingComments":" \t\"-R, -RAM, -RW\"\tMac\n"},{"path":[4,80,2,7,4],"span":[1462,2,10]},{"path":[4,80,2,7,5],"span":[1462,16,22]},{"path":[4,80,2,7,1],"span":[1462,24,33]},{"path":[4,80,2,7,3],"span":[1462,42,43]},{"path":[4,80,2,8],"span":[1463,2,44],"trailingComments":" \t\"yes\"\tMac\n"},{"path":[4,80,2,8,4],"span":[1463,2,10]},{"path":[4,80,2,8,5],"span":[1463,16,22]},{"path":[4,80,2,8,1],"span":[1463,24,32]},{"path":[4,80,2,8,3],"span":[1463,42,43]},{"path":[4,80,2,9],"span":[1464,2,45],"trailingComments":" \tWindows: \"H:\" Linux: \"/dev/sr0 (/dev/sg0)\"\tWindows, Linux\n"},{"path":[4,80,2,9,4],"span":[1464,2,10]},{"path":[4,80,2,9,5],"span":[1464,16,22]},{"path":[4,80,2,9,1],"span":[1464,24,34]},{"path":[4,80,2,9,3],"span":[1464,42,44]},{"path":[4,80,2,10],"span":[1465,2,53],"trailingComments":" \t\"RQ00\",\"1.00\"\tMac\n"},{"path":[4,80,2,10,4],"span":[1465,2,10]},{"path":[4,80,2,10,5],"span":[1465,16,22]},{"path":[4,80,2,10,1],"span":[1465,24,40]},{"path":[4,80,2,10,3],"span":[1465,50,52]},{"path":[4,80,2,11],"span":[1466,2,45],"trailingComments":" \t\"ATAPI\",\"USB\"\tMac\n"},{"path":[4,80,2,11,4],"span":[1466,2,10]},{"path":[4,80,2,11,5],"span":[1466,16,22]},{"path":[4,80,2,11,1],"span":[1466,24,34]},{"path":[4,80,2,11,3],"span":[1466,42,44]},{"path":[4,80,2,12],"span":[1467,2,61],"trailingComments":" \t\"yes\"\tMac\n"},{"path":[4,80,2,12,4],"span":[1467,2,10]},{"path":[4,80,2,12,5],"span":[1467,16,22]},{"path":[4,80,2,12,1],"span":[1467,24,54]},{"path":[4,80,2,12,3],"span":[1467,58,60]},{"path":[4,80,2,13],"span":[1468,2,45],"trailingComments":" \tWindows:\"(Standard CD-ROM drives)\",Linux:\"NECVMWar\"\tWindows, Linux\n"},{"path":[4,80,2,13,4],"span":[1468,2,10]},{"path":[4,80,2,13,5],"span":[1468,16,22]},{"path":[4,80,2,13,1],"span":[1468,24,36]},{"path":[4,80,2,13,3],"span":[1468,42,44]},{"path":[4,80,2,14],"span":[1469,2,45],"trailingComments":" \t\tLinux\n"},{"path":[4,80,2,14,4],"span":[1469,2,10]},{"path":[4,80,2,14,5],"span":[1469,16,22]},{"path":[4,80,2,14,1],"span":[1469,24,35]},{"path":[4,80,2,14,3],"span":[1469,42,44]},{"path":[4,80,2,15],"span":[1470,2,53],"trailingComments":" \t\"CD-TAO, CD-SAO, CD-Raw, DVD-DAO\"\tMac\n"},{"path":[4,80,2,15,4],"span":[1470,2,10]},{"path":[4,80,2,15,5],"span":[1470,16,22]},{"path":[4,80,2,15,1],"span":[1470,24,40]},{"path":[4,80,2,15,3],"span":[1470,50,52]},{"path":[4,80,2,16],"span":[1471,2,45],"trailingComments":" \t7\tWindows\n"},{"path":[4,80,2,16,4],"span":[1471,2,10]},{"path":[4,80,2,16,5],"span":[1471,16,21]},{"path":[4,80,2,16,1],"span":[1471,24,32]},{"path":[4,80,2,16,3],"span":[1471,42,44]},{"path":[4,80,2,17],"span":[1472,2,53],"trailingComments":" \t0\tWindows\n"},{"path":[4,80,2,17,4],"span":[1472,2,10]},{"path":[4,80,2,17,5],"span":[1472,16,21]},{"path":[4,80,2,17,1],"span":[1472,24,41]},{"path":[4,80,2,17,3],"span":[1472,50,52]},{"path":[4,80,2,18],"span":[1473,2,45],"trailingComments":" \t0\tWindows\n"},{"path":[4,80,2,18,4],"span":[1473,2,10]},{"path":[4,80,2,18,5],"span":[1473,16,21]},{"path":[4,80,2,18,1],"span":[1473,24,33]},{"path":[4,80,2,18,3],"span":[1473,42,44]},{"path":[4,80,2,19],"span":[1474,2,45],"trailingComments":" \t0\tWindows\n"},{"path":[4,80,2,19,4],"span":[1474,2,10]},{"path":[4,80,2,19,5],"span":[1474,16,21]},{"path":[4,80,2,19,1],"span":[1474,24,38]},{"path":[4,80,2,19,3],"span":[1474,42,44]},{"path":[4,80,2,20],"span":[1475,2,52],"trailingComments":" \tMac\n"},{"path":[4,80,2,20,4],"span":[1475,2,10]},{"path":[4,80,2,20,5],"span":[1475,16,22]},{"path":[4,80,2,20,1],"span":[1475,24,46]},{"path":[4,80,2,20,3],"span":[1475,49,51]},{"path":[4,81],"span":[1481,0,1494,1],"leadingComments":"\n Motherboard for computers.\n"},{"path":[4,81,1],"span":[1481,8,19]},{"path":[4,81,2,0],"span":[1482,2,18],"trailingComments":" Windows, Linux\n"},{"path":[4,81,2,0,5],"span":[1482,2,8]},{"path":[4,81,2,0,1],"span":[1482,9,13]},{"path":[4,81,2,0,3],"span":[1482,16,17]},{"path":[4,81,2,1],"span":[1483,2,43],"trailingComments":" Windows\n"},{"path":[4,81,2,1,4],"span":[1483,2,10]},{"path":[4,81,2,1,5],"span":[1483,11,17]},{"path":[4,81,2,1,1],"span":[1483,24,38]},{"path":[4,81,2,1,3],"span":[1483,41,42]},{"path":[4,81,2,2],"span":[1484,2,37],"trailingComments":" Windows\n"},{"path":[4,81,2,2,4],"span":[1484,2,10]},{"path":[4,81,2,2,5],"span":[1484,11,15]},{"path":[4,81,2,2,1],"span":[1484,16,32]},{"path":[4,81,2,2,3],"span":[1484,35,36]},{"path":[4,81,2,3],"span":[1485,2,34],"trailingComments":" Windows\n"},{"path":[4,81,2,3,4],"span":[1485,2,10]},{"path":[4,81,2,3,5],"span":[1485,11,15]},{"path":[4,81,2,3,1],"span":[1485,16,29]},{"path":[4,81,2,3,3],"span":[1485,32,33]},{"path":[4,81,2,4],"span":[1486,2,37],"trailingComments":" Linux\n"},{"path":[4,81,2,4,4],"span":[1486,2,10]},{"path":[4,81,2,4,5],"span":[1486,11,17]},{"path":[4,81,2,4,1],"span":[1486,24,32]},{"path":[4,81,2,4,3],"span":[1486,35,36]},{"path":[4,81,2,5],"span":[1487,2,41],"trailingComments":" Windows, Linux\n"},{"path":[4,81,2,5,4],"span":[1487,2,10]},{"path":[4,81,2,5,5],"span":[1487,11,17]},{"path":[4,81,2,5,1],"span":[1487,24,36]},{"path":[4,81,2,5,3],"span":[1487,39,40]},{"path":[4,81,2,6],"span":[1488,2,42],"trailingComments":" Windows, Linux\n"},{"path":[4,81,2,6,4],"span":[1488,2,10]},{"path":[4,81,2,6,5],"span":[1488,11,17]},{"path":[4,81,2,6,1],"span":[1488,24,37]},{"path":[4,81,2,6,3],"span":[1488,40,41]},{"path":[4,81,2,7],"span":[1489,2,32],"trailingComments":" Windows\n"},{"path":[4,81,2,7,4],"span":[1489,2,10]},{"path":[4,81,2,7,5],"span":[1489,11,17]},{"path":[4,81,2,7,1],"span":[1489,24,27]},{"path":[4,81,2,7,3],"span":[1489,30,31]},{"path":[4,81,2,8],"span":[1490,2,33],"trailingComments":" Linux\n"},{"path":[4,81,2,8,4],"span":[1490,2,10]},{"path":[4,81,2,8,5],"span":[1490,11,17]},{"path":[4,81,2,8,1],"span":[1490,24,28]},{"path":[4,81,2,8,3],"span":[1490,31,32]},{"path":[4,81,2,9],"span":[1491,2,37],"trailingComments":" Windows, Linux\n"},{"path":[4,81,2,9,4],"span":[1491,2,10]},{"path":[4,81,2,9,5],"span":[1491,11,17]},{"path":[4,81,2,9,1],"span":[1491,24,31]},{"path":[4,81,2,9,3],"span":[1491,34,36]},{"path":[4,81,2,10],"span":[1493,2,41]},{"path":[4,81,2,10,4],"span":[1493,2,10]},{"path":[4,81,2,10,6],"span":[1493,11,28]},{"path":[4,81,2,10,1],"span":[1493,29,35]},{"path":[4,81,2,10,3],"span":[1493,38,40]},{"path":[4,82],"span":[1499,0,1504,1],"leadingComments":"\n Motherboard device, available only on Windows atm.\n"},{"path":[4,82,1],"span":[1499,8,25]},{"path":[4,82,2,0],"span":[1500,2,40]},{"path":[4,82,2,0,4],"span":[1500,2,10]},{"path":[4,82,2,0,5],"span":[1500,11,17]},{"path":[4,82,2,0,1],"span":[1500,24,35]},{"path":[4,82,2,0,3],"span":[1500,38,39]},{"path":[4,82,2,1],"span":[1501,2,28]},{"path":[4,82,2,1,4],"span":[1501,2,10]},{"path":[4,82,2,1,5],"span":[1501,11,15]},{"path":[4,82,2,1,1],"span":[1501,16,23]},{"path":[4,82,2,1,3],"span":[1501,26,27]},{"path":[4,82,2,2],"span":[1502,2,32]},{"path":[4,82,2,2,4],"span":[1502,2,10]},{"path":[4,82,2,2,5],"span":[1502,11,17]},{"path":[4,82,2,2,1],"span":[1502,24,27]},{"path":[4,82,2,2,3],"span":[1502,30,31]},{"path":[4,82,2,3],"span":[1503,2,32]},{"path":[4,82,2,3,4],"span":[1503,2,10]},{"path":[4,82,2,3,6],"span":[1503,11,22]},{"path":[4,82,2,3,1],"span":[1503,23,27]},{"path":[4,82,2,3,3],"span":[1503,30,31]},{"path":[4,83],"span":[1509,0,1513,1],"leadingComments":"\n Memory with summary fields and repeated entries.\n"},{"path":[4,83,1],"span":[1509,8,14]},{"path":[4,83,2,0],"span":[1510,4,29]},{"path":[4,83,2,0,5],"span":[1510,4,9]},{"path":[4,83,2,0,1],"span":[1510,10,24]},{"path":[4,83,2,0,3],"span":[1510,27,28]},{"path":[4,83,2,1],"span":[1511,4,48]},{"path":[4,83,2,1,4],"span":[1511,4,12]},{"path":[4,83,2,1,6],"span":[1511,13,27]},{"path":[4,83,2,1,1],"span":[1511,28,43]},{"path":[4,83,2,1,3],"span":[1511,46,47]},{"path":[4,83,2,2],"span":[1512,4,42]},{"path":[4,83,2,2,4],"span":[1512,4,12]},{"path":[4,83,2,2,6],"span":[1512,13,24]},{"path":[4,83,2,2,1],"span":[1512,25,37]},{"path":[4,83,2,2,3],"span":[1512,40,41]},{"path":[4,84],"span":[1516,0,1539,1],"leadingComments":" MemoryEntry *"},{"path":[4,84,1],"span":[1516,8,22]},{"path":[4,84,2,0],"span":[1518,4,30],"trailingComments":" memory capacity/size\n"},{"path":[4,84,2,0,4],"span":[1518,4,12]},{"path":[4,84,2,0,5],"span":[1518,14,19]},{"path":[4,84,2,0,1],"span":[1518,20,24]},{"path":[4,84,2,0,3],"span":[1518,27,29]},{"path":[4,84,2,1],"span":[1519,4,40],"trailingComments":"\tLinux\n"},{"path":[4,84,2,1,4],"span":[1519,4,12]},{"path":[4,84,2,1,5],"span":[1519,13,19]},{"path":[4,84,2,1,1],"span":[1519,24,36]},{"path":[4,84,2,1,3],"span":[1519,38,39]},{"path":[4,84,2,2],"span":[1520,4,51],"trailingComments":"\tWindows\n"},{"path":[4,84,2,2,4],"span":[1520,4,12]},{"path":[4,84,2,2,5],"span":[1520,13,18]},{"path":[4,84,2,2,1],"span":[1520,24,46]},{"path":[4,84,2,2,3],"span":[1520,49,50]},{"path":[4,84,2,3],"span":[1521,4,46],"trailingComments":"\tWindows\n"},{"path":[4,84,2,3,4],"span":[1521,4,12]},{"path":[4,84,2,3,5],"span":[1521,13,18]},{"path":[4,84,2,3,1],"span":[1521,24,42]},{"path":[4,84,2,3,3],"span":[1521,44,45]},{"path":[4,84,2,4],"span":[1522,4,38],"trailingComments":"\tWindows, Linux\n"},{"path":[4,84,2,4,4],"span":[1522,4,12]},{"path":[4,84,2,4,5],"span":[1522,13,18]},{"path":[4,84,2,4,1],"span":[1522,24,34]},{"path":[4,84,2,4,3],"span":[1522,36,37]},{"path":[4,84,2,5],"span":[1523,4,42],"trailingComments":"\tWindows, Linux\n"},{"path":[4,84,2,5,4],"span":[1523,4,12]},{"path":[4,84,2,5,5],"span":[1523,13,19]},{"path":[4,84,2,5,1],"span":[1523,24,38]},{"path":[4,84,2,5,3],"span":[1523,40,41]},{"path":[4,84,2,6],"span":[1524,4,47],"trailingComments":"\tWindows, Linux\n"},{"path":[4,84,2,6,4],"span":[1524,4,12]},{"path":[4,84,2,6,6],"span":[1524,13,24]},{"path":[4,84,2,6,1],"span":[1524,32,43]},{"path":[4,84,2,6,3],"span":[1524,45,46]},{"path":[4,84,2,7],"span":[1525,4,49],"trailingComments":"\tWindows\n"},{"path":[4,84,2,7,4],"span":[1525,4,12]},{"path":[4,84,2,7,5],"span":[1525,13,18]},{"path":[4,84,2,7,1],"span":[1525,24,45]},{"path":[4,84,2,7,3],"span":[1525,47,48]},{"path":[4,84,2,8],"span":[1526,4,55],"trailingComments":"\tWindows\n"},{"path":[4,84,2,8,4],"span":[1526,4,12]},{"path":[4,84,2,8,6],"span":[1526,13,24]},{"path":[4,84,2,8,1],"span":[1526,32,51]},{"path":[4,84,2,8,3],"span":[1526,53,54]},{"path":[4,84,2,9],"span":[1527,4,40],"trailingComments":"\tWindows, Linux\n"},{"path":[4,84,2,9,4],"span":[1527,4,12]},{"path":[4,84,2,9,5],"span":[1527,13,19]},{"path":[4,84,2,9,1],"span":[1527,24,36]},{"path":[4,84,2,9,3],"span":[1527,38,39]},{"path":[4,84,2,10],"span":[1528,4,33],"trailingComments":"\tMac\n"},{"path":[4,84,2,10,4],"span":[1528,4,12]},{"path":[4,84,2,10,5],"span":[1528,13,19]},{"path":[4,84,2,10,1],"span":[1528,24,28]},{"path":[4,84,2,10,3],"span":[1528,30,32]},{"path":[4,84,2,11],"span":[1529,4,40],"trailingComments":"\tWindows\n"},{"path":[4,84,2,11,4],"span":[1529,4,12]},{"path":[4,84,2,11,5],"span":[1529,13,19]},{"path":[4,84,2,11,1],"span":[1529,24,35]},{"path":[4,84,2,11,3],"span":[1529,37,39]},{"path":[4,84,2,12],"span":[1530,4,44],"trailingComments":"\tWindows\n"},{"path":[4,84,2,12,4],"span":[1530,4,12]},{"path":[4,84,2,12,5],"span":[1530,13,18]},{"path":[4,84,2,12,1],"span":[1530,24,39]},{"path":[4,84,2,12,3],"span":[1530,41,43]},{"path":[4,84,2,13],"span":[1531,4,42],"trailingComments":"\tWindows, Linux\n"},{"path":[4,84,2,13,4],"span":[1531,4,12]},{"path":[4,84,2,13,5],"span":[1531,13,19]},{"path":[4,84,2,13,1],"span":[1531,24,37]},{"path":[4,84,2,13,3],"span":[1531,39,41]},{"path":[4,84,2,14],"span":[1532,4,32],"trailingComments":"\tLinux\n"},{"path":[4,84,2,14,4],"span":[1532,4,12]},{"path":[4,84,2,14,5],"span":[1532,13,19]},{"path":[4,84,2,14,1],"span":[1532,24,27]},{"path":[4,84,2,14,3],"span":[1532,29,31]},{"path":[4,84,2,15],"span":[1533,4,32],"trailingComments":"\tWindows\n"},{"path":[4,84,2,15,4],"span":[1533,4,12]},{"path":[4,84,2,15,5],"span":[1533,13,19]},{"path":[4,84,2,15,1],"span":[1533,24,27]},{"path":[4,84,2,15,3],"span":[1533,29,31]},{"path":[4,84,2,16],"span":[1534,4,34],"trailingComments":"\tWindows, Linux, Mac\n"},{"path":[4,84,2,16,4],"span":[1534,4,12]},{"path":[4,84,2,16,5],"span":[1534,13,18]},{"path":[4,84,2,16,1],"span":[1534,24,29]},{"path":[4,84,2,16,3],"span":[1534,31,33]},{"path":[4,84,2,17],"span":[1535,4,34],"trailingComments":"\tMac\n"},{"path":[4,84,2,17,4],"span":[1535,4,12]},{"path":[4,84,2,17,5],"span":[1535,13,19]},{"path":[4,84,2,17,1],"span":[1535,24,29]},{"path":[4,84,2,17,3],"span":[1535,31,33]},{"path":[4,84,2,18],"span":[1536,4,40],"trailingComments":"\tWindows, Linux\n"},{"path":[4,84,2,18,4],"span":[1536,4,12]},{"path":[4,84,2,18,5],"span":[1536,13,18]},{"path":[4,84,2,18,1],"span":[1536,24,35]},{"path":[4,84,2,18,3],"span":[1536,37,39]},{"path":[4,84,2,19],"span":[1537,4,41],"trailingComments":"\tWindows, Linux, Mac\n"},{"path":[4,84,2,19,4],"span":[1537,4,12]},{"path":[4,84,2,19,6],"span":[1537,13,24]},{"path":[4,84,2,19,1],"span":[1537,32,36]},{"path":[4,84,2,19,3],"span":[1537,38,40]},{"path":[4,84,2,20],"span":[1538,4,48],"trailingComments":"\tWindows, Linux\n"},{"path":[4,84,2,20,4],"span":[1538,4,12]},{"path":[4,84,2,20,6],"span":[1538,13,24]},{"path":[4,84,2,20,1],"span":[1538,32,43]},{"path":[4,84,2,20,3],"span":[1538,45,47]},{"path":[4,85],"span":[1543,0,1550,1],"leadingComments":" MemoryArray, only Windows *"},{"path":[4,85,1],"span":[1543,8,19]},{"path":[4,85,2,0],"span":[1544,2,40],"trailingComments":"\tWindows\n"},{"path":[4,85,2,0,4],"span":[1544,2,10]},{"path":[4,85,2,0,5],"span":[1544,11,16]},{"path":[4,85,2,0,1],"span":[1544,24,36]},{"path":[4,85,2,0,3],"span":[1544,38,39]},{"path":[4,85,2,1],"span":[1545,2,36],"trailingComments":"\tWindows\n"},{"path":[4,85,2,1,4],"span":[1545,2,10]},{"path":[4,85,2,1,6],"span":[1545,11,22]},{"path":[4,85,2,1,1],"span":[1545,24,32]},{"path":[4,85,2,1,3],"span":[1545,34,35]},{"path":[4,85,2,2],"span":[1546,2,42],"trailingComments":"\tWindows\n"},{"path":[4,85,2,2,4],"span":[1546,2,10]},{"path":[4,85,2,2,5],"span":[1546,11,16]},{"path":[4,85,2,2,1],"span":[1546,24,38]},{"path":[4,85,2,2,3],"span":[1546,40,41]},{"path":[4,85,2,3],"span":[1547,2,51],"trailingComments":"\tWindows\n"},{"path":[4,85,2,3,4],"span":[1547,2,10]},{"path":[4,85,2,3,6],"span":[1547,11,22]},{"path":[4,85,2,3,1],"span":[1547,24,47]},{"path":[4,85,2,3,3],"span":[1547,49,50]},{"path":[4,85,2,4],"span":[1548,2,31],"trailingComments":"\tWindows\n"},{"path":[4,85,2,4,4],"span":[1548,2,10]},{"path":[4,85,2,4,5],"span":[1548,11,17]},{"path":[4,85,2,4,1],"span":[1548,24,27]},{"path":[4,85,2,4,3],"span":[1548,29,30]},{"path":[4,85,2,5],"span":[1549,2,31],"trailingComments":"\tWindows\n"},{"path":[4,85,2,5,4],"span":[1549,2,10]},{"path":[4,85,2,5,6],"span":[1549,11,22]},{"path":[4,85,2,5,1],"span":[1549,24,27]},{"path":[4,85,2,5,3],"span":[1549,29,30]},{"path":[4,86],"span":[1556,0,1565,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,86,1],"span":[1556,8,20]},{"path":[4,86,2,0],"span":[1557,2,30]},{"path":[4,86,2,0,4],"span":[1557,2,10]},{"path":[4,86,2,0,5],"span":[1557,11,17]},{"path":[4,86,2,0,1],"span":[1557,18,25]},{"path":[4,86,2,0,3],"span":[1557,28,29]},{"path":[4,86,2,1],"span":[1558,2,40]},{"path":[4,86,2,1,4],"span":[1558,2,10]},{"path":[4,86,2,1,6],"span":[1558,11,22]},{"path":[4,86,2,1,1],"span":[1558,23,35]},{"path":[4,86,2,1,3],"span":[1558,38,39]},{"path":[4,86,2,2],"span":[1559,2,46]},{"path":[4,86,2,2,4],"span":[1559,2,10]},{"path":[4,86,2,2,6],"span":[1559,11,22]},{"path":[4,86,2,2,1],"span":[1559,23,41]},{"path":[4,86,2,2,3],"span":[1559,44,45]},{"path":[4,86,2,3],"span":[1560,2,53]},{"path":[4,86,2,3,4],"span":[1560,2,10]},{"path":[4,86,2,3,6],"span":[1560,11,22]},{"path":[4,86,2,3,1],"span":[1560,23,48]},{"path":[4,86,2,3,3],"span":[1560,51,52]},{"path":[4,86,2,4],"span":[1561,2,36]},{"path":[4,86,2,4,4],"span":[1561,2,10]},{"path":[4,86,2,4,5],"span":[1561,11,17]},{"path":[4,86,2,4,1],"span":[1561,18,31]},{"path":[4,86,2,4,3],"span":[1561,34,35]},{"path":[4,86,2,5],"span":[1562,2,47]},{"path":[4,86,2,5,4],"span":[1562,2,10]},{"path":[4,86,2,5,5],"span":[1562,11,15]},{"path":[4,86,2,5,1],"span":[1562,16,42]},{"path":[4,86,2,5,3],"span":[1562,45,46]},{"path":[4,86,2,6],"span":[1563,2,39]},{"path":[4,86,2,6,4],"span":[1563,2,10]},{"path":[4,86,2,6,5],"span":[1563,11,15]},{"path":[4,86,2,6,1],"span":[1563,16,34]},{"path":[4,86,2,6,3],"span":[1563,37,38]},{"path":[4,86,2,7],"span":[1564,2,47]},{"path":[4,86,2,7,4],"span":[1564,2,10]},{"path":[4,86,2,7,5],"span":[1564,11,15]},{"path":[4,86,2,7,1],"span":[1564,16,42]},{"path":[4,86,2,7,3],"span":[1564,45,46]},{"path":[4,87],"span":[1571,0,1582,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,87,1],"span":[1571,8,18]},{"path":[4,87,2,0],"span":[1572,2,40]},{"path":[4,87,2,0,4],"span":[1572,2,10]},{"path":[4,87,2,0,6],"span":[1572,11,22]},{"path":[4,87,2,0,1],"span":[1572,23,35]},{"path":[4,87,2,0,3],"span":[1572,38,39]},{"path":[4,87,2,1],"span":[1573,2,27]},{"path":[4,87,2,1,4],"span":[1573,2,10]},{"path":[4,87,2,1,5],"span":[1573,11,15]},{"path":[4,87,2,1,1],"span":[1573,16,22]},{"path":[4,87,2,1,3],"span":[1573,25,26]},{"path":[4,87,2,2],"span":[1574,2,30]},{"path":[4,87,2,2,4],"span":[1574,2,10]},{"path":[4,87,2,2,5],"span":[1574,11,17]},{"path":[4,87,2,2,1],"span":[1574,18,25]},{"path":[4,87,2,2,3],"span":[1574,28,29]},{"path":[4,87,2,3],"span":[1575,2,32]},{"path":[4,87,2,3,4],"span":[1575,2,10]},{"path":[4,87,2,3,5],"span":[1575,11,17]},{"path":[4,87,2,3,1],"span":[1575,18,27]},{"path":[4,87,2,3,3],"span":[1575,30,31]},{"path":[4,87,2,4],"span":[1576,2,35]},{"path":[4,87,2,4,4],"span":[1576,2,10]},{"path":[4,87,2,4,5],"span":[1576,11,16]},{"path":[4,87,2,4,1],"span":[1576,17,30]},{"path":[4,87,2,4,3],"span":[1576,33,34]},{"path":[4,87,2,5],"span":[1577,2,47]},{"path":[4,87,2,5,4],"span":[1577,2,10]},{"path":[4,87,2,5,5],"span":[1577,11,16]},{"path":[4,87,2,5,1],"span":[1577,17,42]},{"path":[4,87,2,5,3],"span":[1577,45,46]},{"path":[4,87,2,6],"span":[1578,2,48]},{"path":[4,87,2,6,4],"span":[1578,2,10]},{"path":[4,87,2,6,5],"span":[1578,11,16]},{"path":[4,87,2,6,1],"span":[1578,17,43]},{"path":[4,87,2,6,3],"span":[1578,46,47]},{"path":[4,87,2,7],"span":[1579,2,39]},{"path":[4,87,2,7,4],"span":[1579,2,10]},{"path":[4,87,2,7,5],"span":[1579,11,15]},{"path":[4,87,2,7,1],"span":[1579,16,34]},{"path":[4,87,2,7,3],"span":[1579,37,38]},{"path":[4,87,2,8],"span":[1580,2,36]},{"path":[4,87,2,8,4],"span":[1580,2,10]},{"path":[4,87,2,8,5],"span":[1580,11,17]},{"path":[4,87,2,8,1],"span":[1580,18,31]},{"path":[4,87,2,8,3],"span":[1580,34,35]},{"path":[4,87,2,9],"span":[1581,2,37]},{"path":[4,87,2,9,4],"span":[1581,2,10]},{"path":[4,87,2,9,5],"span":[1581,11,17]},{"path":[4,87,2,9,1],"span":[1581,18,31]},{"path":[4,87,2,9,3],"span":[1581,34,36]},{"path":[4,88],"span":[1588,0,1595,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,88,1],"span":[1588,8,24]},{"path":[4,88,2,0],"span":[1589,2,30]},{"path":[4,88,2,0,4],"span":[1589,2,10]},{"path":[4,88,2,0,5],"span":[1589,11,17]},{"path":[4,88,2,0,1],"span":[1589,18,25]},{"path":[4,88,2,0,3],"span":[1589,28,29]},{"path":[4,88,2,1],"span":[1590,2,46]},{"path":[4,88,2,1,4],"span":[1590,2,10]},{"path":[4,88,2,1,6],"span":[1590,11,22]},{"path":[4,88,2,1,1],"span":[1590,23,41]},{"path":[4,88,2,1,3],"span":[1590,44,45]},{"path":[4,88,2,2],"span":[1591,2,53]},{"path":[4,88,2,2,4],"span":[1591,2,10]},{"path":[4,88,2,2,6],"span":[1591,11,22]},{"path":[4,88,2,2,1],"span":[1591,23,48]},{"path":[4,88,2,2,3],"span":[1591,51,52]},{"path":[4,88,2,3],"span":[1592,2,47]},{"path":[4,88,2,3,4],"span":[1592,2,10]},{"path":[4,88,2,3,5],"span":[1592,11,15]},{"path":[4,88,2,3,1],"span":[1592,16,42]},{"path":[4,88,2,3,3],"span":[1592,45,46]},{"path":[4,88,2,4],"span":[1593,2,32]},{"path":[4,88,2,4,4],"span":[1593,2,10]},{"path":[4,88,2,4,5],"span":[1593,11,17]},{"path":[4,88,2,4,1],"span":[1593,18,27]},{"path":[4,88,2,4,3],"span":[1593,30,31]},{"path":[4,88,2,5],"span":[1594,2,35]},{"path":[4,88,2,5,4],"span":[1594,2,10]},{"path":[4,88,2,5,5],"span":[1594,11,17]},{"path":[4,88,2,5,1],"span":[1594,18,30]},{"path":[4,88,2,5,3],"span":[1594,33,34]},{"path":[4,89],"span":[1601,0,1607,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,89,1],"span":[1601,8,21]},{"path":[4,89,2,0],"span":[1602,2,42]},{"path":[4,89,2,0,4],"span":[1602,2,10]},{"path":[4,89,2,0,6],"span":[1602,11,22]},{"path":[4,89,2,0,1],"span":[1602,23,37]},{"path":[4,89,2,0,3],"span":[1602,40,41]},{"path":[4,89,2,1],"span":[1603,2,52]},{"path":[4,89,2,1,4],"span":[1603,2,10]},{"path":[4,89,2,1,5],"span":[1603,11,17]},{"path":[4,89,2,1,1],"span":[1603,18,47]},{"path":[4,89,2,1,3],"span":[1603,50,51]},{"path":[4,89,2,2],"span":[1604,2,52]},{"path":[4,89,2,2,4],"span":[1604,2,10]},{"path":[4,89,2,2,5],"span":[1604,11,17]},{"path":[4,89,2,2,1],"span":[1604,18,47]},{"path":[4,89,2,2,3],"span":[1604,50,51]},{"path":[4,89,2,3],"span":[1605,2,37]},{"path":[4,89,2,3,4],"span":[1605,2,10]},{"path":[4,89,2,3,6],"span":[1605,11,22]},{"path":[4,89,2,3,1],"span":[1605,23,32]},{"path":[4,89,2,3,3],"span":[1605,35,36]},{"path":[4,89,2,4],"span":[1606,2,26]},{"path":[4,89,2,4,4],"span":[1606,2,10]},{"path":[4,89,2,4,5],"span":[1606,11,17]},{"path":[4,89,2,4,1],"span":[1606,18,21]},{"path":[4,89,2,4,3],"span":[1606,24,25]},{"path":[4,90],"span":[1613,0,1620,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,90,1],"span":[1613,8,22]},{"path":[4,90,2,0],"span":[1614,2,40]},{"path":[4,90,2,0,4],"span":[1614,2,10]},{"path":[4,90,2,0,6],"span":[1614,11,22]},{"path":[4,90,2,0,1],"span":[1614,23,35]},{"path":[4,90,2,0,3],"span":[1614,38,39]},{"path":[4,90,2,1],"span":[1615,2,30]},{"path":[4,90,2,1,4],"span":[1615,2,10]},{"path":[4,90,2,1,5],"span":[1615,11,17]},{"path":[4,90,2,1,1],"span":[1615,18,25]},{"path":[4,90,2,1,3],"span":[1615,28,29]},{"path":[4,90,2,2],"span":[1616,2,32]},{"path":[4,90,2,2,4],"span":[1616,2,10]},{"path":[4,90,2,2,5],"span":[1616,11,17]},{"path":[4,90,2,2,1],"span":[1616,18,27]},{"path":[4,90,2,2,3],"span":[1616,30,31]},{"path":[4,90,2,3],"span":[1617,2,34]},{"path":[4,90,2,3,4],"span":[1617,2,10]},{"path":[4,90,2,3,5],"span":[1617,11,17]},{"path":[4,90,2,3,1],"span":[1617,18,29]},{"path":[4,90,2,3,3],"span":[1617,32,33]},{"path":[4,90,2,4],"span":[1618,2,35]},{"path":[4,90,2,4,4],"span":[1618,2,10]},{"path":[4,90,2,4,5],"span":[1618,11,17]},{"path":[4,90,2,4,1],"span":[1618,18,30]},{"path":[4,90,2,4,3],"span":[1618,33,34]},{"path":[4,90,2,5],"span":[1619,2,46]},{"path":[4,90,2,5,4],"span":[1619,2,10]},{"path":[4,90,2,5,6],"span":[1619,11,22]},{"path":[4,90,2,5,1],"span":[1619,23,41]},{"path":[4,90,2,5,3],"span":[1619,44,45]},{"path":[4,91],"span":[1626,0,1632,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,91,1],"span":[1626,8,29]},{"path":[4,91,2,0],"span":[1627,2,41]},{"path":[4,91,2,0,4],"span":[1627,2,10]},{"path":[4,91,2,0,5],"span":[1627,11,17]},{"path":[4,91,2,0,1],"span":[1627,18,36]},{"path":[4,91,2,0,3],"span":[1627,39,40]},{"path":[4,91,2,1],"span":[1628,2,27]},{"path":[4,91,2,1,4],"span":[1628,2,10]},{"path":[4,91,2,1,5],"span":[1628,11,17]},{"path":[4,91,2,1,1],"span":[1628,18,22]},{"path":[4,91,2,1,3],"span":[1628,25,26]},{"path":[4,91,2,2],"span":[1629,2,27]},{"path":[4,91,2,2,4],"span":[1629,2,10]},{"path":[4,91,2,2,5],"span":[1629,11,17]},{"path":[4,91,2,2,1],"span":[1629,18,22]},{"path":[4,91,2,2,3],"span":[1629,25,26]},{"path":[4,91,2,3],"span":[1630,2,29]},{"path":[4,91,2,3,4],"span":[1630,2,10]},{"path":[4,91,2,3,5],"span":[1630,11,17]},{"path":[4,91,2,3,1],"span":[1630,18,24]},{"path":[4,91,2,3,3],"span":[1630,27,28]},{"path":[4,91,2,4],"span":[1631,2,30]},{"path":[4,91,2,4,4],"span":[1631,2,10]},{"path":[4,91,2,4,5],"span":[1631,11,17]},{"path":[4,91,2,4,1],"span":[1631,18,25]},{"path":[4,91,2,4,3],"span":[1631,28,29]},{"path":[4,92],"span":[1638,0,1656,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,92,1],"span":[1638,8,29]},{"path":[4,92,2,0],"span":[1639,2,47]},{"path":[4,92,2,0,4],"span":[1639,2,10]},{"path":[4,92,2,0,5],"span":[1639,11,15]},{"path":[4,92,2,0,1],"span":[1639,16,42]},{"path":[4,92,2,0,3],"span":[1639,45,46]},{"path":[4,92,2,1],"span":[1640,2,45]},{"path":[4,92,2,1,4],"span":[1640,2,10]},{"path":[4,92,2,1,5],"span":[1640,11,15]},{"path":[4,92,2,1,1],"span":[1640,16,40]},{"path":[4,92,2,1,3],"span":[1640,43,44]},{"path":[4,92,2,2],"span":[1641,2,43]},{"path":[4,92,2,2,4],"span":[1641,2,10]},{"path":[4,92,2,2,5],"span":[1641,11,15]},{"path":[4,92,2,2,1],"span":[1641,16,38]},{"path":[4,92,2,2,3],"span":[1641,41,42]},{"path":[4,92,2,3],"span":[1642,2,35]},{"path":[4,92,2,3,4],"span":[1642,2,10]},{"path":[4,92,2,3,5],"span":[1642,11,17]},{"path":[4,92,2,3,1],"span":[1642,18,30]},{"path":[4,92,2,3,3],"span":[1642,33,34]},{"path":[4,92,2,4],"span":[1643,2,43]},{"path":[4,92,2,4,4],"span":[1643,2,10]},{"path":[4,92,2,4,5],"span":[1643,11,17]},{"path":[4,92,2,4,1],"span":[1643,18,38]},{"path":[4,92,2,4,3],"span":[1643,41,42]},{"path":[4,92,2,5],"span":[1644,2,48]},{"path":[4,92,2,5,4],"span":[1644,2,10]},{"path":[4,92,2,5,5],"span":[1644,11,17]},{"path":[4,92,2,5,1],"span":[1644,18,43]},{"path":[4,92,2,5,3],"span":[1644,46,47]},{"path":[4,92,2,6],"span":[1651,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,92,2,6,4],"span":[1651,2,10]},{"path":[4,92,2,6,5],"span":[1651,11,17]},{"path":[4,92,2,6,1],"span":[1651,18,33]},{"path":[4,92,2,6,3],"span":[1651,36,37]},{"path":[4,92,2,7],"span":[1653,2,50]},{"path":[4,92,2,7,4],"span":[1653,2,10]},{"path":[4,92,2,7,5],"span":[1653,11,17]},{"path":[4,92,2,7,1],"span":[1653,18,45]},{"path":[4,92,2,7,3],"span":[1653,48,49]},{"path":[4,92,2,8],"span":[1654,2,42]},{"path":[4,92,2,8,4],"span":[1654,2,10]},{"path":[4,92,2,8,5],"span":[1654,11,17]},{"path":[4,92,2,8,1],"span":[1654,18,37]},{"path":[4,92,2,8,3],"span":[1654,40,41]},{"path":[4,92,2,9],"span":[1655,2,54]},{"path":[4,92,2,9,4],"span":[1655,2,10]},{"path":[4,92,2,9,5],"span":[1655,11,17]},{"path":[4,92,2,9,1],"span":[1655,18,48]},{"path":[4,92,2,9,3],"span":[1655,51,53]},{"path":[4,93],"span":[1662,0,1667,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,93,1],"span":[1662,8,38]},{"path":[4,93,2,0],"span":[1663,2,30]},{"path":[4,93,2,0,4],"span":[1663,2,10]},{"path":[4,93,2,0,5],"span":[1663,11,17]},{"path":[4,93,2,0,1],"span":[1663,18,25]},{"path":[4,93,2,0,3],"span":[1663,28,29]},{"path":[4,93,2,1],"span":[1664,2,32]},{"path":[4,93,2,1,4],"span":[1664,2,10]},{"path":[4,93,2,1,5],"span":[1664,11,17]},{"path":[4,93,2,1,1],"span":[1664,18,27]},{"path":[4,93,2,1,3],"span":[1664,30,31]},{"path":[4,93,2,2],"span":[1665,2,35]},{"path":[4,93,2,2,4],"span":[1665,2,10]},{"path":[4,93,2,2,5],"span":[1665,11,17]},{"path":[4,93,2,2,1],"span":[1665,18,30]},{"path":[4,93,2,2,3],"span":[1665,33,34]},{"path":[4,93,2,3],"span":[1666,2,46]},{"path":[4,93,2,3,4],"span":[1666,2,10]},{"path":[4,93,2,3,6],"span":[1666,11,22]},{"path":[4,93,2,3,1],"span":[1666,23,41]},{"path":[4,93,2,3,3],"span":[1666,44,45]},{"path":[4,94],"span":[1672,0,1676,1],"leadingComments":"\n Windows only atm.\n"},{"path":[4,94,1],"span":[1672,8,38]},{"path":[4,94,2,0],"span":[1673,2,24]},{"path":[4,94,2,0,5],"span":[1673,2,8]},{"path":[4,94,2,0,1],"span":[1673,9,19]},{"path":[4,94,2,0,3],"span":[1673,22,23]},{"path":[4,94,2,1],"span":[1674,2,26]},{"path":[4,94,2,1,5],"span":[1674,2,8]},{"path":[4,94,2,1,1],"span":[1674,9,21]},{"path":[4,94,2,1,3],"span":[1674,24,25]},{"path":[4,94,2,2],"span":[1675,2,26]},{"path":[4,94,2,2,5],"span":[1675,2,8]},{"path":[4,94,2,2,1],"span":[1675,9,21]},{"path":[4,94,2,2,3],"span":[1675,24,25]},{"path":[4,95],"span":[1681,0,1697,1],"leadingComments":"\n Modem on computers: windows and mac.\n"},{"path":[4,95,1],"span":[1681,8,30]},{"path":[4,95,2,0],"span":[1682,2,34]},{"path":[4,95,2,0,4],"span":[1682,2,10]},{"path":[4,95,2,0,5],"span":[1682,11,17]},{"path":[4,95,2,0,1],"span":[1682,18,29]},{"path":[4,95,2,0,3],"span":[1682,32,33]},{"path":[4,95,2,1],"span":[1683,2,30],"trailingComments":" mac: name\n"},{"path":[4,95,2,1,4],"span":[1683,2,10]},{"path":[4,95,2,1,5],"span":[1683,11,17]},{"path":[4,95,2,1,1],"span":[1683,18,25]},{"path":[4,95,2,1,3],"span":[1683,28,29]},{"path":[4,95,2,2],"span":[1684,2,35],"trailingComments":" windows: country_selected, mac: country_info \n"},{"path":[4,95,2,2,4],"span":[1684,2,10]},{"path":[4,95,2,2,5],"span":[1684,11,17]},{"path":[4,95,2,2,1],"span":[1684,18,30]},{"path":[4,95,2,2,3],"span":[1684,33,34]},{"path":[4,95,2,3],"span":[1685,2,32]},{"path":[4,95,2,3,4],"span":[1685,2,10]},{"path":[4,95,2,3,5],"span":[1685,11,17]},{"path":[4,95,2,3,1],"span":[1685,18,27]},{"path":[4,95,2,3,3],"span":[1685,30,31]},{"path":[4,95,2,4],"span":[1686,2,34],"trailingComments":" mac: interface_type\n"},{"path":[4,95,2,4,4],"span":[1686,2,10]},{"path":[4,95,2,4,5],"span":[1686,11,17]},{"path":[4,95,2,4,1],"span":[1686,18,29]},{"path":[4,95,2,4,3],"span":[1686,32,33]},{"path":[4,95,2,5],"span":[1687,2,44]},{"path":[4,95,2,5,4],"span":[1687,2,10]},{"path":[4,95,2,5,5],"span":[1687,11,16]},{"path":[4,95,2,5,1],"span":[1687,17,39]},{"path":[4,95,2,5,3],"span":[1687,42,43]},{"path":[4,95,2,6],"span":[1688,2,50]},{"path":[4,95,2,6,4],"span":[1688,2,10]},{"path":[4,95,2,6,5],"span":[1688,11,16]},{"path":[4,95,2,6,1],"span":[1688,17,45]},{"path":[4,95,2,6,3],"span":[1688,48,49]},{"path":[4,95,2,7],"span":[1689,2,37]},{"path":[4,95,2,7,4],"span":[1689,2,10]},{"path":[4,95,2,7,5],"span":[1689,11,17]},{"path":[4,95,2,7,1],"span":[1689,18,32]},{"path":[4,95,2,7,3],"span":[1689,35,36]},{"path":[4,95,2,8],"span":[1690,2,40]},{"path":[4,95,2,8,4],"span":[1690,2,10]},{"path":[4,95,2,8,5],"span":[1690,11,17]},{"path":[4,95,2,8,1],"span":[1690,18,35]},{"path":[4,95,2,8,3],"span":[1690,38,39]},{"path":[4,95,2,9],"span":[1691,2,37]},{"path":[4,95,2,9,4],"span":[1691,2,10]},{"path":[4,95,2,9,5],"span":[1691,11,17]},{"path":[4,95,2,9,1],"span":[1691,18,31]},{"path":[4,95,2,9,3],"span":[1691,34,36]},{"path":[4,95,2,10],"span":[1693,2,34],"trailingComments":" mac only\n"},{"path":[4,95,2,10,4],"span":[1693,2,10]},{"path":[4,95,2,10,5],"span":[1693,11,17]},{"path":[4,95,2,10,1],"span":[1693,18,28]},{"path":[4,95,2,10,3],"span":[1693,31,33]},{"path":[4,95,2,11],"span":[1694,2,38],"trailingComments":" mac only\n"},{"path":[4,95,2,11,4],"span":[1694,2,10]},{"path":[4,95,2,11,5],"span":[1694,11,17]},{"path":[4,95,2,11,1],"span":[1694,18,32]},{"path":[4,95,2,11,3],"span":[1694,35,37]},{"path":[4,95,2,12],"span":[1695,2,29],"trailingComments":" mac only\n"},{"path":[4,95,2,12,4],"span":[1695,2,10]},{"path":[4,95,2,12,5],"span":[1695,11,17]},{"path":[4,95,2,12,1],"span":[1695,18,23]},{"path":[4,95,2,12,3],"span":[1695,26,28]},{"path":[4,95,2,13],"span":[1696,2,34],"trailingComments":" mac only\n"},{"path":[4,95,2,13,4],"span":[1696,2,10]},{"path":[4,95,2,13,5],"span":[1696,11,17]},{"path":[4,95,2,13,1],"span":[1696,18,28]},{"path":[4,95,2,13,3],"span":[1696,31,33]},{"path":[4,96],"span":[1702,0,1720,1],"leadingComments":"\n Windows computer: a Printer connected to the computer.\n"},{"path":[4,96,1],"span":[1702,8,32]},{"path":[4,96,2,0],"span":[1703,2,46]},{"path":[4,96,2,0,4],"span":[1703,2,10]},{"path":[4,96,2,0,5],"span":[1703,11,17]},{"path":[4,96,2,0,1],"span":[1703,18,41]},{"path":[4,96,2,0,3],"span":[1703,44,45]},{"path":[4,96,2,1],"span":[1704,2,30]},{"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,18,25]},{"path":[4,96,2,1,3],"span":[1704,28,29]},{"path":[4,96,2,2],"span":[1705,2,32]},{"path":[4,96,2,2,4],"span":[1705,2,10]},{"path":[4,96,2,2,5],"span":[1705,11,17]},{"path":[4,96,2,2,1],"span":[1705,18,27]},{"path":[4,96,2,2,3],"span":[1705,30,31]},{"path":[4,96,2,3],"span":[1706,2,31]},{"path":[4,96,2,3,4],"span":[1706,2,10]},{"path":[4,96,2,3,5],"span":[1706,11,17]},{"path":[4,96,2,3,1],"span":[1706,18,26]},{"path":[4,96,2,3,3],"span":[1706,29,30]},{"path":[4,96,2,4],"span":[1707,2,32]},{"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,18,27]},{"path":[4,96,2,4,3],"span":[1707,30,31]},{"path":[4,96,2,5],"span":[1708,2,42]},{"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,18,37]},{"path":[4,96,2,5,3],"span":[1708,40,41]},{"path":[4,96,2,6],"span":[1709,2,38]},{"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,18,33]},{"path":[4,96,2,6,3],"span":[1709,36,37]},{"path":[4,96,2,7],"span":[1710,2,34]},{"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,18,28]},{"path":[4,96,2,7,3],"span":[1710,31,33]},{"path":[4,96,2,8],"span":[1711,2,30]},{"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,18,24]},{"path":[4,96,2,8,3],"span":[1711,27,29]},{"path":[4,96,2,9],"span":[1712,2,31]},{"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,18,25]},{"path":[4,96,2,9,3],"span":[1712,28,30]},{"path":[4,96,2,10],"span":[1714,2,43]},{"path":[4,96,2,10,4],"span":[1714,2,10]},{"path":[4,96,2,10,5],"span":[1714,11,16]},{"path":[4,96,2,10,1],"span":[1714,17,38]},{"path":[4,96,2,10,3],"span":[1714,41,42]},{"path":[4,96,2,11],"span":[1715,2,42]},{"path":[4,96,2,11,4],"span":[1715,2,10]},{"path":[4,96,2,11,5],"span":[1715,11,16]},{"path":[4,96,2,11,1],"span":[1715,17,36]},{"path":[4,96,2,11,3],"span":[1715,39,41]},{"path":[4,96,2,12],"span":[1717,2,33]},{"path":[4,96,2,12,4],"span":[1717,2,10]},{"path":[4,96,2,12,5],"span":[1717,11,15]},{"path":[4,96,2,12,1],"span":[1717,16,27]},{"path":[4,96,2,12,3],"span":[1717,30,32]},{"path":[4,96,2,13],"span":[1718,2,27]},{"path":[4,96,2,13,4],"span":[1718,2,10]},{"path":[4,96,2,13,5],"span":[1718,11,15]},{"path":[4,96,2,13,1],"span":[1718,16,21]},{"path":[4,96,2,13,3],"span":[1718,24,26]},{"path":[4,96,2,14],"span":[1719,2,29]},{"path":[4,96,2,14,4],"span":[1719,2,10]},{"path":[4,96,2,14,5],"span":[1719,11,15]},{"path":[4,96,2,14,1],"span":[1719,16,23]},{"path":[4,96,2,14,3],"span":[1719,26,28]},{"path":[4,97],"span":[1725,0,1741,1],"leadingComments":"\n Windows computer: a Tape connected to the computer.\n"},{"path":[4,97,1],"span":[1725,8,34]},{"path":[4,97,2,0],"span":[1726,2,40]},{"path":[4,97,2,0,4],"span":[1726,2,10]},{"path":[4,97,2,0,6],"span":[1726,11,22]},{"path":[4,97,2,0,1],"span":[1726,23,35]},{"path":[4,97,2,0,3],"span":[1726,38,39]},{"path":[4,97,2,1],"span":[1727,2,40]},{"path":[4,97,2,1,4],"span":[1727,2,10]},{"path":[4,97,2,1,6],"span":[1727,11,22]},{"path":[4,97,2,1,1],"span":[1727,23,35]},{"path":[4,97,2,1,3],"span":[1727,38,39]},{"path":[4,97,2,2],"span":[1728,2,30]},{"path":[4,97,2,2,4],"span":[1728,2,10]},{"path":[4,97,2,2,5],"span":[1728,11,17]},{"path":[4,97,2,2,1],"span":[1728,18,25]},{"path":[4,97,2,2,3],"span":[1728,28,29]},{"path":[4,97,2,3],"span":[1729,2,32]},{"path":[4,97,2,3,4],"span":[1729,2,10]},{"path":[4,97,2,3,5],"span":[1729,11,15]},{"path":[4,97,2,3,1],"span":[1729,16,27]},{"path":[4,97,2,3,3],"span":[1729,30,31]},{"path":[4,97,2,4],"span":[1730,2,40]},{"path":[4,97,2,4,4],"span":[1730,2,10]},{"path":[4,97,2,4,5],"span":[1730,11,16]},{"path":[4,97,2,4,1],"span":[1730,17,35]},{"path":[4,97,2,4,3],"span":[1730,38,39]},{"path":[4,97,2,5],"span":[1731,2,32]},{"path":[4,97,2,5,4],"span":[1731,2,10]},{"path":[4,97,2,5,5],"span":[1731,11,17]},{"path":[4,97,2,5,1],"span":[1731,18,27]},{"path":[4,97,2,5,3],"span":[1731,30,31]},{"path":[4,97,2,6],"span":[1732,2,35]},{"path":[4,97,2,6,4],"span":[1732,2,10]},{"path":[4,97,2,6,5],"span":[1732,11,17]},{"path":[4,97,2,6,1],"span":[1732,18,30]},{"path":[4,97,2,6,3],"span":[1732,33,34]},{"path":[4,97,2,7],"span":[1733,2,36]},{"path":[4,97,2,7,4],"span":[1733,2,10]},{"path":[4,97,2,7,5],"span":[1733,11,16]},{"path":[4,97,2,7,1],"span":[1733,17,31]},{"path":[4,97,2,7,3],"span":[1733,34,35]},{"path":[4,97,2,8],"span":[1734,2,36]},{"path":[4,97,2,8,4],"span":[1734,2,10]},{"path":[4,97,2,8,5],"span":[1734,11,16]},{"path":[4,97,2,8,1],"span":[1734,17,31]},{"path":[4,97,2,8,3],"span":[1734,34,35]},{"path":[4,97,2,9],"span":[1735,2,42]},{"path":[4,97,2,9,4],"span":[1735,2,10]},{"path":[4,97,2,9,5],"span":[1735,11,16]},{"path":[4,97,2,9,1],"span":[1735,17,36]},{"path":[4,97,2,9,3],"span":[1735,39,41]},{"path":[4,97,2,10],"span":[1736,2,34]},{"path":[4,97,2,10,4],"span":[1736,2,10]},{"path":[4,97,2,10,5],"span":[1736,11,17]},{"path":[4,97,2,10,1],"span":[1736,18,28]},{"path":[4,97,2,10,3],"span":[1736,31,33]},{"path":[4,97,2,11],"span":[1737,2,37]},{"path":[4,97,2,11,4],"span":[1737,2,10]},{"path":[4,97,2,11,5],"span":[1737,11,16]},{"path":[4,97,2,11,1],"span":[1737,17,31]},{"path":[4,97,2,11,3],"span":[1737,34,36]},{"path":[4,97,2,12],"span":[1738,2,36]},{"path":[4,97,2,12,4],"span":[1738,2,10]},{"path":[4,97,2,12,5],"span":[1738,11,15]},{"path":[4,97,2,12,1],"span":[1738,16,30]},{"path":[4,97,2,12,3],"span":[1738,33,35]},{"path":[4,97,2,13],"span":[1739,2,48]},{"path":[4,97,2,13,4],"span":[1739,2,10]},{"path":[4,97,2,13,5],"span":[1739,11,16]},{"path":[4,97,2,13,1],"span":[1739,17,42]},{"path":[4,97,2,13,3],"span":[1739,45,47]},{"path":[4,97,2,14],"span":[1740,2,30]},{"path":[4,97,2,14,4],"span":[1740,2,10]},{"path":[4,97,2,14,5],"span":[1740,11,16]},{"path":[4,97,2,14,1],"span":[1740,17,24]},{"path":[4,97,2,14,3],"span":[1740,27,29]},{"path":[4,98],"span":[1746,0,1779,1],"leadingComments":"\n Computer, Windows only Certificate.\n"},{"path":[4,98,1],"span":[1746,8,34]},{"path":[4,98,4,0],"span":[1748,2,1758,3]},{"path":[4,98,4,0,1],"span":[1748,7,19]},{"path":[4,98,4,0,2,0],"span":[1749,4,26]},{"path":[4,98,4,0,2,0,1],"span":[1749,4,21]},{"path":[4,98,4,0,2,0,2],"span":[1749,24,25]},{"path":[4,98,4,0,2,1],"span":[1750,4,24]},{"path":[4,98,4,0,2,1,1],"span":[1750,4,19]},{"path":[4,98,4,0,2,1,2],"span":[1750,22,23]},{"path":[4,98,4,0,2,2],"span":[1751,4,25]},{"path":[4,98,4,0,2,2,1],"span":[1751,4,20]},{"path":[4,98,4,0,2,2,2],"span":[1751,23,24]},{"path":[4,98,4,0,2,3],"span":[1752,4,26]},{"path":[4,98,4,0,2,3,1],"span":[1752,4,21]},{"path":[4,98,4,0,2,3,2],"span":[1752,24,25]},{"path":[4,98,4,0,2,4],"span":[1753,4,22]},{"path":[4,98,4,0,2,4,1],"span":[1753,4,17]},{"path":[4,98,4,0,2,4,2],"span":[1753,20,21]},{"path":[4,98,4,0,2,5],"span":[1754,4,22]},{"path":[4,98,4,0,2,5,1],"span":[1754,4,17]},{"path":[4,98,4,0,2,5,2],"span":[1754,20,21]},{"path":[4,98,4,0,2,6],"span":[1755,4,17]},{"path":[4,98,4,0,2,6,1],"span":[1755,4,12]},{"path":[4,98,4,0,2,6,2],"span":[1755,15,16]},{"path":[4,98,4,0,2,7],"span":[1756,4,22]},{"path":[4,98,4,0,2,7,1],"span":[1756,4,17]},{"path":[4,98,4,0,2,7,2],"span":[1756,20,21]},{"path":[4,98,4,0,2,8],"span":[1757,4,22]},{"path":[4,98,4,0,2,8,1],"span":[1757,4,17]},{"path":[4,98,4,0,2,8,2],"span":[1757,20,21]},{"path":[4,98,2,0],"span":[1760,2,69]},{"path":[4,98,2,0,4],"span":[1760,2,10]},{"path":[4,98,2,0,6],"span":[1760,11,45]},{"path":[4,98,2,0,1],"span":[1760,46,64]},{"path":[4,98,2,0,3],"span":[1760,67,68]},{"path":[4,98,2,1],"span":[1761,2,38]},{"path":[4,98,2,1,4],"span":[1761,2,10]},{"path":[4,98,2,1,6],"span":[1761,11,23]},{"path":[4,98,2,1,1],"span":[1761,24,33]},{"path":[4,98,2,1,3],"span":[1761,36,37]},{"path":[4,98,2,2],"span":[1762,2,22]},{"path":[4,98,2,2,5],"span":[1762,2,8]},{"path":[4,98,2,2,1],"span":[1762,9,17]},{"path":[4,98,2,2,3],"span":[1762,20,21]},{"path":[4,98,2,3],"span":[1763,2,27]},{"path":[4,98,2,3,5],"span":[1763,2,8]},{"path":[4,98,2,3,1],"span":[1763,9,22]},{"path":[4,98,2,3,3],"span":[1763,25,26]},{"path":[4,98,2,4],"span":[1764,2,42]},{"path":[4,98,2,4,4],"span":[1764,2,10]},{"path":[4,98,2,4,5],"span":[1764,11,17]},{"path":[4,98,2,4,1],"span":[1764,18,37]},{"path":[4,98,2,4,3],"span":[1764,40,41]},{"path":[4,98,2,5],"span":[1765,2,20]},{"path":[4,98,2,5,5],"span":[1765,2,7]},{"path":[4,98,2,5,1],"span":[1765,8,15]},{"path":[4,98,2,5,3],"span":[1765,18,19]},{"path":[4,98,2,6],"span":[1766,2,27]},{"path":[4,98,2,6,5],"span":[1766,2,6]},{"path":[4,98,2,6,1],"span":[1766,7,22]},{"path":[4,98,2,6,3],"span":[1766,25,26]},{"path":[4,98,2,7],"span":[1767,2,23]},{"path":[4,98,2,7,5],"span":[1767,2,6]},{"path":[4,98,2,7,1],"span":[1767,7,18]},{"path":[4,98,2,7,3],"span":[1767,21,22]},{"path":[4,98,2,8],"span":[1768,2,48]},{"path":[4,98,2,8,6],"span":[1768,2,27]},{"path":[4,98,2,8,1],"span":[1768,28,43]},{"path":[4,98,2,8,3],"span":[1768,46,47]},{"path":[4,98,2,9],"span":[1769,2,44]},{"path":[4,98,2,9,6],"span":[1769,2,27]},{"path":[4,98,2,9,1],"span":[1769,28,38]},{"path":[4,98,2,9,3],"span":[1769,41,43]},{"path":[4,98,2,10],"span":[1770,2,26]},{"path":[4,98,2,10,5],"span":[1770,2,8]},{"path":[4,98,2,10,1],"span":[1770,9,20]},{"path":[4,98,2,10,3],"span":[1770,23,25]},{"path":[4,98,2,11],"span":[1771,2,21]},{"path":[4,98,2,11,5],"span":[1771,2,8]},{"path":[4,98,2,11,1],"span":[1771,9,15]},{"path":[4,98,2,11,3],"span":[1771,18,20]},{"path":[4,98,2,12],"span":[1772,2,39]},{"path":[4,98,2,12,5],"span":[1772,2,8]},{"path":[4,98,2,12,1],"span":[1772,9,33]},{"path":[4,98,2,12,3],"span":[1772,36,38]},{"path":[4,98,2,13],"span":[1773,2,27]},{"path":[4,98,2,13,5],"span":[1773,2,8]},{"path":[4,98,2,13,1],"span":[1773,9,21]},{"path":[4,98,2,13,3],"span":[1773,24,26]},{"path":[4,98,2,14],"span":[1774,2,22]},{"path":[4,98,2,14,5],"span":[1774,2,8]},{"path":[4,98,2,14,1],"span":[1774,9,16]},{"path":[4,98,2,14,3],"span":[1774,19,21]},{"path":[4,98,2,15],"span":[1775,2,21]},{"path":[4,98,2,15,5],"span":[1775,2,8]},{"path":[4,98,2,15,1],"span":[1775,9,15]},{"path":[4,98,2,15,3],"span":[1775,18,20]},{"path":[4,98,2,16],"span":[1776,2,25]},{"path":[4,98,2,16,5],"span":[1776,2,8]},{"path":[4,98,2,16,1],"span":[1776,9,19]},{"path":[4,98,2,16,3],"span":[1776,22,24]},{"path":[4,98,2,17],"span":[1777,2,28]},{"path":[4,98,2,17,5],"span":[1777,2,8]},{"path":[4,98,2,17,1],"span":[1777,9,22]},{"path":[4,98,2,17,3],"span":[1777,25,27]},{"path":[4,98,2,18],"span":[1778,2,52]},{"path":[4,98,2,18,4],"span":[1778,2,10]},{"path":[4,98,2,18,6],"span":[1778,11,37]},{"path":[4,98,2,18,1],"span":[1778,38,46]},{"path":[4,98,2,18,3],"span":[1778,49,51]},{"path":[4,99],"span":[1781,0,1784,1]},{"path":[4,99,1],"span":[1781,8,42]},{"path":[4,99,2,0],"span":[1782,2,31]},{"path":[4,99,2,0,4],"span":[1782,2,10]},{"path":[4,99,2,0,5],"span":[1782,11,17]},{"path":[4,99,2,0,1],"span":[1782,18,26]},{"path":[4,99,2,0,3],"span":[1782,29,30]},{"path":[4,99,2,1],"span":[1783,2,32]},{"path":[4,99,2,1,4],"span":[1783,2,10]},{"path":[4,99,2,1,5],"span":[1783,11,17]},{"path":[4,99,2,1,1],"span":[1783,18,27]},{"path":[4,99,2,1,3],"span":[1783,30,31]},{"path":[4,100],"span":[1786,0,1789,1]},{"path":[4,100,1],"span":[1786,8,34]},{"path":[4,100,2,0],"span":[1787,2,19]},{"path":[4,100,2,0,5],"span":[1787,2,8]},{"path":[4,100,2,0,1],"span":[1787,9,14]},{"path":[4,100,2,0,3],"span":[1787,17,18]},{"path":[4,100,2,1],"span":[1788,2,20]},{"path":[4,100,2,1,5],"span":[1788,2,8]},{"path":[4,100,2,1,1],"span":[1788,9,15]},{"path":[4,100,2,1,3],"span":[1788,18,19]},{"path":[4,101],"span":[1796,0,1801,1],"leadingComments":"\n Computer Windows only: page files.\n"},{"path":[4,101,1],"span":[1796,8,31]},{"path":[4,101,8,0],"span":[1797,2,1800,3]},{"path":[4,101,8,0,1],"span":[1797,8,17]},{"path":[4,101,2,0],"span":[1798,4,37]},{"path":[4,101,2,0,6],"span":[1798,4,25]},{"path":[4,101,2,0,1],"span":[1798,26,32]},{"path":[4,101,2,0,3],"span":[1798,35,36]},{"path":[4,101,2,1],"span":[1799,4,45]},{"path":[4,101,2,1,6],"span":[1799,4,31]},{"path":[4,101,2,1,1],"span":[1799,32,40]},{"path":[4,101,2,1,3],"span":[1799,43,44]},{"path":[4,102],"span":[1803,0,1819,1]},{"path":[4,102,1],"span":[1803,8,29]},{"path":[4,102,2,0],"span":[1804,2,28]},{"path":[4,102,2,0,4],"span":[1804,2,10]},{"path":[4,102,2,0,5],"span":[1804,11,15]},{"path":[4,102,2,0,1],"span":[1804,16,23]},{"path":[4,102,2,0,3],"span":[1804,26,27]},{"path":[4,102,2,1],"span":[1805,2,30]},{"path":[4,102,2,1,4],"span":[1805,2,10]},{"path":[4,102,2,1,5],"span":[1805,11,17]},{"path":[4,102,2,1,1],"span":[1805,18,25]},{"path":[4,102,2,1,3],"span":[1805,28,29]},{"path":[4,102,2,2],"span":[1806,2,55]},{"path":[4,102,2,2,4],"span":[1806,2,10]},{"path":[4,102,2,2,6],"span":[1806,11,36]},{"path":[4,102,2,2,1],"span":[1806,37,50]},{"path":[4,102,2,2,3],"span":[1806,53,54]},{"path":[4,102,2,3],"span":[1807,2,32]},{"path":[4,102,2,3,4],"span":[1807,2,10]},{"path":[4,102,2,3,5],"span":[1807,11,17]},{"path":[4,102,2,3,1],"span":[1807,18,27]},{"path":[4,102,2,3,3],"span":[1807,30,31]},{"path":[4,102,2,4],"span":[1808,2,27]},{"path":[4,102,2,4,4],"span":[1808,2,10]},{"path":[4,102,2,4,5],"span":[1808,11,15]},{"path":[4,102,2,4,1],"span":[1808,16,22]},{"path":[4,102,2,4,3],"span":[1808,25,26]},{"path":[4,102,2,5],"span":[1809,2,35]},{"path":[4,102,2,5,4],"span":[1809,2,10]},{"path":[4,102,2,5,5],"span":[1809,11,17]},{"path":[4,102,2,5,1],"span":[1809,18,30]},{"path":[4,102,2,5,3],"span":[1809,33,34]},{"path":[4,102,2,6],"span":[1810,2,54]},{"path":[4,102,2,6,4],"span":[1810,2,10]},{"path":[4,102,2,6,6],"span":[1810,11,36]},{"path":[4,102,2,6,1],"span":[1810,37,49]},{"path":[4,102,2,6,3],"span":[1810,52,53]},{"path":[4,102,2,7],"span":[1811,2,55]},{"path":[4,102,2,7,4],"span":[1811,2,10]},{"path":[4,102,2,7,6],"span":[1811,11,36]},{"path":[4,102,2,7,1],"span":[1811,37,50]},{"path":[4,102,2,7,3],"span":[1811,53,54]},{"path":[4,102,2,8],"span":[1812,2,55]},{"path":[4,102,2,8,4],"span":[1812,2,10]},{"path":[4,102,2,8,6],"span":[1812,11,36]},{"path":[4,102,2,8,1],"span":[1812,37,50]},{"path":[4,102,2,8,3],"span":[1812,53,54]},{"path":[4,102,2,9],"span":[1813,2,36]},{"path":[4,102,2,9,4],"span":[1813,2,10]},{"path":[4,102,2,9,5],"span":[1813,11,17]},{"path":[4,102,2,9,1],"span":[1813,18,30]},{"path":[4,102,2,9,3],"span":[1813,33,35]},{"path":[4,102,2,10],"span":[1814,2,28]},{"path":[4,102,2,10,4],"span":[1814,2,10]},{"path":[4,102,2,10,5],"span":[1814,11,17]},{"path":[4,102,2,10,1],"span":[1814,18,22]},{"path":[4,102,2,10,3],"span":[1814,25,27]},{"path":[4,102,2,11],"span":[1815,2,28]},{"path":[4,102,2,11,4],"span":[1815,2,10]},{"path":[4,102,2,11,5],"span":[1815,11,17]},{"path":[4,102,2,11,1],"span":[1815,18,22]},{"path":[4,102,2,11,3],"span":[1815,25,27]},{"path":[4,102,2,12],"span":[1816,2,30]},{"path":[4,102,2,12,4],"span":[1816,2,10]},{"path":[4,102,2,12,5],"span":[1816,11,15]},{"path":[4,102,2,12,1],"span":[1816,16,24]},{"path":[4,102,2,12,3],"span":[1816,27,29]},{"path":[4,102,2,13],"span":[1817,2,28]},{"path":[4,102,2,13,4],"span":[1817,2,10]},{"path":[4,102,2,13,5],"span":[1817,11,15]},{"path":[4,102,2,13,1],"span":[1817,16,22]},{"path":[4,102,2,13,3],"span":[1817,25,27]},{"path":[4,102,2,14],"span":[1818,2,31]},{"path":[4,102,2,14,4],"span":[1818,2,10]},{"path":[4,102,2,14,5],"span":[1818,11,15]},{"path":[4,102,2,14,1],"span":[1818,16,25]},{"path":[4,102,2,14,3],"span":[1818,28,30]},{"path":[4,103],"span":[1821,0,1824,1]},{"path":[4,103,1],"span":[1821,8,35]},{"path":[4,103,2,0],"span":[1822,2,53]},{"path":[4,103,2,0,4],"span":[1822,2,10]},{"path":[4,103,2,0,6],"span":[1822,11,31]},{"path":[4,103,2,0,1],"span":[1822,32,48]},{"path":[4,103,2,0,3],"span":[1822,51,52]},{"path":[4,103,2,1],"span":[1823,2,57]},{"path":[4,103,2,1,4],"span":[1823,2,10]},{"path":[4,103,2,1,6],"span":[1823,11,33]},{"path":[4,103,2,1,1],"span":[1823,34,52]},{"path":[4,103,2,1,3],"span":[1823,55,56]},{"path":[4,104],"span":[1826,0,1833,1]},{"path":[4,104,1],"span":[1826,8,30]},{"path":[4,104,2,0],"span":[1827,2,30]},{"path":[4,104,2,0,4],"span":[1827,2,10]},{"path":[4,104,2,0,5],"span":[1827,11,17]},{"path":[4,104,2,0,1],"span":[1827,18,25]},{"path":[4,104,2,0,3],"span":[1827,28,29]},{"path":[4,104,2,1],"span":[1828,2,34]},{"path":[4,104,2,1,4],"span":[1828,2,10]},{"path":[4,104,2,1,5],"span":[1828,11,17]},{"path":[4,104,2,1,1],"span":[1828,18,29]},{"path":[4,104,2,1,3],"span":[1828,32,33]},{"path":[4,104,2,2],"span":[1829,2,35]},{"path":[4,104,2,2,4],"span":[1829,2,10]},{"path":[4,104,2,2,5],"span":[1829,11,17]},{"path":[4,104,2,2,1],"span":[1829,18,30]},{"path":[4,104,2,2,3],"span":[1829,33,34]},{"path":[4,104,2,3],"span":[1830,2,35]},{"path":[4,104,2,3,4],"span":[1830,2,10]},{"path":[4,104,2,3,5],"span":[1830,11,17]},{"path":[4,104,2,3,1],"span":[1830,18,30]},{"path":[4,104,2,3,3],"span":[1830,33,34]},{"path":[4,104,2,4],"span":[1831,2,27]},{"path":[4,104,2,4,4],"span":[1831,2,10]},{"path":[4,104,2,4,5],"span":[1831,11,17]},{"path":[4,104,2,4,1],"span":[1831,18,22]},{"path":[4,104,2,4,3],"span":[1831,25,26]},{"path":[4,104,2,5],"span":[1832,2,33]},{"path":[4,104,2,5,4],"span":[1832,2,10]},{"path":[4,104,2,5,5],"span":[1832,11,17]},{"path":[4,104,2,5,1],"span":[1832,18,28]},{"path":[4,104,2,5,3],"span":[1832,31,32]},{"path":[4,105],"span":[1835,0,1845,1]},{"path":[4,105,1],"span":[1835,8,28]},{"path":[4,105,2,0],"span":[1836,2,42]},{"path":[4,105,2,0,4],"span":[1836,2,10]},{"path":[4,105,2,0,5],"span":[1836,11,17]},{"path":[4,105,2,0,1],"span":[1836,18,37]},{"path":[4,105,2,0,3],"span":[1836,40,41]},{"path":[4,105,2,1],"span":[1837,2,30]},{"path":[4,105,2,1,4],"span":[1837,2,10]},{"path":[4,105,2,1,5],"span":[1837,11,17]},{"path":[4,105,2,1,1],"span":[1837,18,25]},{"path":[4,105,2,1,3],"span":[1837,28,29]},{"path":[4,105,2,2],"span":[1838,2,36]},{"path":[4,105,2,2,4],"span":[1838,2,10]},{"path":[4,105,2,2,5],"span":[1838,11,17]},{"path":[4,105,2,2,1],"span":[1838,18,31]},{"path":[4,105,2,2,3],"span":[1838,34,35]},{"path":[4,105,2,3],"span":[1839,2,35]},{"path":[4,105,2,3,4],"span":[1839,2,10]},{"path":[4,105,2,3,5],"span":[1839,11,17]},{"path":[4,105,2,3,1],"span":[1839,18,29]},{"path":[4,105,2,3,3],"span":[1839,33,34]},{"path":[4,105,2,4],"span":[1840,2,54]},{"path":[4,105,2,4,4],"span":[1840,2,10]},{"path":[4,105,2,4,6],"span":[1840,11,36]},{"path":[4,105,2,4,1],"span":[1840,37,49]},{"path":[4,105,2,4,3],"span":[1840,52,53]},{"path":[4,105,2,5],"span":[1841,2,27]},{"path":[4,105,2,5,4],"span":[1841,2,10]},{"path":[4,105,2,5,5],"span":[1841,11,17]},{"path":[4,105,2,5,1],"span":[1841,18,22]},{"path":[4,105,2,5,3],"span":[1841,25,26]},{"path":[4,105,2,6],"span":[1842,2,33]},{"path":[4,105,2,6,4],"span":[1842,2,10]},{"path":[4,105,2,6,5],"span":[1842,11,17]},{"path":[4,105,2,6,1],"span":[1842,18,28]},{"path":[4,105,2,6,3],"span":[1842,31,32]},{"path":[4,105,2,7],"span":[1843,2,29]},{"path":[4,105,2,7,4],"span":[1843,2,10]},{"path":[4,105,2,7,5],"span":[1843,11,17]},{"path":[4,105,2,7,1],"span":[1843,18,24]},{"path":[4,105,2,7,3],"span":[1843,27,28]},{"path":[4,105,2,8],"span":[1844,2,35]},{"path":[4,105,2,8,4],"span":[1844,2,10]},{"path":[4,105,2,8,5],"span":[1844,11,15]},{"path":[4,105,2,8,1],"span":[1844,16,30]},{"path":[4,105,2,8,3],"span":[1844,33,34]},{"path":[4,106],"span":[1851,0,1870,1],"leadingComments":"\n Computer, Windows only.\n"},{"path":[4,106,1],"span":[1851,8,30]},{"path":[4,106,2,0],"span":[1852,2,34]},{"path":[4,106,2,0,4],"span":[1852,2,10]},{"path":[4,106,2,0,5],"span":[1852,11,16]},{"path":[4,106,2,0,1],"span":[1852,17,29]},{"path":[4,106,2,0,3],"span":[1852,32,33]},{"path":[4,106,2,1],"span":[1853,2,32]},{"path":[4,106,2,1,4],"span":[1853,2,10]},{"path":[4,106,2,1,5],"span":[1853,11,15]},{"path":[4,106,2,1,1],"span":[1853,16,27]},{"path":[4,106,2,1,3],"span":[1853,30,31]},{"path":[4,106,2,2],"span":[1854,2,39]},{"path":[4,106,2,2,4],"span":[1854,2,10]},{"path":[4,106,2,2,5],"span":[1854,11,16]},{"path":[4,106,2,2,1],"span":[1854,17,34]},{"path":[4,106,2,2,3],"span":[1854,37,38]},{"path":[4,106,2,3],"span":[1855,2,38]},{"path":[4,106,2,3,4],"span":[1855,2,10]},{"path":[4,106,2,3,5],"span":[1855,11,15]},{"path":[4,106,2,3,1],"span":[1855,16,33]},{"path":[4,106,2,3,3],"span":[1855,36,37]},{"path":[4,106,2,4],"span":[1856,2,38]},{"path":[4,106,2,4,4],"span":[1856,2,10]},{"path":[4,106,2,4,5],"span":[1856,11,16]},{"path":[4,106,2,4,1],"span":[1856,17,33]},{"path":[4,106,2,4,3],"span":[1856,36,37]},{"path":[4,106,2,5],"span":[1857,2,34]},{"path":[4,106,2,5,4],"span":[1857,2,10]},{"path":[4,106,2,5,5],"span":[1857,11,16]},{"path":[4,106,2,5,1],"span":[1857,17,29]},{"path":[4,106,2,5,3],"span":[1857,32,33]},{"path":[4,106,2,6],"span":[1858,2,42]},{"path":[4,106,2,6,4],"span":[1858,2,10]},{"path":[4,106,2,6,5],"span":[1858,11,17]},{"path":[4,106,2,6,1],"span":[1858,18,37]},{"path":[4,106,2,6,3],"span":[1858,40,41]},{"path":[4,106,2,7],"span":[1859,2,37]},{"path":[4,106,2,7,4],"span":[1859,2,10]},{"path":[4,106,2,7,5],"span":[1859,11,16]},{"path":[4,106,2,7,1],"span":[1859,17,32]},{"path":[4,106,2,7,3],"span":[1859,35,36]},{"path":[4,106,2,8],"span":[1860,2,36]},{"path":[4,106,2,8,4],"span":[1860,2,10]},{"path":[4,106,2,8,5],"span":[1860,11,15]},{"path":[4,106,2,8,1],"span":[1860,16,31]},{"path":[4,106,2,8,3],"span":[1860,34,35]},{"path":[4,106,2,9],"span":[1861,2,28]},{"path":[4,106,2,9,4],"span":[1861,2,10]},{"path":[4,106,2,9,5],"span":[1861,11,17]},{"path":[4,106,2,9,1],"span":[1861,18,22]},{"path":[4,106,2,9,3],"span":[1861,25,27]},{"path":[4,106,2,10],"span":[1862,2,31]},{"path":[4,106,2,10,4],"span":[1862,2,10]},{"path":[4,106,2,10,5],"span":[1862,11,17]},{"path":[4,106,2,10,1],"span":[1862,18,25]},{"path":[4,106,2,10,3],"span":[1862,28,30]},{"path":[4,106,2,11],"span":[1863,2,40]},{"path":[4,106,2,11,4],"span":[1863,2,10]},{"path":[4,106,2,11,5],"span":[1863,11,15]},{"path":[4,106,2,11,1],"span":[1863,16,34]},{"path":[4,106,2,11,3],"span":[1863,37,39]},{"path":[4,106,2,12],"span":[1864,2,46]},{"path":[4,106,2,12,4],"span":[1864,2,10]},{"path":[4,106,2,12,5],"span":[1864,11,17]},{"path":[4,106,2,12,1],"span":[1864,18,40]},{"path":[4,106,2,12,3],"span":[1864,43,45]},{"path":[4,106,2,13],"span":[1865,2,40]},{"path":[4,106,2,13,4],"span":[1865,2,10]},{"path":[4,106,2,13,5],"span":[1865,11,15]},{"path":[4,106,2,13,1],"span":[1865,16,34]},{"path":[4,106,2,13,3],"span":[1865,37,39]},{"path":[4,106,2,14],"span":[1866,2,41]},{"path":[4,106,2,14,4],"span":[1866,2,10]},{"path":[4,106,2,14,5],"span":[1866,11,16]},{"path":[4,106,2,14,1],"span":[1866,17,35]},{"path":[4,106,2,14,3],"span":[1866,38,40]},{"path":[4,106,2,15],"span":[1867,2,33]},{"path":[4,106,2,15,4],"span":[1867,2,10]},{"path":[4,106,2,15,5],"span":[1867,11,17]},{"path":[4,106,2,15,1],"span":[1867,18,27]},{"path":[4,106,2,15,3],"span":[1867,30,32]},{"path":[4,106,2,16],"span":[1868,2,41]},{"path":[4,106,2,16,4],"span":[1868,2,10]},{"path":[4,106,2,16,5],"span":[1868,11,15]},{"path":[4,106,2,16,1],"span":[1868,16,35]},{"path":[4,106,2,16,3],"span":[1868,38,40]},{"path":[4,106,2,17],"span":[1869,2,37]},{"path":[4,106,2,17,4],"span":[1869,2,10]},{"path":[4,106,2,17,5],"span":[1869,11,15]},{"path":[4,106,2,17,1],"span":[1869,16,31]},{"path":[4,106,2,17,3],"span":[1869,34,36]},{"path":[4,107],"span":[1875,0,1886,1],"leadingComments":"\n Computer, Windows only: from WindowsDisplayConfig.\n"},{"path":[4,107,1],"span":[1875,8,30]},{"path":[4,107,2,0],"span":[1876,2,34]},{"path":[4,107,2,0,4],"span":[1876,2,10]},{"path":[4,107,2,0,5],"span":[1876,11,16]},{"path":[4,107,2,0,1],"span":[1876,17,29]},{"path":[4,107,2,0,3],"span":[1876,32,33]},{"path":[4,107,2,1],"span":[1877,2,30]},{"path":[4,107,2,1,4],"span":[1877,2,10]},{"path":[4,107,2,1,5],"span":[1877,11,17]},{"path":[4,107,2,1,1],"span":[1877,18,25]},{"path":[4,107,2,1,3],"span":[1877,28,29]},{"path":[4,107,2,2],"span":[1878,2,34]},{"path":[4,107,2,2,4],"span":[1878,2,10]},{"path":[4,107,2,2,5],"span":[1878,11,17]},{"path":[4,107,2,2,1],"span":[1878,18,29]},{"path":[4,107,2,2,3],"span":[1878,32,33]},{"path":[4,107,2,3],"span":[1879,2,35]},{"path":[4,107,2,3,4],"span":[1879,2,10]},{"path":[4,107,2,3,5],"span":[1879,11,16]},{"path":[4,107,2,3,1],"span":[1879,17,30]},{"path":[4,107,2,3,3],"span":[1879,33,34]},{"path":[4,107,2,4],"span":[1880,2,39]},{"path":[4,107,2,4,4],"span":[1880,2,10]},{"path":[4,107,2,4,5],"span":[1880,11,16]},{"path":[4,107,2,4,1],"span":[1880,17,34]},{"path":[4,107,2,4,3],"span":[1880,37,38]},{"path":[4,107,2,5],"span":[1881,2,37]},{"path":[4,107,2,5,4],"span":[1881,2,10]},{"path":[4,107,2,5,5],"span":[1881,11,17]},{"path":[4,107,2,5,1],"span":[1881,18,32]},{"path":[4,107,2,5,3],"span":[1881,35,36]},{"path":[4,107,2,6],"span":[1882,2,32]},{"path":[4,107,2,6,4],"span":[1882,2,10]},{"path":[4,107,2,6,5],"span":[1882,11,16]},{"path":[4,107,2,6,1],"span":[1882,17,27]},{"path":[4,107,2,6,3],"span":[1882,30,31]},{"path":[4,107,2,7],"span":[1883,2,33]},{"path":[4,107,2,7,4],"span":[1883,2,10]},{"path":[4,107,2,7,5],"span":[1883,11,16]},{"path":[4,107,2,7,1],"span":[1883,17,28]},{"path":[4,107,2,7,3],"span":[1883,31,32]},{"path":[4,107,2,8],"span":[1884,2,32]},{"path":[4,107,2,8,4],"span":[1884,2,10]},{"path":[4,107,2,8,5],"span":[1884,11,16]},{"path":[4,107,2,8,1],"span":[1884,17,27]},{"path":[4,107,2,8,3],"span":[1884,30,31]},{"path":[4,107,2,9],"span":[1885,2,44]},{"path":[4,107,2,9,4],"span":[1885,2,10]},{"path":[4,107,2,9,5],"span":[1885,11,16]},{"path":[4,107,2,9,1],"span":[1885,17,38]},{"path":[4,107,2,9,3],"span":[1885,41,43]},{"path":[4,108],"span":[1891,0,1901,1],"leadingComments":"\n Computer, Windows only.\n"},{"path":[4,108,1],"span":[1891,8,37]},{"path":[4,108,2,0],"span":[1892,2,40]},{"path":[4,108,2,0,4],"span":[1892,2,10]},{"path":[4,108,2,0,6],"span":[1892,11,22]},{"path":[4,108,2,0,1],"span":[1892,23,35]},{"path":[4,108,2,0,3],"span":[1892,38,39]},{"path":[4,108,2,1],"span":[1893,2,30]},{"path":[4,108,2,1,4],"span":[1893,2,10]},{"path":[4,108,2,1,5],"span":[1893,11,17]},{"path":[4,108,2,1,1],"span":[1893,18,25]},{"path":[4,108,2,1,3],"span":[1893,28,29]},{"path":[4,108,2,2],"span":[1894,2,32]},{"path":[4,108,2,2,4],"span":[1894,2,10]},{"path":[4,108,2,2,5],"span":[1894,11,17]},{"path":[4,108,2,2,1],"span":[1894,18,27]},{"path":[4,108,2,2,3],"span":[1894,30,31]},{"path":[4,108,2,3],"span":[1895,2,43]},{"path":[4,108,2,3,4],"span":[1895,2,10]},{"path":[4,108,2,3,5],"span":[1895,11,17]},{"path":[4,108,2,3,1],"span":[1895,18,38]},{"path":[4,108,2,3,3],"span":[1895,41,42]},{"path":[4,108,2,4],"span":[1896,2,48]},{"path":[4,108,2,4,4],"span":[1896,2,10]},{"path":[4,108,2,4,5],"span":[1896,11,17]},{"path":[4,108,2,4,1],"span":[1896,18,43]},{"path":[4,108,2,4,3],"span":[1896,46,47]},{"path":[4,108,2,5],"span":[1897,2,48]},{"path":[4,108,2,5,4],"span":[1897,2,10]},{"path":[4,108,2,5,5],"span":[1897,11,17]},{"path":[4,108,2,5,1],"span":[1897,18,43]},{"path":[4,108,2,5,3],"span":[1897,46,47]},{"path":[4,108,2,6],"span":[1898,2,36]},{"path":[4,108,2,6,4],"span":[1898,2,10]},{"path":[4,108,2,6,5],"span":[1898,11,17]},{"path":[4,108,2,6,1],"span":[1898,18,31]},{"path":[4,108,2,6,3],"span":[1898,34,35]},{"path":[4,108,2,7],"span":[1899,2,36]},{"path":[4,108,2,7,4],"span":[1899,2,10]},{"path":[4,108,2,7,5],"span":[1899,11,17]},{"path":[4,108,2,7,1],"span":[1899,18,31]},{"path":[4,108,2,7,3],"span":[1899,34,35]},{"path":[4,108,2,8],"span":[1900,2,35]},{"path":[4,108,2,8,4],"span":[1900,2,10]},{"path":[4,108,2,8,5],"span":[1900,11,17]},{"path":[4,108,2,8,1],"span":[1900,18,30]},{"path":[4,108,2,8,3],"span":[1900,33,34]},{"path":[4,109],"span":[1907,0,1918,1],"leadingComments":"\n Computer, Windows only: from WindowsDisplayControllerConfig.\n"},{"path":[4,109,1],"span":[1907,8,40]},{"path":[4,109,2,0],"span":[1908,2,36]},{"path":[4,109,2,0,4],"span":[1908,2,10]},{"path":[4,109,2,0,5],"span":[1908,11,16]},{"path":[4,109,2,0,1],"span":[1908,17,31]},{"path":[4,109,2,0,3],"span":[1908,34,35]},{"path":[4,109,2,1],"span":[1909,2,30]},{"path":[4,109,2,1,4],"span":[1909,2,10]},{"path":[4,109,2,1,5],"span":[1909,11,17]},{"path":[4,109,2,1,1],"span":[1909,18,25]},{"path":[4,109,2,1,3],"span":[1909,28,29]},{"path":[4,109,2,2],"span":[1910,2,35]},{"path":[4,109,2,2,4],"span":[1910,2,10]},{"path":[4,109,2,2,5],"span":[1910,11,17]},{"path":[4,109,2,2,1],"span":[1910,18,30]},{"path":[4,109,2,2,3],"span":[1910,33,34]},{"path":[4,109,2,3],"span":[1911,2,54]},{"path":[4,109,2,3,4],"span":[1911,2,10]},{"path":[4,109,2,3,5],"span":[1911,11,17]},{"path":[4,109,2,3,1],"span":[1911,18,49]},{"path":[4,109,2,3,3],"span":[1911,52,53]},{"path":[4,109,2,4],"span":[1912,2,43]},{"path":[4,109,2,4,4],"span":[1912,2,10]},{"path":[4,109,2,4,5],"span":[1912,11,17]},{"path":[4,109,2,4,1],"span":[1912,18,38]},{"path":[4,109,2,4,3],"span":[1912,41,42]},{"path":[4,109,2,5],"span":[1913,2,44]},{"path":[4,109,2,5,4],"span":[1913,2,10]},{"path":[4,109,2,5,5],"span":[1913,11,17]},{"path":[4,109,2,5,1],"span":[1913,18,39]},{"path":[4,109,2,5,3],"span":[1913,42,43]},{"path":[4,109,2,6],"span":[1914,2,27]},{"path":[4,109,2,6,4],"span":[1914,2,10]},{"path":[4,109,2,6,5],"span":[1914,11,17]},{"path":[4,109,2,6,1],"span":[1914,18,22]},{"path":[4,109,2,6,3],"span":[1914,25,26]},{"path":[4,109,2,7],"span":[1915,2,34]},{"path":[4,109,2,7,4],"span":[1915,2,10]},{"path":[4,109,2,7,5],"span":[1915,11,16]},{"path":[4,109,2,7,1],"span":[1915,17,29]},{"path":[4,109,2,7,3],"span":[1915,32,33]},{"path":[4,109,2,8],"span":[1916,2,42]},{"path":[4,109,2,8,4],"span":[1916,2,10]},{"path":[4,109,2,8,5],"span":[1916,11,17]},{"path":[4,109,2,8,1],"span":[1916,18,37]},{"path":[4,109,2,8,3],"span":[1916,40,41]},{"path":[4,109,2,9],"span":[1917,2,34]},{"path":[4,109,2,9,4],"span":[1917,2,10]},{"path":[4,109,2,9,5],"span":[1917,11,17]},{"path":[4,109,2,9,1],"span":[1917,18,28]},{"path":[4,109,2,9,3],"span":[1917,31,33]},{"path":[4,110],"span":[1923,0,1928,1],"leadingComments":"\n Computer Windows only: from WindowsNetworkClient.\n"},{"path":[4,110,1],"span":[1923,8,36]},{"path":[4,110,2,0],"span":[1924,2,30]},{"path":[4,110,2,0,4],"span":[1924,2,10]},{"path":[4,110,2,0,5],"span":[1924,11,17]},{"path":[4,110,2,0,1],"span":[1924,18,25]},{"path":[4,110,2,0,3],"span":[1924,28,29]},{"path":[4,110,2,1],"span":[1925,2,34]},{"path":[4,110,2,1,4],"span":[1925,2,10]},{"path":[4,110,2,1,5],"span":[1925,11,17]},{"path":[4,110,2,1,1],"span":[1925,18,29]},{"path":[4,110,2,1,3],"span":[1925,32,33]},{"path":[4,110,2,2],"span":[1926,2,35]},{"path":[4,110,2,2,4],"span":[1926,2,10]},{"path":[4,110,2,2,5],"span":[1926,11,17]},{"path":[4,110,2,2,1],"span":[1926,18,30]},{"path":[4,110,2,2,3],"span":[1926,33,34]},{"path":[4,110,2,3],"span":[1927,2,27]},{"path":[4,110,2,3,4],"span":[1927,2,10]},{"path":[4,110,2,3,5],"span":[1927,11,17]},{"path":[4,110,2,3,1],"span":[1927,18,22]},{"path":[4,110,2,3,3],"span":[1927,25,26]},{"path":[4,111],"span":[1935,0,1940,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,111,1],"span":[1935,8,36]},{"path":[4,111,2,0],"span":[1936,2,30]},{"path":[4,111,2,0,4],"span":[1936,2,10]},{"path":[4,111,2,0,5],"span":[1936,11,17]},{"path":[4,111,2,0,1],"span":[1936,18,25]},{"path":[4,111,2,0,3],"span":[1936,28,29]},{"path":[4,111,2,1],"span":[1937,2,32]},{"path":[4,111,2,1,4],"span":[1937,2,10]},{"path":[4,111,2,1,5],"span":[1937,11,17]},{"path":[4,111,2,1,1],"span":[1937,18,27]},{"path":[4,111,2,1,3],"span":[1937,30,31]},{"path":[4,111,2,2],"span":[1938,2,35]},{"path":[4,111,2,2,4],"span":[1938,2,10]},{"path":[4,111,2,2,5],"span":[1938,11,17]},{"path":[4,111,2,2,1],"span":[1938,18,30]},{"path":[4,111,2,2,3],"span":[1938,33,34]},{"path":[4,111,2,3],"span":[1939,2,46]},{"path":[4,111,2,3,4],"span":[1939,2,10]},{"path":[4,111,2,3,6],"span":[1939,11,22]},{"path":[4,111,2,3,1],"span":[1939,23,41]},{"path":[4,111,2,3,3],"span":[1939,44,45]},{"path":[4,112],"span":[1946,0,1958,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,112,1],"span":[1946,8,36]},{"path":[4,112,2,0],"span":[1947,2,32]},{"path":[4,112,2,0,4],"span":[1947,2,10]},{"path":[4,112,2,0,5],"span":[1947,11,16]},{"path":[4,112,2,0,1],"span":[1947,17,27]},{"path":[4,112,2,0,3],"span":[1947,30,31]},{"path":[4,112,2,1],"span":[1948,2,29]},{"path":[4,112,2,1,4],"span":[1948,2,10]},{"path":[4,112,2,1,5],"span":[1948,11,15]},{"path":[4,112,2,1,1],"span":[1948,16,24]},{"path":[4,112,2,1,3],"span":[1948,27,28]},{"path":[4,112,2,2],"span":[1949,2,35]},{"path":[4,112,2,2,4],"span":[1949,2,10]},{"path":[4,112,2,2,5],"span":[1949,11,15]},{"path":[4,112,2,2,1],"span":[1949,16,30]},{"path":[4,112,2,2,3],"span":[1949,33,34]},{"path":[4,112,2,3],"span":[1950,2,32]},{"path":[4,112,2,3,4],"span":[1950,2,10]},{"path":[4,112,2,3,5],"span":[1950,11,17]},{"path":[4,112,2,3,1],"span":[1950,18,27]},{"path":[4,112,2,3,3],"span":[1950,30,31]},{"path":[4,112,2,4],"span":[1951,2,32]},{"path":[4,112,2,4,4],"span":[1951,2,10]},{"path":[4,112,2,4,5],"span":[1951,11,16]},{"path":[4,112,2,4,1],"span":[1951,17,27]},{"path":[4,112,2,4,3],"span":[1951,30,31]},{"path":[4,112,2,5],"span":[1952,2,27]},{"path":[4,112,2,5,4],"span":[1952,2,10]},{"path":[4,112,2,5,5],"span":[1952,11,16]},{"path":[4,112,2,5,1],"span":[1952,17,22]},{"path":[4,112,2,5,3],"span":[1952,25,26]},{"path":[4,112,2,6],"span":[1953,2,38]},{"path":[4,112,2,6,4],"span":[1953,2,10]},{"path":[4,112,2,6,5],"span":[1953,11,16]},{"path":[4,112,2,6,1],"span":[1953,17,33]},{"path":[4,112,2,6,3],"span":[1953,36,37]},{"path":[4,112,2,7],"span":[1954,2,38]},{"path":[4,112,2,7,4],"span":[1954,2,10]},{"path":[4,112,2,7,5],"span":[1954,11,15]},{"path":[4,112,2,7,1],"span":[1954,16,33]},{"path":[4,112,2,7,3],"span":[1954,36,37]},{"path":[4,112,2,8],"span":[1955,2,26]},{"path":[4,112,2,8,4],"span":[1955,2,10]},{"path":[4,112,2,8,5],"span":[1955,11,16]},{"path":[4,112,2,8,1],"span":[1955,17,21]},{"path":[4,112,2,8,3],"span":[1955,24,25]},{"path":[4,112,2,9],"span":[1956,2,38]},{"path":[4,112,2,9,4],"span":[1956,2,10]},{"path":[4,112,2,9,5],"span":[1956,11,16]},{"path":[4,112,2,9,1],"span":[1956,17,32]},{"path":[4,112,2,9,3],"span":[1956,35,37]},{"path":[4,112,2,10],"span":[1957,2,28]},{"path":[4,112,2,10,4],"span":[1957,2,10]},{"path":[4,112,2,10,5],"span":[1957,11,17]},{"path":[4,112,2,10,1],"span":[1957,18,22]},{"path":[4,112,2,10,3],"span":[1957,25,27]},{"path":[4,113],"span":[1965,0,1977,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,113,1],"span":[1965,8,23]},{"path":[4,113,2,0],"span":[1966,2,41]},{"path":[4,113,2,0,4],"span":[1966,2,10]},{"path":[4,113,2,0,5],"span":[1966,11,16]},{"path":[4,113,2,0,1],"span":[1966,17,36]},{"path":[4,113,2,0,3],"span":[1966,39,40]},{"path":[4,113,2,1],"span":[1967,2,37]},{"path":[4,113,2,1,4],"span":[1967,2,10]},{"path":[4,113,2,1,6],"span":[1967,11,22]},{"path":[4,113,2,1,1],"span":[1967,23,32]},{"path":[4,113,2,1,3],"span":[1967,35,36]},{"path":[4,113,2,2],"span":[1968,2,37]},{"path":[4,113,2,2,4],"span":[1968,2,10]},{"path":[4,113,2,2,5],"span":[1968,11,16]},{"path":[4,113,2,2,1],"span":[1968,17,32]},{"path":[4,113,2,2,3],"span":[1968,35,36]},{"path":[4,113,2,3],"span":[1969,2,36]},{"path":[4,113,2,3,4],"span":[1969,2,10]},{"path":[4,113,2,3,5],"span":[1969,11,16]},{"path":[4,113,2,3,1],"span":[1969,17,31]},{"path":[4,113,2,3,3],"span":[1969,34,35]},{"path":[4,113,2,4],"span":[1970,2,32]},{"path":[4,113,2,4,4],"span":[1970,2,10]},{"path":[4,113,2,4,5],"span":[1970,11,17]},{"path":[4,113,2,4,1],"span":[1970,18,27]},{"path":[4,113,2,4,3],"span":[1970,30,31]},{"path":[4,113,2,5],"span":[1971,2,31]},{"path":[4,113,2,5,4],"span":[1971,2,10]},{"path":[4,113,2,5,5],"span":[1971,11,17]},{"path":[4,113,2,5,1],"span":[1971,18,26]},{"path":[4,113,2,5,3],"span":[1971,29,30]},{"path":[4,113,2,6],"span":[1972,2,39]},{"path":[4,113,2,6,4],"span":[1972,2,10]},{"path":[4,113,2,6,5],"span":[1972,11,17]},{"path":[4,113,2,6,1],"span":[1972,18,34]},{"path":[4,113,2,6,3],"span":[1972,37,38]},{"path":[4,113,2,7],"span":[1973,2,35]},{"path":[4,113,2,7,4],"span":[1973,2,10]},{"path":[4,113,2,7,5],"span":[1973,11,17]},{"path":[4,113,2,7,1],"span":[1973,18,30]},{"path":[4,113,2,7,3],"span":[1973,33,34]},{"path":[4,113,2,8],"span":[1974,2,39]},{"path":[4,113,2,8,4],"span":[1974,2,10]},{"path":[4,113,2,8,5],"span":[1974,11,16]},{"path":[4,113,2,8,1],"span":[1974,17,34]},{"path":[4,113,2,8,3],"span":[1974,37,38]},{"path":[4,113,2,9],"span":[1975,2,28]},{"path":[4,113,2,9,4],"span":[1975,2,10]},{"path":[4,113,2,9,5],"span":[1975,11,17]},{"path":[4,113,2,9,1],"span":[1975,18,22]},{"path":[4,113,2,9,3],"span":[1975,25,27]},{"path":[4,113,2,10],"span":[1976,2,45]},{"path":[4,113,2,10,4],"span":[1976,2,10]},{"path":[4,113,2,10,5],"span":[1976,11,17]},{"path":[4,113,2,10,1],"span":[1976,18,39]},{"path":[4,113,2,10,3],"span":[1976,42,44]},{"path":[4,114],"span":[1986,0,1989,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,114,1],"span":[1986,8,19]},{"path":[4,114,2,0],"span":[1987,2,18]},{"path":[4,114,2,0,5],"span":[1987,2,7]},{"path":[4,114,2,0,1],"span":[1987,8,13]},{"path":[4,114,2,0,3],"span":[1987,16,17]},{"path":[4,114,2,1],"span":[1988,2,27]},{"path":[4,114,2,1,4],"span":[1988,2,10]},{"path":[4,114,2,1,5],"span":[1988,11,17]},{"path":[4,114,2,1,1],"span":[1988,18,22]},{"path":[4,114,2,1,3],"span":[1988,25,26]},{"path":[4,115],"span":[1992,0,1995,1],"leadingComments":" Monitor Inventory with list of connected monitors "},{"path":[4,115,1],"span":[1992,8,24]},{"path":[4,115,2,0],"span":[1993,2,42]},{"path":[4,115,2,0,6],"span":[1993,2,27]},{"path":[4,115,2,0,1],"span":[1993,28,37]},{"path":[4,115,2,0,3],"span":[1993,40,41]},{"path":[4,115,2,1],"span":[1994,2,31]},{"path":[4,115,2,1,4],"span":[1994,2,10]},{"path":[4,115,2,1,6],"span":[1994,11,18]},{"path":[4,115,2,1,1],"span":[1994,19,26]},{"path":[4,115,2,1,3],"span":[1994,29,30]},{"path":[4,116],"span":[1999,0,2020,1],"leadingComments":" Monitor definition: normalized and with link to raw "},{"path":[4,116,1],"span":[1999,8,15]},{"path":[4,116,2,0],"span":[2001,2,24],"leadingComments":" catalog id of: CatalogMonitor\n"},{"path":[4,116,2,0,4],"span":[2001,2,10]},{"path":[4,116,2,0,5],"span":[2001,11,16]},{"path":[4,116,2,0,1],"span":[2001,17,19]},{"path":[4,116,2,0,3],"span":[2001,22,23]},{"path":[4,116,2,1],"span":[2004,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,116,2,1,4],"span":[2004,2,10]},{"path":[4,116,2,1,5],"span":[2004,11,16]},{"path":[4,116,2,1,1],"span":[2004,17,24]},{"path":[4,116,2,1,3],"span":[2004,27,28]},{"path":[4,116,2,2],"span":[2006,2,23]},{"path":[4,116,2,2,5],"span":[2006,2,8]},{"path":[4,116,2,2,1],"span":[2006,9,18]},{"path":[4,116,2,2,3],"span":[2006,21,22]},{"path":[4,116,2,3],"span":[2007,2,24]},{"path":[4,116,2,3,5],"span":[2007,2,8]},{"path":[4,116,2,3,1],"span":[2007,9,19]},{"path":[4,116,2,3,3],"span":[2007,22,23]},{"path":[4,116,2,4],"span":[2009,2,36]},{"path":[4,116,2,4,4],"span":[2009,2,10]},{"path":[4,116,2,4,5],"span":[2009,11,17]},{"path":[4,116,2,4,1],"span":[2009,18,31]},{"path":[4,116,2,4,3],"span":[2009,34,35]},{"path":[4,116,2,5],"span":[2010,2,50]},{"path":[4,116,2,5,6],"span":[2010,2,27]},{"path":[4,116,2,5,1],"span":[2010,28,45]},{"path":[4,116,2,5,3],"span":[2010,48,49]},{"path":[4,116,8,0],"span":[2012,2,2014,3]},{"path":[4,116,8,0,1],"span":[2012,8,12]},{"path":[4,116,2,6],"span":[2013,4,36]},{"path":[4,116,2,6,6],"span":[2013,4,22]},{"path":[4,116,2,6,1],"span":[2013,23,30]},{"path":[4,116,2,6,3],"span":[2013,33,35]},{"path":[4,116,2,7],"span":[2017,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,116,2,7,4],"span":[2017,2,10]},{"path":[4,116,2,7,6],"span":[2017,11,23]},{"path":[4,116,2,7,1],"span":[2017,24,37]},{"path":[4,116,2,7,3],"span":[2017,40,42]},{"path":[4,116,2,8],"span":[2019,2,47],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,116,2,8,4],"span":[2019,2,10]},{"path":[4,116,2,8,6],"span":[2019,11,25]},{"path":[4,116,2,8,1],"span":[2019,26,41]},{"path":[4,116,2,8,3],"span":[2019,44,46]},{"path":[4,117],"span":[2022,0,2031,1]},{"path":[4,117,1],"span":[2022,8,26]},{"path":[4,117,2,0],"span":[2023,2,19]},{"path":[4,117,2,0,5],"span":[2023,2,8]},{"path":[4,117,2,0,1],"span":[2023,9,14]},{"path":[4,117,2,0,3],"span":[2023,17,18]},{"path":[4,117,2,1],"span":[2024,2,36]},{"path":[4,117,2,1,4],"span":[2024,2,10]},{"path":[4,117,2,1,5],"span":[2024,11,17]},{"path":[4,117,2,1,1],"span":[2024,18,31]},{"path":[4,117,2,1,3],"span":[2024,34,35]},{"path":[4,117,2,2],"span":[2025,2,36]},{"path":[4,117,2,2,4],"span":[2025,2,10]},{"path":[4,117,2,2,5],"span":[2025,11,17]},{"path":[4,117,2,2,1],"span":[2025,18,31]},{"path":[4,117,2,2,3],"span":[2025,34,35]},{"path":[4,117,2,3],"span":[2026,2,33]},{"path":[4,117,2,3,4],"span":[2026,2,10]},{"path":[4,117,2,3,5],"span":[2026,11,17]},{"path":[4,117,2,3,1],"span":[2026,18,28]},{"path":[4,117,2,3,3],"span":[2026,31,32]},{"path":[4,117,2,4],"span":[2027,2,40]},{"path":[4,117,2,4,4],"span":[2027,2,10]},{"path":[4,117,2,4,5],"span":[2027,11,17]},{"path":[4,117,2,4,1],"span":[2027,18,35]},{"path":[4,117,2,4,3],"span":[2027,38,39]},{"path":[4,117,2,5],"span":[2028,2,39]},{"path":[4,117,2,5,4],"span":[2028,2,10]},{"path":[4,117,2,5,5],"span":[2028,11,17]},{"path":[4,117,2,5,1],"span":[2028,18,34]},{"path":[4,117,2,5,3],"span":[2028,37,38]},{"path":[4,117,2,6],"span":[2029,2,59]},{"path":[4,117,2,6,4],"span":[2029,2,10]},{"path":[4,117,2,6,6],"span":[2029,11,36]},{"path":[4,117,2,6,1],"span":[2029,37,54]},{"path":[4,117,2,6,3],"span":[2029,57,58]},{"path":[4,117,2,7],"span":[2030,2,32]},{"path":[4,117,2,7,4],"span":[2030,2,10]},{"path":[4,117,2,7,5],"span":[2030,11,17]},{"path":[4,117,2,7,1],"span":[2030,18,27]},{"path":[4,117,2,7,3],"span":[2030,30,31]},{"path":[4,118],"span":[2036,0,2042,1],"leadingComments":"\n Antivirus software (that could be even missing from scanned SW list.\n"},{"path":[4,118,1],"span":[2036,8,25]},{"path":[4,118,2,0],"span":[2037,2,27]},{"path":[4,118,2,0,4],"span":[2037,2,10]},{"path":[4,118,2,0,5],"span":[2037,11,17]},{"path":[4,118,2,0,1],"span":[2037,18,22]},{"path":[4,118,2,0,3],"span":[2037,25,26]},{"path":[4,118,2,1],"span":[2038,2,27]},{"path":[4,118,2,1,4],"span":[2038,2,10]},{"path":[4,118,2,1,5],"span":[2038,11,17]},{"path":[4,118,2,1,1],"span":[2038,18,22]},{"path":[4,118,2,1,3],"span":[2038,25,26]},{"path":[4,118,2,2],"span":[2039,2,28]},{"path":[4,118,2,2,4],"span":[2039,2,10]},{"path":[4,118,2,2,5],"span":[2039,11,15]},{"path":[4,118,2,2,1],"span":[2039,16,23]},{"path":[4,118,2,2,3],"span":[2039,26,27]},{"path":[4,118,2,3],"span":[2040,2,31]},{"path":[4,118,2,3,4],"span":[2040,2,10]},{"path":[4,118,2,3,5],"span":[2040,11,15]},{"path":[4,118,2,3,1],"span":[2040,16,26]},{"path":[4,118,2,3,3],"span":[2040,29,30]},{"path":[4,118,2,4],"span":[2041,2,33],"trailingComments":" filled only in case it was scanned sw (not windows registry)\n"},{"path":[4,118,2,4,4],"span":[2041,2,10]},{"path":[4,118,2,4,6],"span":[2041,11,19]},{"path":[4,118,2,4,1],"span":[2041,20,28]},{"path":[4,118,2,4,3],"span":[2041,31,32]},{"path":[4,119],"span":[2047,0,2057,1],"leadingComments":"\n Internet IP info, if external_ip is present and valid.\n"},{"path":[4,119,1],"span":[2047,8,14]},{"path":[4,119,2,0],"span":[2048,2,21]},{"path":[4,119,2,0,5],"span":[2048,2,8]},{"path":[4,119,2,0,1],"span":[2048,9,16]},{"path":[4,119,2,0,3],"span":[2048,19,20]},{"path":[4,119,2,1],"span":[2049,2,31]},{"path":[4,119,2,1,4],"span":[2049,2,10]},{"path":[4,119,2,1,5],"span":[2049,11,17]},{"path":[4,119,2,1,1],"span":[2049,18,26]},{"path":[4,119,2,1,3],"span":[2049,29,30]},{"path":[4,119,2,2],"span":[2050,2,31]},{"path":[4,119,2,2,4],"span":[2050,2,10]},{"path":[4,119,2,2,5],"span":[2050,11,17]},{"path":[4,119,2,2,1],"span":[2050,18,26]},{"path":[4,119,2,2,3],"span":[2050,29,30]},{"path":[4,119,2,3],"span":[2051,2,37]},{"path":[4,119,2,3,4],"span":[2051,2,10]},{"path":[4,119,2,3,5],"span":[2051,11,17]},{"path":[4,119,2,3,1],"span":[2051,18,32]},{"path":[4,119,2,3,3],"span":[2051,35,36]},{"path":[4,119,2,4],"span":[2052,2,35]},{"path":[4,119,2,4,4],"span":[2052,2,10]},{"path":[4,119,2,4,5],"span":[2052,11,17]},{"path":[4,119,2,4,1],"span":[2052,18,30]},{"path":[4,119,2,4,3],"span":[2052,33,34]},{"path":[4,119,2,5],"span":[2053,2,34]},{"path":[4,119,2,5,4],"span":[2053,2,10]},{"path":[4,119,2,5,5],"span":[2053,11,17]},{"path":[4,119,2,5,1],"span":[2053,18,29]},{"path":[4,119,2,5,3],"span":[2053,32,33]},{"path":[4,119,2,6],"span":[2054,2,35]},{"path":[4,119,2,6,4],"span":[2054,2,10]},{"path":[4,119,2,6,5],"span":[2054,11,17]},{"path":[4,119,2,6,1],"span":[2054,18,30]},{"path":[4,119,2,6,3],"span":[2054,33,34]},{"path":[4,119,2,7],"span":[2055,2,26]},{"path":[4,119,2,7,4],"span":[2055,2,10]},{"path":[4,119,2,7,5],"span":[2055,11,17]},{"path":[4,119,2,7,1],"span":[2055,18,21]},{"path":[4,119,2,7,3],"span":[2055,24,25]},{"path":[4,119,2,8],"span":[2056,2,35]},{"path":[4,119,2,8,4],"span":[2056,2,10]},{"path":[4,119,2,8,5],"span":[2056,11,17]},{"path":[4,119,2,8,1],"span":[2056,18,30]},{"path":[4,119,2,8,3],"span":[2056,33,34]},{"path":[4,120],"span":[2066,0,2069,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,120,1],"span":[2066,8,25]},{"path":[4,120,2,0],"span":[2067,2,42]},{"path":[4,120,2,0,6],"span":[2067,2,27]},{"path":[4,120,2,0,1],"span":[2067,28,37]},{"path":[4,120,2,0,3],"span":[2067,40,41]},{"path":[4,120,2,1],"span":[2068,2,33]},{"path":[4,120,2,1,4],"span":[2068,2,10]},{"path":[4,120,2,1,6],"span":[2068,11,19]},{"path":[4,120,2,1,1],"span":[2068,20,28]},{"path":[4,120,2,1,3],"span":[2068,31,32]},{"path":[4,121],"span":[2078,0,2116,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,121,1],"span":[2078,8,16]},{"path":[4,121,2,0],"span":[2080,2,26]},{"path":[4,121,2,0,4],"span":[2080,2,10]},{"path":[4,121,2,0,5],"span":[2080,11,16]},{"path":[4,121,2,0,1],"span":[2080,17,21]},{"path":[4,121,2,0,3],"span":[2080,24,25]},{"path":[4,121,2,1],"span":[2081,2,29]},{"path":[4,121,2,1,4],"span":[2081,2,10]},{"path":[4,121,2,1,5],"span":[2081,11,16]},{"path":[4,121,2,1,1],"span":[2081,17,24]},{"path":[4,121,2,1,3],"span":[2081,27,28]},{"path":[4,121,2,2],"span":[2082,2,28]},{"path":[4,121,2,2,4],"span":[2082,2,10]},{"path":[4,121,2,2,5],"span":[2082,11,16]},{"path":[4,121,2,2,1],"span":[2082,17,23]},{"path":[4,121,2,2,3],"span":[2082,26,27]},{"path":[4,121,2,3],"span":[2085,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,121,2,3,4],"span":[2085,2,10]},{"path":[4,121,2,3,5],"span":[2085,11,16]},{"path":[4,121,2,3,1],"span":[2085,17,24]},{"path":[4,121,2,3,3],"span":[2085,27,28]},{"path":[4,121,2,4],"span":[2088,2,27],"leadingComments":" catalog id of: CatalogSoftware\n"},{"path":[4,121,2,4,4],"span":[2088,2,10]},{"path":[4,121,2,4,5],"span":[2088,11,16]},{"path":[4,121,2,4,1],"span":[2088,17,22]},{"path":[4,121,2,4,3],"span":[2088,25,26]},{"path":[4,121,2,5],"span":[2091,2,31],"leadingComments":" catalog id of: CatalogSoftware\n"},{"path":[4,121,2,5,4],"span":[2091,2,10]},{"path":[4,121,2,5,5],"span":[2091,11,16]},{"path":[4,121,2,5,1],"span":[2091,17,26]},{"path":[4,121,2,5,3],"span":[2091,29,30]},{"path":[4,121,2,6],"span":[2093,2,32]},{"path":[4,121,2,6,4],"span":[2093,2,10]},{"path":[4,121,2,6,5],"span":[2093,11,17]},{"path":[4,121,2,6,1],"span":[2093,18,27]},{"path":[4,121,2,6,3],"span":[2093,30,31]},{"path":[4,121,2,7],"span":[2094,2,31]},{"path":[4,121,2,7,4],"span":[2094,2,10]},{"path":[4,121,2,7,5],"span":[2094,11,17]},{"path":[4,121,2,7,1],"span":[2094,18,26]},{"path":[4,121,2,7,3],"span":[2094,29,30]},{"path":[4,121,2,8],"span":[2095,2,32]},{"path":[4,121,2,8,4],"span":[2095,2,10]},{"path":[4,121,2,8,5],"span":[2095,11,17]},{"path":[4,121,2,8,1],"span":[2095,18,27]},{"path":[4,121,2,8,3],"span":[2095,30,31]},{"path":[4,121,2,9],"span":[2096,2,28]},{"path":[4,121,2,9,4],"span":[2096,2,10]},{"path":[4,121,2,9,5],"span":[2096,11,17]},{"path":[4,121,2,9,1],"span":[2096,18,22]},{"path":[4,121,2,9,3],"span":[2096,25,27]},{"path":[4,121,2,10],"span":[2097,2,31]},{"path":[4,121,2,10,4],"span":[2097,2,10]},{"path":[4,121,2,10,5],"span":[2097,11,17]},{"path":[4,121,2,10,1],"span":[2097,18,25]},{"path":[4,121,2,10,3],"span":[2097,28,30]},{"path":[4,121,2,11],"span":[2098,2,34]},{"path":[4,121,2,11,4],"span":[2098,2,10]},{"path":[4,121,2,11,5],"span":[2098,11,17]},{"path":[4,121,2,11,1],"span":[2098,18,28]},{"path":[4,121,2,11,3],"span":[2098,31,33]},{"path":[4,121,2,12],"span":[2099,2,31]},{"path":[4,121,2,12,4],"span":[2099,2,10]},{"path":[4,121,2,12,5],"span":[2099,11,17]},{"path":[4,121,2,12,1],"span":[2099,18,25]},{"path":[4,121,2,12,3],"span":[2099,28,30]},{"path":[4,121,2,13],"span":[2100,2,29]},{"path":[4,121,2,13,4],"span":[2100,2,10]},{"path":[4,121,2,13,5],"span":[2100,11,17]},{"path":[4,121,2,13,1],"span":[2100,18,23]},{"path":[4,121,2,13,3],"span":[2100,26,28]},{"path":[4,121,2,14],"span":[2101,2,28]},{"path":[4,121,2,14,4],"span":[2101,2,10]},{"path":[4,121,2,14,5],"span":[2101,11,17]},{"path":[4,121,2,14,1],"span":[2101,18,22]},{"path":[4,121,2,14,3],"span":[2101,25,27]},{"path":[4,121,2,15],"span":[2102,2,28]},{"path":[4,121,2,15,4],"span":[2102,2,10]},{"path":[4,121,2,15,5],"span":[2102,11,17]},{"path":[4,121,2,15,1],"span":[2102,18,22]},{"path":[4,121,2,15,3],"span":[2102,25,27]},{"path":[4,121,2,16],"span":[2104,2,27]},{"path":[4,121,2,16,4],"span":[2104,2,10]},{"path":[4,121,2,16,5],"span":[2104,11,17]},{"path":[4,121,2,16,1],"span":[2104,18,21]},{"path":[4,121,2,16,3],"span":[2104,24,26]},{"path":[4,121,2,17],"span":[2106,2,23]},{"path":[4,121,2,17,6],"span":[2106,2,13]},{"path":[4,121,2,17,1],"span":[2106,14,17]},{"path":[4,121,2,17,3],"span":[2106,20,22]},{"path":[4,121,2,18],"span":[2107,2,32],"trailingComments":" optional raw hash of SW\n"},{"path":[4,121,2,18,4],"span":[2107,2,10]},{"path":[4,121,2,18,5],"span":[2107,11,17]},{"path":[4,121,2,18,1],"span":[2107,18,26]},{"path":[4,121,2,18,3],"span":[2107,29,31]},{"path":[4,121,2,19],"span":[2108,2,32],"trailingComments":" optional NRE hash of SW\n"},{"path":[4,121,2,19,4],"span":[2108,2,10]},{"path":[4,121,2,19,5],"span":[2108,11,17]},{"path":[4,121,2,19,1],"span":[2108,18,26]},{"path":[4,121,2,19,3],"span":[2108,29,31]},{"path":[4,121,2,20],"span":[2111,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,121,2,20,4],"span":[2111,2,10]},{"path":[4,121,2,20,6],"span":[2111,11,23]},{"path":[4,121,2,20,1],"span":[2111,24,37]},{"path":[4,121,2,20,3],"span":[2111,40,42]},{"path":[4,121,2,21],"span":[2113,2,49],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,121,2,21,4],"span":[2113,2,10]},{"path":[4,121,2,21,6],"span":[2113,11,26]},{"path":[4,121,2,21,1],"span":[2113,27,43]},{"path":[4,121,2,21,3],"span":[2113,46,48]},{"path":[4,121,2,22],"span":[2115,2,47],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,121,2,22,4],"span":[2115,2,10]},{"path":[4,121,2,22,6],"span":[2115,11,26]},{"path":[4,121,2,22,1],"span":[2115,27,41]},{"path":[4,121,2,22,3],"span":[2115,44,46]},{"path":[4,122],"span":[2121,0,2135,1],"leadingComments":"\n Raw Software definition, as mapped from Windows, Mac, Linux.\n"},{"path":[4,122,1],"span":[2121,8,19]},{"path":[4,122,2,0],"span":[2122,2,18]},{"path":[4,122,2,0,5],"span":[2122,2,8]},{"path":[4,122,2,0,1],"span":[2122,9,13]},{"path":[4,122,2,0,3],"span":[2122,16,17]},{"path":[4,122,2,1],"span":[2124,2,29]},{"path":[4,122,2,1,4],"span":[2124,2,10]},{"path":[4,122,2,1,5],"span":[2124,11,17]},{"path":[4,122,2,1,1],"span":[2124,18,24]},{"path":[4,122,2,1,3],"span":[2124,27,28]},{"path":[4,122,2,2],"span":[2125,2,30]},{"path":[4,122,2,2,4],"span":[2125,2,10]},{"path":[4,122,2,2,5],"span":[2125,11,17]},{"path":[4,122,2,2,1],"span":[2125,18,25]},{"path":[4,122,2,2,3],"span":[2125,28,29]},{"path":[4,122,2,3],"span":[2126,2,27]},{"path":[4,122,2,3,4],"span":[2126,2,10]},{"path":[4,122,2,3,5],"span":[2126,11,17]},{"path":[4,122,2,3,1],"span":[2126,18,22]},{"path":[4,122,2,3,3],"span":[2126,25,26]},{"path":[4,122,2,4],"span":[2127,2,31]},{"path":[4,122,2,4,4],"span":[2127,2,10]},{"path":[4,122,2,4,5],"span":[2127,11,17]},{"path":[4,122,2,4,1],"span":[2127,18,26]},{"path":[4,122,2,4,3],"span":[2127,29,30]},{"path":[4,122,2,5],"span":[2128,2,27],"trailingComments":" when available the specific sw arch\n"},{"path":[4,122,2,5,4],"span":[2128,2,10]},{"path":[4,122,2,5,5],"span":[2128,11,17]},{"path":[4,122,2,5,1],"span":[2128,18,22]},{"path":[4,122,2,5,3],"span":[2128,25,26]},{"path":[4,122,2,6],"span":[2129,2,54]},{"path":[4,122,2,6,4],"span":[2129,2,10]},{"path":[4,122,2,6,6],"span":[2129,11,36]},{"path":[4,122,2,6,1],"span":[2129,37,49]},{"path":[4,122,2,6,3],"span":[2129,52,53]},{"path":[4,122,2,7],"span":[2130,2,34],"trailingComments":" Registry | System | MsStore | Package | Custom | etc\n"},{"path":[4,122,2,7,4],"span":[2130,2,10]},{"path":[4,122,2,7,5],"span":[2130,11,17]},{"path":[4,122,2,7,1],"span":[2130,18,29]},{"path":[4,122,2,7,3],"span":[2130,32,33]},{"path":[4,122,2,8],"span":[2132,2,28],"trailingComments":" optional SW id on the client side\n"},{"path":[4,122,2,8,4],"span":[2132,2,10]},{"path":[4,122,2,8,5],"span":[2132,11,17]},{"path":[4,122,2,8,1],"span":[2132,18,23]},{"path":[4,122,2,8,3],"span":[2132,26,27]},{"path":[4,122,2,9],"span":[2134,2,37]},{"path":[4,122,2,9,4],"span":[2134,2,10]},{"path":[4,122,2,9,5],"span":[2134,11,15]},{"path":[4,122,2,9,1],"span":[2134,16,31]},{"path":[4,122,2,9,3],"span":[2134,34,36]},{"path":[4,123],"span":[2139,0,2173,1],"leadingDetachedComments":[" <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< CATALOG ENTITIES >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n"]},{"path":[4,123,1],"span":[2139,8,20]},{"path":[4,123,2,0],"span":[2140,2,16]},{"path":[4,123,2,0,5],"span":[2140,2,7]},{"path":[4,123,2,0,1],"span":[2140,9,11]},{"path":[4,123,2,0,3],"span":[2140,14,15]},{"path":[4,123,2,1],"span":[2141,2,23]},{"path":[4,123,2,1,5],"span":[2141,2,8]},{"path":[4,123,2,1,1],"span":[2141,9,18]},{"path":[4,123,2,1,3],"span":[2141,21,22]},{"path":[4,123,2,2],"span":[2143,2,32]},{"path":[4,123,2,2,4],"span":[2143,2,10]},{"path":[4,123,2,2,5],"span":[2143,11,16]},{"path":[4,123,2,2,1],"span":[2143,17,26]},{"path":[4,123,2,2,3],"span":[2143,29,31]},{"path":[4,123,2,3],"span":[2144,2,58]},{"path":[4,123,2,3,4],"span":[2144,2,10]},{"path":[4,123,2,3,6],"span":[2144,11,36]},{"path":[4,123,2,3,1],"span":[2144,37,53]},{"path":[4,123,2,3,3],"span":[2144,56,57]},{"path":[4,123,2,4],"span":[2146,2,35]},{"path":[4,123,2,4,4],"span":[2146,2,10]},{"path":[4,123,2,4,5],"span":[2146,11,17]},{"path":[4,123,2,4,1],"span":[2146,18,30]},{"path":[4,123,2,4,3],"span":[2146,33,34]},{"path":[4,123,2,5],"span":[2147,2,37]},{"path":[4,123,2,5,4],"span":[2147,2,10]},{"path":[4,123,2,5,5],"span":[2147,11,17]},{"path":[4,123,2,5,1],"span":[2147,18,32]},{"path":[4,123,2,5,3],"span":[2147,35,36]},{"path":[4,123,2,6],"span":[2148,2,39]},{"path":[4,123,2,6,4],"span":[2148,2,10]},{"path":[4,123,2,6,5],"span":[2148,11,17]},{"path":[4,123,2,6,1],"span":[2148,18,34]},{"path":[4,123,2,6,3],"span":[2148,37,38]},{"path":[4,123,2,7],"span":[2149,2,35]},{"path":[4,123,2,7,4],"span":[2149,2,10]},{"path":[4,123,2,7,5],"span":[2149,11,17]},{"path":[4,123,2,7,1],"span":[2149,18,30]},{"path":[4,123,2,7,3],"span":[2149,33,34]},{"path":[4,123,2,8],"span":[2150,2,43]},{"path":[4,123,2,8,4],"span":[2150,2,10]},{"path":[4,123,2,8,5],"span":[2150,11,17]},{"path":[4,123,2,8,1],"span":[2150,18,37]},{"path":[4,123,2,8,3],"span":[2150,40,42]},{"path":[4,123,2,9],"span":[2151,2,35]},{"path":[4,123,2,9,4],"span":[2151,2,10]},{"path":[4,123,2,9,5],"span":[2151,11,17]},{"path":[4,123,2,9,1],"span":[2151,18,29]},{"path":[4,123,2,9,3],"span":[2151,32,34]},{"path":[4,123,2,10],"span":[2152,2,35]},{"path":[4,123,2,10,4],"span":[2152,2,10]},{"path":[4,123,2,10,5],"span":[2152,11,17]},{"path":[4,123,2,10,1],"span":[2152,18,29]},{"path":[4,123,2,10,3],"span":[2152,32,34]},{"path":[4,123,2,11],"span":[2153,2,37]},{"path":[4,123,2,11,4],"span":[2153,2,10]},{"path":[4,123,2,11,5],"span":[2153,11,17]},{"path":[4,123,2,11,1],"span":[2153,18,31]},{"path":[4,123,2,11,3],"span":[2153,34,36]},{"path":[4,123,2,12],"span":[2154,2,40]},{"path":[4,123,2,12,4],"span":[2154,2,10]},{"path":[4,123,2,12,5],"span":[2154,11,17]},{"path":[4,123,2,12,1],"span":[2154,18,34]},{"path":[4,123,2,12,3],"span":[2154,37,39]},{"path":[4,123,2,13],"span":[2155,2,39]},{"path":[4,123,2,13,4],"span":[2155,2,10]},{"path":[4,123,2,13,5],"span":[2155,11,17]},{"path":[4,123,2,13,1],"span":[2155,18,33]},{"path":[4,123,2,13,3],"span":[2155,36,38]},{"path":[4,123,2,14],"span":[2156,2,36]},{"path":[4,123,2,14,4],"span":[2156,2,10]},{"path":[4,123,2,14,5],"span":[2156,11,17]},{"path":[4,123,2,14,1],"span":[2156,18,30]},{"path":[4,123,2,14,3],"span":[2156,33,35]},{"path":[4,123,2,15],"span":[2157,2,43]},{"path":[4,123,2,15,4],"span":[2157,2,10]},{"path":[4,123,2,15,5],"span":[2157,11,17]},{"path":[4,123,2,15,1],"span":[2157,18,37]},{"path":[4,123,2,15,3],"span":[2157,40,42]},{"path":[4,123,2,16],"span":[2158,2,37]},{"path":[4,123,2,16,4],"span":[2158,2,10]},{"path":[4,123,2,16,5],"span":[2158,11,17]},{"path":[4,123,2,16,1],"span":[2158,18,31]},{"path":[4,123,2,16,3],"span":[2158,34,36]},{"path":[4,123,2,17],"span":[2159,2,40]},{"path":[4,123,2,17,4],"span":[2159,2,10]},{"path":[4,123,2,17,5],"span":[2159,11,17]},{"path":[4,123,2,17,1],"span":[2159,18,34]},{"path":[4,123,2,17,3],"span":[2159,37,39]},{"path":[4,123,2,18],"span":[2160,2,41]},{"path":[4,123,2,18,4],"span":[2160,2,10]},{"path":[4,123,2,18,5],"span":[2160,11,17]},{"path":[4,123,2,18,1],"span":[2160,18,35]},{"path":[4,123,2,18,3],"span":[2160,38,40]},{"path":[4,123,2,19],"span":[2161,2,39]},{"path":[4,123,2,19,4],"span":[2161,2,10]},{"path":[4,123,2,19,5],"span":[2161,11,17]},{"path":[4,123,2,19,1],"span":[2161,18,33]},{"path":[4,123,2,19,3],"span":[2161,36,38]},{"path":[4,123,2,20],"span":[2162,2,41]},{"path":[4,123,2,20,4],"span":[2162,2,10]},{"path":[4,123,2,20,5],"span":[2162,11,17]},{"path":[4,123,2,20,1],"span":[2162,18,35]},{"path":[4,123,2,20,3],"span":[2162,38,40]},{"path":[4,123,2,21],"span":[2163,2,38]},{"path":[4,123,2,21,4],"span":[2163,2,10]},{"path":[4,123,2,21,5],"span":[2163,11,17]},{"path":[4,123,2,21,1],"span":[2163,18,32]},{"path":[4,123,2,21,3],"span":[2163,35,37]},{"path":[4,123,2,22],"span":[2165,2,36]},{"path":[4,123,2,22,4],"span":[2165,2,10]},{"path":[4,123,2,22,5],"span":[2165,11,15]},{"path":[4,123,2,22,1],"span":[2165,16,30]},{"path":[4,123,2,22,3],"span":[2165,33,35]},{"path":[4,123,2,23],"span":[2166,2,36]},{"path":[4,123,2,23,4],"span":[2166,2,10]},{"path":[4,123,2,23,5],"span":[2166,11,15]},{"path":[4,123,2,23,1],"span":[2166,16,30]},{"path":[4,123,2,23,3],"span":[2166,33,35]},{"path":[4,123,2,24],"span":[2167,2,36]},{"path":[4,123,2,24,4],"span":[2167,2,10]},{"path":[4,123,2,24,5],"span":[2167,11,15]},{"path":[4,123,2,24,1],"span":[2167,16,30]},{"path":[4,123,2,24,3],"span":[2167,33,35]},{"path":[4,123,2,25],"span":[2168,2,38]},{"path":[4,123,2,25,4],"span":[2168,2,10]},{"path":[4,123,2,25,5],"span":[2168,11,15]},{"path":[4,123,2,25,1],"span":[2168,16,32]},{"path":[4,123,2,25,3],"span":[2168,35,37]},{"path":[4,123,2,26],"span":[2169,2,38]},{"path":[4,123,2,26,4],"span":[2169,2,10]},{"path":[4,123,2,26,5],"span":[2169,11,15]},{"path":[4,123,2,26,1],"span":[2169,16,32]},{"path":[4,123,2,26,3],"span":[2169,35,37]},{"path":[4,123,2,27],"span":[2170,2,38]},{"path":[4,123,2,27,4],"span":[2170,2,10]},{"path":[4,123,2,27,5],"span":[2170,11,15]},{"path":[4,123,2,27,1],"span":[2170,16,32]},{"path":[4,123,2,27,3],"span":[2170,35,37]},{"path":[4,123,2,28],"span":[2172,2,34],"trailingComments":" relevant only in search result\n"},{"path":[4,123,2,28,4],"span":[2172,2,10]},{"path":[4,123,2,28,5],"span":[2172,11,16]},{"path":[4,123,2,28,1],"span":[2172,17,28]},{"path":[4,123,2,28,3],"span":[2172,31,33]},{"path":[4,124],"span":[2175,0,2210,1]},{"path":[4,124,1],"span":[2175,8,20]},{"path":[4,124,2,0],"span":[2176,2,15]},{"path":[4,124,2,0,5],"span":[2176,2,7]},{"path":[4,124,2,0,1],"span":[2176,8,10]},{"path":[4,124,2,0,3],"span":[2176,13,14]},{"path":[4,124,2,1],"span":[2178,2,20]},{"path":[4,124,2,1,5],"span":[2178,2,7]},{"path":[4,124,2,1,1],"span":[2178,8,15]},{"path":[4,124,2,1,3],"span":[2178,18,19]},{"path":[4,124,2,2],"span":[2179,2,26]},{"path":[4,124,2,2,5],"span":[2179,2,8]},{"path":[4,124,2,2,1],"span":[2179,9,21]},{"path":[4,124,2,2,3],"span":[2179,24,25]},{"path":[4,124,2,3],"span":[2181,2,36]},{"path":[4,124,2,3,4],"span":[2181,2,10]},{"path":[4,124,2,3,5],"span":[2181,11,16]},{"path":[4,124,2,3,1],"span":[2181,17,31]},{"path":[4,124,2,3,3],"span":[2181,34,35]},{"path":[4,124,2,4],"span":[2182,2,40]},{"path":[4,124,2,4,4],"span":[2182,2,10]},{"path":[4,124,2,4,5],"span":[2182,11,17]},{"path":[4,124,2,4,1],"span":[2182,18,35]},{"path":[4,124,2,4,3],"span":[2182,38,39]},{"path":[4,124,2,5],"span":[2184,2,32]},{"path":[4,124,2,5,4],"span":[2184,2,10]},{"path":[4,124,2,5,5],"span":[2184,11,16]},{"path":[4,124,2,5,1],"span":[2184,17,26]},{"path":[4,124,2,5,3],"span":[2184,29,31]},{"path":[4,124,2,6],"span":[2185,2,31]},{"path":[4,124,2,6,4],"span":[2185,2,10]},{"path":[4,124,2,6,5],"span":[2185,11,15]},{"path":[4,124,2,6,1],"span":[2185,16,25]},{"path":[4,124,2,6,3],"span":[2185,28,30]},{"path":[4,124,2,7],"span":[2186,2,34]},{"path":[4,124,2,7,4],"span":[2186,2,10]},{"path":[4,124,2,7,5],"span":[2186,11,17]},{"path":[4,124,2,7,1],"span":[2186,18,28]},{"path":[4,124,2,7,3],"span":[2186,31,33]},{"path":[4,124,2,8],"span":[2187,2,31]},{"path":[4,124,2,8,4],"span":[2187,2,10]},{"path":[4,124,2,8,5],"span":[2187,11,17]},{"path":[4,124,2,8,1],"span":[2187,18,25]},{"path":[4,124,2,8,3],"span":[2187,28,30]},{"path":[4,124,2,9],"span":[2188,2,55]},{"path":[4,124,2,9,4],"span":[2188,2,10]},{"path":[4,124,2,9,6],"span":[2188,11,36]},{"path":[4,124,2,9,1],"span":[2188,37,49]},{"path":[4,124,2,9,3],"span":[2188,52,54]},{"path":[4,124,2,10],"span":[2189,2,52]},{"path":[4,124,2,10,4],"span":[2189,2,10]},{"path":[4,124,2,10,6],"span":[2189,11,36]},{"path":[4,124,2,10,1],"span":[2189,37,46]},{"path":[4,124,2,10,3],"span":[2189,49,51]},{"path":[4,124,2,11],"span":[2190,2,51]},{"path":[4,124,2,11,4],"span":[2190,2,10]},{"path":[4,124,2,11,6],"span":[2190,11,36]},{"path":[4,124,2,11,1],"span":[2190,37,45]},{"path":[4,124,2,11,3],"span":[2190,48,50]},{"path":[4,124,2,12],"span":[2191,2,43]},{"path":[4,124,2,12,4],"span":[2191,2,10]},{"path":[4,124,2,12,5],"span":[2191,11,17]},{"path":[4,124,2,12,1],"span":[2191,18,37]},{"path":[4,124,2,12,3],"span":[2191,40,42]},{"path":[4,124,2,13],"span":[2193,2,35]},{"path":[4,124,2,13,4],"span":[2193,2,10]},{"path":[4,124,2,13,5],"span":[2193,11,17]},{"path":[4,124,2,13,1],"span":[2193,18,29]},{"path":[4,124,2,13,3],"span":[2193,32,34]},{"path":[4,124,2,14],"span":[2194,2,37]},{"path":[4,124,2,14,4],"span":[2194,2,10]},{"path":[4,124,2,14,5],"span":[2194,11,17]},{"path":[4,124,2,14,1],"span":[2194,18,31]},{"path":[4,124,2,14,3],"span":[2194,34,36]},{"path":[4,124,2,15],"span":[2196,2,39]},{"path":[4,124,2,15,4],"span":[2196,2,10]},{"path":[4,124,2,15,5],"span":[2196,11,17]},{"path":[4,124,2,15,1],"span":[2196,18,33]},{"path":[4,124,2,15,3],"span":[2196,36,38]},{"path":[4,124,2,16],"span":[2197,2,43]},{"path":[4,124,2,16,4],"span":[2197,2,10]},{"path":[4,124,2,16,5],"span":[2197,11,17]},{"path":[4,124,2,16,1],"span":[2197,18,37]},{"path":[4,124,2,16,3],"span":[2197,40,42]},{"path":[4,124,2,17],"span":[2198,2,38]},{"path":[4,124,2,17,4],"span":[2198,2,10]},{"path":[4,124,2,17,5],"span":[2198,11,17]},{"path":[4,124,2,17,1],"span":[2198,18,32]},{"path":[4,124,2,17,3],"span":[2198,35,37]},{"path":[4,124,2,18],"span":[2199,2,38]},{"path":[4,124,2,18,4],"span":[2199,2,10]},{"path":[4,124,2,18,5],"span":[2199,11,17]},{"path":[4,124,2,18,1],"span":[2199,18,32]},{"path":[4,124,2,18,3],"span":[2199,35,37]},{"path":[4,124,2,19],"span":[2200,2,41]},{"path":[4,124,2,19,4],"span":[2200,2,10]},{"path":[4,124,2,19,5],"span":[2200,11,15]},{"path":[4,124,2,19,1],"span":[2200,18,35]},{"path":[4,124,2,19,3],"span":[2200,38,40]},{"path":[4,124,2,20],"span":[2201,2,42]},{"path":[4,124,2,20,4],"span":[2201,2,10]},{"path":[4,124,2,20,5],"span":[2201,11,17]},{"path":[4,124,2,20,1],"span":[2201,18,36]},{"path":[4,124,2,20,3],"span":[2201,39,41]},{"path":[4,124,2,21],"span":[2203,2,32]},{"path":[4,124,2,21,4],"span":[2203,2,10]},{"path":[4,124,2,21,5],"span":[2203,11,17]},{"path":[4,124,2,21,1],"span":[2203,18,26]},{"path":[4,124,2,21,3],"span":[2203,29,31]},{"path":[4,124,2,22],"span":[2205,2,33]},{"path":[4,124,2,22,4],"span":[2205,2,10]},{"path":[4,124,2,22,5],"span":[2205,11,16]},{"path":[4,124,2,22,1],"span":[2205,17,27]},{"path":[4,124,2,22,3],"span":[2205,30,32]},{"path":[4,124,2,23],"span":[2207,2,59]},{"path":[4,124,2,23,4],"span":[2207,2,10]},{"path":[4,124,2,23,6],"span":[2207,11,36]},{"path":[4,124,2,23,1],"span":[2207,37,53]},{"path":[4,124,2,23,3],"span":[2207,56,58]},{"path":[4,124,2,24],"span":[2209,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,124,2,24,4],"span":[2209,2,10]},{"path":[4,124,2,24,5],"span":[2209,11,16]},{"path":[4,124,2,24,1],"span":[2209,17,28]},{"path":[4,124,2,24,3],"span":[2209,31,33]},{"path":[4,125],"span":[2212,0,2245,1]},{"path":[4,125,1],"span":[2212,8,17]},{"path":[4,125,2,0],"span":[2213,2,15]},{"path":[4,125,2,0,5],"span":[2213,2,7]},{"path":[4,125,2,0,1],"span":[2213,8,10]},{"path":[4,125,2,0,3],"span":[2213,13,14]},{"path":[4,125,2,1],"span":[2215,2,21]},{"path":[4,125,2,1,5],"span":[2215,2,8]},{"path":[4,125,2,1,1],"span":[2215,9,16]},{"path":[4,125,2,1,3],"span":[2215,19,20]},{"path":[4,125,2,2],"span":[2217,2,33]},{"path":[4,125,2,2,4],"span":[2217,2,10]},{"path":[4,125,2,2,5],"span":[2217,11,17]},{"path":[4,125,2,2,1],"span":[2217,18,28]},{"path":[4,125,2,2,3],"span":[2217,31,32]},{"path":[4,125,2,3],"span":[2218,2,32]},{"path":[4,125,2,3,4],"span":[2218,2,10]},{"path":[4,125,2,3,5],"span":[2218,11,17]},{"path":[4,125,2,3,1],"span":[2218,18,26]},{"path":[4,125,2,3,3],"span":[2218,29,31]},{"path":[4,125,2,4],"span":[2219,2,38]},{"path":[4,125,2,4,4],"span":[2219,2,10]},{"path":[4,125,2,4,5],"span":[2219,11,17]},{"path":[4,125,2,4,1],"span":[2219,18,33]},{"path":[4,125,2,4,3],"span":[2219,36,37]},{"path":[4,125,2,5],"span":[2221,2,33]},{"path":[4,125,2,5,4],"span":[2221,2,10]},{"path":[4,125,2,5,5],"span":[2221,11,16]},{"path":[4,125,2,5,1],"span":[2221,17,28]},{"path":[4,125,2,5,3],"span":[2221,31,32]},{"path":[4,125,2,6],"span":[2222,2,29]},{"path":[4,125,2,6,4],"span":[2222,2,10]},{"path":[4,125,2,6,5],"span":[2222,11,16]},{"path":[4,125,2,6,1],"span":[2222,17,24]},{"path":[4,125,2,6,3],"span":[2222,27,28]},{"path":[4,125,2,7],"span":[2223,2,31]},{"path":[4,125,2,7,4],"span":[2223,2,10]},{"path":[4,125,2,7,5],"span":[2223,11,16]},{"path":[4,125,2,7,1],"span":[2223,17,26]},{"path":[4,125,2,7,3],"span":[2223,29,30]},{"path":[4,125,2,8],"span":[2225,2,54]},{"path":[4,125,2,8,4],"span":[2225,2,10]},{"path":[4,125,2,8,6],"span":[2225,11,36]},{"path":[4,125,2,8,1],"span":[2225,37,49]},{"path":[4,125,2,8,3],"span":[2225,52,53]},{"path":[4,125,2,9],"span":[2226,2,51]},{"path":[4,125,2,9,4],"span":[2226,2,10]},{"path":[4,125,2,9,6],"span":[2226,11,36]},{"path":[4,125,2,9,1],"span":[2226,37,45]},{"path":[4,125,2,9,3],"span":[2226,48,50]},{"path":[4,125,2,10],"span":[2227,2,51]},{"path":[4,125,2,10,4],"span":[2227,2,10]},{"path":[4,125,2,10,6],"span":[2227,11,36]},{"path":[4,125,2,10,1],"span":[2227,37,45]},{"path":[4,125,2,10,3],"span":[2227,48,50]},{"path":[4,125,2,11],"span":[2228,2,52]},{"path":[4,125,2,11,4],"span":[2228,2,10]},{"path":[4,125,2,11,6],"span":[2228,11,36]},{"path":[4,125,2,11,1],"span":[2228,37,46]},{"path":[4,125,2,11,3],"span":[2228,49,51]},{"path":[4,125,2,12],"span":[2229,2,43]},{"path":[4,125,2,12,4],"span":[2229,2,10]},{"path":[4,125,2,12,5],"span":[2229,11,17]},{"path":[4,125,2,12,1],"span":[2229,18,37]},{"path":[4,125,2,12,3],"span":[2229,40,42]},{"path":[4,125,2,13],"span":[2230,2,38]},{"path":[4,125,2,13,4],"span":[2230,2,10]},{"path":[4,125,2,13,5],"span":[2230,11,17]},{"path":[4,125,2,13,1],"span":[2230,18,32]},{"path":[4,125,2,13,3],"span":[2230,35,37]},{"path":[4,125,2,14],"span":[2231,2,40]},{"path":[4,125,2,14,4],"span":[2231,2,10]},{"path":[4,125,2,14,5],"span":[2231,11,17]},{"path":[4,125,2,14,1],"span":[2231,18,34]},{"path":[4,125,2,14,3],"span":[2231,37,39]},{"path":[4,125,2,15],"span":[2232,2,36]},{"path":[4,125,2,15,4],"span":[2232,2,10]},{"path":[4,125,2,15,5],"span":[2232,11,17]},{"path":[4,125,2,15,1],"span":[2232,18,30]},{"path":[4,125,2,15,3],"span":[2232,33,35]},{"path":[4,125,2,16],"span":[2233,2,43]},{"path":[4,125,2,16,4],"span":[2233,2,10]},{"path":[4,125,2,16,5],"span":[2233,11,17]},{"path":[4,125,2,16,1],"span":[2233,18,37]},{"path":[4,125,2,16,3],"span":[2233,40,42]},{"path":[4,125,2,17],"span":[2234,2,35]},{"path":[4,125,2,17,4],"span":[2234,2,10]},{"path":[4,125,2,17,5],"span":[2234,11,17]},{"path":[4,125,2,17,1],"span":[2234,18,29]},{"path":[4,125,2,17,3],"span":[2234,32,34]},{"path":[4,125,2,18],"span":[2235,2,35]},{"path":[4,125,2,18,4],"span":[2235,2,10]},{"path":[4,125,2,18,5],"span":[2235,11,17]},{"path":[4,125,2,18,1],"span":[2235,18,29]},{"path":[4,125,2,18,3],"span":[2235,32,34]},{"path":[4,125,2,19],"span":[2236,2,37]},{"path":[4,125,2,19,4],"span":[2236,2,10]},{"path":[4,125,2,19,5],"span":[2236,11,17]},{"path":[4,125,2,19,1],"span":[2236,18,31]},{"path":[4,125,2,19,3],"span":[2236,34,36]},{"path":[4,125,2,20],"span":[2237,2,40]},{"path":[4,125,2,20,4],"span":[2237,2,10]},{"path":[4,125,2,20,5],"span":[2237,11,17]},{"path":[4,125,2,20,1],"span":[2237,18,34]},{"path":[4,125,2,20,3],"span":[2237,37,39]},{"path":[4,125,2,21],"span":[2238,2,39]},{"path":[4,125,2,21,4],"span":[2238,2,10]},{"path":[4,125,2,21,5],"span":[2238,11,17]},{"path":[4,125,2,21,1],"span":[2238,18,33]},{"path":[4,125,2,21,3],"span":[2238,36,38]},{"path":[4,125,2,22],"span":[2240,2,32]},{"path":[4,125,2,22,4],"span":[2240,2,10]},{"path":[4,125,2,22,5],"span":[2240,11,17]},{"path":[4,125,2,22,1],"span":[2240,18,26]},{"path":[4,125,2,22,3],"span":[2240,29,31]},{"path":[4,125,2,23],"span":[2242,2,59]},{"path":[4,125,2,23,4],"span":[2242,2,10]},{"path":[4,125,2,23,6],"span":[2242,11,36]},{"path":[4,125,2,23,1],"span":[2242,37,53]},{"path":[4,125,2,23,3],"span":[2242,56,58]},{"path":[4,125,2,24],"span":[2244,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,125,2,24,4],"span":[2244,2,10]},{"path":[4,125,2,24,5],"span":[2244,11,16]},{"path":[4,125,2,24,1],"span":[2244,17,28]},{"path":[4,125,2,24,3],"span":[2244,31,33]},{"path":[4,126],"span":[2247,0,2277,1]},{"path":[4,126,1],"span":[2247,8,23]},{"path":[4,126,2,0],"span":[2248,2,15]},{"path":[4,126,2,0,5],"span":[2248,2,7]},{"path":[4,126,2,0,1],"span":[2248,8,10]},{"path":[4,126,2,0,3],"span":[2248,13,14]},{"path":[4,126,2,1],"span":[2249,2,21]},{"path":[4,126,2,1,5],"span":[2249,2,8]},{"path":[4,126,2,1,1],"span":[2249,9,16]},{"path":[4,126,2,1,3],"span":[2249,19,20]},{"path":[4,126,2,2],"span":[2251,2,33]},{"path":[4,126,2,2,4],"span":[2251,2,10]},{"path":[4,126,2,2,5],"span":[2251,11,17]},{"path":[4,126,2,2,1],"span":[2251,18,28]},{"path":[4,126,2,2,3],"span":[2251,31,32]},{"path":[4,126,2,3],"span":[2252,2,36]},{"path":[4,126,2,3,4],"span":[2252,2,10]},{"path":[4,126,2,3,5],"span":[2252,11,17]},{"path":[4,126,2,3,1],"span":[2252,18,31]},{"path":[4,126,2,3,3],"span":[2252,34,35]},{"path":[4,126,2,4],"span":[2253,2,33]},{"path":[4,126,2,4,4],"span":[2253,2,10]},{"path":[4,126,2,4,5],"span":[2253,11,17]},{"path":[4,126,2,4,1],"span":[2253,18,28]},{"path":[4,126,2,4,3],"span":[2253,31,32]},{"path":[4,126,2,5],"span":[2254,2,30]},{"path":[4,126,2,5,4],"span":[2254,2,10]},{"path":[4,126,2,5,5],"span":[2254,11,17]},{"path":[4,126,2,5,1],"span":[2254,18,25]},{"path":[4,126,2,5,3],"span":[2254,28,29]},{"path":[4,126,2,6],"span":[2255,2,31]},{"path":[4,126,2,6,4],"span":[2255,2,10]},{"path":[4,126,2,6,5],"span":[2255,11,17]},{"path":[4,126,2,6,1],"span":[2255,18,26]},{"path":[4,126,2,6,3],"span":[2255,29,30]},{"path":[4,126,2,7],"span":[2257,2,29]},{"path":[4,126,2,7,4],"span":[2257,2,10]},{"path":[4,126,2,7,5],"span":[2257,11,16]},{"path":[4,126,2,7,1],"span":[2257,17,24]},{"path":[4,126,2,7,3],"span":[2257,27,28]},{"path":[4,126,2,8],"span":[2258,2,31]},{"path":[4,126,2,8,4],"span":[2258,2,10]},{"path":[4,126,2,8,5],"span":[2258,11,16]},{"path":[4,126,2,8,1],"span":[2258,17,26]},{"path":[4,126,2,8,3],"span":[2258,29,30]},{"path":[4,126,2,9],"span":[2259,2,32]},{"path":[4,126,2,9,4],"span":[2259,2,10]},{"path":[4,126,2,9,5],"span":[2259,11,16]},{"path":[4,126,2,9,1],"span":[2259,17,26]},{"path":[4,126,2,9,3],"span":[2259,29,31]},{"path":[4,126,2,10],"span":[2261,2,31]},{"path":[4,126,2,10,4],"span":[2261,2,10]},{"path":[4,126,2,10,5],"span":[2261,11,17]},{"path":[4,126,2,10,1],"span":[2261,18,25]},{"path":[4,126,2,10,3],"span":[2261,28,30]},{"path":[4,126,2,11],"span":[2262,2,35]},{"path":[4,126,2,11,4],"span":[2262,2,10]},{"path":[4,126,2,11,5],"span":[2262,11,17]},{"path":[4,126,2,11,1],"span":[2262,18,29]},{"path":[4,126,2,11,3],"span":[2262,32,34]},{"path":[4,126,2,12],"span":[2264,2,55]},{"path":[4,126,2,12,4],"span":[2264,2,10]},{"path":[4,126,2,12,6],"span":[2264,11,36]},{"path":[4,126,2,12,1],"span":[2264,37,49]},{"path":[4,126,2,12,3],"span":[2264,52,54]},{"path":[4,126,2,13],"span":[2265,2,51]},{"path":[4,126,2,13,4],"span":[2265,2,10]},{"path":[4,126,2,13,6],"span":[2265,11,36]},{"path":[4,126,2,13,1],"span":[2265,37,45]},{"path":[4,126,2,13,3],"span":[2265,48,50]},{"path":[4,126,2,14],"span":[2266,2,51]},{"path":[4,126,2,14,4],"span":[2266,2,10]},{"path":[4,126,2,14,6],"span":[2266,11,36]},{"path":[4,126,2,14,1],"span":[2266,37,45]},{"path":[4,126,2,14,3],"span":[2266,48,50]},{"path":[4,126,2,15],"span":[2267,2,52]},{"path":[4,126,2,15,4],"span":[2267,2,10]},{"path":[4,126,2,15,6],"span":[2267,11,36]},{"path":[4,126,2,15,1],"span":[2267,37,46]},{"path":[4,126,2,15,3],"span":[2267,49,51]},{"path":[4,126,2,16],"span":[2268,2,43]},{"path":[4,126,2,16,4],"span":[2268,2,10]},{"path":[4,126,2,16,5],"span":[2268,11,17]},{"path":[4,126,2,16,1],"span":[2268,18,37]},{"path":[4,126,2,16,3],"span":[2268,40,42]},{"path":[4,126,2,17],"span":[2270,2,33]},{"path":[4,126,2,17,4],"span":[2270,2,10]},{"path":[4,126,2,17,5],"span":[2270,11,15]},{"path":[4,126,2,17,1],"span":[2270,16,27]},{"path":[4,126,2,17,3],"span":[2270,30,32]},{"path":[4,126,2,18],"span":[2271,2,37]},{"path":[4,126,2,18,4],"span":[2271,2,10]},{"path":[4,126,2,18,5],"span":[2271,11,15]},{"path":[4,126,2,18,1],"span":[2271,16,31]},{"path":[4,126,2,18,3],"span":[2271,34,36]},{"path":[4,126,2,19],"span":[2272,2,37]},{"path":[4,126,2,19,4],"span":[2272,2,10]},{"path":[4,126,2,19,5],"span":[2272,11,15]},{"path":[4,126,2,19,1],"span":[2272,16,31]},{"path":[4,126,2,19,3],"span":[2272,34,36]},{"path":[4,126,2,20],"span":[2274,2,59]},{"path":[4,126,2,20,4],"span":[2274,2,10]},{"path":[4,126,2,20,6],"span":[2274,11,36]},{"path":[4,126,2,20,1],"span":[2274,37,53]},{"path":[4,126,2,20,3],"span":[2274,56,58]},{"path":[4,126,2,21],"span":[2276,2,35],"trailingComments":" filled only when a result of search\n"},{"path":[4,126,2,21,4],"span":[2276,2,10]},{"path":[4,126,2,21,5],"span":[2276,11,16]},{"path":[4,126,2,21,1],"span":[2276,17,28]},{"path":[4,126,2,21,3],"span":[2276,31,34]},{"path":[4,127],"span":[2279,0,2335,1]},{"path":[4,127,1],"span":[2279,8,22]},{"path":[4,127,2,0],"span":[2280,2,16]},{"path":[4,127,2,0,5],"span":[2280,2,7]},{"path":[4,127,2,0,1],"span":[2280,9,11]},{"path":[4,127,2,0,3],"span":[2280,14,15]},{"path":[4,127,2,1],"span":[2282,2,19]},{"path":[4,127,2,1,5],"span":[2282,2,8]},{"path":[4,127,2,1,1],"span":[2282,9,14]},{"path":[4,127,2,1,3],"span":[2282,17,18]},{"path":[4,127,2,2],"span":[2283,2,32]},{"path":[4,127,2,2,4],"span":[2283,2,10]},{"path":[4,127,2,2,5],"span":[2283,11,17]},{"path":[4,127,2,2,1],"span":[2283,18,27]},{"path":[4,127,2,2,3],"span":[2283,30,31]},{"path":[4,127,2,3],"span":[2284,2,29]},{"path":[4,127,2,3,4],"span":[2284,2,10]},{"path":[4,127,2,3,5],"span":[2284,11,16]},{"path":[4,127,2,3,1],"span":[2284,17,24]},{"path":[4,127,2,3,3],"span":[2284,27,28]},{"path":[4,127,2,4],"span":[2286,2,31]},{"path":[4,127,2,4,4],"span":[2286,2,10]},{"path":[4,127,2,4,5],"span":[2286,11,16]},{"path":[4,127,2,4,1],"span":[2286,17,26]},{"path":[4,127,2,4,3],"span":[2286,29,30]},{"path":[4,127,2,5],"span":[2287,2,30]},{"path":[4,127,2,5,4],"span":[2287,2,10]},{"path":[4,127,2,5,5],"span":[2287,11,15]},{"path":[4,127,2,5,1],"span":[2287,16,25]},{"path":[4,127,2,5,3],"span":[2287,28,29]},{"path":[4,127,2,6],"span":[2288,2,36]},{"path":[4,127,2,6,4],"span":[2288,2,10]},{"path":[4,127,2,6,5],"span":[2288,11,17]},{"path":[4,127,2,6,1],"span":[2288,18,31]},{"path":[4,127,2,6,3],"span":[2288,34,35]},{"path":[4,127,2,7],"span":[2289,2,35]},{"path":[4,127,2,7,4],"span":[2289,2,10]},{"path":[4,127,2,7,5],"span":[2289,11,17]},{"path":[4,127,2,7,1],"span":[2289,18,30]},{"path":[4,127,2,7,3],"span":[2289,33,34]},{"path":[4,127,2,8],"span":[2291,2,33]},{"path":[4,127,2,8,4],"span":[2291,2,10]},{"path":[4,127,2,8,5],"span":[2291,11,17]},{"path":[4,127,2,8,1],"span":[2291,18,27]},{"path":[4,127,2,8,3],"span":[2291,30,32]},{"path":[4,127,2,9],"span":[2292,2,38]},{"path":[4,127,2,9,4],"span":[2292,2,10]},{"path":[4,127,2,9,5],"span":[2292,11,17]},{"path":[4,127,2,9,1],"span":[2292,18,32]},{"path":[4,127,2,9,3],"span":[2292,35,37]},{"path":[4,127,2,10],"span":[2293,2,36]},{"path":[4,127,2,10,4],"span":[2293,2,10]},{"path":[4,127,2,10,5],"span":[2293,11,17]},{"path":[4,127,2,10,1],"span":[2293,18,30]},{"path":[4,127,2,10,3],"span":[2293,33,35]},{"path":[4,127,2,11],"span":[2294,2,40]},{"path":[4,127,2,11,4],"span":[2294,2,10]},{"path":[4,127,2,11,5],"span":[2294,11,17]},{"path":[4,127,2,11,1],"span":[2294,18,34]},{"path":[4,127,2,11,3],"span":[2294,37,39]},{"path":[4,127,2,12],"span":[2295,2,31]},{"path":[4,127,2,12,4],"span":[2295,2,10]},{"path":[4,127,2,12,5],"span":[2295,11,17]},{"path":[4,127,2,12,1],"span":[2295,18,25]},{"path":[4,127,2,12,3],"span":[2295,28,30]},{"path":[4,127,2,13],"span":[2296,2,36]},{"path":[4,127,2,13,4],"span":[2296,2,10]},{"path":[4,127,2,13,5],"span":[2296,11,17]},{"path":[4,127,2,13,1],"span":[2296,18,30]},{"path":[4,127,2,13,3],"span":[2296,33,35]},{"path":[4,127,2,14],"span":[2297,2,35]},{"path":[4,127,2,14,4],"span":[2297,2,10]},{"path":[4,127,2,14,5],"span":[2297,11,16]},{"path":[4,127,2,14,1],"span":[2297,17,29]},{"path":[4,127,2,14,3],"span":[2297,32,34]},{"path":[4,127,2,15],"span":[2298,2,29]},{"path":[4,127,2,15,4],"span":[2298,2,10]},{"path":[4,127,2,15,5],"span":[2298,11,17]},{"path":[4,127,2,15,1],"span":[2298,18,23]},{"path":[4,127,2,15,3],"span":[2298,26,28]},{"path":[4,127,2,16],"span":[2299,2,33]},{"path":[4,127,2,16,4],"span":[2299,2,10]},{"path":[4,127,2,16,5],"span":[2299,11,17]},{"path":[4,127,2,16,1],"span":[2299,18,27]},{"path":[4,127,2,16,3],"span":[2299,30,32]},{"path":[4,127,2,17],"span":[2300,2,32]},{"path":[4,127,2,17,4],"span":[2300,2,10]},{"path":[4,127,2,17,5],"span":[2300,11,17]},{"path":[4,127,2,17,1],"span":[2300,18,26]},{"path":[4,127,2,17,3],"span":[2300,29,31]},{"path":[4,127,2,18],"span":[2301,2,35]},{"path":[4,127,2,18,4],"span":[2301,2,10]},{"path":[4,127,2,18,5],"span":[2301,11,17]},{"path":[4,127,2,18,1],"span":[2301,18,29]},{"path":[4,127,2,18,3],"span":[2301,32,34]},{"path":[4,127,2,19],"span":[2303,2,36]},{"path":[4,127,2,19,4],"span":[2303,2,10]},{"path":[4,127,2,19,5],"span":[2303,11,17]},{"path":[4,127,2,19,1],"span":[2303,18,30]},{"path":[4,127,2,19,3],"span":[2303,33,35]},{"path":[4,127,2,20],"span":[2304,2,38]},{"path":[4,127,2,20,4],"span":[2304,2,10]},{"path":[4,127,2,20,5],"span":[2304,11,16]},{"path":[4,127,2,20,1],"span":[2304,17,32]},{"path":[4,127,2,20,3],"span":[2304,35,37]},{"path":[4,127,2,21],"span":[2305,2,47]},{"path":[4,127,2,21,4],"span":[2305,2,10]},{"path":[4,127,2,21,5],"span":[2305,11,16]},{"path":[4,127,2,21,1],"span":[2305,17,41]},{"path":[4,127,2,21,3],"span":[2305,44,46]},{"path":[4,127,2,22],"span":[2306,2,30]},{"path":[4,127,2,22,4],"span":[2306,2,10]},{"path":[4,127,2,22,5],"span":[2306,11,16]},{"path":[4,127,2,22,1],"span":[2306,17,24]},{"path":[4,127,2,22,3],"span":[2306,27,29]},{"path":[4,127,2,23],"span":[2307,2,29]},{"path":[4,127,2,23,4],"span":[2307,2,10]},{"path":[4,127,2,23,5],"span":[2307,11,16]},{"path":[4,127,2,23,1],"span":[2307,17,23]},{"path":[4,127,2,23,3],"span":[2307,26,28]},{"path":[4,127,2,24],"span":[2308,2,29]},{"path":[4,127,2,24,4],"span":[2308,2,10]},{"path":[4,127,2,24,5],"span":[2308,11,16]},{"path":[4,127,2,24,1],"span":[2308,17,23]},{"path":[4,127,2,24,3],"span":[2308,26,28]},{"path":[4,127,2,25],"span":[2309,2,36]},{"path":[4,127,2,25,4],"span":[2309,2,10]},{"path":[4,127,2,25,5],"span":[2309,11,17]},{"path":[4,127,2,25,1],"span":[2309,18,30]},{"path":[4,127,2,25,3],"span":[2309,33,35]},{"path":[4,127,2,26],"span":[2310,2,39]},{"path":[4,127,2,26,4],"span":[2310,2,10]},{"path":[4,127,2,26,5],"span":[2310,11,16]},{"path":[4,127,2,26,1],"span":[2310,17,33]},{"path":[4,127,2,26,3],"span":[2310,36,38]},{"path":[4,127,2,27],"span":[2311,2,44]},{"path":[4,127,2,27,4],"span":[2311,2,10]},{"path":[4,127,2,27,5],"span":[2311,11,17]},{"path":[4,127,2,27,1],"span":[2311,18,38]},{"path":[4,127,2,27,3],"span":[2311,41,43]},{"path":[4,127,2,28],"span":[2313,2,36]},{"path":[4,127,2,28,4],"span":[2313,2,10]},{"path":[4,127,2,28,5],"span":[2313,11,17]},{"path":[4,127,2,28,1],"span":[2313,18,30]},{"path":[4,127,2,28,3],"span":[2313,33,35]},{"path":[4,127,2,29],"span":[2314,2,37]},{"path":[4,127,2,29,4],"span":[2314,2,10]},{"path":[4,127,2,29,5],"span":[2314,11,16]},{"path":[4,127,2,29,1],"span":[2314,17,31]},{"path":[4,127,2,29,3],"span":[2314,34,36]},{"path":[4,127,2,30],"span":[2315,2,42]},{"path":[4,127,2,30,4],"span":[2315,2,10]},{"path":[4,127,2,30,5],"span":[2315,11,17]},{"path":[4,127,2,30,1],"span":[2315,18,36]},{"path":[4,127,2,30,3],"span":[2315,39,41]},{"path":[4,127,2,31],"span":[2316,2,38]},{"path":[4,127,2,31,4],"span":[2316,2,10]},{"path":[4,127,2,31,5],"span":[2316,11,17]},{"path":[4,127,2,31,1],"span":[2316,18,32]},{"path":[4,127,2,31,3],"span":[2316,35,37]},{"path":[4,127,2,32],"span":[2317,2,42]},{"path":[4,127,2,32,4],"span":[2317,2,10]},{"path":[4,127,2,32,5],"span":[2317,11,17]},{"path":[4,127,2,32,1],"span":[2317,18,36]},{"path":[4,127,2,32,3],"span":[2317,39,41]},{"path":[4,127,2,33],"span":[2318,2,39]},{"path":[4,127,2,33,4],"span":[2318,2,10]},{"path":[4,127,2,33,5],"span":[2318,11,17]},{"path":[4,127,2,33,1],"span":[2318,18,33]},{"path":[4,127,2,33,3],"span":[2318,36,38]},{"path":[4,127,2,34],"span":[2319,2,34]},{"path":[4,127,2,34,4],"span":[2319,2,10]},{"path":[4,127,2,34,5],"span":[2319,11,17]},{"path":[4,127,2,34,1],"span":[2319,18,28]},{"path":[4,127,2,34,3],"span":[2319,31,33]},{"path":[4,127,2,35],"span":[2320,2,34]},{"path":[4,127,2,35,4],"span":[2320,2,10]},{"path":[4,127,2,35,5],"span":[2320,11,17]},{"path":[4,127,2,35,1],"span":[2320,18,28]},{"path":[4,127,2,35,3],"span":[2320,31,33]},{"path":[4,127,2,36],"span":[2321,2,33]},{"path":[4,127,2,36,4],"span":[2321,2,10]},{"path":[4,127,2,36,5],"span":[2321,11,17]},{"path":[4,127,2,36,1],"span":[2321,18,27]},{"path":[4,127,2,36,3],"span":[2321,30,32]},{"path":[4,127,2,37],"span":[2323,2,33]},{"path":[4,127,2,37,4],"span":[2323,2,10]},{"path":[4,127,2,37,5],"span":[2323,11,15]},{"path":[4,127,2,37,1],"span":[2323,16,27]},{"path":[4,127,2,37,3],"span":[2323,30,32]},{"path":[4,127,2,38],"span":[2324,2,36]},{"path":[4,127,2,38,4],"span":[2324,2,10]},{"path":[4,127,2,38,5],"span":[2324,11,15]},{"path":[4,127,2,38,1],"span":[2324,16,30]},{"path":[4,127,2,38,3],"span":[2324,33,35]},{"path":[4,127,2,39],"span":[2325,2,38]},{"path":[4,127,2,39,4],"span":[2325,2,10]},{"path":[4,127,2,39,5],"span":[2325,11,15]},{"path":[4,127,2,39,1],"span":[2325,16,32]},{"path":[4,127,2,39,3],"span":[2325,35,37]},{"path":[4,127,2,40],"span":[2326,2,34]},{"path":[4,127,2,40,4],"span":[2326,2,10]},{"path":[4,127,2,40,5],"span":[2326,11,15]},{"path":[4,127,2,40,1],"span":[2326,16,28]},{"path":[4,127,2,40,3],"span":[2326,31,33]},{"path":[4,127,2,41],"span":[2327,2,33]},{"path":[4,127,2,41,4],"span":[2327,2,10]},{"path":[4,127,2,41,5],"span":[2327,11,15]},{"path":[4,127,2,41,1],"span":[2327,16,27]},{"path":[4,127,2,41,3],"span":[2327,30,32]},{"path":[4,127,2,42],"span":[2328,2,38]},{"path":[4,127,2,42,4],"span":[2328,2,10]},{"path":[4,127,2,42,5],"span":[2328,11,15]},{"path":[4,127,2,42,1],"span":[2328,16,32]},{"path":[4,127,2,42,3],"span":[2328,35,37]},{"path":[4,127,2,43],"span":[2329,2,36]},{"path":[4,127,2,43,4],"span":[2329,2,10]},{"path":[4,127,2,43,5],"span":[2329,11,15]},{"path":[4,127,2,43,1],"span":[2329,16,30]},{"path":[4,127,2,43,3],"span":[2329,33,35]},{"path":[4,127,2,44],"span":[2331,2,59]},{"path":[4,127,2,44,4],"span":[2331,2,10]},{"path":[4,127,2,44,6],"span":[2331,11,36]},{"path":[4,127,2,44,1],"span":[2331,37,53]},{"path":[4,127,2,44,3],"span":[2331,56,58]},{"path":[4,127,2,45],"span":[2333,2,35],"trailingComments":" filled only when a result of search\n"},{"path":[4,127,2,45,4],"span":[2333,2,10]},{"path":[4,127,2,45,5],"span":[2333,11,16]},{"path":[4,127,2,45,1],"span":[2333,17,28]},{"path":[4,127,2,45,3],"span":[2333,31,34]}]},"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":"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":"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":4,"jsonName":"hw","proto3Optional":true},{"name":"os","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystem","oneofIndex":5,"jsonName":"os","proto3Optional":true},{"name":"monitor_inventory","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MonitorInventory","oneofIndex":6,"jsonName":"monitorInventory","proto3Optional":true},{"name":"network_interfaces","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetworkInterfaces","oneofIndex":7,"jsonName":"networkInterfaces","proto3Optional":true},{"name":"network_protocols","number":76,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetworkProtocols","oneofIndex":8,"jsonName":"networkProtocols","proto3Optional":true},{"name":"port_scan","number":77,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.PortScan","oneofIndex":9,"jsonName":"portScan","proto3Optional":true},{"name":"computer","number":75,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Computer","oneofIndex":10,"jsonName":"computer","proto3Optional":true},{"name":"ot_module","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OtModule","oneofIndex":11,"jsonName":"otModule","proto3Optional":true},{"name":"cloud","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CloudEntity","oneofIndex":12,"jsonName":"cloud","proto3Optional":true}],"oneofDecl":[{"name":"_last_synced_source_agent"},{"name":"_last_synced_source_name"},{"name":"_unique_key"},{"name":"_internet_ip"},{"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":"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":"software_inventory","number":201,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SoftwareInventory","oneofIndex":6,"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":7,"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":8,"jsonName":"internetExplorer","proto3Optional":true},{"name":"windows_sql_server","number":209,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsSqlServer","oneofIndex":9,"jsonName":"windowsSqlServer","proto3Optional":true},{"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":"last_user","number":301,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.LastUser","oneofIndex":10,"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":"_software_inventory"},{"name":"_boot_config"},{"name":"_internet_explorer"},{"name":"_windows_sql_server"},{"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":"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_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OtBusConfig","oneofIndex":1,"jsonName":"busConfig","proto3Optional":true},{"name":"is_main_module","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isMainModule"},{"name":"part_number","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"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":3,"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":4,"jsonName":"scanProtocol","proto3Optional":true},{"name":"scan_info","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OtScanInfo","oneofIndex":5,"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":"_bus_config"},{"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}],"oneofDecl":[{"name":"_name"},{"name":"_type"},{"name":"_position"},{"name":"_width"}]},{"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":"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":"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}],"oneofDecl":[{"name":"_caption"},{"name":"_command"},{"name":"_location"},{"name":"_name"},{"name":"_user"},{"name":"_user_sid"}]},{"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":"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":"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":"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":"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":"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":"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":"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"}]},{"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":"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":"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":"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":"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":{}}]}],"options":{"javaMultipleFiles":true,"goPackage":"./generated-go"},"sourceCodeInfo":{"location":[{"span":[7,0,2415,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,37,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":[26,2,65],"leadingComments":" Retrieve a single entity by site/inst-id/type/id\n"},{"path":[6,0,2,0,1],"span":[26,6,15]},{"path":[6,0,2,0,2],"span":[26,17,33]},{"path":[6,0,2,0,3],"span":[26,44,61]},{"path":[6,0,2,1],"span":[29,2,76],"leadingComments":" lists entities for a site or site/type\n"},{"path":[6,0,2,1,1],"span":[29,6,18]},{"path":[6,0,2,1,2],"span":[29,19,36]},{"path":[6,0,2,1,6],"span":[29,47,53]},{"path":[6,0,2,1,3],"span":[29,54,72]},{"path":[6,0,2,2],"span":[32,2,77],"leadingComments":" Retrieve a single entity by site/inst-id/type/id\n"},{"path":[6,0,2,2,1],"span":[32,6,19]},{"path":[6,0,2,2,2],"span":[32,21,41]},{"path":[6,0,2,2,3],"span":[32,52,73]},{"path":[4,0],"span":[43,0,46,1],"leadingComments":"\n Retrieve an Entity through his path\n"},{"path":[4,0,1],"span":[43,8,24]},{"path":[4,0,2,0],"span":[44,2,29],"trailingComments":" bool send_related = 2; // send also related entities\n"},{"path":[4,0,2,0,6],"span":[44,2,12]},{"path":[4,0,2,0,1],"span":[44,13,24]},{"path":[4,0,2,0,3],"span":[44,27,28]},{"path":[4,1],"span":[48,0,54,1]},{"path":[4,1,1],"span":[48,8,25]},{"path":[4,1,2,0],"span":[49,2,19]},{"path":[4,1,2,0,5],"span":[49,2,6]},{"path":[4,1,2,0,1],"span":[49,7,14]},{"path":[4,1,2,0,3],"span":[49,17,18]},{"path":[4,1,2,1],"span":[50,2,40]},{"path":[4,1,2,1,4],"span":[50,2,10]},{"path":[4,1,2,1,5],"span":[50,11,17]},{"path":[4,1,2,1,1],"span":[50,18,35]},{"path":[4,1,2,1,3],"span":[50,38,39]},{"path":[4,1,2,2],"span":[52,2,29]},{"path":[4,1,2,2,4],"span":[52,2,10]},{"path":[4,1,2,2,6],"span":[52,11,17]},{"path":[4,1,2,2,1],"span":[52,18,24]},{"path":[4,1,2,2,3],"span":[52,27,28]},{"path":[4,1,2,3],"span":[53,2,30]},{"path":[4,1,2,3,4],"span":[53,2,10]},{"path":[4,1,2,3,6],"span":[53,11,17]},{"path":[4,1,2,3,1],"span":[53,18,25]},{"path":[4,1,2,3,3],"span":[53,28,29]},{"path":[4,2],"span":[56,0,58,1]},{"path":[4,2,1],"span":[56,8,25]},{"path":[4,2,2,0],"span":[57,2,24],"trailingComments":" minimum is for a site\n"},{"path":[4,2,2,0,6],"span":[57,2,12]},{"path":[4,2,2,0,1],"span":[57,13,19]},{"path":[4,2,2,0,3],"span":[57,22,23]},{"path":[4,3],"span":[60,0,63,1]},{"path":[4,3,1],"span":[60,8,26]},{"path":[4,3,2,0],"span":[61,2,20]},{"path":[4,3,2,0,6],"span":[61,2,8]},{"path":[4,3,2,0,1],"span":[61,9,15]},{"path":[4,3,2,0,3],"span":[61,18,19]},{"path":[4,3,2,1],"span":[62,2,30]},{"path":[4,3,2,1,4],"span":[62,2,10]},{"path":[4,3,2,1,6],"span":[62,11,17]},{"path":[4,3,2,1,1],"span":[62,18,25]},{"path":[4,3,2,1,3],"span":[62,28,29]},{"path":[4,4],"span":[65,0,73,1]},{"path":[4,4,1],"span":[65,8,28]},{"path":[4,4,2,0],"span":[66,2,30]},{"path":[4,4,2,0,4],"span":[66,2,10]},{"path":[4,4,2,0,5],"span":[66,11,16]},{"path":[4,4,2,0,1],"span":[66,17,25]},{"path":[4,4,2,0,3],"span":[66,28,29]},{"path":[4,4,2,1],"span":[67,2,30]},{"path":[4,4,2,1,4],"span":[67,2,10]},{"path":[4,4,2,1,5],"span":[67,11,16]},{"path":[4,4,2,1,1],"span":[67,17,25]},{"path":[4,4,2,1,3],"span":[67,28,29]},{"path":[4,4,2,2],"span":[68,2,27]},{"path":[4,4,2,2,4],"span":[68,2,10]},{"path":[4,4,2,2,5],"span":[68,11,16]},{"path":[4,4,2,2,1],"span":[68,17,22]},{"path":[4,4,2,2,3],"span":[68,25,26]},{"path":[4,4,2,3],"span":[69,2,27]},{"path":[4,4,2,3,4],"span":[69,2,10]},{"path":[4,4,2,3,5],"span":[69,11,16]},{"path":[4,4,2,3,1],"span":[69,17,22]},{"path":[4,4,2,3,3],"span":[69,25,26]},{"path":[4,4,2,4],"span":[70,2,32]},{"path":[4,4,2,4,4],"span":[70,2,10]},{"path":[4,4,2,4,5],"span":[70,11,16]},{"path":[4,4,2,4,1],"span":[70,17,27]},{"path":[4,4,2,4,3],"span":[70,30,31]},{"path":[4,4,2,5],"span":[72,2,36],"trailingComments":" false by default: to avoid to get full path\n"},{"path":[4,4,2,5,4],"span":[72,2,10]},{"path":[4,4,2,5,5],"span":[72,11,15]},{"path":[4,4,2,5,1],"span":[72,16,30]},{"path":[4,4,2,5,3],"span":[72,33,35]},{"path":[4,5],"span":[75,0,83,1]},{"path":[4,5,1],"span":[75,8,29]},{"path":[4,5,2,0],"span":[76,2,34]},{"path":[4,5,2,0,4],"span":[76,2,10]},{"path":[4,5,2,0,6],"span":[76,11,23]},{"path":[4,5,2,0,1],"span":[76,24,29]},{"path":[4,5,2,0,3],"span":[76,32,33]},{"path":[4,5,2,1],"span":[77,2,34]},{"path":[4,5,2,1,4],"span":[77,2,10]},{"path":[4,5,2,1,6],"span":[77,11,23]},{"path":[4,5,2,1,1],"span":[77,24,29]},{"path":[4,5,2,1,3],"span":[77,32,33]},{"path":[4,5,2,2],"span":[78,2,28]},{"path":[4,5,2,2,4],"span":[78,2,10]},{"path":[4,5,2,2,6],"span":[78,11,20]},{"path":[4,5,2,2,1],"span":[78,21,23]},{"path":[4,5,2,2,3],"span":[78,26,27]},{"path":[4,5,2,3],"span":[79,2,34]},{"path":[4,5,2,3,4],"span":[79,2,10]},{"path":[4,5,2,3,6],"span":[79,11,26]},{"path":[4,5,2,3,1],"span":[79,27,29]},{"path":[4,5,2,3,3],"span":[79,32,33]},{"path":[4,5,2,4],"span":[80,2,38]},{"path":[4,5,2,4,4],"span":[80,2,10]},{"path":[4,5,2,4,6],"span":[80,11,25]},{"path":[4,5,2,4,1],"span":[80,26,33]},{"path":[4,5,2,4,3],"span":[80,36,37]},{"path":[4,5,2,5],"span":[81,2,28]},{"path":[4,5,2,5,4],"span":[81,2,10]},{"path":[4,5,2,5,5],"span":[81,11,15]},{"path":[4,5,2,5,1],"span":[81,16,23]},{"path":[4,5,2,5,3],"span":[81,26,27]},{"path":[4,5,2,6],"span":[82,2,40]},{"path":[4,5,2,6,4],"span":[82,2,10]},{"path":[4,5,2,6,5],"span":[82,11,17]},{"path":[4,5,2,6,1],"span":[82,18,35]},{"path":[4,5,2,6,3],"span":[82,38,39]},{"path":[4,6],"span":[87,0,93,1],"leadingDetachedComments":[" ----- Data Part ------\n"]},{"path":[4,6,1],"span":[87,8,18]},{"path":[4,6,2,0],"span":[88,2,21]},{"path":[4,6,2,0,5],"span":[88,2,8]},{"path":[4,6,2,0,1],"span":[88,9,16]},{"path":[4,6,2,0,3],"span":[88,19,20]},{"path":[4,6,2,1],"span":[89,2,32]},{"path":[4,6,2,1,4],"span":[89,2,10]},{"path":[4,6,2,1,5],"span":[89,11,17]},{"path":[4,6,2,1,1],"span":[89,18,27]},{"path":[4,6,2,1,3],"span":[89,30,31]},{"path":[4,6,2,2],"span":[90,2,34],"trailingComments":" IT, OT, CDK, 3rdParty\n"},{"path":[4,6,2,2,4],"span":[90,2,10]},{"path":[4,6,2,2,5],"span":[90,11,17]},{"path":[4,6,2,2,1],"span":[90,18,29]},{"path":[4,6,2,2,3],"span":[90,32,33]},{"path":[4,6,2,3],"span":[91,2,34],"trailingComments":" \"asset\" \"user\" etc\n"},{"path":[4,6,2,3,4],"span":[91,2,10]},{"path":[4,6,2,3,5],"span":[91,11,17]},{"path":[4,6,2,3,1],"span":[91,18,29]},{"path":[4,6,2,3,3],"span":[91,32,33]},{"path":[4,6,2,4],"span":[92,2,32]},{"path":[4,6,2,4,4],"span":[92,2,10]},{"path":[4,6,2,4,5],"span":[92,11,17]},{"path":[4,6,2,4,1],"span":[92,18,27]},{"path":[4,6,2,4,3],"span":[92,30,31]},{"path":[4,7],"span":[96,0,102,1],"leadingComments":" Main Entity object: variant "},{"path":[4,7,1],"span":[96,8,14]},{"path":[4,7,8,0],"span":[97,2,101,3]},{"path":[4,7,8,0,1],"span":[97,8,14]},{"path":[4,7,2,0],"span":[98,4,20],"trailingComments":" User user = 2;\n Other ...\n"},{"path":[4,7,2,0,6],"span":[98,4,9]},{"path":[4,7,2,0,1],"span":[98,10,15]},{"path":[4,7,2,0,3],"span":[98,18,19]},{"path":[4,8],"span":[107,0,167,1],"leadingComments":" Asset object: IT/OT/CDR "},{"path":[4,8,1],"span":[107,8,13]},{"path":[4,8,2,0],"span":[109,2,20]},{"path":[4,8,2,0,6],"span":[109,2,12]},{"path":[4,8,2,0,1],"span":[109,13,15]},{"path":[4,8,2,0,3],"span":[109,18,19]},{"path":[4,8,2,1],"span":[111,2,44]},{"path":[4,8,2,1,6],"span":[111,2,27]},{"path":[4,8,2,1,1],"span":[111,28,39]},{"path":[4,8,2,1,3],"span":[111,42,43]},{"path":[4,8,2,2],"span":[112,2,43]},{"path":[4,8,2,2,6],"span":[112,2,27]},{"path":[4,8,2,2,1],"span":[112,28,38]},{"path":[4,8,2,2,3],"span":[112,41,42]},{"path":[4,8,2,3],"span":[113,2,45]},{"path":[4,8,2,3,6],"span":[113,2,27]},{"path":[4,8,2,3,1],"span":[113,28,40]},{"path":[4,8,2,3,3],"span":[113,43,44]},{"path":[4,8,2,4],"span":[114,2,46]},{"path":[4,8,2,4,6],"span":[114,2,27]},{"path":[4,8,2,4,1],"span":[114,28,41]},{"path":[4,8,2,4,3],"span":[114,44,45]},{"path":[4,8,2,5],"span":[116,2,48],"trailingComments":" last synced source agent name and version\n"},{"path":[4,8,2,5,4],"span":[116,2,10]},{"path":[4,8,2,5,5],"span":[116,11,17]},{"path":[4,8,2,5,1],"span":[116,18,42]},{"path":[4,8,2,5,3],"span":[116,45,47]},{"path":[4,8,2,6],"span":[117,2,47],"trailingComments":" last synced source name\n"},{"path":[4,8,2,6,4],"span":[117,2,10]},{"path":[4,8,2,6,5],"span":[117,11,17]},{"path":[4,8,2,6,1],"span":[117,18,41]},{"path":[4,8,2,6,3],"span":[117,44,46]},{"path":[4,8,2,7],"span":[124,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,8,2,7,4],"span":[124,2,10]},{"path":[4,8,2,7,6],"span":[124,11,21]},{"path":[4,8,2,7,1],"span":[124,22,33]},{"path":[4,8,2,7,3],"span":[124,36,38]},{"path":[4,8,2,8],"span":[132,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,8,2,8,4],"span":[132,2,10]},{"path":[4,8,2,8,5],"span":[132,11,17]},{"path":[4,8,2,8,1],"span":[132,18,28]},{"path":[4,8,2,8,3],"span":[132,31,33]},{"path":[4,8,2,9],"span":[134,2,37]},{"path":[4,8,2,9,4],"span":[134,2,10]},{"path":[4,8,2,9,6],"span":[134,11,20]},{"path":[4,8,2,9,1],"span":[134,21,31]},{"path":[4,8,2,9,3],"span":[134,34,36]},{"path":[4,8,2,10],"span":[136,2,35],"trailingComments":" Internet IP and related geo-location info, when available\n"},{"path":[4,8,2,10,4],"span":[136,2,10]},{"path":[4,8,2,10,6],"span":[136,11,17]},{"path":[4,8,2,10,1],"span":[136,18,29]},{"path":[4,8,2,10,3],"span":[136,32,34]},{"path":[4,8,2,11],"span":[138,2,24]},{"path":[4,8,2,11,4],"span":[138,2,10]},{"path":[4,8,2,11,6],"span":[138,11,14]},{"path":[4,8,2,11,1],"span":[138,15,18]},{"path":[4,8,2,11,3],"span":[138,21,23]},{"path":[4,8,2,12],"span":[139,2,34],"trailingComments":" e.g. relations to and from OT parent module to sub-modules\n"},{"path":[4,8,2,12,4],"span":[139,2,10]},{"path":[4,8,2,12,6],"span":[139,11,19]},{"path":[4,8,2,12,1],"span":[139,20,28]},{"path":[4,8,2,12,3],"span":[139,31,33]},{"path":[4,8,2,13],"span":[141,2,22]},{"path":[4,8,2,13,6],"span":[141,2,12]},{"path":[4,8,2,13,1],"span":[141,13,17]},{"path":[4,8,2,13,3],"span":[141,20,21]},{"path":[4,8,2,14],"span":[143,2,31]},{"path":[4,8,2,14,4],"span":[143,2,10]},{"path":[4,8,2,14,6],"span":[143,11,23]},{"path":[4,8,2,14,1],"span":[143,24,26]},{"path":[4,8,2,14,3],"span":[143,29,30]},{"path":[4,8,2,15],"span":[144,2,34]},{"path":[4,8,2,15,4],"span":[144,2,10]},{"path":[4,8,2,15,6],"span":[144,11,26]},{"path":[4,8,2,15,1],"span":[144,27,29]},{"path":[4,8,2,15,3],"span":[144,32,33]},{"path":[4,8,2,16],"span":[146,2,51]},{"path":[4,8,2,16,4],"span":[146,2,10]},{"path":[4,8,2,16,6],"span":[146,11,27]},{"path":[4,8,2,16,1],"span":[146,28,45]},{"path":[4,8,2,16,3],"span":[146,48,50]},{"path":[4,8,2,17],"span":[147,2,53]},{"path":[4,8,2,17,4],"span":[147,2,10]},{"path":[4,8,2,17,6],"span":[147,11,28]},{"path":[4,8,2,17,1],"span":[147,29,47]},{"path":[4,8,2,17,3],"span":[147,50,52]},{"path":[4,8,2,18],"span":[148,2,51]},{"path":[4,8,2,18,4],"span":[148,2,10]},{"path":[4,8,2,18,6],"span":[148,11,27]},{"path":[4,8,2,18,1],"span":[148,28,45]},{"path":[4,8,2,18,3],"span":[148,48,50]},{"path":[4,8,2,19],"span":[149,2,35]},{"path":[4,8,2,19,4],"span":[149,2,10]},{"path":[4,8,2,19,6],"span":[149,11,19]},{"path":[4,8,2,19,1],"span":[149,20,29]},{"path":[4,8,2,19,3],"span":[149,32,34]},{"path":[4,8,9],"span":[152,2,69],"leadingComments":" list of deprecated fields, now moved to computer message\n"},{"path":[4,8,9,0],"span":[152,11,12]},{"path":[4,8,9,0,1],"span":[152,11,12]},{"path":[4,8,9,1],"span":[152,14,16]},{"path":[4,8,9,1,1],"span":[152,14,16]},{"path":[4,8,9,2],"span":[152,18,20]},{"path":[4,8,9,2,1],"span":[152,18,20]},{"path":[4,8,9,3],"span":[152,22,24]},{"path":[4,8,9,3,1],"span":[152,22,24]},{"path":[4,8,9,4],"span":[152,26,28]},{"path":[4,8,9,4,1],"span":[152,26,28]},{"path":[4,8,9,5],"span":[152,30,32]},{"path":[4,8,9,5,1],"span":[152,30,32]},{"path":[4,8,9,6],"span":[152,34,36]},{"path":[4,8,9,6,1],"span":[152,34,36]},{"path":[4,8,9,7],"span":[152,38,40]},{"path":[4,8,9,7,1],"span":[152,38,40]},{"path":[4,8,9,8],"span":[152,42,44]},{"path":[4,8,9,8,1],"span":[152,42,44]},{"path":[4,8,9,9],"span":[152,46,48]},{"path":[4,8,9,9,1],"span":[152,46,48]},{"path":[4,8,9,10],"span":[152,50,52]},{"path":[4,8,9,10,1],"span":[152,50,52]},{"path":[4,8,9,11],"span":[152,54,56]},{"path":[4,8,9,11,1],"span":[152,54,56]},{"path":[4,8,9,12],"span":[152,58,60]},{"path":[4,8,9,12,1],"span":[152,58,60]},{"path":[4,8,9,13],"span":[152,62,64]},{"path":[4,8,9,13,1],"span":[152,62,64]},{"path":[4,8,9,14],"span":[152,66,68]},{"path":[4,8,9,14,1],"span":[152,66,68]},{"path":[4,8,2,20],"span":[154,2,34]},{"path":[4,8,2,20,4],"span":[154,2,10]},{"path":[4,8,2,20,6],"span":[154,11,19]},{"path":[4,8,2,20,1],"span":[154,20,28]},{"path":[4,8,2,20,3],"span":[154,31,33]},{"path":[4,8,2,21],"span":[156,2,35],"trailingComments":" OT specific module info when asset type is 'OT'\n"},{"path":[4,8,2,21,4],"span":[156,2,10]},{"path":[4,8,2,21,6],"span":[156,11,19]},{"path":[4,8,2,21,1],"span":[156,20,29]},{"path":[4,8,2,21,3],"span":[156,32,34]},{"path":[4,8,2,22],"span":[158,2,34]},{"path":[4,8,2,22,4],"span":[158,2,10]},{"path":[4,8,2,22,6],"span":[158,11,22]},{"path":[4,8,2,22,1],"span":[158,23,28]},{"path":[4,8,2,22,3],"span":[158,31,33]},{"path":[4,9],"span":[172,0,239,1],"leadingComments":"\n Computer message keeping all sections of asset.computer.\n"},{"path":[4,9,1],"span":[172,8,16]},{"path":[4,9,2,0],"span":[174,2,31],"leadingComments":" HW\n"},{"path":[4,9,2,0,4],"span":[174,2,10]},{"path":[4,9,2,0,6],"span":[174,11,18]},{"path":[4,9,2,0,1],"span":[174,19,26]},{"path":[4,9,2,0,3],"span":[174,29,30]},{"path":[4,9,2,1],"span":[175,2,39]},{"path":[4,9,2,1,4],"span":[175,2,10]},{"path":[4,9,2,1,6],"span":[175,11,22]},{"path":[4,9,2,1,1],"span":[175,23,34]},{"path":[4,9,2,1,3],"span":[175,37,38]},{"path":[4,9,2,2],"span":[176,2,35]},{"path":[4,9,2,2,4],"span":[176,2,10]},{"path":[4,9,2,2,6],"span":[176,11,20]},{"path":[4,9,2,2,1],"span":[176,21,30]},{"path":[4,9,2,2,3],"span":[176,33,34]},{"path":[4,9,2,3],"span":[177,2,29]},{"path":[4,9,2,3,4],"span":[177,2,10]},{"path":[4,9,2,3,6],"span":[177,11,17]},{"path":[4,9,2,3,1],"span":[177,18,24]},{"path":[4,9,2,3,3],"span":[177,27,28]},{"path":[4,9,2,4],"span":[178,2,42]},{"path":[4,9,2,4,4],"span":[178,2,10]},{"path":[4,9,2,4,6],"span":[178,11,23]},{"path":[4,9,2,4,1],"span":[178,24,37]},{"path":[4,9,2,4,3],"span":[178,40,41]},{"path":[4,9,2,5],"span":[179,2,36]},{"path":[4,9,2,5,4],"span":[179,2,10]},{"path":[4,9,2,5,6],"span":[179,11,20]},{"path":[4,9,2,5,1],"span":[179,21,31]},{"path":[4,9,2,5,3],"span":[179,34,35]},{"path":[4,9,2,6],"span":[180,2,33]},{"path":[4,9,2,6,4],"span":[180,2,10]},{"path":[4,9,2,6,6],"span":[180,11,19]},{"path":[4,9,2,6,1],"span":[180,20,28]},{"path":[4,9,2,6,3],"span":[180,31,32]},{"path":[4,9,2,7],"span":[181,2,46]},{"path":[4,9,2,7,4],"span":[181,2,10]},{"path":[4,9,2,7,6],"span":[181,11,25]},{"path":[4,9,2,7,1],"span":[181,26,41]},{"path":[4,9,2,7,3],"span":[181,44,45]},{"path":[4,9,2,8],"span":[182,2,40]},{"path":[4,9,2,8,4],"span":[182,2,10]},{"path":[4,9,2,8,6],"span":[182,11,22]},{"path":[4,9,2,8,1],"span":[182,23,35]},{"path":[4,9,2,8,3],"span":[182,38,39]},{"path":[4,9,2,9],"span":[183,2,51]},{"path":[4,9,2,9,4],"span":[183,2,10]},{"path":[4,9,2,9,6],"span":[183,11,27]},{"path":[4,9,2,9,1],"span":[183,28,45]},{"path":[4,9,2,9,3],"span":[183,48,50]},{"path":[4,9,2,10],"span":[184,2,43]},{"path":[4,9,2,10,4],"span":[184,2,10]},{"path":[4,9,2,10,6],"span":[184,11,23]},{"path":[4,9,2,10,1],"span":[184,24,37]},{"path":[4,9,2,10,3],"span":[184,40,42]},{"path":[4,9,2,11],"span":[185,2,39]},{"path":[4,9,2,11,4],"span":[185,2,10]},{"path":[4,9,2,11,6],"span":[185,11,21]},{"path":[4,9,2,11,1],"span":[185,22,33]},{"path":[4,9,2,11,3],"span":[185,36,38]},{"path":[4,9,2,12],"span":[186,2,40]},{"path":[4,9,2,12,4],"span":[186,2,10]},{"path":[4,9,2,12,6],"span":[186,11,27]},{"path":[4,9,2,12,1],"span":[186,28,34]},{"path":[4,9,2,12,3],"span":[186,37,39]},{"path":[4,9,2,13],"span":[187,2,45]},{"path":[4,9,2,13,4],"span":[187,2,10]},{"path":[4,9,2,13,6],"span":[187,11,24]},{"path":[4,9,2,13,1],"span":[187,25,39]},{"path":[4,9,2,13,3],"span":[187,42,44]},{"path":[4,9,2,14],"span":[188,2,47]},{"path":[4,9,2,14,4],"span":[188,2,10]},{"path":[4,9,2,14,6],"span":[188,11,25]},{"path":[4,9,2,14,1],"span":[188,26,41]},{"path":[4,9,2,14,3],"span":[188,44,46]},{"path":[4,9,2,15],"span":[189,2,49]},{"path":[4,9,2,15,4],"span":[189,2,10]},{"path":[4,9,2,15,6],"span":[189,11,26]},{"path":[4,9,2,15,1],"span":[189,27,43]},{"path":[4,9,2,15,3],"span":[189,46,48]},{"path":[4,9,2,16],"span":[190,2,49]},{"path":[4,9,2,16,4],"span":[190,2,10]},{"path":[4,9,2,16,6],"span":[190,11,26]},{"path":[4,9,2,16,1],"span":[190,27,43]},{"path":[4,9,2,16,3],"span":[190,46,48]},{"path":[4,9,2,17],"span":[191,2,43]},{"path":[4,9,2,17,4],"span":[191,2,10]},{"path":[4,9,2,17,6],"span":[191,11,23]},{"path":[4,9,2,17,1],"span":[191,24,37]},{"path":[4,9,2,17,3],"span":[191,40,42]},{"path":[4,9,2,18],"span":[192,2,37]},{"path":[4,9,2,18,4],"span":[192,2,10]},{"path":[4,9,2,18,6],"span":[192,11,20]},{"path":[4,9,2,18,1],"span":[192,21,31]},{"path":[4,9,2,18,3],"span":[192,34,36]},{"path":[4,9,2,19],"span":[193,2,41]},{"path":[4,9,2,19,4],"span":[193,2,10]},{"path":[4,9,2,19,6],"span":[193,11,22]},{"path":[4,9,2,19,1],"span":[193,23,35]},{"path":[4,9,2,19,3],"span":[193,38,40]},{"path":[4,9,2,20],"span":[194,2,42]},{"path":[4,9,2,20,4],"span":[194,2,10]},{"path":[4,9,2,20,6],"span":[194,11,32]},{"path":[4,9,2,20,1],"span":[194,33,36]},{"path":[4,9,2,20,3],"span":[194,39,41]},{"path":[4,9,2,21],"span":[195,2,62]},{"path":[4,9,2,21,4],"span":[195,2,10]},{"path":[4,9,2,21,6],"span":[195,11,41]},{"path":[4,9,2,21,1],"span":[195,42,56]},{"path":[4,9,2,21,3],"span":[195,59,61]},{"path":[4,9,2,22],"span":[196,2,63]},{"path":[4,9,2,22,4],"span":[196,2,10]},{"path":[4,9,2,22,6],"span":[196,11,41]},{"path":[4,9,2,22,1],"span":[196,42,57]},{"path":[4,9,2,22,3],"span":[196,60,62]},{"path":[4,9,2,23],"span":[197,2,45]},{"path":[4,9,2,23,4],"span":[197,2,10]},{"path":[4,9,2,23,6],"span":[197,11,33]},{"path":[4,9,2,23,1],"span":[197,34,39]},{"path":[4,9,2,23,3],"span":[197,42,44]},{"path":[4,9,2,24],"span":[198,2,49]},{"path":[4,9,2,24,4],"span":[198,2,10]},{"path":[4,9,2,24,6],"span":[198,11,35]},{"path":[4,9,2,24,1],"span":[198,36,43]},{"path":[4,9,2,24,3],"span":[198,46,48]},{"path":[4,9,2,25],"span":[199,2,54]},{"path":[4,9,2,25,4],"span":[199,2,10]},{"path":[4,9,2,25,6],"span":[199,11,37]},{"path":[4,9,2,25,1],"span":[199,38,48]},{"path":[4,9,2,25,3],"span":[199,51,53]},{"path":[4,9,2,26],"span":[200,2,53]},{"path":[4,9,2,26,4],"span":[200,2,10]},{"path":[4,9,2,26,6],"span":[200,11,32]},{"path":[4,9,2,26,1],"span":[200,33,47]},{"path":[4,9,2,26,3],"span":[200,50,52]},{"path":[4,9,2,27],"span":[201,2,55]},{"path":[4,9,2,27,4],"span":[201,2,10]},{"path":[4,9,2,27,6],"span":[201,11,33]},{"path":[4,9,2,27,1],"span":[201,34,49]},{"path":[4,9,2,27,3],"span":[201,52,54]},{"path":[4,9,2,28],"span":[202,2,70]},{"path":[4,9,2,28,4],"span":[202,2,10]},{"path":[4,9,2,28,6],"span":[202,11,40]},{"path":[4,9,2,28,1],"span":[202,41,64]},{"path":[4,9,2,28,3],"span":[202,67,69]},{"path":[4,9,2,29],"span":[203,2,55]},{"path":[4,9,2,29,4],"span":[203,2,10]},{"path":[4,9,2,29,6],"span":[203,11,33]},{"path":[4,9,2,29,1],"span":[203,34,49]},{"path":[4,9,2,29,3],"span":[203,52,54]},{"path":[4,9,2,30],"span":[204,2,76]},{"path":[4,9,2,30,4],"span":[204,2,10]},{"path":[4,9,2,30,6],"span":[204,11,43]},{"path":[4,9,2,30,1],"span":[204,44,70]},{"path":[4,9,2,30,3],"span":[204,73,75]},{"path":[4,9,2,31],"span":[205,2,68]},{"path":[4,9,2,31,4],"span":[205,2,10]},{"path":[4,9,2,31,6],"span":[205,11,39]},{"path":[4,9,2,31,1],"span":[205,40,62]},{"path":[4,9,2,31,3],"span":[205,65,67]},{"path":[4,9,2,32],"span":[206,2,68]},{"path":[4,9,2,32,4],"span":[206,2,10]},{"path":[4,9,2,32,6],"span":[206,11,39]},{"path":[4,9,2,32,1],"span":[206,40,62]},{"path":[4,9,2,32,3],"span":[206,65,67]},{"path":[4,9,2,33],"span":[210,2,27],"leadingComments":" OS\n"},{"path":[4,9,2,33,4],"span":[210,2,10]},{"path":[4,9,2,33,6],"span":[210,11,15]},{"path":[4,9,2,33,1],"span":[210,16,20]},{"path":[4,9,2,33,3],"span":[210,23,26]},{"path":[4,9,2,34],"span":[211,2,47]},{"path":[4,9,2,34,4],"span":[211,2,10]},{"path":[4,9,2,34,6],"span":[211,11,31]},{"path":[4,9,2,34,1],"span":[211,32,40]},{"path":[4,9,2,34,3],"span":[211,43,46]},{"path":[4,9,2,35],"span":[212,2,51]},{"path":[4,9,2,35,4],"span":[212,2,10]},{"path":[4,9,2,35,6],"span":[212,11,33]},{"path":[4,9,2,35,1],"span":[212,34,44]},{"path":[4,9,2,35,3],"span":[212,47,50]},{"path":[4,9,2,36],"span":[213,2,53]},{"path":[4,9,2,36,4],"span":[213,2,10]},{"path":[4,9,2,36,6],"span":[213,11,34]},{"path":[4,9,2,36,1],"span":[213,35,46]},{"path":[4,9,2,36,3],"span":[213,49,52]},{"path":[4,9,2,37],"span":[214,2,51]},{"path":[4,9,2,37,4],"span":[214,2,10]},{"path":[4,9,2,37,6],"span":[214,11,33]},{"path":[4,9,2,37,1],"span":[214,34,44]},{"path":[4,9,2,37,3],"span":[214,47,50]},{"path":[4,9,2,38],"span":[215,2,63]},{"path":[4,9,2,38,4],"span":[215,2,10]},{"path":[4,9,2,38,6],"span":[215,11,32]},{"path":[4,9,2,38,1],"span":[215,33,56]},{"path":[4,9,2,38,3],"span":[215,59,62]},{"path":[4,9,2,39],"span":[216,2,51]},{"path":[4,9,2,39,4],"span":[216,2,10]},{"path":[4,9,2,39,6],"span":[216,11,34]},{"path":[4,9,2,39,1],"span":[216,35,44]},{"path":[4,9,2,39,3],"span":[216,47,50]},{"path":[4,9,2,40],"span":[219,2,54],"leadingComments":" SW\n"},{"path":[4,9,2,40,4],"span":[219,2,10]},{"path":[4,9,2,40,6],"span":[219,11,28]},{"path":[4,9,2,40,1],"span":[219,29,47]},{"path":[4,9,2,40,3],"span":[219,50,53]},{"path":[4,9,2,41],"span":[220,2,45]},{"path":[4,9,2,41,4],"span":[220,2,10]},{"path":[4,9,2,41,6],"span":[220,11,28]},{"path":[4,9,2,41,1],"span":[220,29,38]},{"path":[4,9,2,41,3],"span":[220,41,44]},{"path":[4,9,2,42],"span":[221,2,49]},{"path":[4,9,2,42,4],"span":[221,2,10]},{"path":[4,9,2,42,6],"span":[221,11,25]},{"path":[4,9,2,42,1],"span":[221,26,42]},{"path":[4,9,2,42,3],"span":[221,45,48]},{"path":[4,9,2,43],"span":[222,2,40]},{"path":[4,9,2,43,4],"span":[222,2,10]},{"path":[4,9,2,43,6],"span":[222,11,21]},{"path":[4,9,2,43,1],"span":[222,22,33]},{"path":[4,9,2,43,3],"span":[222,36,39]},{"path":[4,9,2,44],"span":[223,2,31]},{"path":[4,9,2,44,4],"span":[223,2,10]},{"path":[4,9,2,44,6],"span":[223,11,17]},{"path":[4,9,2,44,1],"span":[223,18,24]},{"path":[4,9,2,44,3],"span":[223,27,30]},{"path":[4,9,2,45],"span":[224,2,48]},{"path":[4,9,2,45,4],"span":[224,2,10]},{"path":[4,9,2,45,6],"span":[224,11,25]},{"path":[4,9,2,45,1],"span":[224,26,41]},{"path":[4,9,2,45,3],"span":[224,44,47]},{"path":[4,9,2,46],"span":[225,2,48]},{"path":[4,9,2,46,4],"span":[225,2,10]},{"path":[4,9,2,46,6],"span":[225,11,25]},{"path":[4,9,2,46,1],"span":[225,26,41]},{"path":[4,9,2,46,3],"span":[225,44,47]},{"path":[4,9,2,47],"span":[226,2,52],"trailingComments":" specific to IE on Windows\n"},{"path":[4,9,2,47,4],"span":[226,2,10]},{"path":[4,9,2,47,6],"span":[226,11,27]},{"path":[4,9,2,47,1],"span":[226,28,45]},{"path":[4,9,2,47,3],"span":[226,48,51]},{"path":[4,9,2,48],"span":[227,2,53],"trailingComments":" specific to SQL server on Windows\n"},{"path":[4,9,2,48,4],"span":[227,2,10]},{"path":[4,9,2,48,6],"span":[227,11,27]},{"path":[4,9,2,48,1],"span":[227,28,46]},{"path":[4,9,2,48,3],"span":[227,49,52]},{"path":[4,9,2,49],"span":[228,2,69]},{"path":[4,9,2,49,4],"span":[228,2,10]},{"path":[4,9,2,49,6],"span":[228,11,39]},{"path":[4,9,2,49,1],"span":[228,40,62]},{"path":[4,9,2,49,3],"span":[228,65,68]},{"path":[4,9,2,50],"span":[229,2,46]},{"path":[4,9,2,50,4],"span":[229,2,10]},{"path":[4,9,2,50,6],"span":[229,11,24]},{"path":[4,9,2,50,1],"span":[229,25,39]},{"path":[4,9,2,50,3],"span":[229,42,45]},{"path":[4,9,2,51],"span":[230,2,57]},{"path":[4,9,2,51,4],"span":[230,2,10]},{"path":[4,9,2,51,6],"span":[230,11,37]},{"path":[4,9,2,51,1],"span":[230,38,50]},{"path":[4,9,2,51,3],"span":[230,53,56]},{"path":[4,9,2,52],"span":[231,2,54]},{"path":[4,9,2,52,4],"span":[231,2,10]},{"path":[4,9,2,52,6],"span":[231,11,32]},{"path":[4,9,2,52,1],"span":[231,33,47]},{"path":[4,9,2,52,3],"span":[231,50,53]},{"path":[4,9,2,53],"span":[235,2,36],"leadingComments":" USERS AND ACCOUNT\n","trailingComments":" i.e. computer current user\n"},{"path":[4,9,2,53,4],"span":[235,2,10]},{"path":[4,9,2,53,6],"span":[235,11,19]},{"path":[4,9,2,53,1],"span":[235,20,29]},{"path":[4,9,2,53,3],"span":[235,32,35]},{"path":[4,9,2,54],"span":[236,2,34]},{"path":[4,9,2,54,4],"span":[236,2,10]},{"path":[4,9,2,54,6],"span":[236,11,22]},{"path":[4,9,2,54,1],"span":[236,23,27]},{"path":[4,9,2,54,3],"span":[236,30,33]},{"path":[4,9,2,55],"span":[237,2,38]},{"path":[4,9,2,55,4],"span":[237,2,10]},{"path":[4,9,2,55,6],"span":[237,11,20]},{"path":[4,9,2,55,1],"span":[237,21,31]},{"path":[4,9,2,55,3],"span":[237,34,37]},{"path":[4,9,2,56],"span":[238,2,43]},{"path":[4,9,2,56,4],"span":[238,2,10]},{"path":[4,9,2,56,6],"span":[238,11,22]},{"path":[4,9,2,56,1],"span":[238,23,36]},{"path":[4,9,2,56,3],"span":[238,39,42]},{"path":[4,10],"span":[258,0,261,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,10,1],"span":[258,8,11]},{"path":[4,10,2,0],"span":[259,2,17]},{"path":[4,10,2,0,5],"span":[259,2,8]},{"path":[4,10,2,0,1],"span":[259,9,12]},{"path":[4,10,2,0,3],"span":[259,15,16]},{"path":[4,10,2,1],"span":[260,2,28]},{"path":[4,10,2,1,4],"span":[260,2,10]},{"path":[4,10,2,1,5],"span":[260,11,17]},{"path":[4,10,2,1,1],"span":[260,18,23]},{"path":[4,10,2,1,3],"span":[260,26,27]},{"path":[4,11],"span":[268,0,275,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,11,1],"span":[268,8,16]},{"path":[4,11,2,0],"span":[269,2,31],"trailingComments":" if missing, 'self' assumed\n"},{"path":[4,11,2,0,4],"span":[269,2,10]},{"path":[4,11,2,0,6],"span":[269,11,21]},{"path":[4,11,2,0,1],"span":[269,22,26]},{"path":[4,11,2,0,3],"span":[269,29,30]},{"path":[4,11,2,1],"span":[270,2,29],"trailingComments":" if missing, 'self' assumed\n"},{"path":[4,11,2,1,4],"span":[270,2,10]},{"path":[4,11,2,1,6],"span":[270,11,21]},{"path":[4,11,2,1,1],"span":[270,22,24]},{"path":[4,11,2,1,3],"span":[270,27,28]},{"path":[4,11,2,2],"span":[271,2,38]},{"path":[4,11,2,2,6],"span":[271,2,27]},{"path":[4,11,2,2,1],"span":[271,28,33]},{"path":[4,11,2,2,3],"span":[271,36,37]},{"path":[4,11,2,3],"span":[272,2,45],"trailingComments":" if end is marked, it's over\n"},{"path":[4,11,2,3,4],"span":[272,2,10]},{"path":[4,11,2,3,6],"span":[272,11,36]},{"path":[4,11,2,3,1],"span":[272,37,40]},{"path":[4,11,2,3,3],"span":[272,43,44]},{"path":[4,11,2,4],"span":[273,2,18]},{"path":[4,11,2,4,5],"span":[273,2,8]},{"path":[4,11,2,4,1],"span":[273,9,13]},{"path":[4,11,2,4,3],"span":[273,16,17]},{"path":[4,11,2,5],"span":[274,2,23]},{"path":[4,11,2,5,4],"span":[274,2,10]},{"path":[4,11,2,5,6],"span":[274,11,14]},{"path":[4,11,2,5,1],"span":[274,15,18]},{"path":[4,11,2,5,3],"span":[274,21,22]},{"path":[4,12],"span":[285,0,292,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,12,1],"span":[285,8,19]},{"path":[4,12,2,0],"span":[286,2,31]},{"path":[4,12,2,0,6],"span":[286,2,21]},{"path":[4,12,2,0,1],"span":[286,22,26]},{"path":[4,12,2,0,3],"span":[286,29,30]},{"path":[4,12,2,1],"span":[287,2,28]},{"path":[4,12,2,1,5],"span":[287,2,8]},{"path":[4,12,2,1,1],"span":[287,9,23]},{"path":[4,12,2,1,3],"span":[287,26,27]},{"path":[4,12,2,2],"span":[288,2,28]},{"path":[4,12,2,2,5],"span":[288,2,8]},{"path":[4,12,2,2,1],"span":[288,9,23]},{"path":[4,12,2,2,3],"span":[288,26,27]},{"path":[4,12,2,3],"span":[289,2,32]},{"path":[4,12,2,3,4],"span":[289,2,10]},{"path":[4,12,2,3,5],"span":[289,11,17]},{"path":[4,12,2,3,1],"span":[289,18,27]},{"path":[4,12,2,3,3],"span":[289,30,31]},{"path":[4,12,2,4],"span":[290,2,30]},{"path":[4,12,2,4,5],"span":[290,2,8]},{"path":[4,12,2,4,1],"span":[290,9,25]},{"path":[4,12,2,4,3],"span":[290,28,29]},{"path":[4,12,2,5],"span":[291,2,22]},{"path":[4,12,2,5,5],"span":[291,2,8]},{"path":[4,12,2,5,1],"span":[291,9,17]},{"path":[4,12,2,5,3],"span":[291,20,21]},{"path":[4,13],"span":[302,0,317,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,13,1],"span":[302,8,16]},{"path":[4,13,2,0],"span":[303,2,37]},{"path":[4,13,2,0,4],"span":[303,2,10]},{"path":[4,13,2,0,5],"span":[303,11,17]},{"path":[4,13,2,0,1],"span":[303,18,32]},{"path":[4,13,2,0,3],"span":[303,35,36]},{"path":[4,13,2,1],"span":[304,2,38]},{"path":[4,13,2,1,4],"span":[304,2,10]},{"path":[4,13,2,1,6],"span":[304,11,22]},{"path":[4,13,2,1,1],"span":[304,23,33]},{"path":[4,13,2,1,3],"span":[304,36,37]},{"path":[4,13,2,2],"span":[306,2,26]},{"path":[4,13,2,2,5],"span":[306,2,6]},{"path":[4,13,2,2,1],"span":[306,7,21]},{"path":[4,13,2,2,3],"span":[306,24,25]},{"path":[4,13,2,3],"span":[308,2,34]},{"path":[4,13,2,3,4],"span":[308,2,10]},{"path":[4,13,2,3,5],"span":[308,11,17]},{"path":[4,13,2,3,1],"span":[308,18,29]},{"path":[4,13,2,3,3],"span":[308,32,33]},{"path":[4,13,2,4],"span":[309,2,40]},{"path":[4,13,2,4,4],"span":[309,2,10]},{"path":[4,13,2,4,6],"span":[309,11,26]},{"path":[4,13,2,4,1],"span":[309,27,35]},{"path":[4,13,2,4,3],"span":[309,38,39]},{"path":[4,13,2,5],"span":[311,2,33]},{"path":[4,13,2,5,4],"span":[311,2,10]},{"path":[4,13,2,5,5],"span":[311,11,17]},{"path":[4,13,2,5,1],"span":[311,18,28]},{"path":[4,13,2,5,3],"span":[311,31,32]},{"path":[4,13,2,6],"span":[313,2,27]},{"path":[4,13,2,6,5],"span":[313,2,6]},{"path":[4,13,2,6,1],"span":[313,7,22]},{"path":[4,13,2,6,3],"span":[313,25,26]},{"path":[4,13,2,7],"span":[314,2,36]},{"path":[4,13,2,7,4],"span":[314,2,10]},{"path":[4,13,2,7,5],"span":[314,11,17]},{"path":[4,13,2,7,1],"span":[314,18,31]},{"path":[4,13,2,7,3],"span":[314,34,35]},{"path":[4,13,2,8],"span":[315,2,36]},{"path":[4,13,2,8,4],"span":[315,2,10]},{"path":[4,13,2,8,6],"span":[315,11,21]},{"path":[4,13,2,8,1],"span":[315,22,31]},{"path":[4,13,2,8,3],"span":[315,34,35]},{"path":[4,13,2,9],"span":[316,2,45]},{"path":[4,13,2,9,4],"span":[316,2,10]},{"path":[4,13,2,9,6],"span":[316,11,28]},{"path":[4,13,2,9,1],"span":[316,29,39]},{"path":[4,13,2,9,3],"span":[316,42,44]},{"path":[4,14],"span":[320,0,328,1],"leadingComments":" Information about the OT rack the module is plugged into\n"},{"path":[4,14,1],"span":[320,8,19]},{"path":[4,14,2,0],"span":[321,2,19]},{"path":[4,14,2,0,5],"span":[321,2,7]},{"path":[4,14,2,0,1],"span":[321,8,14]},{"path":[4,14,2,0,3],"span":[321,17,18]},{"path":[4,14,2,1],"span":[322,2,27]},{"path":[4,14,2,1,4],"span":[322,2,10]},{"path":[4,14,2,1,5],"span":[322,11,17]},{"path":[4,14,2,1,1],"span":[322,18,22]},{"path":[4,14,2,1,3],"span":[322,25,26]},{"path":[4,14,2,2],"span":[323,2,27]},{"path":[4,14,2,2,4],"span":[323,2,10]},{"path":[4,14,2,2,5],"span":[323,11,17]},{"path":[4,14,2,2,1],"span":[323,18,22]},{"path":[4,14,2,2,3],"span":[323,25,26]},{"path":[4,14,2,3],"span":[324,2,17]},{"path":[4,14,2,3,5],"span":[324,2,7]},{"path":[4,14,2,3,1],"span":[324,8,12]},{"path":[4,14,2,3,3],"span":[324,15,16]},{"path":[4,14,2,4],"span":[325,2,24]},{"path":[4,14,2,4,5],"span":[325,2,7]},{"path":[4,14,2,4,1],"span":[325,8,19]},{"path":[4,14,2,4,3],"span":[325,22,23]},{"path":[4,14,2,5],"span":[326,2,30],"trailingComments":" the specific slot number for this module in the rack\n"},{"path":[4,14,2,5,4],"span":[326,2,10]},{"path":[4,14,2,5,5],"span":[326,11,16]},{"path":[4,14,2,5,1],"span":[326,17,25]},{"path":[4,14,2,5,3],"span":[326,28,29]},{"path":[4,14,2,6],"span":[327,2,27],"trailingComments":" the specific slot width for this module in the rack\n"},{"path":[4,14,2,6,4],"span":[327,2,10]},{"path":[4,14,2,6,5],"span":[327,11,16]},{"path":[4,14,2,6,1],"span":[327,17,22]},{"path":[4,14,2,6,3],"span":[327,25,26]},{"path":[4,15],"span":[330,0,333,1]},{"path":[4,15,1],"span":[330,8,23]},{"path":[4,15,2,0],"span":[331,2,17]},{"path":[4,15,2,0,5],"span":[331,2,8]},{"path":[4,15,2,0,1],"span":[331,9,12]},{"path":[4,15,2,0,3],"span":[331,15,16]},{"path":[4,15,2,1],"span":[332,2,19]},{"path":[4,15,2,1,5],"span":[332,2,8]},{"path":[4,15,2,1,1],"span":[332,9,14]},{"path":[4,15,2,1,3],"span":[332,17,18]},{"path":[4,16],"span":[336,0,347,1],"leadingComments":" Information about the Scan config and last run of OT scan\n"},{"path":[4,16,1],"span":[336,8,18]},{"path":[4,16,2,0],"span":[337,2,37]},{"path":[4,16,2,0,4],"span":[337,2,10]},{"path":[4,16,2,0,5],"span":[337,11,17]},{"path":[4,16,2,0,1],"span":[337,18,32]},{"path":[4,16,2,0,3],"span":[337,35,36]},{"path":[4,16,2,1],"span":[338,2,39]},{"path":[4,16,2,1,4],"span":[338,2,10]},{"path":[4,16,2,1,5],"span":[338,11,17]},{"path":[4,16,2,1,1],"span":[338,18,34]},{"path":[4,16,2,1,3],"span":[338,37,38]},{"path":[4,16,2,2],"span":[339,2,32]},{"path":[4,16,2,2,4],"span":[339,2,10]},{"path":[4,16,2,2,5],"span":[339,11,17]},{"path":[4,16,2,2,1],"span":[339,18,27]},{"path":[4,16,2,2,3],"span":[339,30,31]},{"path":[4,16,2,3],"span":[340,2,34]},{"path":[4,16,2,3,4],"span":[340,2,10]},{"path":[4,16,2,3,5],"span":[340,11,17]},{"path":[4,16,2,3,1],"span":[340,18,29]},{"path":[4,16,2,3,3],"span":[340,32,33]},{"path":[4,16,2,4],"span":[341,2,34]},{"path":[4,16,2,4,4],"span":[341,2,10]},{"path":[4,16,2,4,5],"span":[341,11,17]},{"path":[4,16,2,4,1],"span":[341,18,29]},{"path":[4,16,2,4,3],"span":[341,32,33]},{"path":[4,16,2,5],"span":[342,2,36]},{"path":[4,16,2,5,4],"span":[342,2,10]},{"path":[4,16,2,5,5],"span":[342,11,17]},{"path":[4,16,2,5,1],"span":[342,18,31]},{"path":[4,16,2,5,3],"span":[342,34,35]},{"path":[4,16,2,6],"span":[343,2,26]},{"path":[4,16,2,6,4],"span":[343,2,10]},{"path":[4,16,2,6,5],"span":[343,11,16]},{"path":[4,16,2,6,1],"span":[343,17,21]},{"path":[4,16,2,6,3],"span":[343,24,25]},{"path":[4,16,2,7],"span":[344,2,39]},{"path":[4,16,2,7,4],"span":[344,2,10]},{"path":[4,16,2,7,5],"span":[344,11,17]},{"path":[4,16,2,7,1],"span":[344,18,34]},{"path":[4,16,2,7,3],"span":[344,37,38]},{"path":[4,16,2,8],"span":[345,2,52]},{"path":[4,16,2,8,4],"span":[345,2,10]},{"path":[4,16,2,8,6],"span":[345,11,36]},{"path":[4,16,2,8,1],"span":[345,37,47]},{"path":[4,16,2,8,3],"span":[345,50,51]},{"path":[4,16,2,9],"span":[346,2,52]},{"path":[4,16,2,9,4],"span":[346,2,10]},{"path":[4,16,2,9,6],"span":[346,11,36]},{"path":[4,16,2,9,1],"span":[346,37,46]},{"path":[4,16,2,9,3],"span":[346,49,51]},{"path":[4,17],"span":[350,0,354,1],"leadingComments":" Information about OT firmware history\n"},{"path":[4,17,1],"span":[350,8,25]},{"path":[4,17,2,0],"span":[351,2,22]},{"path":[4,17,2,0,5],"span":[351,2,8]},{"path":[4,17,2,0,1],"span":[351,9,17]},{"path":[4,17,2,0,3],"span":[351,20,21]},{"path":[4,17,2,1],"span":[352,2,37]},{"path":[4,17,2,1,6],"span":[352,2,27]},{"path":[4,17,2,1,1],"span":[352,28,32]},{"path":[4,17,2,1,3],"span":[352,35,36]},{"path":[4,17,2,2],"span":[353,2,38]},{"path":[4,17,2,2,6],"span":[353,2,27]},{"path":[4,17,2,2,1],"span":[353,28,33]},{"path":[4,17,2,2,3],"span":[353,36,37]},{"path":[4,18],"span":[360,0,368,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,18,1],"span":[360,8,17]},{"path":[4,18,2,0],"span":[362,2,21],"leadingComments":" Lansweeper Asset Type. Full list available here: /lansweeperapis/packages/model/masterData/content/masterData.json\n"},{"path":[4,18,2,0,5],"span":[362,2,8]},{"path":[4,18,2,0,1],"span":[362,9,16]},{"path":[4,18,2,0,3],"span":[362,19,20]},{"path":[4,18,2,1],"span":[364,2,18],"leadingComments":" Lansweeper type ID\n"},{"path":[4,18,2,1,5],"span":[364,2,7]},{"path":[4,18,2,1,1],"span":[364,8,13]},{"path":[4,18,2,1,3],"span":[364,16,17]},{"path":[4,18,2,2],"span":[366,2,32],"leadingComments":" Fing Type\n"},{"path":[4,18,2,2,4],"span":[366,2,10]},{"path":[4,18,2,2,5],"span":[366,11,17]},{"path":[4,18,2,2,1],"span":[366,18,27]},{"path":[4,18,2,2,3],"span":[366,30,31]},{"path":[4,18,2,3],"span":[367,2,31],"trailingComments":" sub type for OT and CDK\n"},{"path":[4,18,2,3,4],"span":[367,2,10]},{"path":[4,18,2,3,5],"span":[367,11,17]},{"path":[4,18,2,3,1],"span":[367,18,26]},{"path":[4,18,2,3,3],"span":[367,29,30]},{"path":[4,19],"span":[375,0,383,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,19,1],"span":[375,8,18]},{"path":[4,19,2,0],"span":[376,2,23],"trailingComments":" source id, like installation id of IT\n"},{"path":[4,19,2,0,5],"span":[376,2,8]},{"path":[4,19,2,0,1],"span":[376,9,18]},{"path":[4,19,2,0,3],"span":[376,21,22]},{"path":[4,19,2,1],"span":[377,2,25],"trailingComments":" source type like e.g. IT\n"},{"path":[4,19,2,1,5],"span":[377,2,8]},{"path":[4,19,2,1,1],"span":[377,9,20]},{"path":[4,19,2,1,3],"span":[377,23,24]},{"path":[4,19,2,2],"span":[378,2,35],"trailingComments":" source agent name and version\n"},{"path":[4,19,2,2,4],"span":[378,2,10]},{"path":[4,19,2,2,5],"span":[378,11,17]},{"path":[4,19,2,2,1],"span":[378,18,30]},{"path":[4,19,2,2,3],"span":[378,33,34]},{"path":[4,19,2,3],"span":[379,2,34],"trailingComments":" source name\n"},{"path":[4,19,2,3,4],"span":[379,2,10]},{"path":[4,19,2,3,5],"span":[379,11,17]},{"path":[4,19,2,3,1],"span":[379,18,29]},{"path":[4,19,2,3,3],"span":[379,32,33]},{"path":[4,19,2,4],"span":[380,2,20],"trailingComments":" entity/asset raw id for source\n"},{"path":[4,19,2,4,5],"span":[380,2,8]},{"path":[4,19,2,4,1],"span":[380,9,15]},{"path":[4,19,2,4,3],"span":[380,18,19]},{"path":[4,19,2,5],"span":[381,2,44],"trailingComments":" later here we could also have a summary of errors, if needed to keep history\n"},{"path":[4,19,2,5,6],"span":[381,2,27]},{"path":[4,19,2,5,1],"span":[381,28,39]},{"path":[4,19,2,5,3],"span":[381,42,43]},{"path":[4,20],"span":[388,0,394,1],"leadingComments":"\n Scan errors.\n"},{"path":[4,20,1],"span":[388,8,17]},{"path":[4,20,2,0],"span":[389,2,21],"trailingComments":" name of section\n"},{"path":[4,20,2,0,5],"span":[389,2,8]},{"path":[4,20,2,0,1],"span":[389,9,16]},{"path":[4,20,2,0,3],"span":[389,19,20]},{"path":[4,20,2,1],"span":[390,2,19],"trailingComments":" error descr\n"},{"path":[4,20,2,1,5],"span":[390,2,8]},{"path":[4,20,2,1,1],"span":[390,9,14]},{"path":[4,20,2,1,3],"span":[390,17,18]},{"path":[4,20,2,2],"span":[391,2,29],"trailingComments":" e.g. \"WMI\"\n"},{"path":[4,20,2,2,4],"span":[391,2,10]},{"path":[4,20,2,2,5],"span":[391,11,17]},{"path":[4,20,2,2,1],"span":[391,18,24]},{"path":[4,20,2,2,3],"span":[391,27,28]},{"path":[4,20,2,3],"span":[392,2,51]},{"path":[4,20,2,3,4],"span":[392,2,10]},{"path":[4,20,2,3,6],"span":[392,11,36]},{"path":[4,20,2,3,1],"span":[392,37,46]},{"path":[4,20,2,3,3],"span":[392,49,50]},{"path":[4,20,2,4],"span":[393,2,30]},{"path":[4,20,2,4,4],"span":[393,2,10]},{"path":[4,20,2,4,5],"span":[393,11,16]},{"path":[4,20,2,4,1],"span":[393,17,25]},{"path":[4,20,2,4,3],"span":[393,28,29]},{"path":[4,21],"span":[399,0,416,1],"leadingComments":"\n Core Fields for all Assets.\n"},{"path":[4,21,1],"span":[399,8,18]},{"path":[4,21,2,0],"span":[400,2,21]},{"path":[4,21,2,0,6],"span":[400,2,11]},{"path":[4,21,2,0,1],"span":[400,12,16]},{"path":[4,21,2,0,3],"span":[400,19,20]},{"path":[4,21,2,1],"span":[401,2,18]},{"path":[4,21,2,1,5],"span":[401,2,8]},{"path":[4,21,2,1,1],"span":[401,9,13]},{"path":[4,21,2,1,3],"span":[401,16,17]},{"path":[4,21,2,2],"span":[402,2,29]},{"path":[4,21,2,2,4],"span":[402,2,10]},{"path":[4,21,2,2,5],"span":[402,11,17]},{"path":[4,21,2,2,1],"span":[402,18,24]},{"path":[4,21,2,2,3],"span":[402,27,28]},{"path":[4,21,2,3],"span":[403,2,33]},{"path":[4,21,2,3,4],"span":[403,2,10]},{"path":[4,21,2,3,5],"span":[403,11,17]},{"path":[4,21,2,3,1],"span":[403,18,28]},{"path":[4,21,2,3,3],"span":[403,31,32]},{"path":[4,21,2,4],"span":[404,2,29]},{"path":[4,21,2,4,4],"span":[404,2,10]},{"path":[4,21,2,4,5],"span":[404,11,17]},{"path":[4,21,2,4,1],"span":[404,18,24]},{"path":[4,21,2,4,3],"span":[404,27,28]},{"path":[4,21,2,5],"span":[405,2,26]},{"path":[4,21,2,5,4],"span":[405,2,10]},{"path":[4,21,2,5,5],"span":[405,11,17]},{"path":[4,21,2,5,1],"span":[405,18,21]},{"path":[4,21,2,5,3],"span":[405,24,25]},{"path":[4,21,2,6],"span":[406,2,33]},{"path":[4,21,2,6,4],"span":[406,2,10]},{"path":[4,21,2,6,5],"span":[406,11,17]},{"path":[4,21,2,6,1],"span":[406,18,28]},{"path":[4,21,2,6,3],"span":[406,31,32]},{"path":[4,21,2,7],"span":[407,2,32]},{"path":[4,21,2,7,4],"span":[407,2,10]},{"path":[4,21,2,7,5],"span":[407,11,17]},{"path":[4,21,2,7,1],"span":[407,18,27]},{"path":[4,21,2,7,3],"span":[407,30,31]},{"path":[4,21,2,8],"span":[408,2,27]},{"path":[4,21,2,8,4],"span":[408,2,10]},{"path":[4,21,2,8,5],"span":[408,11,17]},{"path":[4,21,2,8,1],"span":[408,18,22]},{"path":[4,21,2,8,3],"span":[408,25,26]},{"path":[4,21,2,9],"span":[415,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,21,2,9,5],"span":[415,2,7]},{"path":[4,21,2,9,1],"span":[415,8,18]},{"path":[4,21,2,9,3],"span":[415,21,23]},{"path":[4,22],"span":[418,0,423,1]},{"path":[4,22,1],"span":[418,8,16]},{"path":[4,22,2,0],"span":[419,4,25]},{"path":[4,22,2,0,5],"span":[419,4,10]},{"path":[4,22,2,0,1],"span":[419,11,20]},{"path":[4,22,2,0,3],"span":[419,23,24]},{"path":[4,22,2,1],"span":[420,4,34]},{"path":[4,22,2,1,4],"span":[420,4,12]},{"path":[4,22,2,1,5],"span":[420,13,19]},{"path":[4,22,2,1,1],"span":[420,20,29]},{"path":[4,22,2,1,3],"span":[420,32,33]},{"path":[4,22,2,2],"span":[421,4,28]},{"path":[4,22,2,2,4],"span":[421,4,12]},{"path":[4,22,2,2,5],"span":[421,13,19]},{"path":[4,22,2,2,1],"span":[421,20,23]},{"path":[4,22,2,2,3],"span":[421,26,27]},{"path":[4,22,2,3],"span":[422,4,28]},{"path":[4,22,2,3,4],"span":[422,4,12]},{"path":[4,22,2,3,5],"span":[422,13,19]},{"path":[4,22,2,3,1],"span":[422,20,23]},{"path":[4,22,2,3,3],"span":[422,26,27]},{"path":[4,23],"span":[428,0,455,1],"leadingComments":"\n User account: from Windows.WindowsUser and Unix.Users.\n"},{"path":[4,23,1],"span":[428,8,19]},{"path":[4,23,2,0],"span":[429,2,27],"trailingComments":" unix:user_name\n"},{"path":[4,23,2,0,4],"span":[429,2,10]},{"path":[4,23,2,0,5],"span":[429,11,17]},{"path":[4,23,2,0,1],"span":[429,18,22]},{"path":[4,23,2,0,3],"span":[429,25,26]},{"path":[4,23,2,1],"span":[430,2,29]},{"path":[4,23,2,1,4],"span":[430,2,10]},{"path":[4,23,2,1,5],"span":[430,11,17]},{"path":[4,23,2,1,1],"span":[430,18,24]},{"path":[4,23,2,1,3],"span":[430,27,28]},{"path":[4,23,2,2],"span":[431,2,30]},{"path":[4,23,2,2,4],"span":[431,2,10]},{"path":[4,23,2,2,5],"span":[431,11,17]},{"path":[4,23,2,2,1],"span":[431,18,25]},{"path":[4,23,2,2,3],"span":[431,28,29]},{"path":[4,23,2,3],"span":[432,2,34],"trailingComments":" unix:comment\n"},{"path":[4,23,2,3,4],"span":[432,2,10]},{"path":[4,23,2,3,5],"span":[432,11,17]},{"path":[4,23,2,3,1],"span":[432,18,29]},{"path":[4,23,2,3,3],"span":[432,32,33]},{"path":[4,23,2,4],"span":[433,2,32]},{"path":[4,23,2,4,4],"span":[433,2,10]},{"path":[4,23,2,4,5],"span":[433,11,17]},{"path":[4,23,2,4,1],"span":[433,18,27]},{"path":[4,23,2,4,3],"span":[433,30,31]},{"path":[4,23,2,5],"span":[435,2,40],"trailingComments":" unix:type\n"},{"path":[4,23,2,5,4],"span":[435,2,10]},{"path":[4,23,2,5,6],"span":[435,11,22]},{"path":[4,23,2,5,1],"span":[435,23,35]},{"path":[4,23,2,5,3],"span":[435,38,39]},{"path":[4,23,2,6],"span":[437,2,26]},{"path":[4,23,2,6,4],"span":[437,2,10]},{"path":[4,23,2,6,5],"span":[437,11,17]},{"path":[4,23,2,6,1],"span":[437,18,21]},{"path":[4,23,2,6,3],"span":[437,24,25]},{"path":[4,23,2,7],"span":[438,2,36]},{"path":[4,23,2,7,4],"span":[438,2,10]},{"path":[4,23,2,7,6],"span":[438,11,22]},{"path":[4,23,2,7,1],"span":[438,23,31]},{"path":[4,23,2,7,3],"span":[438,34,35]},{"path":[4,23,2,8],"span":[440,2,34]},{"path":[4,23,2,8,4],"span":[440,2,10]},{"path":[4,23,2,8,5],"span":[440,11,15]},{"path":[4,23,2,8,1],"span":[440,16,29]},{"path":[4,23,2,8,3],"span":[440,32,33]},{"path":[4,23,2,9],"span":[441,2,30]},{"path":[4,23,2,9,4],"span":[441,2,10]},{"path":[4,23,2,9,5],"span":[441,11,15]},{"path":[4,23,2,9,1],"span":[441,16,24]},{"path":[4,23,2,9,3],"span":[441,27,29]},{"path":[4,23,2,10],"span":[442,2,29]},{"path":[4,23,2,10,4],"span":[442,2,10]},{"path":[4,23,2,10,5],"span":[442,11,15]},{"path":[4,23,2,10,1],"span":[442,16,23]},{"path":[4,23,2,10,3],"span":[442,26,28]},{"path":[4,23,2,11],"span":[443,2,41]},{"path":[4,23,2,11,4],"span":[443,2,10]},{"path":[4,23,2,11,5],"span":[443,11,15]},{"path":[4,23,2,11,1],"span":[443,16,35]},{"path":[4,23,2,11,3],"span":[443,38,40]},{"path":[4,23,2,12],"span":[444,2,38]},{"path":[4,23,2,12,4],"span":[444,2,10]},{"path":[4,23,2,12,5],"span":[444,11,15]},{"path":[4,23,2,12,1],"span":[444,16,32]},{"path":[4,23,2,12,3],"span":[444,35,37]},{"path":[4,23,2,13],"span":[445,2,39]},{"path":[4,23,2,13,4],"span":[445,2,10]},{"path":[4,23,2,13,5],"span":[445,11,15]},{"path":[4,23,2,13,1],"span":[445,16,33]},{"path":[4,23,2,13,3],"span":[445,36,38]},{"path":[4,23,2,14],"span":[447,2,30]},{"path":[4,23,2,14,4],"span":[447,2,10]},{"path":[4,23,2,14,5],"span":[447,11,17]},{"path":[4,23,2,14,1],"span":[447,18,24]},{"path":[4,23,2,14,3],"span":[447,27,29]},{"path":[4,23,2,15],"span":[450,2,30],"leadingComments":" unix specific\n"},{"path":[4,23,2,15,4],"span":[450,2,10]},{"path":[4,23,2,15,5],"span":[450,11,16]},{"path":[4,23,2,15,1],"span":[450,17,24]},{"path":[4,23,2,15,3],"span":[450,27,29]},{"path":[4,23,2,16],"span":[451,2,31]},{"path":[4,23,2,16,4],"span":[451,2,10]},{"path":[4,23,2,16,5],"span":[451,11,16]},{"path":[4,23,2,16,1],"span":[451,17,25]},{"path":[4,23,2,16,3],"span":[451,28,30]},{"path":[4,23,2,17],"span":[453,2,38]},{"path":[4,23,2,17,4],"span":[453,2,10]},{"path":[4,23,2,17,5],"span":[453,11,17]},{"path":[4,23,2,17,1],"span":[453,18,32]},{"path":[4,23,2,17,3],"span":[453,35,37]},{"path":[4,23,2,18],"span":[454,2,35]},{"path":[4,23,2,18,4],"span":[454,2,10]},{"path":[4,23,2,18,5],"span":[454,11,17]},{"path":[4,23,2,18,1],"span":[454,18,29]},{"path":[4,23,2,18,3],"span":[454,32,34]},{"path":[4,24],"span":[461,0,473,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,24,1],"span":[461,8,17]},{"path":[4,24,2,0],"span":[462,2,27]},{"path":[4,24,2,0,4],"span":[462,2,10]},{"path":[4,24,2,0,5],"span":[462,11,17]},{"path":[4,24,2,0,1],"span":[462,18,22]},{"path":[4,24,2,0,3],"span":[462,25,26]},{"path":[4,24,2,1],"span":[463,2,30]},{"path":[4,24,2,1,4],"span":[463,2,10]},{"path":[4,24,2,1,5],"span":[463,11,17]},{"path":[4,24,2,1,1],"span":[463,18,25]},{"path":[4,24,2,1,3],"span":[463,28,29]},{"path":[4,24,2,2],"span":[464,2,34]},{"path":[4,24,2,2,4],"span":[464,2,10]},{"path":[4,24,2,2,5],"span":[464,11,17]},{"path":[4,24,2,2,1],"span":[464,18,29]},{"path":[4,24,2,2,3],"span":[464,32,33]},{"path":[4,24,2,3],"span":[465,2,29]},{"path":[4,24,2,3,4],"span":[465,2,10]},{"path":[4,24,2,3,5],"span":[465,11,17]},{"path":[4,24,2,3,1],"span":[465,18,24]},{"path":[4,24,2,3,3],"span":[465,27,28]},{"path":[4,24,2,4],"span":[467,2,26]},{"path":[4,24,2,4,4],"span":[467,2,10]},{"path":[4,24,2,4,5],"span":[467,11,17]},{"path":[4,24,2,4,1],"span":[467,18,21]},{"path":[4,24,2,4,3],"span":[467,24,25]},{"path":[4,24,2,5],"span":[468,2,34]},{"path":[4,24,2,5,4],"span":[468,2,10]},{"path":[4,24,2,5,5],"span":[468,11,15]},{"path":[4,24,2,5,1],"span":[468,16,29]},{"path":[4,24,2,5,3],"span":[468,32,33]},{"path":[4,24,2,6],"span":[471,2,30],"leadingComments":" unix specific\n"},{"path":[4,24,2,6,4],"span":[471,2,10]},{"path":[4,24,2,6,5],"span":[471,11,16]},{"path":[4,24,2,6,1],"span":[471,17,25]},{"path":[4,24,2,6,3],"span":[471,28,29]},{"path":[4,24,2,7],"span":[472,2,27]},{"path":[4,24,2,7,4],"span":[472,2,10]},{"path":[4,24,2,7,5],"span":[472,11,17]},{"path":[4,24,2,7,1],"span":[472,18,22]},{"path":[4,24,2,7,3],"span":[472,25,26]},{"path":[4,25],"span":[480,0,487,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,25,1],"span":[480,8,19]},{"path":[4,25,2,0],"span":[481,2,33]},{"path":[4,25,2,0,4],"span":[481,2,10]},{"path":[4,25,2,0,5],"span":[481,11,17]},{"path":[4,25,2,0,1],"span":[481,18,28]},{"path":[4,25,2,0,3],"span":[481,31,32]},{"path":[4,25,2,1],"span":[482,2,32]},{"path":[4,25,2,1,4],"span":[482,2,10]},{"path":[4,25,2,1,5],"span":[482,11,17]},{"path":[4,25,2,1,1],"span":[482,18,27]},{"path":[4,25,2,1,3],"span":[482,30,31]},{"path":[4,25,2,2],"span":[483,2,39]},{"path":[4,25,2,2,4],"span":[483,2,10]},{"path":[4,25,2,2,5],"span":[483,11,17]},{"path":[4,25,2,2,1],"span":[483,18,34]},{"path":[4,25,2,2,3],"span":[483,37,38]},{"path":[4,25,2,3],"span":[484,2,35]},{"path":[4,25,2,3,4],"span":[484,2,10]},{"path":[4,25,2,3,5],"span":[484,11,17]},{"path":[4,25,2,3,1],"span":[484,18,30]},{"path":[4,25,2,3,3],"span":[484,33,34]},{"path":[4,25,2,4],"span":[486,2,35]},{"path":[4,25,2,4,4],"span":[486,2,10]},{"path":[4,25,2,4,5],"span":[486,11,15]},{"path":[4,25,2,4,1],"span":[486,16,30]},{"path":[4,25,2,4,3],"span":[486,33,34]},{"path":[4,26],"span":[494,0,531,1],"leadingComments":"\n IE on Windows. Very specific.\n From sections: WindowsActiveX, WindowsInternetExplorerBarInfo,\n WindowsInternetExplorerBrowserObjectInfo, WindowsInternetExplorerExtensionInfo.\n"},{"path":[4,26,1],"span":[494,8,24]},{"path":[4,26,3,0],"span":[496,4,501,5],"leadingComments":" from WindowsActiveX\n"},{"path":[4,26,3,0,1],"span":[496,12,19]},{"path":[4,26,3,0,2,0],"span":[497,6,34]},{"path":[4,26,3,0,2,0,4],"span":[497,6,14]},{"path":[4,26,3,0,2,0,5],"span":[497,15,21]},{"path":[4,26,3,0,2,0,1],"span":[497,22,29]},{"path":[4,26,3,0,2,0,3],"span":[497,32,33]},{"path":[4,26,3,0,2,1],"span":[498,6,36]},{"path":[4,26,3,0,2,1,4],"span":[498,6,14]},{"path":[4,26,3,0,2,1,5],"span":[498,15,21]},{"path":[4,26,3,0,2,1,1],"span":[498,22,31]},{"path":[4,26,3,0,2,1,3],"span":[498,34,35]},{"path":[4,26,3,0,2,2],"span":[499,6,31]},{"path":[4,26,3,0,2,2,4],"span":[499,6,14]},{"path":[4,26,3,0,2,2,5],"span":[499,15,21]},{"path":[4,26,3,0,2,2,1],"span":[499,22,26]},{"path":[4,26,3,0,2,2,3],"span":[499,29,30]},{"path":[4,26,3,0,2,3],"span":[500,6,30]},{"path":[4,26,3,0,2,3,4],"span":[500,6,14]},{"path":[4,26,3,0,2,3,5],"span":[500,15,21]},{"path":[4,26,3,0,2,3,1],"span":[500,22,25]},{"path":[4,26,3,0,2,3,3],"span":[500,28,29]},{"path":[4,26,3,1],"span":[504,4,514,5],"leadingComments":" InternetExplorerExtensionInfo\n"},{"path":[4,26,3,1,1],"span":[504,12,21]},{"path":[4,26,3,1,2,0],"span":[505,6,34]},{"path":[4,26,3,1,2,0,4],"span":[505,6,14]},{"path":[4,26,3,1,2,0,5],"span":[505,15,21]},{"path":[4,26,3,1,2,0,1],"span":[505,22,29]},{"path":[4,26,3,1,2,0,3],"span":[505,32,33]},{"path":[4,26,3,1,2,1],"span":[506,6,38]},{"path":[4,26,3,1,2,1,4],"span":[506,6,14]},{"path":[4,26,3,1,2,1,5],"span":[506,15,21]},{"path":[4,26,3,1,2,1,1],"span":[506,22,33]},{"path":[4,26,3,1,2,1,3],"span":[506,36,37]},{"path":[4,26,3,1,2,2],"span":[507,6,33]},{"path":[4,26,3,1,2,2,4],"span":[507,6,14]},{"path":[4,26,3,1,2,2,5],"span":[507,15,21]},{"path":[4,26,3,1,2,2,1],"span":[507,22,28]},{"path":[4,26,3,1,2,2,3],"span":[507,31,32]},{"path":[4,26,3,1,2,3],"span":[508,6,42]},{"path":[4,26,3,1,2,3,4],"span":[508,6,14]},{"path":[4,26,3,1,2,3,5],"span":[508,15,21]},{"path":[4,26,3,1,2,3,1],"span":[508,22,37]},{"path":[4,26,3,1,2,3,3],"span":[508,40,41]},{"path":[4,26,3,1,2,4],"span":[509,6,31]},{"path":[4,26,3,1,2,4,4],"span":[509,6,14]},{"path":[4,26,3,1,2,4,5],"span":[509,15,21]},{"path":[4,26,3,1,2,4,1],"span":[509,22,26]},{"path":[4,26,3,1,2,4,3],"span":[509,29,30]},{"path":[4,26,3,1,2,5],"span":[510,6,35]},{"path":[4,26,3,1,2,5,4],"span":[510,6,14]},{"path":[4,26,3,1,2,5,5],"span":[510,15,21]},{"path":[4,26,3,1,2,5,1],"span":[510,22,30]},{"path":[4,26,3,1,2,5,3],"span":[510,33,34]},{"path":[4,26,3,1,2,6],"span":[511,6,31]},{"path":[4,26,3,1,2,6,4],"span":[511,6,14]},{"path":[4,26,3,1,2,6,5],"span":[511,15,21]},{"path":[4,26,3,1,2,6,1],"span":[511,22,26]},{"path":[4,26,3,1,2,6,3],"span":[511,29,30]},{"path":[4,26,3,1,2,7],"span":[512,6,36]},{"path":[4,26,3,1,2,7,4],"span":[512,6,14]},{"path":[4,26,3,1,2,7,5],"span":[512,15,21]},{"path":[4,26,3,1,2,7,1],"span":[512,22,31]},{"path":[4,26,3,1,2,7,3],"span":[512,34,35]},{"path":[4,26,3,1,2,8],"span":[513,6,34]},{"path":[4,26,3,1,2,8,4],"span":[513,6,14]},{"path":[4,26,3,1,2,8,5],"span":[513,15,21]},{"path":[4,26,3,1,2,8,1],"span":[513,22,29]},{"path":[4,26,3,1,2,8,3],"span":[513,32,33]},{"path":[4,26,3,2],"span":[517,2,519,3],"leadingComments":" from InternetExplorerBrowserObjectInfo\n"},{"path":[4,26,3,2,1],"span":[517,10,23]},{"path":[4,26,3,2,2,0],"span":[518,4,23]},{"path":[4,26,3,2,2,0,5],"span":[518,4,10]},{"path":[4,26,3,2,2,0,1],"span":[518,11,18]},{"path":[4,26,3,2,2,0,3],"span":[518,21,22]},{"path":[4,26,3,3],"span":[522,2,524,3],"leadingComments":" from WindowsInternetExplorerBarInfo\n"},{"path":[4,26,3,3,1],"span":[522,10,17]},{"path":[4,26,3,3,2,0],"span":[523,4,23]},{"path":[4,26,3,3,2,0,5],"span":[523,4,10]},{"path":[4,26,3,3,2,0,1],"span":[523,11,18]},{"path":[4,26,3,3,2,0,3],"span":[523,21,22]},{"path":[4,26,2,0],"span":[527,2,32]},{"path":[4,26,2,0,4],"span":[527,2,10]},{"path":[4,26,2,0,6],"span":[527,11,18]},{"path":[4,26,2,0,1],"span":[527,19,27]},{"path":[4,26,2,0,3],"span":[527,30,31]},{"path":[4,26,2,1],"span":[528,2,33]},{"path":[4,26,2,1,4],"span":[528,2,10]},{"path":[4,26,2,1,6],"span":[528,11,24]},{"path":[4,26,2,1,1],"span":[528,25,28]},{"path":[4,26,2,1,3],"span":[528,31,32]},{"path":[4,26,2,2],"span":[529,2,44]},{"path":[4,26,2,2,4],"span":[529,2,10]},{"path":[4,26,2,2,6],"span":[529,11,24]},{"path":[4,26,2,2,1],"span":[529,25,39]},{"path":[4,26,2,2,3],"span":[529,42,43]},{"path":[4,26,2,3],"span":[530,2,35]},{"path":[4,26,2,3,4],"span":[530,2,10]},{"path":[4,26,2,3,6],"span":[530,11,20]},{"path":[4,26,2,3,1],"span":[530,21,30]},{"path":[4,26,2,3,3],"span":[530,33,34]},{"path":[4,27],"span":[536,0,560,1],"leadingComments":"\n SQL Server extended information on Windows Computers.\n"},{"path":[4,27,1],"span":[536,8,24]},{"path":[4,27,4,0],"span":[537,2,541,3]},{"path":[4,27,4,0,1],"span":[537,7,28]},{"path":[4,27,4,0,2,0],"span":[538,4,21]},{"path":[4,27,4,0,2,0,1],"span":[538,4,16]},{"path":[4,27,4,0,2,0,2],"span":[538,19,20]},{"path":[4,27,4,0,2,1],"span":[539,4,16]},{"path":[4,27,4,0,2,1,1],"span":[539,4,11]},{"path":[4,27,4,0,2,1,2],"span":[539,14,15]},{"path":[4,27,4,0,2,2],"span":[540,4,14]},{"path":[4,27,4,0,2,2,1],"span":[540,4,9]},{"path":[4,27,4,0,2,2,2],"span":[540,12,13]},{"path":[4,27,2,0],"span":[543,4,26]},{"path":[4,27,2,0,5],"span":[543,4,8]},{"path":[4,27,2,0,1],"span":[543,9,21]},{"path":[4,27,2,0,3],"span":[543,24,25]},{"path":[4,27,2,1],"span":[544,4,54]},{"path":[4,27,2,1,6],"span":[544,4,25]},{"path":[4,27,2,1,1],"span":[544,26,49]},{"path":[4,27,2,1,3],"span":[544,52,53]},{"path":[4,27,2,2],"span":[545,4,45]},{"path":[4,27,2,2,4],"span":[545,4,12]},{"path":[4,27,2,2,6],"span":[545,13,30]},{"path":[4,27,2,2,1],"span":[545,31,40]},{"path":[4,27,2,2,3],"span":[545,43,44]},{"path":[4,27,2,3],"span":[546,4,43]},{"path":[4,27,2,3,4],"span":[546,4,12]},{"path":[4,27,2,3,6],"span":[546,13,29]},{"path":[4,27,2,3,1],"span":[546,30,38]},{"path":[4,27,2,3,3],"span":[546,41,42]},{"path":[4,27,2,4],"span":[547,4,28]},{"path":[4,27,2,4,5],"span":[547,4,10]},{"path":[4,27,2,4,1],"span":[547,11,23]},{"path":[4,27,2,4,3],"span":[547,26,27]},{"path":[4,27,2,5],"span":[548,4,31]},{"path":[4,27,2,5,5],"span":[548,4,10]},{"path":[4,27,2,5,1],"span":[548,11,26]},{"path":[4,27,2,5,3],"span":[548,29,30]},{"path":[4,27,2,6],"span":[549,4,23]},{"path":[4,27,2,6,5],"span":[549,4,10]},{"path":[4,27,2,6,1],"span":[549,11,18]},{"path":[4,27,2,6,3],"span":[549,21,22]},{"path":[4,27,2,7],"span":[550,4,32]},{"path":[4,27,2,7,4],"span":[550,4,12]},{"path":[4,27,2,7,5],"span":[550,13,18]},{"path":[4,27,2,7,1],"span":[550,19,27]},{"path":[4,27,2,7,3],"span":[550,30,31]},{"path":[4,27,2,8],"span":[551,4,33]},{"path":[4,27,2,8,4],"span":[551,4,12]},{"path":[4,27,2,8,5],"span":[551,13,19]},{"path":[4,27,2,8,1],"span":[551,20,28]},{"path":[4,27,2,8,3],"span":[551,31,32]},{"path":[4,27,2,9],"span":[552,4,39]},{"path":[4,27,2,9,4],"span":[552,4,12]},{"path":[4,27,2,9,6],"span":[552,13,24]},{"path":[4,27,2,9,1],"span":[552,25,33]},{"path":[4,27,2,9,3],"span":[552,36,38]},{"path":[4,27,2,10],"span":[553,4,32]},{"path":[4,27,2,10,4],"span":[553,4,12]},{"path":[4,27,2,10,5],"span":[553,13,17]},{"path":[4,27,2,10,1],"span":[553,18,26]},{"path":[4,27,2,10,3],"span":[553,29,31]},{"path":[4,27,2,11],"span":[554,4,38]},{"path":[4,27,2,11,4],"span":[554,4,12]},{"path":[4,27,2,11,5],"span":[554,13,19]},{"path":[4,27,2,11,1],"span":[554,20,32]},{"path":[4,27,2,11,3],"span":[554,35,37]},{"path":[4,27,2,12],"span":[555,4,38]},{"path":[4,27,2,12,4],"span":[555,4,12]},{"path":[4,27,2,12,5],"span":[555,13,19]},{"path":[4,27,2,12,1],"span":[555,20,32]},{"path":[4,27,2,12,3],"span":[555,35,37]},{"path":[4,27,2,13],"span":[556,4,35]},{"path":[4,27,2,13,4],"span":[556,4,12]},{"path":[4,27,2,13,5],"span":[556,13,19]},{"path":[4,27,2,13,1],"span":[556,20,29]},{"path":[4,27,2,13,3],"span":[556,32,34]},{"path":[4,27,2,14],"span":[557,4,43]},{"path":[4,27,2,14,4],"span":[557,4,12]},{"path":[4,27,2,14,6],"span":[557,13,29]},{"path":[4,27,2,14,1],"span":[557,30,37]},{"path":[4,27,2,14,3],"span":[557,40,42]},{"path":[4,27,2,15],"span":[558,4,28]},{"path":[4,27,2,15,5],"span":[558,4,10]},{"path":[4,27,2,15,1],"span":[558,11,22]},{"path":[4,27,2,15,3],"span":[558,25,27]},{"path":[4,27,2,16],"span":[559,4,39]},{"path":[4,27,2,16,4],"span":[559,4,12]},{"path":[4,27,2,16,5],"span":[559,13,19]},{"path":[4,27,2,16,1],"span":[559,20,33]},{"path":[4,27,2,16,3],"span":[559,36,38]},{"path":[4,28],"span":[563,0,568,1]},{"path":[4,28,1],"span":[563,8,25]},{"path":[4,28,2,0],"span":[564,2,40]},{"path":[4,28,2,0,4],"span":[564,2,10]},{"path":[4,28,2,0,5],"span":[564,11,16]},{"path":[4,28,2,0,1],"span":[564,17,35]},{"path":[4,28,2,0,3],"span":[564,38,39]},{"path":[4,28,2,1],"span":[565,2,39]},{"path":[4,28,2,1,4],"span":[565,2,10]},{"path":[4,28,2,1,5],"span":[565,11,16]},{"path":[4,28,2,1,1],"span":[565,17,34]},{"path":[4,28,2,1,3],"span":[565,37,38]},{"path":[4,28,2,2],"span":[566,2,44]},{"path":[4,28,2,2,4],"span":[566,2,10]},{"path":[4,28,2,2,5],"span":[566,11,16]},{"path":[4,28,2,2,1],"span":[566,17,39]},{"path":[4,28,2,2,3],"span":[566,42,43]},{"path":[4,28,2,3],"span":[567,2,27]},{"path":[4,28,2,3,4],"span":[567,2,10]},{"path":[4,28,2,3,5],"span":[567,11,17]},{"path":[4,28,2,3,1],"span":[567,18,22]},{"path":[4,28,2,3,3],"span":[567,25,26]},{"path":[4,29],"span":[570,0,594,1]},{"path":[4,29,1],"span":[570,8,24]},{"path":[4,29,4,0],"span":[571,2,580,3]},{"path":[4,29,4,0,1],"span":[571,7,19]},{"path":[4,29,4,0,2,0],"span":[572,4,25]},{"path":[4,29,4,0,2,0,1],"span":[572,4,20]},{"path":[4,29,4,0,2,0,2],"span":[572,23,24]},{"path":[4,29,4,0,2,1],"span":[573,4,16]},{"path":[4,29,4,0,2,1,1],"span":[573,4,11]},{"path":[4,29,4,0,2,1,2],"span":[573,14,15]},{"path":[4,29,4,0,2,2],"span":[574,4,22]},{"path":[4,29,4,0,2,2,1],"span":[574,4,17]},{"path":[4,29,4,0,2,2,2],"span":[574,20,21]},{"path":[4,29,4,0,2,3],"span":[575,4,21]},{"path":[4,29,4,0,2,3,1],"span":[575,4,16]},{"path":[4,29,4,0,2,3,2],"span":[575,19,20]},{"path":[4,29,4,0,2,4],"span":[576,4,16]},{"path":[4,29,4,0,2,4,1],"span":[576,4,11]},{"path":[4,29,4,0,2,4,2],"span":[576,14,15]},{"path":[4,29,4,0,2,5],"span":[577,4,25]},{"path":[4,29,4,0,2,5,1],"span":[577,4,20]},{"path":[4,29,4,0,2,5,2],"span":[577,23,24]},{"path":[4,29,4,0,2,6],"span":[578,4,22]},{"path":[4,29,4,0,2,6,1],"span":[578,4,17]},{"path":[4,29,4,0,2,6,2],"span":[578,20,21]},{"path":[4,29,4,0,2,7],"span":[579,4,15]},{"path":[4,29,4,0,2,7,1],"span":[579,4,10]},{"path":[4,29,4,0,2,7,2],"span":[579,13,14]},{"path":[4,29,4,1],"span":[582,2,588,3]},{"path":[4,29,4,1,1],"span":[582,7,25]},{"path":[4,29,4,1,2,0],"span":[583,4,32]},{"path":[4,29,4,1,2,0,1],"span":[583,4,27]},{"path":[4,29,4,1,2,0,2],"span":[583,30,31]},{"path":[4,29,4,1,2,1],"span":[584,4,27]},{"path":[4,29,4,1,2,1,1],"span":[584,4,22]},{"path":[4,29,4,1,2,1,2],"span":[584,25,26]},{"path":[4,29,4,1,2,2],"span":[585,4,18]},{"path":[4,29,4,1,2,2,1],"span":[585,4,13]},{"path":[4,29,4,1,2,2,2],"span":[585,16,17]},{"path":[4,29,4,1,2,3],"span":[586,4,15]},{"path":[4,29,4,1,2,3,1],"span":[586,4,10]},{"path":[4,29,4,1,2,3,2],"span":[586,13,14]},{"path":[4,29,4,1,2,4],"span":[587,4,17]},{"path":[4,29,4,1,2,4,1],"span":[587,4,12]},{"path":[4,29,4,1,2,4,2],"span":[587,15,16]},{"path":[4,29,2,0],"span":[590,2,34]},{"path":[4,29,2,0,4],"span":[590,2,10]},{"path":[4,29,2,0,6],"span":[590,11,23]},{"path":[4,29,2,0,1],"span":[590,24,29]},{"path":[4,29,2,0,3],"span":[590,32,33]},{"path":[4,29,2,1],"span":[591,2,47]},{"path":[4,29,2,1,4],"span":[591,2,10]},{"path":[4,29,2,1,6],"span":[591,11,29]},{"path":[4,29,2,1,1],"span":[591,30,42]},{"path":[4,29,2,1,3],"span":[591,45,46]},{"path":[4,29,2,2],"span":[592,2,27]},{"path":[4,29,2,2,4],"span":[592,2,10]},{"path":[4,29,2,2,5],"span":[592,11,17]},{"path":[4,29,2,2,1],"span":[592,18,22]},{"path":[4,29,2,2,3],"span":[592,25,26]},{"path":[4,29,2,3],"span":[593,2,34]},{"path":[4,29,2,3,4],"span":[593,2,10]},{"path":[4,29,2,3,5],"span":[593,11,17]},{"path":[4,29,2,3,1],"span":[593,18,29]},{"path":[4,29,2,3,3],"span":[593,32,33]},{"path":[4,30],"span":[596,0,599,1]},{"path":[4,30,1],"span":[596,8,24]},{"path":[4,30,2,0],"span":[597,2,27]},{"path":[4,30,2,0,4],"span":[597,2,10]},{"path":[4,30,2,0,5],"span":[597,11,17]},{"path":[4,30,2,0,1],"span":[597,18,22]},{"path":[4,30,2,0,3],"span":[597,25,26]},{"path":[4,30,2,1],"span":[598,2,50]},{"path":[4,30,2,1,4],"span":[598,2,10]},{"path":[4,30,2,1,6],"span":[598,11,31]},{"path":[4,30,2,1,1],"span":[598,32,45]},{"path":[4,30,2,1,3],"span":[598,48,49]},{"path":[4,31],"span":[601,0,603,1]},{"path":[4,31,1],"span":[601,8,28]},{"path":[4,31,2,0],"span":[602,2,27]},{"path":[4,31,2,0,4],"span":[602,2,10]},{"path":[4,31,2,0,5],"span":[602,11,17]},{"path":[4,31,2,0,1],"span":[602,18,22]},{"path":[4,31,2,0,3],"span":[602,25,26]},{"path":[4,32],"span":[609,0,643,1],"leadingComments":"\n General section for any HW, normalized and with raw data.\n"},{"path":[4,32,1],"span":[609,8,20]},{"path":[4,32,2,0],"span":[610,2,29]},{"path":[4,32,2,0,4],"span":[610,2,10]},{"path":[4,32,2,0,5],"span":[610,11,16]},{"path":[4,32,2,0,1],"span":[610,17,24]},{"path":[4,32,2,0,3],"span":[610,27,28]},{"path":[4,32,2,1],"span":[613,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,32,2,1,4],"span":[613,2,10]},{"path":[4,32,2,1,5],"span":[613,11,16]},{"path":[4,32,2,1,1],"span":[613,17,24]},{"path":[4,32,2,1,3],"span":[613,27,28]},{"path":[4,32,2,2],"span":[616,2,30],"leadingComments":" catalog id of: CatalogModel\n"},{"path":[4,32,2,2,4],"span":[616,2,10]},{"path":[4,32,2,2,5],"span":[616,11,16]},{"path":[4,32,2,2,1],"span":[616,17,25]},{"path":[4,32,2,2,3],"span":[616,28,29]},{"path":[4,32,2,3],"span":[619,2,31],"leadingComments":" catalog id of: CatalogModel\n"},{"path":[4,32,2,3,4],"span":[619,2,10]},{"path":[4,32,2,3,5],"span":[619,11,16]},{"path":[4,32,2,3,1],"span":[619,17,26]},{"path":[4,32,2,3,3],"span":[619,29,30]},{"path":[4,32,2,4],"span":[621,2,30]},{"path":[4,32,2,4,4],"span":[621,2,10]},{"path":[4,32,2,4,5],"span":[621,11,15]},{"path":[4,32,2,4,1],"span":[621,16,25]},{"path":[4,32,2,4,3],"span":[621,28,29]},{"path":[4,32,2,5],"span":[622,2,29]},{"path":[4,32,2,5,4],"span":[622,2,10]},{"path":[4,32,2,5,5],"span":[622,11,17]},{"path":[4,32,2,5,1],"span":[622,18,24]},{"path":[4,32,2,5,3],"span":[622,27,28]},{"path":[4,32,2,6],"span":[624,2,33],"trailingComments":" e.g.: \"SMART_HOME\"\n"},{"path":[4,32,2,6,4],"span":[624,2,10]},{"path":[4,32,2,6,5],"span":[624,11,17]},{"path":[4,32,2,6,1],"span":[624,18,27]},{"path":[4,32,2,6,3],"span":[624,30,32]},{"path":[4,32,2,7],"span":[625,2,36],"trailingComments":" e.g.: \"Smart Device\"\n"},{"path":[4,32,2,7,4],"span":[625,2,10]},{"path":[4,32,2,7,5],"span":[625,11,17]},{"path":[4,32,2,7,1],"span":[625,18,30]},{"path":[4,32,2,7,3],"span":[625,33,35]},{"path":[4,32,2,8],"span":[626,2,34],"trailingComments":" e.g.: \"Smart Home\"\n"},{"path":[4,32,2,8,4],"span":[626,2,10]},{"path":[4,32,2,8,5],"span":[626,11,17]},{"path":[4,32,2,8,1],"span":[626,18,28]},{"path":[4,32,2,8,3],"span":[626,31,33]},{"path":[4,32,2,9],"span":[628,2,33]},{"path":[4,32,2,9,4],"span":[628,2,10]},{"path":[4,32,2,9,5],"span":[628,11,17]},{"path":[4,32,2,9,1],"span":[628,18,27]},{"path":[4,32,2,9,3],"span":[628,30,32]},{"path":[4,32,2,10],"span":[629,2,34]},{"path":[4,32,2,10,4],"span":[629,2,10]},{"path":[4,32,2,10,5],"span":[629,11,17]},{"path":[4,32,2,10,1],"span":[629,18,28]},{"path":[4,32,2,10,3],"span":[629,31,33]},{"path":[4,32,2,11],"span":[630,2,35]},{"path":[4,32,2,11,4],"span":[630,2,10]},{"path":[4,32,2,11,5],"span":[630,11,17]},{"path":[4,32,2,11,1],"span":[630,18,29]},{"path":[4,32,2,11,3],"span":[630,32,34]},{"path":[4,32,2,12],"span":[632,2,27]},{"path":[4,32,2,12,4],"span":[632,2,10]},{"path":[4,32,2,12,5],"span":[632,11,17]},{"path":[4,32,2,12,1],"span":[632,18,21]},{"path":[4,32,2,12,3],"span":[632,24,26]},{"path":[4,32,2,13],"span":[633,2,27]},{"path":[4,32,2,13,4],"span":[633,2,10]},{"path":[4,32,2,13,5],"span":[633,11,16]},{"path":[4,32,2,13,1],"span":[633,17,21]},{"path":[4,32,2,13,3],"span":[633,24,26]},{"path":[4,32,2,14],"span":[635,2,38]},{"path":[4,32,2,14,4],"span":[635,2,10]},{"path":[4,32,2,14,6],"span":[635,11,27]},{"path":[4,32,2,14,1],"span":[635,28,32]},{"path":[4,32,2,14,3],"span":[635,35,37]},{"path":[4,32,2,15],"span":[638,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,32,2,15,4],"span":[638,2,10]},{"path":[4,32,2,15,6],"span":[638,11,23]},{"path":[4,32,2,15,1],"span":[638,24,37]},{"path":[4,32,2,15,3],"span":[638,40,42]},{"path":[4,32,2,16],"span":[640,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,32,2,16,4],"span":[640,2,10]},{"path":[4,32,2,16,6],"span":[640,11,23]},{"path":[4,32,2,16,1],"span":[640,24,37]},{"path":[4,32,2,16,3],"span":[640,40,42]},{"path":[4,32,2,17],"span":[642,2,44],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,32,2,17,4],"span":[642,2,10]},{"path":[4,32,2,17,6],"span":[642,11,23]},{"path":[4,32,2,17,1],"span":[642,24,38]},{"path":[4,32,2,17,3],"span":[642,41,43]},{"path":[4,33],"span":[645,0,656,1]},{"path":[4,33,1],"span":[645,8,24]},{"path":[4,33,2,0],"span":[646,2,35]},{"path":[4,33,2,0,4],"span":[646,2,10]},{"path":[4,33,2,0,5],"span":[646,11,17]},{"path":[4,33,2,0,1],"span":[646,18,30]},{"path":[4,33,2,0,3],"span":[646,33,34]},{"path":[4,33,2,1],"span":[647,2,28]},{"path":[4,33,2,1,4],"span":[647,2,10]},{"path":[4,33,2,1,5],"span":[647,11,17]},{"path":[4,33,2,1,1],"span":[647,18,23]},{"path":[4,33,2,1,3],"span":[647,26,27]},{"path":[4,33,2,2],"span":[648,2,35]},{"path":[4,33,2,2,4],"span":[648,2,10]},{"path":[4,33,2,2,5],"span":[648,11,17]},{"path":[4,33,2,2,1],"span":[648,18,30]},{"path":[4,33,2,2,3],"span":[648,33,34]},{"path":[4,33,2,3],"span":[649,2,36]},{"path":[4,33,2,3,4],"span":[649,2,10]},{"path":[4,33,2,3,5],"span":[649,11,17]},{"path":[4,33,2,3,1],"span":[649,18,31]},{"path":[4,33,2,3,3],"span":[649,34,35]},{"path":[4,33,2,4],"span":[650,2,33]},{"path":[4,33,2,4,4],"span":[650,2,10]},{"path":[4,33,2,4,5],"span":[650,11,17]},{"path":[4,33,2,4,1],"span":[650,18,28]},{"path":[4,33,2,4,3],"span":[650,31,32]},{"path":[4,33,2,5],"span":[651,2,29]},{"path":[4,33,2,5,4],"span":[651,2,10]},{"path":[4,33,2,5,5],"span":[651,11,16]},{"path":[4,33,2,5,1],"span":[651,18,24]},{"path":[4,33,2,5,3],"span":[651,27,28]},{"path":[4,33,2,6],"span":[652,2,32],"trailingComments":" mac\n"},{"path":[4,33,2,6,4],"span":[652,2,10]},{"path":[4,33,2,6,5],"span":[652,11,17]},{"path":[4,33,2,6,1],"span":[652,18,27]},{"path":[4,33,2,6,3],"span":[652,30,31]},{"path":[4,33,2,7],"span":[653,2,39],"trailingComments":" mac\n"},{"path":[4,33,2,7,4],"span":[653,2,10]},{"path":[4,33,2,7,5],"span":[653,11,17]},{"path":[4,33,2,7,1],"span":[653,18,34]},{"path":[4,33,2,7,3],"span":[653,37,38]},{"path":[4,33,2,8],"span":[654,2,41],"trailingComments":" mac\n"},{"path":[4,33,2,8,4],"span":[654,2,10]},{"path":[4,33,2,8,5],"span":[654,11,17]},{"path":[4,33,2,8,1],"span":[654,18,36]},{"path":[4,33,2,8,3],"span":[654,39,40]},{"path":[4,34],"span":[660,0,683,1]},{"path":[4,34,1],"span":[660,8,23]},{"path":[4,34,2,0],"span":[662,2,24],"leadingComments":" catalog id of: CatalogOs\n"},{"path":[4,34,2,0,4],"span":[662,2,10]},{"path":[4,34,2,0,5],"span":[662,11,16]},{"path":[4,34,2,0,1],"span":[662,17,19]},{"path":[4,34,2,0,3],"span":[662,22,23]},{"path":[4,34,2,1],"span":[665,2,30],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,34,2,1,4],"span":[665,2,10]},{"path":[4,34,2,1,5],"span":[665,11,16]},{"path":[4,34,2,1,1],"span":[665,17,24]},{"path":[4,34,2,1,3],"span":[665,27,29]},{"path":[4,34,2,2],"span":[667,2,27]},{"path":[4,34,2,2,4],"span":[667,2,10]},{"path":[4,34,2,2,5],"span":[667,11,17]},{"path":[4,34,2,2,1],"span":[667,18,22]},{"path":[4,34,2,2,3],"span":[667,25,26]},{"path":[4,34,2,3],"span":[668,2,30]},{"path":[4,34,2,3,4],"span":[668,2,10]},{"path":[4,34,2,3,5],"span":[668,11,17]},{"path":[4,34,2,3,1],"span":[668,18,25]},{"path":[4,34,2,3,3],"span":[668,28,29]},{"path":[4,34,2,4],"span":[669,2,28]},{"path":[4,34,2,4,4],"span":[669,2,10]},{"path":[4,34,2,4,5],"span":[669,11,17]},{"path":[4,34,2,4,1],"span":[669,18,23]},{"path":[4,34,2,4,3],"span":[669,26,27]},{"path":[4,34,2,5],"span":[671,2,33]},{"path":[4,34,2,5,4],"span":[671,2,10]},{"path":[4,34,2,5,5],"span":[671,11,17]},{"path":[4,34,2,5,1],"span":[671,18,28]},{"path":[4,34,2,5,3],"span":[671,31,32]},{"path":[4,34,2,6],"span":[673,2,26]},{"path":[4,34,2,6,4],"span":[673,2,10]},{"path":[4,34,2,6,5],"span":[673,11,17]},{"path":[4,34,2,6,1],"span":[673,18,21]},{"path":[4,34,2,6,3],"span":[673,24,25]},{"path":[4,34,2,7],"span":[674,2,29]},{"path":[4,34,2,7,4],"span":[674,2,10]},{"path":[4,34,2,7,5],"span":[674,11,17]},{"path":[4,34,2,7,1],"span":[674,18,24]},{"path":[4,34,2,7,3],"span":[674,27,28]},{"path":[4,34,2,8],"span":[676,2,26]},{"path":[4,34,2,8,4],"span":[676,2,10]},{"path":[4,34,2,8,5],"span":[676,11,16]},{"path":[4,34,2,8,1],"span":[676,17,21]},{"path":[4,34,2,8,3],"span":[676,24,25]},{"path":[4,34,8,0],"span":[678,2,682,3]},{"path":[4,34,8,0,1],"span":[678,8,12]},{"path":[4,34,2,9],"span":[679,4,44]},{"path":[4,34,2,9,6],"span":[679,4,30]},{"path":[4,34,2,9,1],"span":[679,31,38]},{"path":[4,34,2,9,3],"span":[679,41,43]},{"path":[4,34,2,10],"span":[680,4,36]},{"path":[4,34,2,10,6],"span":[680,4,26]},{"path":[4,34,2,10,1],"span":[680,27,30]},{"path":[4,34,2,10,3],"span":[680,33,35]},{"path":[4,34,2,11],"span":[681,4,40]},{"path":[4,34,2,11,6],"span":[681,4,28]},{"path":[4,34,2,11,1],"span":[681,29,34]},{"path":[4,34,2,11,3],"span":[681,37,39]},{"path":[4,35],"span":[685,0,696,1]},{"path":[4,35,1],"span":[685,8,30]},{"path":[4,35,2,0],"span":[686,2,37]},{"path":[4,35,2,0,4],"span":[686,2,10]},{"path":[4,35,2,0,5],"span":[686,11,17]},{"path":[4,35,2,0,1],"span":[686,18,32]},{"path":[4,35,2,0,3],"span":[686,35,36]},{"path":[4,35,2,1],"span":[687,2,37]},{"path":[4,35,2,1,4],"span":[687,2,10]},{"path":[4,35,2,1,5],"span":[687,11,17]},{"path":[4,35,2,1,1],"span":[687,18,32]},{"path":[4,35,2,1,3],"span":[687,35,36]},{"path":[4,35,2,2],"span":[688,2,34]},{"path":[4,35,2,2,4],"span":[688,2,10]},{"path":[4,35,2,2,5],"span":[688,11,17]},{"path":[4,35,2,2,1],"span":[688,18,29]},{"path":[4,35,2,2,3],"span":[688,32,33]},{"path":[4,35,2,3],"span":[689,2,32]},{"path":[4,35,2,3,4],"span":[689,2,10]},{"path":[4,35,2,3,5],"span":[689,11,17]},{"path":[4,35,2,3,1],"span":[689,18,27]},{"path":[4,35,2,3,3],"span":[689,30,31]},{"path":[4,35,2,4],"span":[690,2,36]},{"path":[4,35,2,4,4],"span":[690,2,10]},{"path":[4,35,2,4,5],"span":[690,11,17]},{"path":[4,35,2,4,1],"span":[690,18,31]},{"path":[4,35,2,4,3],"span":[690,34,35]},{"path":[4,35,2,5],"span":[691,2,32]},{"path":[4,35,2,5,4],"span":[691,2,10]},{"path":[4,35,2,5,5],"span":[691,11,17]},{"path":[4,35,2,5,1],"span":[691,18,27]},{"path":[4,35,2,5,3],"span":[691,30,31]},{"path":[4,35,2,6],"span":[692,2,30]},{"path":[4,35,2,6,4],"span":[692,2,10]},{"path":[4,35,2,6,5],"span":[692,11,17]},{"path":[4,35,2,6,1],"span":[692,18,25]},{"path":[4,35,2,6,3],"span":[692,28,29]},{"path":[4,35,2,7],"span":[693,2,44]},{"path":[4,35,2,7,4],"span":[693,2,10]},{"path":[4,35,2,7,5],"span":[693,11,17]},{"path":[4,35,2,7,1],"span":[693,18,39]},{"path":[4,35,2,7,3],"span":[693,42,43]},{"path":[4,35,2,8],"span":[694,2,53]},{"path":[4,35,2,8,4],"span":[694,2,10]},{"path":[4,35,2,8,5],"span":[694,11,17]},{"path":[4,35,2,8,1],"span":[694,18,48]},{"path":[4,35,2,8,3],"span":[694,51,52]},{"path":[4,35,2,9],"span":[695,2,40]},{"path":[4,35,2,9,4],"span":[695,2,10]},{"path":[4,35,2,9,5],"span":[695,11,17]},{"path":[4,35,2,9,1],"span":[695,18,34]},{"path":[4,35,2,9,3],"span":[695,37,39]},{"path":[4,36],"span":[698,0,704,1]},{"path":[4,36,1],"span":[698,8,32]},{"path":[4,36,2,0],"span":[699,2,34]},{"path":[4,36,2,0,4],"span":[699,2,10]},{"path":[4,36,2,0,5],"span":[699,11,17]},{"path":[4,36,2,0,1],"span":[699,18,29]},{"path":[4,36,2,0,3],"span":[699,32,33]},{"path":[4,36,2,1],"span":[700,2,37]},{"path":[4,36,2,1,4],"span":[700,2,10]},{"path":[4,36,2,1,5],"span":[700,11,17]},{"path":[4,36,2,1,1],"span":[700,18,32]},{"path":[4,36,2,1,3],"span":[700,35,36]},{"path":[4,36,2,2],"span":[701,2,37]},{"path":[4,36,2,2,4],"span":[701,2,10]},{"path":[4,36,2,2,5],"span":[701,11,17]},{"path":[4,36,2,2,1],"span":[701,18,32]},{"path":[4,36,2,2,3],"span":[701,35,36]},{"path":[4,36,2,3],"span":[702,2,35]},{"path":[4,36,2,3,4],"span":[702,2,10]},{"path":[4,36,2,3,5],"span":[702,11,17]},{"path":[4,36,2,3,1],"span":[702,18,30]},{"path":[4,36,2,3,3],"span":[702,33,34]},{"path":[4,36,2,4],"span":[703,2,33]},{"path":[4,36,2,4,4],"span":[703,2,10]},{"path":[4,36,2,4,5],"span":[703,11,17]},{"path":[4,36,2,4,1],"span":[703,18,28]},{"path":[4,36,2,4,3],"span":[703,31,32]},{"path":[4,37],"span":[706,0,759,1]},{"path":[4,37,1],"span":[706,8,34]},{"path":[4,37,2,0],"span":[707,2,30]},{"path":[4,37,2,0,4],"span":[707,2,10]},{"path":[4,37,2,0,5],"span":[707,11,17]},{"path":[4,37,2,0,1],"span":[707,18,25]},{"path":[4,37,2,0,3],"span":[707,28,29]},{"path":[4,37,2,1],"span":[708,2,34]},{"path":[4,37,2,1,4],"span":[708,2,10]},{"path":[4,37,2,1,5],"span":[708,11,16]},{"path":[4,37,2,1,1],"span":[708,17,29]},{"path":[4,37,2,1,3],"span":[708,32,33]},{"path":[4,37,2,2],"span":[709,2,28],"trailingComments":" \"WindowsVersion\": \"10.0.19045\"\n"},{"path":[4,37,2,2,4],"span":[709,2,10]},{"path":[4,37,2,2,5],"span":[709,11,17]},{"path":[4,37,2,2,1],"span":[709,18,23]},{"path":[4,37,2,2,3],"span":[709,26,27]},{"path":[4,37,2,3],"span":[710,2,35],"trailingComments":" OsVersion\": \"22H2\",\n"},{"path":[4,37,2,3,4],"span":[710,2,10]},{"path":[4,37,2,3,5],"span":[710,11,17]},{"path":[4,37,2,3,1],"span":[710,18,30]},{"path":[4,37,2,3,3],"span":[710,33,34]},{"path":[4,37,2,4],"span":[711,2,41]},{"path":[4,37,2,4,4],"span":[711,2,10]},{"path":[4,37,2,4,5],"span":[711,11,15]},{"path":[4,37,2,4,1],"span":[711,16,36]},{"path":[4,37,2,4,3],"span":[711,39,40]},{"path":[4,37,2,5],"span":[712,2,35]},{"path":[4,37,2,5,4],"span":[712,2,10]},{"path":[4,37,2,5,5],"span":[712,11,15]},{"path":[4,37,2,5,1],"span":[712,16,30]},{"path":[4,37,2,5,3],"span":[712,33,34]},{"path":[4,37,2,6],"span":[713,2,39]},{"path":[4,37,2,6,4],"span":[713,2,10]},{"path":[4,37,2,6,5],"span":[713,11,15]},{"path":[4,37,2,6,1],"span":[713,16,34]},{"path":[4,37,2,6,3],"span":[713,37,38]},{"path":[4,37,2,7],"span":[715,2,31],"trailingComments":" \"OsCode\": \"10.0.19045\" - with S if server\n"},{"path":[4,37,2,7,4],"span":[715,2,10]},{"path":[4,37,2,7,5],"span":[715,11,17]},{"path":[4,37,2,7,1],"span":[715,18,25]},{"path":[4,37,2,7,3],"span":[715,28,30]},{"path":[4,37,2,8],"span":[717,2,35]},{"path":[4,37,2,8,4],"span":[717,2,10]},{"path":[4,37,2,8,5],"span":[717,11,17]},{"path":[4,37,2,8,1],"span":[717,18,29]},{"path":[4,37,2,8,3],"span":[717,32,34]},{"path":[4,37,2,9],"span":[718,2,36],"trailingComments":" \"OsBuildNumber\": \"2486\",\n"},{"path":[4,37,2,9,4],"span":[718,2,10]},{"path":[4,37,2,9,5],"span":[718,11,17]},{"path":[4,37,2,9,1],"span":[718,18,30]},{"path":[4,37,2,9,3],"span":[718,33,35]},{"path":[4,37,2,10],"span":[719,2,34]},{"path":[4,37,2,10,4],"span":[719,2,10]},{"path":[4,37,2,10,5],"span":[719,11,17]},{"path":[4,37,2,10,1],"span":[719,18,28]},{"path":[4,37,2,10,3],"span":[719,31,33]},{"path":[4,37,2,11],"span":[720,2,31]},{"path":[4,37,2,11,4],"span":[720,2,10]},{"path":[4,37,2,11,5],"span":[720,11,17]},{"path":[4,37,2,11,1],"span":[720,18,25]},{"path":[4,37,2,11,3],"span":[720,28,30]},{"path":[4,37,2,12],"span":[721,2,32]},{"path":[4,37,2,12,4],"span":[721,2,10]},{"path":[4,37,2,12,5],"span":[721,11,17]},{"path":[4,37,2,12,1],"span":[721,18,26]},{"path":[4,37,2,12,3],"span":[721,29,31]},{"path":[4,37,2,13],"span":[722,2,36]},{"path":[4,37,2,13,4],"span":[722,2,10]},{"path":[4,37,2,13,5],"span":[722,11,17]},{"path":[4,37,2,13,1],"span":[722,18,30]},{"path":[4,37,2,13,3],"span":[722,33,35]},{"path":[4,37,2,14],"span":[723,2,35]},{"path":[4,37,2,14,4],"span":[723,2,10]},{"path":[4,37,2,14,5],"span":[723,11,17]},{"path":[4,37,2,14,1],"span":[723,18,29]},{"path":[4,37,2,14,3],"span":[723,32,34]},{"path":[4,37,2,15],"span":[724,2,39]},{"path":[4,37,2,15,4],"span":[724,2,10]},{"path":[4,37,2,15,5],"span":[724,11,16]},{"path":[4,37,2,15,1],"span":[724,17,33]},{"path":[4,37,2,15,3],"span":[724,36,38]},{"path":[4,37,2,16],"span":[725,2,27]},{"path":[4,37,2,16,4],"span":[725,2,10]},{"path":[4,37,2,16,5],"span":[725,11,15]},{"path":[4,37,2,16,1],"span":[725,16,21]},{"path":[4,37,2,16,3],"span":[725,24,26]},{"path":[4,37,2,17],"span":[726,2,35]},{"path":[4,37,2,17,4],"span":[726,2,10]},{"path":[4,37,2,17,5],"span":[726,11,17]},{"path":[4,37,2,17,1],"span":[726,18,29]},{"path":[4,37,2,17,3],"span":[726,32,34]},{"path":[4,37,2,18],"span":[727,2,52]},{"path":[4,37,2,18,4],"span":[727,2,10]},{"path":[4,37,2,18,5],"span":[727,11,17]},{"path":[4,37,2,18,1],"span":[727,18,46]},{"path":[4,37,2,18,3],"span":[727,49,51]},{"path":[4,37,2,19],"span":[728,2,55]},{"path":[4,37,2,19,4],"span":[728,2,10]},{"path":[4,37,2,19,6],"span":[728,11,36]},{"path":[4,37,2,19,1],"span":[728,37,49]},{"path":[4,37,2,19,3],"span":[728,52,54]},{"path":[4,37,2,20],"span":[729,2,47]},{"path":[4,37,2,20,4],"span":[729,2,10]},{"path":[4,37,2,20,5],"span":[729,11,17]},{"path":[4,37,2,20,1],"span":[729,18,41]},{"path":[4,37,2,20,3],"span":[729,44,46]},{"path":[4,37,2,21],"span":[730,2,48]},{"path":[4,37,2,21,4],"span":[730,2,10]},{"path":[4,37,2,21,5],"span":[730,11,17]},{"path":[4,37,2,21,1],"span":[730,18,42]},{"path":[4,37,2,21,3],"span":[730,45,47]},{"path":[4,37,2,22],"span":[731,2,36]},{"path":[4,37,2,22,4],"span":[731,2,10]},{"path":[4,37,2,22,5],"span":[731,11,17]},{"path":[4,37,2,22,1],"span":[731,18,30]},{"path":[4,37,2,22,3],"span":[731,33,35]},{"path":[4,37,2,23],"span":[732,2,40]},{"path":[4,37,2,23,4],"span":[732,2,10]},{"path":[4,37,2,23,6],"span":[732,11,22]},{"path":[4,37,2,23,1],"span":[732,23,34]},{"path":[4,37,2,23,3],"span":[732,37,39]},{"path":[4,37,2,24],"span":[733,2,45]},{"path":[4,37,2,24,4],"span":[733,2,10]},{"path":[4,37,2,24,6],"span":[733,11,22]},{"path":[4,37,2,24,1],"span":[733,23,39]},{"path":[4,37,2,24,3],"span":[733,42,44]},{"path":[4,37,2,25],"span":[734,2,36]},{"path":[4,37,2,25,4],"span":[734,2,10]},{"path":[4,37,2,25,6],"span":[734,11,22]},{"path":[4,37,2,25,1],"span":[734,23,30]},{"path":[4,37,2,25,3],"span":[734,33,35]},{"path":[4,37,2,26],"span":[735,2,39]},{"path":[4,37,2,26,4],"span":[735,2,10]},{"path":[4,37,2,26,5],"span":[735,11,17]},{"path":[4,37,2,26,1],"span":[735,18,33]},{"path":[4,37,2,26,3],"span":[735,36,38]},{"path":[4,37,2,27],"span":[736,2,43]},{"path":[4,37,2,27,4],"span":[736,2,10]},{"path":[4,37,2,27,5],"span":[736,11,17]},{"path":[4,37,2,27,1],"span":[736,18,37]},{"path":[4,37,2,27,3],"span":[736,40,42]},{"path":[4,37,2,28],"span":[737,2,39]},{"path":[4,37,2,28,4],"span":[737,2,10]},{"path":[4,37,2,28,5],"span":[737,11,17]},{"path":[4,37,2,28,1],"span":[737,18,33]},{"path":[4,37,2,28,3],"span":[737,36,38]},{"path":[4,37,2,29],"span":[738,2,37]},{"path":[4,37,2,29,4],"span":[738,2,10]},{"path":[4,37,2,29,5],"span":[738,11,17]},{"path":[4,37,2,29,1],"span":[738,18,31]},{"path":[4,37,2,29,3],"span":[738,34,36]},{"path":[4,37,2,30],"span":[739,2,50]},{"path":[4,37,2,30,4],"span":[739,2,10]},{"path":[4,37,2,30,5],"span":[739,11,17]},{"path":[4,37,2,30,1],"span":[739,18,44]},{"path":[4,37,2,30,3],"span":[739,47,49]},{"path":[4,37,2,31],"span":[740,2,50]},{"path":[4,37,2,31,4],"span":[740,2,10]},{"path":[4,37,2,31,5],"span":[740,11,17]},{"path":[4,37,2,31,1],"span":[740,18,44]},{"path":[4,37,2,31,3],"span":[740,47,49]},{"path":[4,37,2,32],"span":[741,2,51]},{"path":[4,37,2,32,4],"span":[741,2,10]},{"path":[4,37,2,32,5],"span":[741,11,17]},{"path":[4,37,2,32,1],"span":[741,18,45]},{"path":[4,37,2,32,3],"span":[741,48,50]},{"path":[4,37,2,33],"span":[742,2,30]},{"path":[4,37,2,33,4],"span":[742,2,10]},{"path":[4,37,2,33,5],"span":[742,11,17]},{"path":[4,37,2,33,1],"span":[742,18,24]},{"path":[4,37,2,33,3],"span":[742,27,29]},{"path":[4,37,2,34],"span":[743,2,37]},{"path":[4,37,2,34,4],"span":[743,2,10]},{"path":[4,37,2,34,5],"span":[743,11,17]},{"path":[4,37,2,34,1],"span":[743,18,31]},{"path":[4,37,2,34,3],"span":[743,34,36]},{"path":[4,37,2,35],"span":[744,2,40]},{"path":[4,37,2,35,4],"span":[744,2,10]},{"path":[4,37,2,35,5],"span":[744,11,17]},{"path":[4,37,2,35,1],"span":[744,18,34]},{"path":[4,37,2,35,3],"span":[744,37,39]},{"path":[4,37,2,36],"span":[745,2,49]},{"path":[4,37,2,36,4],"span":[745,2,10]},{"path":[4,37,2,36,5],"span":[745,11,17]},{"path":[4,37,2,36,1],"span":[745,18,43]},{"path":[4,37,2,36,3],"span":[745,46,48]},{"path":[4,37,2,37],"span":[746,2,49]},{"path":[4,37,2,37,4],"span":[746,2,10]},{"path":[4,37,2,37,5],"span":[746,11,17]},{"path":[4,37,2,37,1],"span":[746,18,43]},{"path":[4,37,2,37,3],"span":[746,46,48]},{"path":[4,37,2,38],"span":[747,2,41]},{"path":[4,37,2,38,4],"span":[747,2,10]},{"path":[4,37,2,38,5],"span":[747,11,17]},{"path":[4,37,2,38,1],"span":[747,18,35]},{"path":[4,37,2,38,3],"span":[747,38,40]},{"path":[4,37,2,39],"span":[748,2,45]},{"path":[4,37,2,39,4],"span":[748,2,10]},{"path":[4,37,2,39,5],"span":[748,11,17]},{"path":[4,37,2,39,1],"span":[748,18,39]},{"path":[4,37,2,39,3],"span":[748,42,44]},{"path":[4,37,2,40],"span":[749,2,42]},{"path":[4,37,2,40,4],"span":[749,2,10]},{"path":[4,37,2,40,5],"span":[749,11,17]},{"path":[4,37,2,40,1],"span":[749,18,36]},{"path":[4,37,2,40,3],"span":[749,39,41]},{"path":[4,37,2,41],"span":[750,2,46]},{"path":[4,37,2,41,4],"span":[750,2,10]},{"path":[4,37,2,41,5],"span":[750,11,17]},{"path":[4,37,2,41,1],"span":[750,18,40]},{"path":[4,37,2,41,3],"span":[750,43,45]},{"path":[4,37,2,42],"span":[751,2,41]},{"path":[4,37,2,42,4],"span":[751,2,10]},{"path":[4,37,2,42,6],"span":[751,11,22]},{"path":[4,37,2,42,1],"span":[751,23,35]},{"path":[4,37,2,42,3],"span":[751,38,40]},{"path":[4,37,2,43],"span":[752,2,34]},{"path":[4,37,2,43,4],"span":[752,2,10]},{"path":[4,37,2,43,5],"span":[752,11,17]},{"path":[4,37,2,43,1],"span":[752,18,28]},{"path":[4,37,2,43,3],"span":[752,31,33]},{"path":[4,37,2,44],"span":[753,2,36]},{"path":[4,37,2,44,4],"span":[753,2,10]},{"path":[4,37,2,44,5],"span":[753,11,17]},{"path":[4,37,2,44,1],"span":[753,18,30]},{"path":[4,37,2,44,3],"span":[753,33,35]},{"path":[4,37,2,45],"span":[754,2,40]},{"path":[4,37,2,45,4],"span":[754,2,10]},{"path":[4,37,2,45,5],"span":[754,11,17]},{"path":[4,37,2,45,1],"span":[754,18,34]},{"path":[4,37,2,45,3],"span":[754,37,39]},{"path":[4,37,2,46],"span":[755,2,66]},{"path":[4,37,2,46,4],"span":[755,2,10]},{"path":[4,37,2,46,5],"span":[755,11,15]},{"path":[4,37,2,46,1],"span":[755,16,60]},{"path":[4,37,2,46,3],"span":[755,63,65]},{"path":[4,37,2,47],"span":[756,2,60]},{"path":[4,37,2,47,4],"span":[756,2,10]},{"path":[4,37,2,47,5],"span":[756,11,15]},{"path":[4,37,2,47,1],"span":[756,16,54]},{"path":[4,37,2,47,3],"span":[756,57,59]},{"path":[4,37,2,48],"span":[757,2,55]},{"path":[4,37,2,48,4],"span":[757,2,10]},{"path":[4,37,2,48,5],"span":[757,11,15]},{"path":[4,37,2,48,1],"span":[757,16,49]},{"path":[4,37,2,48,3],"span":[757,52,54]},{"path":[4,37,2,49],"span":[758,2,64]},{"path":[4,37,2,49,4],"span":[758,2,10]},{"path":[4,37,2,49,5],"span":[758,11,17]},{"path":[4,37,2,49,1],"span":[758,18,58]},{"path":[4,37,2,49,3],"span":[758,61,63]},{"path":[4,38],"span":[763,0,766,1],"leadingComments":" OS Feature, i.e. WindowsFeature "},{"path":[4,38,1],"span":[763,8,30]},{"path":[4,38,2,0],"span":[764,2,18]},{"path":[4,38,2,0,5],"span":[764,2,8]},{"path":[4,38,2,0,1],"span":[764,9,13]},{"path":[4,38,2,0,3],"span":[764,16,17]},{"path":[4,38,2,1],"span":[765,2,21]},{"path":[4,38,2,1,5],"span":[765,2,8]},{"path":[4,38,2,1,1],"span":[765,9,16]},{"path":[4,38,2,1,3],"span":[765,19,20]},{"path":[4,39],"span":[769,0,785,1],"leadingComments":" OS Patch, i.e. Windows KB's, aka Hotfix, aka QuickFixEngieering "},{"path":[4,39,1],"span":[769,8,28]},{"path":[4,39,2,0],"span":[771,2,16],"leadingComments":" from hot_fix_id, e.g.: \"KB4570334\"\n"},{"path":[4,39,2,0,5],"span":[771,2,8]},{"path":[4,39,2,0,1],"span":[771,9,11]},{"path":[4,39,2,0,3],"span":[771,14,15]},{"path":[4,39,2,1],"span":[774,2,27],"leadingComments":" from description, e.g.: Security Update\n"},{"path":[4,39,2,1,4],"span":[774,2,10]},{"path":[4,39,2,1,5],"span":[774,11,17]},{"path":[4,39,2,1,1],"span":[774,18,22]},{"path":[4,39,2,1,3],"span":[774,25,26]},{"path":[4,39,2,2],"span":[776,2,54]},{"path":[4,39,2,2,4],"span":[776,2,10]},{"path":[4,39,2,2,6],"span":[776,11,36]},{"path":[4,39,2,2,1],"span":[776,37,49]},{"path":[4,39,2,2,3],"span":[776,52,53]},{"path":[4,39,2,3],"span":[779,2,33],"leadingComments":" e.g.: \"NT AUTHORITY\\\\SYSTEM\"\n"},{"path":[4,39,2,3,4],"span":[779,2,10]},{"path":[4,39,2,3,5],"span":[779,11,17]},{"path":[4,39,2,3,1],"span":[779,18,28]},{"path":[4,39,2,3,3],"span":[779,31,32]},{"path":[4,39,2,4],"span":[781,2,31]},{"path":[4,39,2,4,4],"span":[781,2,10]},{"path":[4,39,2,4,5],"span":[781,11,17]},{"path":[4,39,2,4,1],"span":[781,18,26]},{"path":[4,39,2,4,3],"span":[781,29,30]},{"path":[4,39,2,5],"span":[783,2,43]},{"path":[4,39,2,5,4],"span":[783,2,10]},{"path":[4,39,2,5,5],"span":[783,11,17]},{"path":[4,39,2,5,1],"span":[783,18,38]},{"path":[4,39,2,5,3],"span":[783,41,42]},{"path":[4,40],"span":[788,0,791,1],"leadingComments":" Network Interface cards "},{"path":[4,40,1],"span":[788,8,25]},{"path":[4,40,2,0],"span":[789,2,42]},{"path":[4,40,2,0,6],"span":[789,2,27]},{"path":[4,40,2,0,1],"span":[789,28,37]},{"path":[4,40,2,0,3],"span":[789,40,41]},{"path":[4,40,2,1],"span":[790,2,42]},{"path":[4,40,2,1,4],"span":[790,2,10]},{"path":[4,40,2,1,6],"span":[790,11,27]},{"path":[4,40,2,1,1],"span":[790,28,37]},{"path":[4,40,2,1,3],"span":[790,40,41]},{"path":[4,41],"span":[793,0,816,1]},{"path":[4,41,1],"span":[793,8,24]},{"path":[4,41,2,0],"span":[794,2,18]},{"path":[4,41,2,0,5],"span":[794,2,8]},{"path":[4,41,2,0,1],"span":[794,9,13]},{"path":[4,41,2,0,3],"span":[794,16,17]},{"path":[4,41,2,1],"span":[795,2,18]},{"path":[4,41,2,1,5],"span":[795,2,8]},{"path":[4,41,2,1,1],"span":[795,9,13]},{"path":[4,41,2,1,3],"span":[795,16,17]},{"path":[4,41,2,2],"span":[796,2,22]},{"path":[4,41,2,2,5],"span":[796,2,8]},{"path":[4,41,2,2,1],"span":[796,9,17]},{"path":[4,41,2,2,3],"span":[796,20,21]},{"path":[4,41,2,3],"span":[798,2,25]},{"path":[4,41,2,3,4],"span":[798,2,10]},{"path":[4,41,2,3,5],"span":[798,11,17]},{"path":[4,41,2,3,1],"span":[798,18,20]},{"path":[4,41,2,3,3],"span":[798,23,24]},{"path":[4,41,2,4],"span":[800,2,26]},{"path":[4,41,2,4,4],"span":[800,2,10]},{"path":[4,41,2,4,5],"span":[800,11,17]},{"path":[4,41,2,4,1],"span":[800,18,21]},{"path":[4,41,2,4,3],"span":[800,24,25]},{"path":[4,41,2,5],"span":[802,2,33]},{"path":[4,41,2,5,4],"span":[802,2,10]},{"path":[4,41,2,5,5],"span":[802,11,15]},{"path":[4,41,2,5,1],"span":[802,16,28]},{"path":[4,41,2,5,3],"span":[802,31,32]},{"path":[4,41,2,6],"span":[803,2,37]},{"path":[4,41,2,6,4],"span":[803,2,10]},{"path":[4,41,2,6,5],"span":[803,11,17]},{"path":[4,41,2,6,1],"span":[803,18,32]},{"path":[4,41,2,6,3],"span":[803,35,36]},{"path":[4,41,2,7],"span":[805,2,31]},{"path":[4,41,2,7,4],"span":[805,2,10]},{"path":[4,41,2,7,6],"span":[805,11,23]},{"path":[4,41,2,7,1],"span":[805,24,26]},{"path":[4,41,2,7,3],"span":[805,29,30]},{"path":[4,41,2,8],"span":[807,2,33]},{"path":[4,41,2,8,4],"span":[807,2,10]},{"path":[4,41,2,8,5],"span":[807,11,17]},{"path":[4,41,2,8,1],"span":[807,18,28]},{"path":[4,41,2,8,3],"span":[807,31,32]},{"path":[4,41,2,9],"span":[808,2,35]},{"path":[4,41,2,9,4],"span":[808,2,10]},{"path":[4,41,2,9,5],"span":[808,11,17]},{"path":[4,41,2,9,1],"span":[808,18,29]},{"path":[4,41,2,9,3],"span":[808,32,34]},{"path":[4,41,2,10],"span":[810,2,34]},{"path":[4,41,2,10,4],"span":[810,2,10]},{"path":[4,41,2,10,5],"span":[810,11,17]},{"path":[4,41,2,10,1],"span":[810,18,28]},{"path":[4,41,2,10,3],"span":[810,31,33]},{"path":[4,41,2,11],"span":[811,2,37]},{"path":[4,41,2,11,4],"span":[811,2,10]},{"path":[4,41,2,11,5],"span":[811,11,17]},{"path":[4,41,2,11,1],"span":[811,18,31]},{"path":[4,41,2,11,3],"span":[811,34,36]},{"path":[4,41,2,12],"span":[812,2,54]},{"path":[4,41,2,12,4],"span":[812,2,10]},{"path":[4,41,2,12,5],"span":[812,11,17]},{"path":[4,41,2,12,1],"span":[812,18,48]},{"path":[4,41,2,12,3],"span":[812,51,53]},{"path":[4,41,2,13],"span":[814,2,36]},{"path":[4,41,2,13,4],"span":[814,2,10]},{"path":[4,41,2,13,5],"span":[814,11,17]},{"path":[4,41,2,13,1],"span":[814,18,30]},{"path":[4,41,2,13,3],"span":[814,33,35]},{"path":[4,41,2,14],"span":[815,2,37]},{"path":[4,41,2,14,4],"span":[815,2,10]},{"path":[4,41,2,14,5],"span":[815,11,17]},{"path":[4,41,2,14,1],"span":[815,18,31]},{"path":[4,41,2,14,3],"span":[815,34,36]},{"path":[4,42],"span":[819,0,822,1],"leadingComments":" Network IP address with IP and subnet "},{"path":[4,42,1],"span":[819,8,20]},{"path":[4,42,2,0],"span":[820,2,16]},{"path":[4,42,2,0,5],"span":[820,2,8]},{"path":[4,42,2,0,1],"span":[820,9,11]},{"path":[4,42,2,0,3],"span":[820,14,15]},{"path":[4,42,2,1],"span":[821,2,20]},{"path":[4,42,2,1,5],"span":[821,2,8]},{"path":[4,42,2,1,1],"span":[821,9,15]},{"path":[4,42,2,1,3],"span":[821,18,19]},{"path":[4,43],"span":[827,0,832,1],"leadingComments":"\n Network protocols, summary and detailed info.\n"},{"path":[4,43,1],"span":[827,8,24]},{"path":[4,43,2,0],"span":[828,4,33],"trailingComments":" summary list of protocols and data points available\n"},{"path":[4,43,2,0,4],"span":[828,4,12]},{"path":[4,43,2,0,5],"span":[828,13,19]},{"path":[4,43,2,0,1],"span":[828,20,28]},{"path":[4,43,2,0,3],"span":[828,31,32]},{"path":[4,44],"span":[837,0,840,1],"leadingComments":"\n Full port scan.\n"},{"path":[4,44,1],"span":[837,8,16]},{"path":[4,44,2,0],"span":[838,2,42]},{"path":[4,44,2,0,6],"span":[838,2,27]},{"path":[4,44,2,0,1],"span":[838,28,37]},{"path":[4,44,2,0,3],"span":[838,40,41]},{"path":[4,44,2,1],"span":[839,2,40]},{"path":[4,44,2,1,4],"span":[839,2,10]},{"path":[4,44,2,1,6],"span":[839,11,22]},{"path":[4,44,2,1,1],"span":[839,23,35]},{"path":[4,44,2,1,3],"span":[839,38,39]},{"path":[4,45],"span":[842,0,851,1]},{"path":[4,45,1],"span":[842,8,19]},{"path":[4,45,2,0],"span":[843,2,22]},{"path":[4,45,2,0,5],"span":[843,2,8]},{"path":[4,45,2,0,1],"span":[843,9,17]},{"path":[4,45,2,0,3],"span":[843,20,21]},{"path":[4,45,2,1],"span":[844,2,24]},{"path":[4,45,2,1,5],"span":[844,2,7]},{"path":[4,45,2,1,1],"span":[844,8,19]},{"path":[4,45,2,1,3],"span":[844,22,23]},{"path":[4,45,2,2],"span":[845,2,36]},{"path":[4,45,2,2,4],"span":[845,2,10]},{"path":[4,45,2,2,5],"span":[845,11,17]},{"path":[4,45,2,2,1],"span":[845,18,31]},{"path":[4,45,2,2,3],"span":[845,34,35]},{"path":[4,45,2,3],"span":[846,2,35]},{"path":[4,45,2,3,4],"span":[846,2,10]},{"path":[4,45,2,3,5],"span":[846,11,17]},{"path":[4,45,2,3,1],"span":[846,18,30]},{"path":[4,45,2,3,3],"span":[846,33,34]},{"path":[4,45,2,4],"span":[848,2,29]},{"path":[4,45,2,4,4],"span":[848,2,10]},{"path":[4,45,2,4,5],"span":[848,11,17]},{"path":[4,45,2,4,1],"span":[848,18,24]},{"path":[4,45,2,4,3],"span":[848,27,28]},{"path":[4,45,2,5],"span":[849,2,42]},{"path":[4,45,2,5,4],"span":[849,2,10]},{"path":[4,45,2,5,6],"span":[849,11,25]},{"path":[4,45,2,5,1],"span":[849,26,37]},{"path":[4,45,2,5,3],"span":[849,40,41]},{"path":[4,46],"span":[853,0,866,1]},{"path":[4,46,1],"span":[853,8,22]},{"path":[4,46,2,0],"span":[854,2,17]},{"path":[4,46,2,0,5],"span":[854,2,7]},{"path":[4,46,2,0,1],"span":[854,8,12]},{"path":[4,46,2,0,3],"span":[854,15,16]},{"path":[4,46,2,1],"span":[855,2,24]},{"path":[4,46,2,1,4],"span":[855,2,10]},{"path":[4,46,2,1,5],"span":[855,11,15]},{"path":[4,46,2,1,1],"span":[855,16,19]},{"path":[4,46,2,1,3],"span":[855,22,23]},{"path":[4,46,2,2],"span":[857,2,29],"trailingComments":" http_header.server\n"},{"path":[4,46,2,2,4],"span":[857,2,10]},{"path":[4,46,2,2,5],"span":[857,11,17]},{"path":[4,46,2,2,1],"span":[857,18,24]},{"path":[4,46,2,2,3],"span":[857,27,28]},{"path":[4,46,2,3],"span":[858,2,30],"trailingComments":" http_header.wwwauth\n"},{"path":[4,46,2,3,4],"span":[858,2,10]},{"path":[4,46,2,3,5],"span":[858,11,17]},{"path":[4,46,2,3,1],"span":[858,18,25]},{"path":[4,46,2,3,3],"span":[858,28,29]},{"path":[4,46,2,4],"span":[859,2,29],"trailingComments":" http_header.cookie\n"},{"path":[4,46,2,4,4],"span":[859,2,10]},{"path":[4,46,2,4,5],"span":[859,11,17]},{"path":[4,46,2,4,1],"span":[859,18,24]},{"path":[4,46,2,4,3],"span":[859,27,28]},{"path":[4,46,2,5],"span":[861,2,28],"trailingComments":" html_title\n"},{"path":[4,46,2,5,4],"span":[861,2,10]},{"path":[4,46,2,5,5],"span":[861,11,17]},{"path":[4,46,2,5,1],"span":[861,18,23]},{"path":[4,46,2,5,3],"span":[861,26,27]},{"path":[4,46,2,6],"span":[862,2,34],"trailingComments":" favicon.md5\n"},{"path":[4,46,2,6,4],"span":[862,2,10]},{"path":[4,46,2,6,5],"span":[862,11,17]},{"path":[4,46,2,6,1],"span":[862,18,29]},{"path":[4,46,2,6,3],"span":[862,32,33]},{"path":[4,46,2,7],"span":[863,2,29],"trailingComments":" in case at some point we want to store full\n"},{"path":[4,46,2,7,4],"span":[863,2,10]},{"path":[4,46,2,7,5],"span":[863,11,16]},{"path":[4,46,2,7,1],"span":[863,17,24]},{"path":[4,46,2,7,3],"span":[863,27,28]},{"path":[4,46,2,8],"span":[865,2,44],"trailingComments":" Captured certificates\n"},{"path":[4,46,2,8,4],"span":[865,2,10]},{"path":[4,46,2,8,6],"span":[865,11,26]},{"path":[4,46,2,8,1],"span":[865,27,39]},{"path":[4,46,2,8,3],"span":[865,42,43]},{"path":[4,47],"span":[868,0,883,1]},{"path":[4,47,1],"span":[868,8,23]},{"path":[4,47,2,0],"span":[869,2,33],"trailingComments":" thumbprint\n"},{"path":[4,47,2,0,4],"span":[869,2,10]},{"path":[4,47,2,0,5],"span":[869,11,17]},{"path":[4,47,2,0,1],"span":[869,18,28]},{"path":[4,47,2,0,3],"span":[869,31,32]},{"path":[4,47,2,1],"span":[870,2,36],"trailingComments":" serial_number (as a big-endian hexadecimal string)\n"},{"path":[4,47,2,1,4],"span":[870,2,10]},{"path":[4,47,2,1,5],"span":[870,11,17]},{"path":[4,47,2,1,1],"span":[870,18,31]},{"path":[4,47,2,1,3],"span":[870,34,35]},{"path":[4,47,2,2],"span":[871,2,34],"trailingComments":" x509.issuer\n"},{"path":[4,47,2,2,4],"span":[871,2,10]},{"path":[4,47,2,2,5],"span":[871,11,17]},{"path":[4,47,2,2,1],"span":[871,18,29]},{"path":[4,47,2,2,3],"span":[871,32,33]},{"path":[4,47,2,3],"span":[872,2,35],"trailingComments":" x509.subject\n"},{"path":[4,47,2,3,4],"span":[872,2,10]},{"path":[4,47,2,3,5],"span":[872,11,17]},{"path":[4,47,2,3,1],"span":[872,18,30]},{"path":[4,47,2,3,3],"span":[872,33,34]},{"path":[4,47,2,4],"span":[873,2,56],"trailingComments":" not_before\n"},{"path":[4,47,2,4,4],"span":[873,2,10]},{"path":[4,47,2,4,6],"span":[873,11,36]},{"path":[4,47,2,4,1],"span":[873,37,51]},{"path":[4,47,2,4,3],"span":[873,54,55]},{"path":[4,47,2,5],"span":[874,2,57],"trailingComments":" not_after\n"},{"path":[4,47,2,5,4],"span":[874,2,10]},{"path":[4,47,2,5,6],"span":[874,11,36]},{"path":[4,47,2,5,1],"span":[874,37,52]},{"path":[4,47,2,5,3],"span":[874,55,56]},{"path":[4,47,4,0],"span":[876,2,880,3]},{"path":[4,47,4,0,1],"span":[876,7,22]},{"path":[4,47,4,0,2,0],"span":[877,4,45]},{"path":[4,47,4,0,2,0,1],"span":[877,4,40]},{"path":[4,47,4,0,2,0,2],"span":[877,43,44]},{"path":[4,47,4,0,2,1],"span":[878,4,45]},{"path":[4,47,4,0,2,1,1],"span":[878,4,40]},{"path":[4,47,4,0,2,1,2],"span":[878,43,44]},{"path":[4,47,4,0,2,2],"span":[879,4,44]},{"path":[4,47,4,0,2,2,1],"span":[879,4,39]},{"path":[4,47,4,0,2,2,2],"span":[879,42,43]},{"path":[4,47,2,6],"span":[882,2,38],"trailingComments":" ssl errors\n"},{"path":[4,47,2,6,4],"span":[882,2,10]},{"path":[4,47,2,6,6],"span":[882,11,26]},{"path":[4,47,2,6,1],"span":[882,27,33]},{"path":[4,47,2,6,3],"span":[882,36,37]},{"path":[4,48],"span":[887,0,928,1],"leadingComments":" Processor *"},{"path":[4,48,1],"span":[887,8,17]},{"path":[4,48,2,0],"span":[888,2,21]},{"path":[4,48,2,0,5],"span":[888,2,8]},{"path":[4,48,2,0,1],"span":[888,10,14]},{"path":[4,48,2,0,3],"span":[888,17,18]},{"path":[4,48,2,1],"span":[889,2,36],"trailingComments":" Linux-only\n"},{"path":[4,48,2,1,4],"span":[889,2,10]},{"path":[4,48,2,1,5],"span":[889,11,17]},{"path":[4,48,2,1,1],"span":[889,18,31]},{"path":[4,48,2,1,3],"span":[889,34,35]},{"path":[4,48,2,2],"span":[890,2,35],"trailingComments":" Windows-only\n"},{"path":[4,48,2,2,4],"span":[890,2,10]},{"path":[4,48,2,2,5],"span":[890,11,16]},{"path":[4,48,2,2,1],"span":[890,17,30]},{"path":[4,48,2,2,3],"span":[890,33,34]},{"path":[4,48,2,3],"span":[891,2,40],"trailingComments":" Consolidate on-prem fields into single numeric list with translations\n"},{"path":[4,48,2,3,4],"span":[891,2,10]},{"path":[4,48,2,3,6],"span":[891,11,22]},{"path":[4,48,2,3,1],"span":[891,23,35]},{"path":[4,48,2,3,3],"span":[891,38,39]},{"path":[4,48,2,4],"span":[892,2,34],"trailingComments":" Windows-only\n"},{"path":[4,48,2,4,4],"span":[892,2,10]},{"path":[4,48,2,4,5],"span":[892,11,16]},{"path":[4,48,2,4,1],"span":[892,17,29]},{"path":[4,48,2,4,3],"span":[892,32,33]},{"path":[4,48,2,5],"span":[893,2,32],"trailingComments":" Standardize to numeric\n"},{"path":[4,48,2,5,4],"span":[893,2,10]},{"path":[4,48,2,5,5],"span":[893,11,17]},{"path":[4,48,2,5,1],"span":[893,18,27]},{"path":[4,48,2,5,3],"span":[893,30,31]},{"path":[4,48,2,6],"span":[894,2,33],"trailingComments":" Linux-only\n"},{"path":[4,48,2,6,4],"span":[894,2,10]},{"path":[4,48,2,6,5],"span":[894,11,17]},{"path":[4,48,2,6,1],"span":[894,18,28]},{"path":[4,48,2,6,3],"span":[894,31,32]},{"path":[4,48,2,7],"span":[895,2,30],"trailingComments":" Windows-only\n"},{"path":[4,48,2,7,4],"span":[895,2,10]},{"path":[4,48,2,7,5],"span":[895,11,17]},{"path":[4,48,2,7,1],"span":[895,18,25]},{"path":[4,48,2,7,3],"span":[895,28,29]},{"path":[4,48,2,8],"span":[896,2,41],"trailingComments":" Standardize values to numeric (MHz)\n"},{"path":[4,48,2,8,4],"span":[896,2,10]},{"path":[4,48,2,8,5],"span":[896,11,16]},{"path":[4,48,2,8,1],"span":[896,17,36]},{"path":[4,48,2,8,3],"span":[896,39,40]},{"path":[4,48,2,9],"span":[897,2,33],"trailingComments":" Windows-only\n"},{"path":[4,48,2,9,4],"span":[897,2,10]},{"path":[4,48,2,9,5],"span":[897,11,16]},{"path":[4,48,2,9,1],"span":[897,17,27]},{"path":[4,48,2,9,3],"span":[897,30,32]},{"path":[4,48,2,10],"span":[898,2,33],"trailingComments":" Windows-only\n"},{"path":[4,48,2,10,4],"span":[898,2,10]},{"path":[4,48,2,10,5],"span":[898,11,17]},{"path":[4,48,2,10,1],"span":[898,18,27]},{"path":[4,48,2,10,3],"span":[898,30,32]},{"path":[4,48,2,11],"span":[899,2,41],"trailingComments":" Windows-only\n"},{"path":[4,48,2,11,4],"span":[899,2,10]},{"path":[4,48,2,11,5],"span":[899,11,16]},{"path":[4,48,2,11,1],"span":[899,17,35]},{"path":[4,48,2,11,3],"span":[899,38,40]},{"path":[4,48,2,12],"span":[900,2,35],"trailingComments":" Consolidate on-prem fields into single numeric list with translations\n"},{"path":[4,48,2,12,4],"span":[900,2,10]},{"path":[4,48,2,12,6],"span":[900,11,22]},{"path":[4,48,2,12,1],"span":[900,23,29]},{"path":[4,48,2,12,3],"span":[900,32,34]},{"path":[4,48,2,13],"span":[901,2,41],"trailingComments":" Linux-only\n"},{"path":[4,48,2,13,4],"span":[901,2,10]},{"path":[4,48,2,13,5],"span":[901,11,17]},{"path":[4,48,2,13,1],"span":[901,18,35]},{"path":[4,48,2,13,3],"span":[901,38,40]},{"path":[4,48,2,14],"span":[902,2,40],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,48,2,14,4],"span":[902,2,10]},{"path":[4,48,2,14,5],"span":[902,11,16]},{"path":[4,48,2,14,1],"span":[902,17,34]},{"path":[4,48,2,14,3],"span":[902,37,39]},{"path":[4,48,2,15],"span":[903,2,40],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,48,2,15,4],"span":[903,2,10]},{"path":[4,48,2,15,5],"span":[903,11,16]},{"path":[4,48,2,15,1],"span":[903,17,34]},{"path":[4,48,2,15,3],"span":[903,37,39]},{"path":[4,48,2,16],"span":[904,2,39],"trailingComments":" Standardize values to int (kilobytes)\n"},{"path":[4,48,2,16,4],"span":[904,2,10]},{"path":[4,48,2,16,5],"span":[904,11,16]},{"path":[4,48,2,16,1],"span":[904,17,33]},{"path":[4,48,2,16,3],"span":[904,36,38]},{"path":[4,48,2,17],"span":[905,2,41],"trailingComments":" Windows-only\n"},{"path":[4,48,2,17,4],"span":[905,2,10]},{"path":[4,48,2,17,5],"span":[905,11,16]},{"path":[4,48,2,17,1],"span":[905,17,35]},{"path":[4,48,2,17,3],"span":[905,38,40]},{"path":[4,48,2,18],"span":[906,2,39],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,48,2,18,4],"span":[906,2,10]},{"path":[4,48,2,18,5],"span":[906,11,16]},{"path":[4,48,2,18,1],"span":[906,17,33]},{"path":[4,48,2,18,3],"span":[906,36,38]},{"path":[4,48,2,19],"span":[907,2,28],"trailingComments":" Windows-only, unclear meaning\n"},{"path":[4,48,2,19,4],"span":[907,2,10]},{"path":[4,48,2,19,5],"span":[907,11,16]},{"path":[4,48,2,19,1],"span":[907,17,22]},{"path":[4,48,2,19,3],"span":[907,25,27]},{"path":[4,48,2,20],"span":[908,2,44]},{"path":[4,48,2,20,4],"span":[908,2,10]},{"path":[4,48,2,20,5],"span":[908,11,16]},{"path":[4,48,2,20,1],"span":[908,17,36]},{"path":[4,48,2,20,3],"span":[908,39,41]},{"path":[4,48,2,21],"span":[909,2,38]},{"path":[4,48,2,21,4],"span":[909,2,10]},{"path":[4,48,2,21,5],"span":[909,11,17]},{"path":[4,48,2,21,1],"span":[909,18,30]},{"path":[4,48,2,21,3],"span":[909,33,35]},{"path":[4,48,2,22],"span":[910,2,42],"trailingComments":" Standardize Linux values to int (MHz)\n"},{"path":[4,48,2,22,4],"span":[910,2,10]},{"path":[4,48,2,22,5],"span":[910,11,16]},{"path":[4,48,2,22,1],"span":[910,17,36]},{"path":[4,48,2,22,3],"span":[910,39,41]},{"path":[4,48,2,23],"span":[911,2,42],"trailingComments":" Linux-only, standardize to numeric (MHz)\n"},{"path":[4,48,2,23,4],"span":[911,2,10]},{"path":[4,48,2,23,5],"span":[911,11,16]},{"path":[4,48,2,23,1],"span":[911,17,36]},{"path":[4,48,2,23,3],"span":[911,39,41]},{"path":[4,48,2,24],"span":[912,2,35],"trailingComments":" Linux-only, standardize to numeric\n"},{"path":[4,48,2,24,4],"span":[912,2,10]},{"path":[4,48,2,24,5],"span":[912,11,16]},{"path":[4,48,2,24,1],"span":[912,17,29]},{"path":[4,48,2,24,3],"span":[912,32,34]},{"path":[4,48,2,25],"span":[913,2,32],"trailingComments":" Linux-only\n"},{"path":[4,48,2,25,4],"span":[913,2,10]},{"path":[4,48,2,25,5],"span":[913,11,17]},{"path":[4,48,2,25,1],"span":[913,18,26]},{"path":[4,48,2,25,3],"span":[913,29,31]},{"path":[4,48,2,26],"span":[914,2,45]},{"path":[4,48,2,26,4],"span":[914,2,10]},{"path":[4,48,2,26,5],"span":[914,11,16]},{"path":[4,48,2,26,1],"span":[914,17,37]},{"path":[4,48,2,26,3],"span":[914,40,42]},{"path":[4,48,2,27],"span":[915,2,36],"trailingComments":" Windows-only, probably not used much by customers due to its complexity\n"},{"path":[4,48,2,27,4],"span":[915,2,10]},{"path":[4,48,2,27,5],"span":[915,11,17]},{"path":[4,48,2,27,1],"span":[915,18,30]},{"path":[4,48,2,27,3],"span":[915,33,35]},{"path":[4,48,2,28],"span":[916,2,43],"trailingComments":" Windows-only\n"},{"path":[4,48,2,28,4],"span":[916,2,10]},{"path":[4,48,2,28,6],"span":[916,11,22]},{"path":[4,48,2,28,1],"span":[916,23,37]},{"path":[4,48,2,28,3],"span":[916,40,42]},{"path":[4,48,2,29],"span":[917,2,31],"trailingComments":" Windows-only\n"},{"path":[4,48,2,29,4],"span":[917,2,10]},{"path":[4,48,2,29,5],"span":[917,11,16]},{"path":[4,48,2,29,1],"span":[917,17,25]},{"path":[4,48,2,29,3],"span":[917,28,30]},{"path":[4,48,2,30],"span":[918,2,42],"trailingComments":" Windows-only\n"},{"path":[4,48,2,30,4],"span":[918,2,10]},{"path":[4,48,2,30,5],"span":[918,11,17]},{"path":[4,48,2,30,1],"span":[918,18,36]},{"path":[4,48,2,30,3],"span":[918,39,41]},{"path":[4,48,2,31],"span":[919,2,31],"trailingComments":" Linux-only\n"},{"path":[4,48,2,31,4],"span":[919,2,10]},{"path":[4,48,2,31,5],"span":[919,11,16]},{"path":[4,48,2,31,1],"span":[919,18,25]},{"path":[4,48,2,31,3],"span":[919,28,30]},{"path":[4,48,2,32],"span":[920,2,35],"trailingComments":" Windows-only\n"},{"path":[4,48,2,32,4],"span":[920,2,10]},{"path":[4,48,2,32,6],"span":[920,11,22]},{"path":[4,48,2,32,1],"span":[920,23,29]},{"path":[4,48,2,32,3],"span":[920,32,34]},{"path":[4,48,2,33],"span":[921,2,31],"trailingComments":" Consolidate on-prem fields into single numeric list\n"},{"path":[4,48,2,33,4],"span":[921,2,10]},{"path":[4,48,2,33,5],"span":[921,11,16]},{"path":[4,48,2,33,1],"span":[921,17,25]},{"path":[4,48,2,33,3],"span":[921,28,30]},{"path":[4,48,2,34],"span":[922,2,54],"trailingComments":" Linux-only\n"},{"path":[4,48,2,34,4],"span":[922,2,10]},{"path":[4,48,2,34,5],"span":[922,11,16]},{"path":[4,48,2,34,1],"span":[922,17,48]},{"path":[4,48,2,34,3],"span":[922,51,53]},{"path":[4,48,2,35],"span":[923,2,33],"trailingComments":" Windows-only\n"},{"path":[4,48,2,35,4],"span":[923,2,10]},{"path":[4,48,2,35,5],"span":[923,11,17]},{"path":[4,48,2,35,1],"span":[923,18,27]},{"path":[4,48,2,35,3],"span":[923,30,32]},{"path":[4,48,2,36],"span":[924,2,43],"trailingComments":" Windows-only\n"},{"path":[4,48,2,36,4],"span":[924,2,10]},{"path":[4,48,2,36,6],"span":[924,11,22]},{"path":[4,48,2,36,1],"span":[924,23,37]},{"path":[4,48,2,36,3],"span":[924,40,42]},{"path":[4,48,2,37],"span":[925,2,31],"trailingComments":" Windows-only\n"},{"path":[4,48,2,37,4],"span":[925,2,10]},{"path":[4,48,2,37,5],"span":[925,11,17]},{"path":[4,48,2,37,1],"span":[925,18,25]},{"path":[4,48,2,37,3],"span":[925,28,30]},{"path":[4,48,2,38],"span":[926,2,38],"trailingComments":" Linux-only\n"},{"path":[4,48,2,38,4],"span":[926,2,10]},{"path":[4,48,2,38,5],"span":[926,11,17]},{"path":[4,48,2,38,1],"span":[926,18,32]},{"path":[4,48,2,38,3],"span":[926,35,37]},{"path":[4,48,2,39],"span":[927,2,49],"trailingComments":" Windows-only\n"},{"path":[4,48,2,39,4],"span":[927,2,10]},{"path":[4,48,2,39,6],"span":[927,11,22]},{"path":[4,48,2,39,1],"span":[927,23,43]},{"path":[4,48,2,39,3],"span":[927,46,48]},{"path":[4,49],"span":[931,0,941,1],"leadingComments":" Chassis *"},{"path":[4,49,1],"span":[931,8,15]},{"path":[4,49,2,0],"span":[933,2,25]},{"path":[4,49,2,0,6],"span":[933,2,13]},{"path":[4,49,2,0,1],"span":[933,16,20]},{"path":[4,49,2,0,3],"span":[933,23,24]},{"path":[4,49,2,1],"span":[934,2,33]},{"path":[4,49,2,1,4],"span":[934,2,10]},{"path":[4,49,2,1,5],"span":[934,11,15]},{"path":[4,49,2,1,1],"span":[934,16,28]},{"path":[4,49,2,1,3],"span":[934,31,32]},{"path":[4,49,2,2],"span":[935,2,41]},{"path":[4,49,2,2,4],"span":[935,2,10]},{"path":[4,49,2,2,5],"span":[935,11,17]},{"path":[4,49,2,2,1],"span":[935,24,36]},{"path":[4,49,2,2,3],"span":[935,39,40]},{"path":[4,49,2,3],"span":[936,2,43]},{"path":[4,49,2,3,4],"span":[936,2,10]},{"path":[4,49,2,3,6],"span":[936,11,22]},{"path":[4,49,2,3,1],"span":[936,23,38]},{"path":[4,49,2,3,3],"span":[936,41,42]},{"path":[4,49,2,4],"span":[937,2,42]},{"path":[4,49,2,4,4],"span":[937,2,10]},{"path":[4,49,2,4,5],"span":[937,11,17]},{"path":[4,49,2,4,1],"span":[937,24,37]},{"path":[4,49,2,4,3],"span":[937,40,41]},{"path":[4,49,2,5],"span":[938,2,38]},{"path":[4,49,2,5,4],"span":[938,2,10]},{"path":[4,49,2,5,5],"span":[938,11,17]},{"path":[4,49,2,5,1],"span":[938,24,33]},{"path":[4,49,2,5,3],"span":[938,36,37]},{"path":[4,49,2,6],"span":[939,2,36]},{"path":[4,49,2,6,4],"span":[939,2,10]},{"path":[4,49,2,6,5],"span":[939,11,17]},{"path":[4,49,2,6,1],"span":[939,24,31]},{"path":[4,49,2,6,3],"span":[939,34,35]},{"path":[4,49,2,7],"span":[940,2,40]},{"path":[4,49,2,7,4],"span":[940,2,10]},{"path":[4,49,2,7,6],"span":[940,11,22]},{"path":[4,49,2,7,1],"span":[940,23,35]},{"path":[4,49,2,7,3],"span":[940,38,39]},{"path":[4,50],"span":[946,0,958,1],"leadingComments":"\n Hard drive for computers: Windows.WindowsHardDisk, Unix.HardDisks, Mac.MacHardDisk\n"},{"path":[4,50,1],"span":[946,8,17]},{"path":[4,50,2,0],"span":[947,2,30]},{"path":[4,50,2,0,4],"span":[947,2,10]},{"path":[4,50,2,0,5],"span":[947,11,17]},{"path":[4,50,2,0,1],"span":[947,18,25]},{"path":[4,50,2,0,3],"span":[947,28,29]},{"path":[4,50,2,1],"span":[948,2,31]},{"path":[4,50,2,1,4],"span":[948,2,10]},{"path":[4,50,2,1,5],"span":[948,11,15]},{"path":[4,50,2,1,1],"span":[948,16,26]},{"path":[4,50,2,1,3],"span":[948,29,30]},{"path":[4,50,2,2],"span":[949,2,34]},{"path":[4,50,2,2,4],"span":[949,2,10]},{"path":[4,50,2,2,5],"span":[949,11,17]},{"path":[4,50,2,2,1],"span":[949,18,29]},{"path":[4,50,2,2,3],"span":[949,32,33]},{"path":[4,50,2,3],"span":[950,2,32]},{"path":[4,50,2,3,4],"span":[950,2,10]},{"path":[4,50,2,3,5],"span":[950,11,17]},{"path":[4,50,2,3,1],"span":[950,18,27]},{"path":[4,50,2,3,3],"span":[950,30,31]},{"path":[4,50,2,4],"span":[951,2,38]},{"path":[4,50,2,4,4],"span":[951,2,10]},{"path":[4,50,2,4,6],"span":[951,11,22]},{"path":[4,50,2,4,1],"span":[951,23,33]},{"path":[4,50,2,4,3],"span":[951,36,37]},{"path":[4,50,2,5],"span":[952,2,34]},{"path":[4,50,2,5,4],"span":[952,2,10]},{"path":[4,50,2,5,5],"span":[952,11,17]},{"path":[4,50,2,5,1],"span":[952,18,29]},{"path":[4,50,2,5,3],"span":[952,32,33]},{"path":[4,50,2,6],"span":[953,2,32]},{"path":[4,50,2,6,4],"span":[953,2,10]},{"path":[4,50,2,6,5],"span":[953,11,16]},{"path":[4,50,2,6,1],"span":[953,17,27]},{"path":[4,50,2,6,3],"span":[953,30,31]},{"path":[4,50,2,7],"span":[954,2,26]},{"path":[4,50,2,7,4],"span":[954,2,10]},{"path":[4,50,2,7,5],"span":[954,11,16]},{"path":[4,50,2,7,1],"span":[954,17,21]},{"path":[4,50,2,7,3],"span":[954,24,25]},{"path":[4,50,2,8],"span":[955,2,34]},{"path":[4,50,2,8,4],"span":[955,2,10]},{"path":[4,50,2,8,5],"span":[955,11,17]},{"path":[4,50,2,8,1],"span":[955,18,29]},{"path":[4,50,2,8,3],"span":[955,32,33]},{"path":[4,50,2,9],"span":[956,2,37]},{"path":[4,50,2,9,4],"span":[956,2,10]},{"path":[4,50,2,9,5],"span":[956,11,17]},{"path":[4,50,2,9,1],"span":[956,18,31]},{"path":[4,50,2,9,3],"span":[956,34,36]},{"path":[4,50,2,10],"span":[957,2,34]},{"path":[4,50,2,10,4],"span":[957,2,10]},{"path":[4,50,2,10,5],"span":[957,11,17]},{"path":[4,50,2,10,1],"span":[957,18,28]},{"path":[4,50,2,10,3],"span":[957,31,33]},{"path":[4,51],"span":[963,0,993,1],"leadingComments":"\n Volumes for Computers: Windows.Volume+Windows.EncryptableVolumes and Unix.Volumes\n"},{"path":[4,51,1],"span":[963,8,19]},{"path":[4,51,2,0],"span":[964,2,32]},{"path":[4,51,2,0,4],"span":[964,2,10]},{"path":[4,51,2,0,5],"span":[964,11,17]},{"path":[4,51,2,0,1],"span":[964,18,27]},{"path":[4,51,2,0,3],"span":[964,30,31]},{"path":[4,51,2,1],"span":[965,2,27],"trailingComments":" unix path, windows drive_letter\n"},{"path":[4,51,2,1,4],"span":[965,2,10]},{"path":[4,51,2,1,5],"span":[965,11,17]},{"path":[4,51,2,1,1],"span":[965,18,22]},{"path":[4,51,2,1,3],"span":[965,25,26]},{"path":[4,51,2,2],"span":[966,2,28],"trailingComments":" win and linux\n"},{"path":[4,51,2,2,4],"span":[966,2,10]},{"path":[4,51,2,2,5],"span":[966,11,17]},{"path":[4,51,2,2,1],"span":[966,18,23]},{"path":[4,51,2,2,3],"span":[966,26,27]},{"path":[4,51,2,3],"span":[967,2,27]},{"path":[4,51,2,3,4],"span":[967,2,10]},{"path":[4,51,2,3,5],"span":[967,11,17]},{"path":[4,51,2,3,1],"span":[967,18,22]},{"path":[4,51,2,3,3],"span":[967,25,26]},{"path":[4,51,2,4],"span":[969,2,30],"trailingComments":" windows capacity, size in unix\n"},{"path":[4,51,2,4,4],"span":[969,2,10]},{"path":[4,51,2,4,5],"span":[969,11,16]},{"path":[4,51,2,4,1],"span":[969,17,25]},{"path":[4,51,2,4,3],"span":[969,28,29]},{"path":[4,51,2,5],"span":[970,2,32]},{"path":[4,51,2,5,4],"span":[970,2,10]},{"path":[4,51,2,5,5],"span":[970,11,16]},{"path":[4,51,2,5,1],"span":[970,17,27]},{"path":[4,51,2,5,3],"span":[970,30,31]},{"path":[4,51,2,6],"span":[971,2,32]},{"path":[4,51,2,6,4],"span":[971,2,10]},{"path":[4,51,2,6,5],"span":[971,11,16]},{"path":[4,51,2,6,1],"span":[971,17,27]},{"path":[4,51,2,6,3],"span":[971,30,31]},{"path":[4,51,2,7],"span":[973,2,38],"trailingComments":" Windows: WMI mapped, Unix: string\n"},{"path":[4,51,2,7,4],"span":[973,2,10]},{"path":[4,51,2,7,6],"span":[973,11,22]},{"path":[4,51,2,7,1],"span":[973,23,33]},{"path":[4,51,2,7,3],"span":[973,36,37]},{"path":[4,51,2,8],"span":[974,2,45],"trailingComments":" from Windows if encrypted: Windows.EncryptableVolumes\n"},{"path":[4,51,2,8,4],"span":[974,2,10]},{"path":[4,51,2,8,6],"span":[974,11,22]},{"path":[4,51,2,8,1],"span":[974,23,40]},{"path":[4,51,2,8,3],"span":[974,43,44]},{"path":[4,51,2,9],"span":[976,2,41]},{"path":[4,51,2,9,4],"span":[976,2,10]},{"path":[4,51,2,9,5],"span":[976,11,17]},{"path":[4,51,2,9,1],"span":[976,18,35]},{"path":[4,51,2,9,3],"span":[976,38,40]},{"path":[4,51,2,10],"span":[977,2,41]},{"path":[4,51,2,10,4],"span":[977,2,10]},{"path":[4,51,2,10,5],"span":[977,11,17]},{"path":[4,51,2,10,1],"span":[977,18,35]},{"path":[4,51,2,10,3],"span":[977,38,40]},{"path":[4,51,2,11],"span":[978,2,35]},{"path":[4,51,2,11,4],"span":[978,2,10]},{"path":[4,51,2,11,5],"span":[978,11,17]},{"path":[4,51,2,11,1],"span":[978,18,29]},{"path":[4,51,2,11,3],"span":[978,32,34]},{"path":[4,51,2,12],"span":[980,2,32]},{"path":[4,51,2,12,4],"span":[980,2,10]},{"path":[4,51,2,12,5],"span":[980,11,15]},{"path":[4,51,2,12,1],"span":[980,16,26]},{"path":[4,51,2,12,3],"span":[980,29,31]},{"path":[4,51,2,13],"span":[981,2,32]},{"path":[4,51,2,13,4],"span":[981,2,10]},{"path":[4,51,2,13,5],"span":[981,11,15]},{"path":[4,51,2,13,1],"span":[981,16,26]},{"path":[4,51,2,13,3],"span":[981,29,31]},{"path":[4,51,2,14],"span":[982,2,35]},{"path":[4,51,2,14,4],"span":[982,2,10]},{"path":[4,51,2,14,5],"span":[982,11,15]},{"path":[4,51,2,14,1],"span":[982,16,29]},{"path":[4,51,2,14,3],"span":[982,32,34]},{"path":[4,51,2,15],"span":[983,2,35]},{"path":[4,51,2,15,4],"span":[983,2,10]},{"path":[4,51,2,15,5],"span":[983,11,15]},{"path":[4,51,2,15,1],"span":[983,16,29]},{"path":[4,51,2,15,3],"span":[983,32,34]},{"path":[4,51,2,16],"span":[984,2,38]},{"path":[4,51,2,16,4],"span":[984,2,10]},{"path":[4,51,2,16,5],"span":[984,11,15]},{"path":[4,51,2,16,1],"span":[984,16,32]},{"path":[4,51,2,16,3],"span":[984,35,37]},{"path":[4,51,2,17],"span":[985,2,39]},{"path":[4,51,2,17,4],"span":[985,2,10]},{"path":[4,51,2,17,5],"span":[985,11,15]},{"path":[4,51,2,17,1],"span":[985,16,33]},{"path":[4,51,2,17,3],"span":[985,36,38]},{"path":[4,51,2,18],"span":[986,2,42]},{"path":[4,51,2,18,4],"span":[986,2,10]},{"path":[4,51,2,18,5],"span":[986,11,15]},{"path":[4,51,2,18,1],"span":[986,16,36]},{"path":[4,51,2,18,3],"span":[986,39,41]},{"path":[4,51,2,19],"span":[987,2,53]},{"path":[4,51,2,19,4],"span":[987,2,10]},{"path":[4,51,2,19,5],"span":[987,11,15]},{"path":[4,51,2,19,1],"span":[987,16,47]},{"path":[4,51,2,19,3],"span":[987,50,52]},{"path":[4,51,2,20],"span":[990,2,31],"leadingComments":" unix\n"},{"path":[4,51,2,20,4],"span":[990,2,10]},{"path":[4,51,2,20,5],"span":[990,11,17]},{"path":[4,51,2,20,1],"span":[990,18,25]},{"path":[4,51,2,20,3],"span":[990,28,30]},{"path":[4,51,2,21],"span":[991,2,35]},{"path":[4,51,2,21,4],"span":[991,2,10]},{"path":[4,51,2,21,5],"span":[991,11,17]},{"path":[4,51,2,21,1],"span":[991,18,29]},{"path":[4,51,2,21,3],"span":[991,32,34]},{"path":[4,52],"span":[998,0,1005,1],"leadingComments":"\n Network drives/volumes for Computers: Windows.MappedDrive and Mac.NetworkVolume\n"},{"path":[4,52,1],"span":[998,8,21]},{"path":[4,52,8,0],"span":[999,2,1002,5]},{"path":[4,52,8,0,1],"span":[999,8,14]},{"path":[4,52,2,0],"span":[1000,4,44]},{"path":[4,52,2,0,6],"span":[1000,4,22]},{"path":[4,52,2,0,1],"span":[1000,23,39]},{"path":[4,52,2,0,3],"span":[1000,42,43]},{"path":[4,52,2,1],"span":[1001,4,36]},{"path":[4,52,2,1,6],"span":[1001,4,20]},{"path":[4,52,2,1,1],"span":[1001,21,31]},{"path":[4,52,2,1,3],"span":[1001,34,35]},{"path":[4,52,2,2],"span":[1004,2,29]},{"path":[4,52,2,2,4],"span":[1004,2,10]},{"path":[4,52,2,2,5],"span":[1004,11,17]},{"path":[4,52,2,2,1],"span":[1004,18,22]},{"path":[4,52,2,2,3],"span":[1004,25,28]},{"path":[4,53],"span":[1008,0,1013,1],"leadingComments":" Network drive for Windows: Mapped drive.\n"},{"path":[4,53,1],"span":[1008,8,26]},{"path":[4,53,2,0],"span":[1009,2,26]},{"path":[4,53,2,0,5],"span":[1009,2,8]},{"path":[4,53,2,0,1],"span":[1009,9,21]},{"path":[4,53,2,0,3],"span":[1009,24,25]},{"path":[4,53,2,1],"span":[1010,2,32]},{"path":[4,53,2,1,4],"span":[1010,2,10]},{"path":[4,53,2,1,5],"span":[1010,11,17]},{"path":[4,53,2,1,1],"span":[1010,18,27]},{"path":[4,53,2,1,3],"span":[1010,30,31]},{"path":[4,53,2,2],"span":[1011,2,34]},{"path":[4,53,2,2,4],"span":[1011,2,10]},{"path":[4,53,2,2,5],"span":[1011,11,17]},{"path":[4,53,2,2,1],"span":[1011,18,29]},{"path":[4,53,2,2,3],"span":[1011,32,33]},{"path":[4,53,2,3],"span":[1012,2,34]},{"path":[4,53,2,3,4],"span":[1012,2,10]},{"path":[4,53,2,3,5],"span":[1012,11,17]},{"path":[4,53,2,3,1],"span":[1012,18,29]},{"path":[4,53,2,3,3],"span":[1012,32,33]},{"path":[4,54],"span":[1016,0,1022,1],"leadingComments":" Network volume for Mac: NetworkVolume.\n"},{"path":[4,54,1],"span":[1016,8,24]},{"path":[4,54,2,0],"span":[1017,2,27]},{"path":[4,54,2,0,4],"span":[1017,2,10]},{"path":[4,54,2,0,5],"span":[1017,11,17]},{"path":[4,54,2,0,1],"span":[1017,18,22]},{"path":[4,54,2,0,3],"span":[1017,25,26]},{"path":[4,54,2,1],"span":[1018,2,35]},{"path":[4,54,2,1,4],"span":[1018,2,10]},{"path":[4,54,2,1,5],"span":[1018,11,17]},{"path":[4,54,2,1,1],"span":[1018,18,30]},{"path":[4,54,2,1,3],"span":[1018,33,34]},{"path":[4,54,2,2],"span":[1019,2,36]},{"path":[4,54,2,2,4],"span":[1019,2,10]},{"path":[4,54,2,2,5],"span":[1019,11,17]},{"path":[4,54,2,2,1],"span":[1019,18,31]},{"path":[4,54,2,2,3],"span":[1019,34,35]},{"path":[4,54,2,3],"span":[1020,2,35]},{"path":[4,54,2,3,4],"span":[1020,2,10]},{"path":[4,54,2,3,5],"span":[1020,11,17]},{"path":[4,54,2,3,1],"span":[1020,18,30]},{"path":[4,54,2,3,3],"span":[1020,33,34]},{"path":[4,54,2,4],"span":[1021,2,36]},{"path":[4,54,2,4,4],"span":[1021,2,10]},{"path":[4,54,2,4,5],"span":[1021,11,17]},{"path":[4,54,2,4,1],"span":[1021,18,31]},{"path":[4,54,2,4,3],"span":[1021,34,35]},{"path":[4,55],"span":[1027,0,1034,1],"leadingComments":"\n Keyboard for computers: Windows.Keyboards\n"},{"path":[4,55,1],"span":[1027,8,16]},{"path":[4,55,2,0],"span":[1028,2,53]},{"path":[4,55,2,0,4],"span":[1028,2,10]},{"path":[4,55,2,0,6],"span":[1028,11,22]},{"path":[4,55,2,0,1],"span":[1028,23,48]},{"path":[4,55,2,0,3],"span":[1028,51,52]},{"path":[4,55,2,1],"span":[1029,2,47]},{"path":[4,55,2,1,4],"span":[1029,2,10]},{"path":[4,55,2,1,5],"span":[1029,11,15]},{"path":[4,55,2,1,1],"span":[1029,16,42]},{"path":[4,55,2,1,3],"span":[1029,45,46]},{"path":[4,55,2,2],"span":[1030,2,34]},{"path":[4,55,2,2,4],"span":[1030,2,10]},{"path":[4,55,2,2,5],"span":[1030,11,17]},{"path":[4,55,2,2,1],"span":[1030,18,29]},{"path":[4,55,2,2,3],"span":[1030,32,33]},{"path":[4,55,2,3],"span":[1031,2,32]},{"path":[4,55,2,3,4],"span":[1031,2,10]},{"path":[4,55,2,3,5],"span":[1031,11,17]},{"path":[4,55,2,3,1],"span":[1031,18,27]},{"path":[4,55,2,3,3],"span":[1031,30,31]},{"path":[4,55,2,4],"span":[1032,2,29]},{"path":[4,55,2,4,4],"span":[1032,2,10]},{"path":[4,55,2,4,5],"span":[1032,11,17]},{"path":[4,55,2,4,1],"span":[1032,18,24]},{"path":[4,55,2,4,3],"span":[1032,27,28]},{"path":[4,55,2,5],"span":[1033,2,45]},{"path":[4,55,2,5,4],"span":[1033,2,10]},{"path":[4,55,2,5,5],"span":[1033,11,16]},{"path":[4,55,2,5,1],"span":[1033,17,40]},{"path":[4,55,2,5,3],"span":[1033,43,44]},{"path":[4,56],"span":[1040,0,1045,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,56,1],"span":[1040,8,19]},{"path":[4,56,2,0],"span":[1041,2,29]},{"path":[4,56,2,0,4],"span":[1041,2,10]},{"path":[4,56,2,0,5],"span":[1041,11,16]},{"path":[4,56,2,0,1],"span":[1041,17,24]},{"path":[4,56,2,0,3],"span":[1041,27,28]},{"path":[4,56,2,1],"span":[1042,2,36]},{"path":[4,56,2,1,4],"span":[1042,2,10]},{"path":[4,56,2,1,6],"span":[1042,11,22]},{"path":[4,56,2,1,1],"span":[1042,23,31]},{"path":[4,56,2,1,3],"span":[1042,34,35]},{"path":[4,56,2,2],"span":[1043,2,32]},{"path":[4,56,2,2,4],"span":[1043,2,10]},{"path":[4,56,2,2,5],"span":[1043,11,17]},{"path":[4,56,2,2,1],"span":[1043,18,27]},{"path":[4,56,2,2,3],"span":[1043,30,31]},{"path":[4,56,2,3],"span":[1044,2,36]},{"path":[4,56,2,3,4],"span":[1044,2,10]},{"path":[4,56,2,3,5],"span":[1044,11,17]},{"path":[4,56,2,3,1],"span":[1044,18,31]},{"path":[4,56,2,3,3],"span":[1044,34,35]},{"path":[4,57],"span":[1051,0,1059,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,57,1],"span":[1051,8,24]},{"path":[4,57,2,0],"span":[1052,2,40]},{"path":[4,57,2,0,4],"span":[1052,2,10]},{"path":[4,57,2,0,6],"span":[1052,11,22]},{"path":[4,57,2,0,1],"span":[1052,23,35]},{"path":[4,57,2,0,3],"span":[1052,38,39]},{"path":[4,57,2,1],"span":[1053,2,30]},{"path":[4,57,2,1,4],"span":[1053,2,10]},{"path":[4,57,2,1,5],"span":[1053,11,17]},{"path":[4,57,2,1,1],"span":[1053,18,25]},{"path":[4,57,2,1,3],"span":[1053,28,29]},{"path":[4,57,2,2],"span":[1054,2,53]},{"path":[4,57,2,2,4],"span":[1054,2,10]},{"path":[4,57,2,2,6],"span":[1054,11,22]},{"path":[4,57,2,2,1],"span":[1054,23,48]},{"path":[4,57,2,2,3],"span":[1054,51,52]},{"path":[4,57,2,3],"span":[1055,2,47]},{"path":[4,57,2,3,4],"span":[1055,2,10]},{"path":[4,57,2,3,5],"span":[1055,11,15]},{"path":[4,57,2,3,1],"span":[1055,16,42]},{"path":[4,57,2,3,3],"span":[1055,45,46]},{"path":[4,57,2,4],"span":[1056,2,32]},{"path":[4,57,2,4,4],"span":[1056,2,10]},{"path":[4,57,2,4,5],"span":[1056,11,17]},{"path":[4,57,2,4,1],"span":[1056,18,27]},{"path":[4,57,2,4,3],"span":[1056,30,31]},{"path":[4,57,2,5],"span":[1057,2,35]},{"path":[4,57,2,5,4],"span":[1057,2,10]},{"path":[4,57,2,5,5],"span":[1057,11,17]},{"path":[4,57,2,5,1],"span":[1057,18,30]},{"path":[4,57,2,5,3],"span":[1057,33,34]},{"path":[4,57,2,6],"span":[1058,2,46]},{"path":[4,57,2,6,4],"span":[1058,2,10]},{"path":[4,57,2,6,6],"span":[1058,11,22]},{"path":[4,57,2,6,1],"span":[1058,23,41]},{"path":[4,57,2,6,3],"span":[1058,44,45]},{"path":[4,58],"span":[1065,0,1077,1],"leadingComments":"\n Pointing Device for computers, like mouse or trackpad: Windows.PointingDevice\n"},{"path":[4,58,1],"span":[1065,8,22]},{"path":[4,58,2,0],"span":[1066,2,30]},{"path":[4,58,2,0,4],"span":[1066,2,10]},{"path":[4,58,2,0,5],"span":[1066,11,17]},{"path":[4,58,2,0,1],"span":[1066,18,25]},{"path":[4,58,2,0,3],"span":[1066,28,29]},{"path":[4,58,2,1],"span":[1067,2,32]},{"path":[4,58,2,1,4],"span":[1067,2,10]},{"path":[4,58,2,1,5],"span":[1067,11,17]},{"path":[4,58,2,1,1],"span":[1067,18,27]},{"path":[4,58,2,1,3],"span":[1067,30,31]},{"path":[4,58,2,2],"span":[1068,2,44]},{"path":[4,58,2,2,4],"span":[1068,2,10]},{"path":[4,58,2,2,6],"span":[1068,11,22]},{"path":[4,58,2,2,1],"span":[1068,23,39]},{"path":[4,58,2,2,3],"span":[1068,42,43]},{"path":[4,58,2,3],"span":[1069,2,45]},{"path":[4,58,2,3,4],"span":[1069,2,10]},{"path":[4,58,2,3,5],"span":[1069,11,16]},{"path":[4,58,2,3,1],"span":[1069,18,40]},{"path":[4,58,2,3,3],"span":[1069,43,44]},{"path":[4,58,2,4],"span":[1070,2,38]},{"path":[4,58,2,4,4],"span":[1070,2,10]},{"path":[4,58,2,4,6],"span":[1070,11,22]},{"path":[4,58,2,4,1],"span":[1070,23,33]},{"path":[4,58,2,4,3],"span":[1070,36,37]},{"path":[4,58,2,5],"span":[1071,2,36]},{"path":[4,58,2,5,4],"span":[1071,2,10]},{"path":[4,58,2,5,5],"span":[1071,11,17]},{"path":[4,58,2,5,1],"span":[1071,18,31]},{"path":[4,58,2,5,3],"span":[1071,34,35]},{"path":[4,58,2,6],"span":[1072,2,34]},{"path":[4,58,2,6,4],"span":[1072,2,10]},{"path":[4,58,2,6,5],"span":[1072,11,17]},{"path":[4,58,2,6,1],"span":[1072,18,29]},{"path":[4,58,2,6,3],"span":[1072,32,33]},{"path":[4,58,2,7],"span":[1073,2,35]},{"path":[4,58,2,7,4],"span":[1073,2,10]},{"path":[4,58,2,7,5],"span":[1073,11,17]},{"path":[4,58,2,7,1],"span":[1073,18,30]},{"path":[4,58,2,7,3],"span":[1073,33,34]},{"path":[4,58,2,8],"span":[1074,2,40]},{"path":[4,58,2,8,4],"span":[1074,2,10]},{"path":[4,58,2,8,5],"span":[1074,11,16]},{"path":[4,58,2,8,1],"span":[1074,18,35]},{"path":[4,58,2,8,3],"span":[1074,38,39]},{"path":[4,58,2,9],"span":[1075,2,42]},{"path":[4,58,2,9,4],"span":[1075,2,10]},{"path":[4,58,2,9,6],"span":[1075,11,22]},{"path":[4,58,2,9,1],"span":[1075,23,36]},{"path":[4,58,2,9,3],"span":[1075,39,41]},{"path":[4,58,2,10],"span":[1076,2,44]},{"path":[4,58,2,10,4],"span":[1076,2,10]},{"path":[4,58,2,10,5],"span":[1076,11,16]},{"path":[4,58,2,10,1],"span":[1076,18,38]},{"path":[4,58,2,10,3],"span":[1076,41,43]},{"path":[4,59],"span":[1082,0,1089,1],"leadingComments":"\n AutoRunCommand: Windows.Autorun\n"},{"path":[4,59,1],"span":[1082,8,22]},{"path":[4,59,2,0],"span":[1083,2,30]},{"path":[4,59,2,0,4],"span":[1083,2,10]},{"path":[4,59,2,0,5],"span":[1083,11,17]},{"path":[4,59,2,0,1],"span":[1083,18,25]},{"path":[4,59,2,0,3],"span":[1083,28,29]},{"path":[4,59,2,1],"span":[1084,2,30]},{"path":[4,59,2,1,4],"span":[1084,2,10]},{"path":[4,59,2,1,5],"span":[1084,11,17]},{"path":[4,59,2,1,1],"span":[1084,18,25]},{"path":[4,59,2,1,3],"span":[1084,28,29]},{"path":[4,59,2,2],"span":[1085,2,31]},{"path":[4,59,2,2,4],"span":[1085,2,10]},{"path":[4,59,2,2,5],"span":[1085,11,17]},{"path":[4,59,2,2,1],"span":[1085,18,26]},{"path":[4,59,2,2,3],"span":[1085,29,30]},{"path":[4,59,2,3],"span":[1086,2,27]},{"path":[4,59,2,3,4],"span":[1086,2,10]},{"path":[4,59,2,3,5],"span":[1086,11,17]},{"path":[4,59,2,3,1],"span":[1086,18,22]},{"path":[4,59,2,3,3],"span":[1086,25,26]},{"path":[4,59,2,4],"span":[1087,2,27]},{"path":[4,59,2,4,4],"span":[1087,2,10]},{"path":[4,59,2,4,5],"span":[1087,11,17]},{"path":[4,59,2,4,1],"span":[1087,18,22]},{"path":[4,59,2,4,3],"span":[1087,25,26]},{"path":[4,59,2,5],"span":[1088,2,31]},{"path":[4,59,2,5,4],"span":[1088,2,10]},{"path":[4,59,2,5,5],"span":[1088,11,17]},{"path":[4,59,2,5,1],"span":[1088,18,26]},{"path":[4,59,2,5,3],"span":[1088,29,30]},{"path":[4,60],"span":[1094,0,1105,1],"leadingComments":"\n BootConfig: Windows.BootConfig \n"},{"path":[4,60,1],"span":[1094,8,18]},{"path":[4,60,2,0],"span":[1095,2,37]},{"path":[4,60,2,0,4],"span":[1095,2,10]},{"path":[4,60,2,0,5],"span":[1095,11,17]},{"path":[4,60,2,0,1],"span":[1095,18,32]},{"path":[4,60,2,0,3],"span":[1095,35,36]},{"path":[4,60,2,1],"span":[1096,2,30]},{"path":[4,60,2,1,4],"span":[1096,2,10]},{"path":[4,60,2,1,5],"span":[1096,11,17]},{"path":[4,60,2,1,1],"span":[1096,18,25]},{"path":[4,60,2,1,3],"span":[1096,28,29]},{"path":[4,60,2,2],"span":[1097,2,27]},{"path":[4,60,2,2,4],"span":[1097,2,10]},{"path":[4,60,2,2,5],"span":[1097,11,17]},{"path":[4,60,2,2,1],"span":[1097,18,22]},{"path":[4,60,2,2,3],"span":[1097,25,26]},{"path":[4,60,2,3],"span":[1098,2,41]},{"path":[4,60,2,3,4],"span":[1098,2,10]},{"path":[4,60,2,3,5],"span":[1098,11,17]},{"path":[4,60,2,3,1],"span":[1098,18,36]},{"path":[4,60,2,3,3],"span":[1098,39,40]},{"path":[4,60,2,4],"span":[1099,2,40]},{"path":[4,60,2,4,4],"span":[1099,2,10]},{"path":[4,60,2,4,5],"span":[1099,11,17]},{"path":[4,60,2,4,1],"span":[1099,18,35]},{"path":[4,60,2,4,3],"span":[1099,38,39]},{"path":[4,60,2,5],"span":[1100,2,37]},{"path":[4,60,2,5,4],"span":[1100,2,10]},{"path":[4,60,2,5,5],"span":[1100,11,17]},{"path":[4,60,2,5,1],"span":[1100,18,32]},{"path":[4,60,2,5,3],"span":[1100,35,36]},{"path":[4,60,2,6],"span":[1103,2,34],"leadingComments":" from mac\n"},{"path":[4,60,2,6,4],"span":[1103,2,10]},{"path":[4,60,2,6,5],"span":[1103,11,17]},{"path":[4,60,2,6,1],"span":[1103,18,29]},{"path":[4,60,2,6,3],"span":[1103,32,33]},{"path":[4,60,2,7],"span":[1104,2,32]},{"path":[4,60,2,7,4],"span":[1104,2,10]},{"path":[4,60,2,7,5],"span":[1104,11,17]},{"path":[4,60,2,7,1],"span":[1104,18,27]},{"path":[4,60,2,7,3],"span":[1104,30,31]},{"path":[4,61],"span":[1110,0,1116,1],"leadingComments":"\n SharedResource: windows WindowsShare.\n"},{"path":[4,61,1],"span":[1110,8,22]},{"path":[4,61,2,0],"span":[1111,2,30]},{"path":[4,61,2,0,4],"span":[1111,2,10]},{"path":[4,61,2,0,5],"span":[1111,11,17]},{"path":[4,61,2,0,1],"span":[1111,18,25]},{"path":[4,61,2,0,3],"span":[1111,28,29]},{"path":[4,61,2,1],"span":[1112,2,28]},{"path":[4,61,2,1,4],"span":[1112,2,10]},{"path":[4,61,2,1,5],"span":[1112,11,17]},{"path":[4,61,2,1,1],"span":[1112,18,22]},{"path":[4,61,2,1,3],"span":[1112,26,27]},{"path":[4,61,2,2],"span":[1113,2,27]},{"path":[4,61,2,2,4],"span":[1113,2,10]},{"path":[4,61,2,2,5],"span":[1113,11,17]},{"path":[4,61,2,2,1],"span":[1113,18,22]},{"path":[4,61,2,2,3],"span":[1113,25,26]},{"path":[4,61,2,3],"span":[1114,2,32]},{"path":[4,61,2,3,4],"span":[1114,2,10]},{"path":[4,61,2,3,6],"span":[1114,11,22]},{"path":[4,61,2,3,1],"span":[1114,23,27]},{"path":[4,61,2,3,3],"span":[1114,30,31]},{"path":[4,61,2,4],"span":[1115,2,50]},{"path":[4,61,2,4,4],"span":[1115,2,10]},{"path":[4,61,2,4,6],"span":[1115,11,27]},{"path":[4,61,2,4,1],"span":[1115,28,45]},{"path":[4,61,2,4,3],"span":[1115,48,49]},{"path":[4,62],"span":[1121,1,1128,1],"leadingComments":"\n SharedPermission: windows SharePermissionInfo.\n"},{"path":[4,62,1],"span":[1121,9,25]},{"path":[4,62,2,0],"span":[1122,2,27]},{"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,22]},{"path":[4,62,2,0,3],"span":[1122,25,26]},{"path":[4,62,2,1],"span":[1123,2,31]},{"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,25]},{"path":[4,62,2,1,3],"span":[1123,29,30]},{"path":[4,62,2,2],"span":[1124,2,32]},{"path":[4,62,2,2,4],"span":[1124,2,10]},{"path":[4,62,2,2,5],"span":[1124,11,15]},{"path":[4,62,2,2,1],"span":[1124,16,27]},{"path":[4,62,2,2,3],"span":[1124,30,31]},{"path":[4,62,2,3],"span":[1125,2,33]},{"path":[4,62,2,3,4],"span":[1125,2,10]},{"path":[4,62,2,3,5],"span":[1125,11,15]},{"path":[4,62,2,3,1],"span":[1125,16,28]},{"path":[4,62,2,3,3],"span":[1125,31,32]},{"path":[4,62,2,4],"span":[1126,2,32]},{"path":[4,62,2,4,4],"span":[1126,2,10]},{"path":[4,62,2,4,5],"span":[1126,11,15]},{"path":[4,62,2,4,1],"span":[1126,16,27]},{"path":[4,62,2,4,3],"span":[1126,30,31]},{"path":[4,62,2,5],"span":[1127,2,34]},{"path":[4,62,2,5,4],"span":[1127,2,10]},{"path":[4,62,2,5,5],"span":[1127,11,17]},{"path":[4,62,2,5,1],"span":[1127,18,29]},{"path":[4,62,2,5,3],"span":[1127,32,33]},{"path":[4,63],"span":[1133,0,1139,1],"leadingComments":"\n RunningProcess: computer running processes. Windows.WindowsProcess\n"},{"path":[4,63,1],"span":[1133,8,22]},{"path":[4,63,2,0],"span":[1134,2,27],"trailingComments":" caption\n"},{"path":[4,63,2,0,4],"span":[1134,2,10]},{"path":[4,63,2,0,5],"span":[1134,11,17]},{"path":[4,63,2,0,1],"span":[1134,18,22]},{"path":[4,63,2,0,3],"span":[1134,25,26]},{"path":[4,63,2,1],"span":[1135,2,27],"trailingComments":" executable_path\n"},{"path":[4,63,2,1,4],"span":[1135,2,10]},{"path":[4,63,2,1,5],"span":[1135,11,17]},{"path":[4,63,2,1,1],"span":[1135,18,22]},{"path":[4,63,2,1,3],"span":[1135,25,26]},{"path":[4,63,2,2],"span":[1136,2,29]},{"path":[4,63,2,2,4],"span":[1136,2,10]},{"path":[4,63,2,2,5],"span":[1136,11,16]},{"path":[4,63,2,2,1],"span":[1136,17,24]},{"path":[4,63,2,2,3],"span":[1136,27,28]},{"path":[4,63,2,3],"span":[1137,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,63,2,3,4],"span":[1137,2,10]},{"path":[4,63,2,3,5],"span":[1137,11,16]},{"path":[4,63,2,3,1],"span":[1137,17,25]},{"path":[4,63,2,3,3],"span":[1137,28,29]},{"path":[4,63,2,4],"span":[1138,2,29]},{"path":[4,63,2,4,4],"span":[1138,2,10]},{"path":[4,63,2,4,5],"span":[1138,11,17]},{"path":[4,63,2,4,1],"span":[1138,18,24]},{"path":[4,63,2,4,3],"span":[1138,27,28]},{"path":[4,64],"span":[1144,0,1155,1],"leadingComments":"\n Operating System Service: WindowsService.\n"},{"path":[4,64,1],"span":[1144,8,30]},{"path":[4,64,2,0],"span":[1145,2,27]},{"path":[4,64,2,0,4],"span":[1145,2,10]},{"path":[4,64,2,0,5],"span":[1145,11,17]},{"path":[4,64,2,0,1],"span":[1145,18,22]},{"path":[4,64,2,0,3],"span":[1145,25,26]},{"path":[4,64,2,1],"span":[1146,2,30]},{"path":[4,64,2,1,4],"span":[1146,2,10]},{"path":[4,64,2,1,5],"span":[1146,11,17]},{"path":[4,64,2,1,1],"span":[1146,18,25]},{"path":[4,64,2,1,3],"span":[1146,28,29]},{"path":[4,64,2,2],"span":[1147,2,31]},{"path":[4,64,2,2,4],"span":[1147,2,10]},{"path":[4,64,2,2,5],"span":[1147,11,17]},{"path":[4,64,2,2,1],"span":[1147,18,26]},{"path":[4,64,2,2,3],"span":[1147,29,30]},{"path":[4,64,2,3],"span":[1148,2,33]},{"path":[4,64,2,3,4],"span":[1148,2,10]},{"path":[4,64,2,3,5],"span":[1148,11,17]},{"path":[4,64,2,3,1],"span":[1148,18,28]},{"path":[4,64,2,3,3],"span":[1148,31,32]},{"path":[4,64,2,4],"span":[1149,2,33]},{"path":[4,64,2,4,4],"span":[1149,2,10]},{"path":[4,64,2,4,5],"span":[1149,11,17]},{"path":[4,64,2,4,1],"span":[1149,18,28]},{"path":[4,64,2,4,3],"span":[1149,31,32]},{"path":[4,64,2,5],"span":[1150,2,28]},{"path":[4,64,2,5,4],"span":[1150,2,10]},{"path":[4,64,2,5,5],"span":[1150,11,17]},{"path":[4,64,2,5,1],"span":[1150,18,23]},{"path":[4,64,2,5,3],"span":[1150,26,27]},{"path":[4,64,2,6],"span":[1151,2,28]},{"path":[4,64,2,6,4],"span":[1151,2,10]},{"path":[4,64,2,6,5],"span":[1151,11,15]},{"path":[4,64,2,6,1],"span":[1151,16,23]},{"path":[4,64,2,6,3],"span":[1151,26,27]},{"path":[4,64,2,7],"span":[1152,2,33]},{"path":[4,64,2,7,4],"span":[1152,2,10]},{"path":[4,64,2,7,5],"span":[1152,11,15]},{"path":[4,64,2,7,1],"span":[1152,16,28]},{"path":[4,64,2,7,3],"span":[1152,31,32]},{"path":[4,64,2,8],"span":[1153,2,32]},{"path":[4,64,2,8,4],"span":[1153,2,10]},{"path":[4,64,2,8,5],"span":[1153,11,15]},{"path":[4,64,2,8,1],"span":[1153,16,27]},{"path":[4,64,2,8,3],"span":[1153,30,31]},{"path":[4,64,2,9],"span":[1154,2,38]},{"path":[4,64,2,9,4],"span":[1154,2,10]},{"path":[4,64,2,9,5],"span":[1154,11,15]},{"path":[4,64,2,9,1],"span":[1154,16,32]},{"path":[4,64,2,9,3],"span":[1154,35,37]},{"path":[4,65],"span":[1160,0,1164,1],"leadingComments":"\n Operating System Recovery: only windows atm.\n"},{"path":[4,65,1],"span":[1160,8,31]},{"path":[4,65,8,0],"span":[1161,2,1163,3]},{"path":[4,65,8,0,1],"span":[1161,8,10]},{"path":[4,65,2,0],"span":[1162,6,32]},{"path":[4,65,2,0,6],"span":[1162,6,23]},{"path":[4,65,2,0,1],"span":[1162,24,27]},{"path":[4,65,2,0,3],"span":[1162,30,31]},{"path":[4,66],"span":[1169,0,1180,1],"leadingComments":"\n Windows WindowsOsRecovery.\n"},{"path":[4,66,1],"span":[1169,8,25]},{"path":[4,66,2,0],"span":[1170,2,32]},{"path":[4,66,2,0,4],"span":[1170,2,10]},{"path":[4,66,2,0,5],"span":[1170,11,15]},{"path":[4,66,2,0,1],"span":[1170,16,27]},{"path":[4,66,2,0,3],"span":[1170,30,31]},{"path":[4,66,2,1],"span":[1171,2,38]},{"path":[4,66,2,1,4],"span":[1171,2,10]},{"path":[4,66,2,1,5],"span":[1171,11,17]},{"path":[4,66,2,1,1],"span":[1171,18,33]},{"path":[4,66,2,1,3],"span":[1171,36,37]},{"path":[4,66,2,2],"span":[1172,2,37]},{"path":[4,66,2,2,4],"span":[1172,2,10]},{"path":[4,66,2,2,5],"span":[1172,11,15]},{"path":[4,66,2,2,1],"span":[1172,16,32]},{"path":[4,66,2,2,3],"span":[1172,35,36]},{"path":[4,66,2,3],"span":[1173,2,27]},{"path":[4,66,2,3,4],"span":[1173,2,10]},{"path":[4,66,2,3,5],"span":[1173,11,17]},{"path":[4,66,2,3,1],"span":[1173,18,22]},{"path":[4,66,2,3,3],"span":[1173,25,26]},{"path":[4,66,2,4],"span":[1174,2,50]},{"path":[4,66,2,4,4],"span":[1174,2,10]},{"path":[4,66,2,4,5],"span":[1174,11,15]},{"path":[4,66,2,4,1],"span":[1174,16,45]},{"path":[4,66,2,4,3],"span":[1174,48,49]},{"path":[4,66,2,5],"span":[1175,2,37]},{"path":[4,66,2,5,4],"span":[1175,2,10]},{"path":[4,66,2,5,5],"span":[1175,11,15]},{"path":[4,66,2,5,1],"span":[1175,16,32]},{"path":[4,66,2,5,3],"span":[1175,35,36]},{"path":[4,66,2,6],"span":[1176,2,37]},{"path":[4,66,2,6,4],"span":[1176,2,10]},{"path":[4,66,2,6,5],"span":[1176,11,15]},{"path":[4,66,2,6,1],"span":[1176,16,32]},{"path":[4,66,2,6,3],"span":[1176,35,36]},{"path":[4,66,2,7],"span":[1177,2,40]},{"path":[4,66,2,7,4],"span":[1177,2,10]},{"path":[4,66,2,7,5],"span":[1177,11,15]},{"path":[4,66,2,7,1],"span":[1177,16,35]},{"path":[4,66,2,7,3],"span":[1177,38,39]},{"path":[4,66,2,8],"span":[1178,2,44]},{"path":[4,66,2,8,4],"span":[1178,2,10]},{"path":[4,66,2,8,6],"span":[1178,11,22]},{"path":[4,66,2,8,1],"span":[1178,23,38]},{"path":[4,66,2,8,3],"span":[1178,41,43]},{"path":[4,66,2,9],"span":[1179,2,43]},{"path":[4,66,2,9,4],"span":[1179,2,10]},{"path":[4,66,2,9,5],"span":[1179,11,17]},{"path":[4,66,2,9,1],"span":[1179,18,37]},{"path":[4,66,2,9,3],"span":[1179,40,42]},{"path":[4,67],"span":[1186,0,1195,1],"leadingComments":"\n Driver: computer drivers.\n"},{"path":[4,67,1],"span":[1186,8,14]},{"path":[4,67,8,0],"span":[1187,2,1191,3]},{"path":[4,67,8,0,1],"span":[1187,8,14]},{"path":[4,67,2,0],"span":[1188,4,36]},{"path":[4,67,2,0,6],"span":[1188,4,23]},{"path":[4,67,2,0,1],"span":[1188,24,31]},{"path":[4,67,2,0,3],"span":[1188,34,35]},{"path":[4,67,2,1],"span":[1189,4,39]},{"path":[4,67,2,1,6],"span":[1189,4,26]},{"path":[4,67,2,1,1],"span":[1189,27,34]},{"path":[4,67,2,1,3],"span":[1189,37,38]},{"path":[4,67,2,2],"span":[1190,4,41]},{"path":[4,67,2,2,6],"span":[1190,4,24]},{"path":[4,67,2,2,1],"span":[1190,25,36]},{"path":[4,67,2,2,3],"span":[1190,39,40]},{"path":[4,67,2,3],"span":[1193,2,29]},{"path":[4,67,2,3,4],"span":[1193,2,10]},{"path":[4,67,2,3,5],"span":[1193,11,17]},{"path":[4,67,2,3,1],"span":[1193,18,22]},{"path":[4,67,2,3,3],"span":[1193,25,28]},{"path":[4,67,2,4],"span":[1194,2,36]},{"path":[4,67,2,4,4],"span":[1194,2,10]},{"path":[4,67,2,4,5],"span":[1194,11,17]},{"path":[4,67,2,4,1],"span":[1194,18,29]},{"path":[4,67,2,4,3],"span":[1194,32,35]},{"path":[4,68],"span":[1200,0,1219,1],"leadingComments":"\n WindowsSystemDriver: Windows.SystemDriver\n"},{"path":[4,68,1],"span":[1200,8,27]},{"path":[4,68,2,0],"span":[1201,2,34]},{"path":[4,68,2,0,4],"span":[1201,2,10]},{"path":[4,68,2,0,5],"span":[1201,11,15]},{"path":[4,68,2,0,1],"span":[1201,17,29]},{"path":[4,68,2,0,3],"span":[1201,32,33]},{"path":[4,68,2,1],"span":[1202,2,33]},{"path":[4,68,2,1,4],"span":[1202,2,10]},{"path":[4,68,2,1,5],"span":[1202,11,15]},{"path":[4,68,2,1,1],"span":[1202,17,28]},{"path":[4,68,2,1,3],"span":[1202,31,32]},{"path":[4,68,2,2],"span":[1203,2,38]},{"path":[4,68,2,2,4],"span":[1203,2,10]},{"path":[4,68,2,2,5],"span":[1203,11,15]},{"path":[4,68,2,2,1],"span":[1203,17,33]},{"path":[4,68,2,2,3],"span":[1203,36,37]},{"path":[4,68,2,3],"span":[1204,2,36]},{"path":[4,68,2,3,4],"span":[1204,2,10]},{"path":[4,68,2,3,5],"span":[1204,11,17]},{"path":[4,68,2,3,1],"span":[1204,18,31]},{"path":[4,68,2,3,3],"span":[1204,34,35]},{"path":[4,68,2,4],"span":[1205,2,32]},{"path":[4,68,2,4,4],"span":[1205,2,10]},{"path":[4,68,2,4,5],"span":[1205,11,16]},{"path":[4,68,2,4,1],"span":[1205,18,27]},{"path":[4,68,2,4,3],"span":[1205,30,31]},{"path":[4,68,2,5],"span":[1206,2,32]},{"path":[4,68,2,5,4],"span":[1206,2,10]},{"path":[4,68,2,5,5],"span":[1206,11,17]},{"path":[4,68,2,5,1],"span":[1206,18,27]},{"path":[4,68,2,5,3],"span":[1206,30,31]},{"path":[4,68,2,6],"span":[1207,2,49]},{"path":[4,68,2,6,4],"span":[1207,2,10]},{"path":[4,68,2,6,5],"span":[1207,11,16]},{"path":[4,68,2,6,1],"span":[1207,18,44]},{"path":[4,68,2,6,3],"span":[1207,47,48]},{"path":[4,68,2,7],"span":[1208,2,34]},{"path":[4,68,2,7,4],"span":[1208,2,10]},{"path":[4,68,2,7,5],"span":[1208,11,17]},{"path":[4,68,2,7,1],"span":[1208,18,30]},{"path":[4,68,2,7,3],"span":[1208,32,33]},{"path":[4,68,2,8],"span":[1209,2,29]},{"path":[4,68,2,8,4],"span":[1209,2,10]},{"path":[4,68,2,8,5],"span":[1209,11,15]},{"path":[4,68,2,8,1],"span":[1209,17,24]},{"path":[4,68,2,8,3],"span":[1209,27,28]},{"path":[4,68,2,9],"span":[1210,2,34]},{"path":[4,68,2,9,4],"span":[1210,2,10]},{"path":[4,68,2,9,5],"span":[1210,11,17]},{"path":[4,68,2,9,1],"span":[1210,18,28]},{"path":[4,68,2,9,3],"span":[1210,31,33]},{"path":[4,68,2,10],"span":[1211,2,34]},{"path":[4,68,2,10,4],"span":[1211,2,10]},{"path":[4,68,2,10,5],"span":[1211,11,17]},{"path":[4,68,2,10,1],"span":[1211,18,28]},{"path":[4,68,2,10,3],"span":[1211,31,33]},{"path":[4,68,2,11],"span":[1212,2,29]},{"path":[4,68,2,11,4],"span":[1212,2,10]},{"path":[4,68,2,11,5],"span":[1212,11,17]},{"path":[4,68,2,11,1],"span":[1212,18,23]},{"path":[4,68,2,11,3],"span":[1212,26,28]},{"path":[4,68,2,12],"span":[1213,2,30]},{"path":[4,68,2,12,4],"span":[1213,2,10]},{"path":[4,68,2,12,5],"span":[1213,11,17]},{"path":[4,68,2,12,1],"span":[1213,18,24]},{"path":[4,68,2,12,3],"span":[1213,27,29]},{"path":[4,68,2,13],"span":[1214,2,30]},{"path":[4,68,2,13,4],"span":[1214,2,10]},{"path":[4,68,2,13,5],"span":[1214,11,16]},{"path":[4,68,2,13,1],"span":[1214,18,24]},{"path":[4,68,2,13,3],"span":[1214,27,29]},{"path":[4,68,2,14],"span":[1215,2,28]},{"path":[4,68,2,14,4],"span":[1215,2,10]},{"path":[4,68,2,14,5],"span":[1215,11,17]},{"path":[4,68,2,14,1],"span":[1215,18,22]},{"path":[4,68,2,14,3],"span":[1215,25,27]},{"path":[4,68,2,15],"span":[1216,2,35]},{"path":[4,68,2,15,4],"span":[1216,2,10]},{"path":[4,68,2,15,5],"span":[1216,11,17]},{"path":[4,68,2,15,1],"span":[1216,18,29]},{"path":[4,68,2,15,3],"span":[1216,32,34]},{"path":[4,68,2,16],"span":[1217,2,31]},{"path":[4,68,2,16,4],"span":[1217,2,10]},{"path":[4,68,2,16,5],"span":[1217,11,17]},{"path":[4,68,2,16,1],"span":[1217,18,25]},{"path":[4,68,2,16,3],"span":[1217,28,30]},{"path":[4,68,2,17],"span":[1218,2,36]},{"path":[4,68,2,17,4],"span":[1218,2,10]},{"path":[4,68,2,17,5],"span":[1218,11,17]},{"path":[4,68,2,17,1],"span":[1218,18,30]},{"path":[4,68,2,17,3],"span":[1218,33,35]},{"path":[4,69],"span":[1224,0,1243,1],"leadingComments":"\n WindowsPnpSignedDriver: Windows.PnpSignedDriver\n"},{"path":[4,69,1],"span":[1224,8,30]},{"path":[4,69,2,0],"span":[1225,2,32]},{"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,27]},{"path":[4,69,2,0,3],"span":[1225,30,31]},{"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,33]},{"path":[4,69,2,2,4],"span":[1227,2,10]},{"path":[4,69,2,2,5],"span":[1227,11,17]},{"path":[4,69,2,2,1],"span":[1227,18,28]},{"path":[4,69,2,2,3],"span":[1227,31,32]},{"path":[4,69,2,3],"span":[1228,2,34]},{"path":[4,69,2,3,4],"span":[1228,2,10]},{"path":[4,69,2,3,5],"span":[1228,11,17]},{"path":[4,69,2,3,1],"span":[1228,18,29]},{"path":[4,69,2,3,3],"span":[1228,32,33]},{"path":[4,69,2,4],"span":[1229,2,36]},{"path":[4,69,2,4,4],"span":[1229,2,10]},{"path":[4,69,2,4,5],"span":[1229,11,17]},{"path":[4,69,2,4,1],"span":[1229,18,31]},{"path":[4,69,2,4,3],"span":[1229,34,35]},{"path":[4,69,2,5],"span":[1230,2,44]},{"path":[4,69,2,5,6],"span":[1230,2,27]},{"path":[4,69,2,5,1],"span":[1230,28,39]},{"path":[4,69,2,5,3],"span":[1230,42,43]},{"path":[4,69,2,6],"span":[1231,2,37]},{"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,32]},{"path":[4,69,2,6,3],"span":[1231,35,36]},{"path":[4,69,2,7],"span":[1232,2,34]},{"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,29]},{"path":[4,69,2,7,3],"span":[1232,32,33]},{"path":[4,69,2,8],"span":[1233,2,31]},{"path":[4,69,2,8,4],"span":[1233,2,10]},{"path":[4,69,2,8,5],"span":[1233,11,17]},{"path":[4,69,2,8,1],"span":[1233,18,26]},{"path":[4,69,2,8,3],"span":[1233,29,30]},{"path":[4,69,2,9],"span":[1234,2,32]},{"path":[4,69,2,9,4],"span":[1234,2,10]},{"path":[4,69,2,9,5],"span":[1234,11,15]},{"path":[4,69,2,9,1],"span":[1234,17,26]},{"path":[4,69,2,9,3],"span":[1234,29,31]},{"path":[4,69,2,10],"span":[1235,2,32]},{"path":[4,69,2,10,4],"span":[1235,2,10]},{"path":[4,69,2,10,5],"span":[1235,11,17]},{"path":[4,69,2,10,1],"span":[1235,18,26]},{"path":[4,69,2,10,3],"span":[1235,29,31]},{"path":[4,69,2,11],"span":[1236,2,27]},{"path":[4,69,2,11,4],"span":[1236,2,10]},{"path":[4,69,2,11,5],"span":[1236,11,17]},{"path":[4,69,2,11,1],"span":[1236,18,21]},{"path":[4,69,2,11,3],"span":[1236,24,26]},{"path":[4,69,2,12],"span":[1237,2,36]},{"path":[4,69,2,12,4],"span":[1237,2,10]},{"path":[4,69,2,12,5],"span":[1237,11,17]},{"path":[4,69,2,12,1],"span":[1237,18,30]},{"path":[4,69,2,12,3],"span":[1237,33,35]},{"path":[4,69,2,13],"span":[1238,2,35]},{"path":[4,69,2,13,4],"span":[1238,2,10]},{"path":[4,69,2,13,5],"span":[1238,11,17]},{"path":[4,69,2,13,1],"span":[1238,18,29]},{"path":[4,69,2,13,3],"span":[1238,32,34]},{"path":[4,69,2,14],"span":[1239,2,36]},{"path":[4,69,2,14,4],"span":[1239,2,10]},{"path":[4,69,2,14,5],"span":[1239,11,17]},{"path":[4,69,2,14,1],"span":[1239,18,30]},{"path":[4,69,2,14,3],"span":[1239,33,35]},{"path":[4,69,2,15],"span":[1240,2,35]},{"path":[4,69,2,15,4],"span":[1240,2,10]},{"path":[4,69,2,15,5],"span":[1240,11,17]},{"path":[4,69,2,15,1],"span":[1240,18,29]},{"path":[4,69,2,15,3],"span":[1240,32,34]},{"path":[4,69,2,16],"span":[1241,2,30]},{"path":[4,69,2,16,4],"span":[1241,2,10]},{"path":[4,69,2,16,5],"span":[1241,11,17]},{"path":[4,69,2,16,1],"span":[1241,18,24]},{"path":[4,69,2,16,3],"span":[1241,27,29]},{"path":[4,69,2,17],"span":[1242,2,44]},{"path":[4,69,2,17,4],"span":[1242,2,10]},{"path":[4,69,2,17,5],"span":[1242,11,17]},{"path":[4,69,2,17,1],"span":[1242,18,38]},{"path":[4,69,2,17,3],"span":[1242,41,43]},{"path":[4,70],"span":[1248,0,1268,1],"leadingComments":"\n WindowsPrinterDriver: Windows.PrinterDriver\n"},{"path":[4,70,1],"span":[1248,8,28]},{"path":[4,70,2,0],"span":[1249,2,34]},{"path":[4,70,2,0,4],"span":[1249,2,10]},{"path":[4,70,2,0,5],"span":[1249,11,17]},{"path":[4,70,2,0,1],"span":[1249,18,29]},{"path":[4,70,2,0,3],"span":[1249,32,33]},{"path":[4,70,2,1],"span":[1250,2,32]},{"path":[4,70,2,1,4],"span":[1250,2,10]},{"path":[4,70,2,1,5],"span":[1250,11,17]},{"path":[4,70,2,1,1],"span":[1250,18,27]},{"path":[4,70,2,1,3],"span":[1250,30,31]},{"path":[4,70,2,2],"span":[1251,2,40]},{"path":[4,70,2,2,4],"span":[1251,2,10]},{"path":[4,70,2,2,5],"span":[1251,11,17]},{"path":[4,70,2,2,1],"span":[1251,18,35]},{"path":[4,70,2,2,3],"span":[1251,38,39]},{"path":[4,70,2,3],"span":[1252,2,34]},{"path":[4,70,2,3,4],"span":[1252,2,10]},{"path":[4,70,2,3,5],"span":[1252,11,17]},{"path":[4,70,2,3,1],"span":[1252,18,29]},{"path":[4,70,2,3,3],"span":[1252,32,33]},{"path":[4,70,2,4],"span":[1253,2,32]},{"path":[4,70,2,4,4],"span":[1253,2,10]},{"path":[4,70,2,4,5],"span":[1253,11,17]},{"path":[4,70,2,4,1],"span":[1253,18,27]},{"path":[4,70,2,4,3],"span":[1253,30,31]},{"path":[4,70,2,5],"span":[1254,2,32]},{"path":[4,70,2,5,4],"span":[1254,2,10]},{"path":[4,70,2,5,5],"span":[1254,11,17]},{"path":[4,70,2,5,1],"span":[1254,18,27]},{"path":[4,70,2,5,3],"span":[1254,30,31]},{"path":[4,70,2,6],"span":[1255,2,35]},{"path":[4,70,2,6,4],"span":[1255,2,10]},{"path":[4,70,2,6,5],"span":[1255,11,17]},{"path":[4,70,2,6,1],"span":[1255,18,30]},{"path":[4,70,2,6,3],"span":[1255,33,34]},{"path":[4,70,2,7],"span":[1256,2,30]},{"path":[4,70,2,7,4],"span":[1256,2,10]},{"path":[4,70,2,7,5],"span":[1256,11,17]},{"path":[4,70,2,7,1],"span":[1256,18,25]},{"path":[4,70,2,7,3],"span":[1256,28,29]},{"path":[4,70,2,8],"span":[1257,2,30]},{"path":[4,70,2,8,4],"span":[1257,2,10]},{"path":[4,70,2,8,5],"span":[1257,11,16]},{"path":[4,70,2,8,1],"span":[1257,18,25]},{"path":[4,70,2,8,3],"span":[1257,28,29]},{"path":[4,70,2,9],"span":[1258,2,38]},{"path":[4,70,2,9,4],"span":[1258,2,10]},{"path":[4,70,2,9,5],"span":[1258,11,17]},{"path":[4,70,2,9,1],"span":[1258,18,32]},{"path":[4,70,2,9,3],"span":[1258,35,37]},{"path":[4,70,2,10],"span":[1259,2,35]},{"path":[4,70,2,10,4],"span":[1259,2,10]},{"path":[4,70,2,10,5],"span":[1259,11,17]},{"path":[4,70,2,10,1],"span":[1259,18,29]},{"path":[4,70,2,10,3],"span":[1259,32,34]},{"path":[4,70,2,11],"span":[1260,2,35]},{"path":[4,70,2,11,4],"span":[1260,2,10]},{"path":[4,70,2,11,5],"span":[1260,11,17]},{"path":[4,70,2,11,1],"span":[1260,18,29]},{"path":[4,70,2,11,3],"span":[1260,32,34]},{"path":[4,70,2,12],"span":[1261,2,32]},{"path":[4,70,2,12,4],"span":[1261,2,10]},{"path":[4,70,2,12,5],"span":[1261,11,17]},{"path":[4,70,2,12,1],"span":[1261,18,26]},{"path":[4,70,2,12,3],"span":[1261,29,31]},{"path":[4,70,2,13],"span":[1262,2,43]},{"path":[4,70,2,13,4],"span":[1262,2,10]},{"path":[4,70,2,13,5],"span":[1262,11,17]},{"path":[4,70,2,13,1],"span":[1262,18,37]},{"path":[4,70,2,13,3],"span":[1262,40,42]},{"path":[4,70,2,14],"span":[1263,2,39]},{"path":[4,70,2,14,4],"span":[1263,2,10]},{"path":[4,70,2,14,5],"span":[1263,11,17]},{"path":[4,70,2,14,1],"span":[1263,18,33]},{"path":[4,70,2,14,3],"span":[1263,36,38]},{"path":[4,70,2,15],"span":[1264,2,28]},{"path":[4,70,2,15,4],"span":[1264,2,10]},{"path":[4,70,2,15,5],"span":[1264,11,17]},{"path":[4,70,2,15,1],"span":[1264,18,22]},{"path":[4,70,2,15,3],"span":[1264,25,27]},{"path":[4,70,2,16],"span":[1265,2,32]},{"path":[4,70,2,16,4],"span":[1265,2,10]},{"path":[4,70,2,16,5],"span":[1265,11,17]},{"path":[4,70,2,16,1],"span":[1265,18,26]},{"path":[4,70,2,16,3],"span":[1265,29,31]},{"path":[4,70,2,17],"span":[1266,2,42]},{"path":[4,70,2,17,4],"span":[1266,2,10]},{"path":[4,70,2,17,5],"span":[1266,11,17]},{"path":[4,70,2,17,1],"span":[1266,18,36]},{"path":[4,70,2,17,3],"span":[1266,39,41]},{"path":[4,70,2,18],"span":[1267,2,36]},{"path":[4,70,2,18,4],"span":[1267,2,10]},{"path":[4,70,2,18,5],"span":[1267,11,17]},{"path":[4,70,2,18,1],"span":[1267,18,30]},{"path":[4,70,2,18,3],"span":[1267,33,35]},{"path":[4,71],"span":[1273,0,1282,1],"leadingComments":"\n Sound Card for computers: Windows.WindowsSound, Unix.SoundCards (=PciCards)\n"},{"path":[4,71,1],"span":[1273,8,17]},{"path":[4,71,2,0],"span":[1274,2,30],"trailingComments":" Windows, Linux(name)\n"},{"path":[4,71,2,0,4],"span":[1274,2,10]},{"path":[4,71,2,0,5],"span":[1274,11,17]},{"path":[4,71,2,0,1],"span":[1274,18,25]},{"path":[4,71,2,0,3],"span":[1274,28,29]},{"path":[4,71,2,1],"span":[1275,2,32],"trailingComments":" Windows, Linux\n"},{"path":[4,71,2,1,4],"span":[1275,2,10]},{"path":[4,71,2,1,5],"span":[1275,11,17]},{"path":[4,71,2,1,1],"span":[1275,18,27]},{"path":[4,71,2,1,3],"span":[1275,30,31]},{"path":[4,71,2,2],"span":[1276,2,35],"trailingComments":" Windows, Linux\n"},{"path":[4,71,2,2,4],"span":[1276,2,10]},{"path":[4,71,2,2,5],"span":[1276,11,17]},{"path":[4,71,2,2,1],"span":[1276,18,30]},{"path":[4,71,2,2,3],"span":[1276,33,34]},{"path":[4,71,2,3],"span":[1278,2,27],"trailingComments":" Linux\n"},{"path":[4,71,2,3,4],"span":[1278,2,10]},{"path":[4,71,2,3,5],"span":[1278,11,17]},{"path":[4,71,2,3,1],"span":[1278,18,22]},{"path":[4,71,2,3,3],"span":[1278,25,26]},{"path":[4,71,2,4],"span":[1279,2,37],"trailingComments":" Linux\n"},{"path":[4,71,2,4,4],"span":[1279,2,10]},{"path":[4,71,2,4,5],"span":[1279,11,17]},{"path":[4,71,2,4,1],"span":[1279,18,32]},{"path":[4,71,2,4,3],"span":[1279,35,36]},{"path":[4,71,2,5],"span":[1280,2,45],"trailingComments":" Linux\n"},{"path":[4,71,2,5,4],"span":[1280,2,10]},{"path":[4,71,2,5,5],"span":[1280,11,17]},{"path":[4,71,2,5,1],"span":[1280,18,40]},{"path":[4,71,2,5,3],"span":[1280,43,44]},{"path":[4,71,2,6],"span":[1281,2,29],"trailingComments":" Linux\n"},{"path":[4,71,2,6,4],"span":[1281,2,10]},{"path":[4,71,2,6,5],"span":[1281,11,17]},{"path":[4,71,2,6,1],"span":[1281,18,24]},{"path":[4,71,2,6,3],"span":[1281,27,28]},{"path":[4,72],"span":[1287,0,1316,1],"leadingComments":"\n Graphics Card for computers: Windows.VideoControllers, Unix.SoundCards (=PciCards)\n"},{"path":[4,72,1],"span":[1287,8,20]},{"path":[4,72,2,0],"span":[1288,2,33],"trailingComments":"\tWindows, Linux\n"},{"path":[4,72,2,0,4],"span":[1288,2,10]},{"path":[4,72,2,0,5],"span":[1288,16,22]},{"path":[4,72,2,0,1],"span":[1288,24,28]},{"path":[4,72,2,0,3],"span":[1288,31,32]},{"path":[4,72,2,1],"span":[1289,2,47],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,1,4],"span":[1289,2,10]},{"path":[4,72,2,1,5],"span":[1289,16,21]},{"path":[4,72,2,1,1],"span":[1289,24,42]},{"path":[4,72,2,1,3],"span":[1289,45,46]},{"path":[4,72,2,2],"span":[1290,2,51],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,2,4],"span":[1290,2,10]},{"path":[4,72,2,2,5],"span":[1290,16,21]},{"path":[4,72,2,2,1],"span":[1290,24,46]},{"path":[4,72,2,2,3],"span":[1290,49,50]},{"path":[4,72,2,3],"span":[1291,2,58],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,3,4],"span":[1291,2,10]},{"path":[4,72,2,3,5],"span":[1291,16,21]},{"path":[4,72,2,3,1],"span":[1291,24,53]},{"path":[4,72,2,3,3],"span":[1291,56,57]},{"path":[4,72,2,4],"span":[1292,2,53],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,4,4],"span":[1292,2,10]},{"path":[4,72,2,4,5],"span":[1292,16,21]},{"path":[4,72,2,4,1],"span":[1292,24,48]},{"path":[4,72,2,4,3],"span":[1292,51,52]},{"path":[4,72,2,5],"span":[1293,2,49],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,5,4],"span":[1293,2,10]},{"path":[4,72,2,5,5],"span":[1293,16,21]},{"path":[4,72,2,5,1],"span":[1293,24,44]},{"path":[4,72,2,5,3],"span":[1293,47,48]},{"path":[4,72,2,6],"span":[1294,2,54],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,6,4],"span":[1294,2,10]},{"path":[4,72,2,6,6],"span":[1294,16,27]},{"path":[4,72,2,6,1],"span":[1294,32,49]},{"path":[4,72,2,6,3],"span":[1294,52,53]},{"path":[4,72,2,7],"span":[1295,2,56],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,7,4],"span":[1295,2,10]},{"path":[4,72,2,7,5],"span":[1295,16,21]},{"path":[4,72,2,7,1],"span":[1295,24,51]},{"path":[4,72,2,7,3],"span":[1295,54,55]},{"path":[4,72,2,8],"span":[1296,2,38],"trailingComments":"\t\tWindows, Linux\n"},{"path":[4,72,2,8,4],"span":[1296,2,10]},{"path":[4,72,2,8,5],"span":[1296,16,22]},{"path":[4,72,2,8,1],"span":[1296,24,33]},{"path":[4,72,2,8,3],"span":[1296,36,37]},{"path":[4,72,2,9],"span":[1297,2,50],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,9,4],"span":[1297,2,10]},{"path":[4,72,2,9,5],"span":[1297,16,21]},{"path":[4,72,2,9,1],"span":[1297,24,44]},{"path":[4,72,2,9,3],"span":[1297,47,49]},{"path":[4,72,2,10],"span":[1298,2,44],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,10,4],"span":[1298,2,10]},{"path":[4,72,2,10,5],"span":[1298,16,22]},{"path":[4,72,2,10,1],"span":[1298,24,38]},{"path":[4,72,2,10,3],"span":[1298,41,43]},{"path":[4,72,2,11],"span":[1299,2,42],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,11,4],"span":[1299,2,10]},{"path":[4,72,2,11,5],"span":[1299,16,22]},{"path":[4,72,2,11,1],"span":[1299,24,36]},{"path":[4,72,2,11,3],"span":[1299,39,41]},{"path":[4,72,2,12],"span":[1300,2,41],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,12,4],"span":[1300,2,10]},{"path":[4,72,2,12,5],"span":[1300,16,22]},{"path":[4,72,2,12,1],"span":[1300,24,35]},{"path":[4,72,2,12,3],"span":[1300,38,40]},{"path":[4,72,2,13],"span":[1301,2,55],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,13,4],"span":[1301,2,10]},{"path":[4,72,2,13,5],"span":[1301,16,22]},{"path":[4,72,2,13,1],"span":[1301,24,49]},{"path":[4,72,2,13,3],"span":[1301,52,54]},{"path":[4,72,2,14],"span":[1302,2,43],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,14,4],"span":[1302,2,10]},{"path":[4,72,2,14,5],"span":[1302,16,20]},{"path":[4,72,2,14,1],"span":[1302,24,37]},{"path":[4,72,2,14,3],"span":[1302,40,42]},{"path":[4,72,2,15],"span":[1303,2,42],"trailingComments":"\t\tWindows, Linux\n"},{"path":[4,72,2,15,4],"span":[1303,2,10]},{"path":[4,72,2,15,5],"span":[1303,16,22]},{"path":[4,72,2,15,1],"span":[1303,24,36]},{"path":[4,72,2,15,3],"span":[1303,39,41]},{"path":[4,72,2,16],"span":[1304,2,46],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,16,4],"span":[1304,2,10]},{"path":[4,72,2,16,5],"span":[1304,16,21]},{"path":[4,72,2,16,1],"span":[1304,24,40]},{"path":[4,72,2,16,3],"span":[1304,43,45]},{"path":[4,72,2,17],"span":[1305,2,36],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,17,4],"span":[1305,2,10]},{"path":[4,72,2,17,5],"span":[1305,16,21]},{"path":[4,72,2,17,1],"span":[1305,24,30]},{"path":[4,72,2,17,3],"span":[1305,33,35]},{"path":[4,72,2,18],"span":[1306,2,49],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,18,4],"span":[1306,2,10]},{"path":[4,72,2,18,6],"span":[1306,16,27]},{"path":[4,72,2,18,1],"span":[1306,32,43]},{"path":[4,72,2,18,3],"span":[1306,46,48]},{"path":[4,72,2,19],"span":[1307,2,46],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,19,4],"span":[1307,2,10]},{"path":[4,72,2,19,5],"span":[1307,16,21]},{"path":[4,72,2,19,1],"span":[1307,24,40]},{"path":[4,72,2,19,3],"span":[1307,43,45]},{"path":[4,72,2,20],"span":[1308,2,38],"trailingComments":"\t\tLinux\n"},{"path":[4,72,2,20,4],"span":[1308,2,10]},{"path":[4,72,2,20,5],"span":[1308,16,22]},{"path":[4,72,2,20,1],"span":[1308,24,32]},{"path":[4,72,2,20,3],"span":[1308,35,37]},{"path":[4,72,2,21],"span":[1309,2,43],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,21,4],"span":[1309,2,10]},{"path":[4,72,2,21,5],"span":[1309,16,22]},{"path":[4,72,2,21,1],"span":[1309,24,37]},{"path":[4,72,2,21,3],"span":[1309,40,42]},{"path":[4,72,2,22],"span":[1310,2,43],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,22,4],"span":[1310,2,10]},{"path":[4,72,2,22,6],"span":[1310,16,27]},{"path":[4,72,2,22,1],"span":[1310,32,37]},{"path":[4,72,2,22,3],"span":[1310,40,42]},{"path":[4,72,2,23],"span":[1311,2,52],"trailingComments":"\t\tLinux\n"},{"path":[4,72,2,23,4],"span":[1311,2,10]},{"path":[4,72,2,23,5],"span":[1311,16,22]},{"path":[4,72,2,23,1],"span":[1311,24,46]},{"path":[4,72,2,23,3],"span":[1311,49,51]},{"path":[4,72,2,24],"span":[1312,2,44],"trailingComments":"\t\tLinux\n"},{"path":[4,72,2,24,4],"span":[1312,2,10]},{"path":[4,72,2,24,5],"span":[1312,16,22]},{"path":[4,72,2,24,1],"span":[1312,24,38]},{"path":[4,72,2,24,3],"span":[1312,41,43]},{"path":[4,72,2,25],"span":[1313,2,56],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,25,4],"span":[1313,2,10]},{"path":[4,72,2,25,6],"span":[1313,16,27]},{"path":[4,72,2,25,1],"span":[1313,32,50]},{"path":[4,72,2,25,3],"span":[1313,53,55]},{"path":[4,72,2,26],"span":[1314,2,40],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,26,4],"span":[1314,2,10]},{"path":[4,72,2,26,5],"span":[1314,16,22]},{"path":[4,72,2,26,1],"span":[1314,24,34]},{"path":[4,72,2,26,3],"span":[1314,37,39]},{"path":[4,72,2,27],"span":[1315,2,45],"trailingComments":"\t\tWindows\n"},{"path":[4,72,2,27,4],"span":[1315,2,10]},{"path":[4,72,2,27,5],"span":[1315,16,22]},{"path":[4,72,2,27,1],"span":[1315,24,39]},{"path":[4,72,2,27,3],"span":[1315,42,44]},{"path":[4,73],"span":[1321,0,1331,1],"leadingComments":"\n BIOS for computers.\n"},{"path":[4,73,1],"span":[1321,8,12]},{"path":[4,73,8,0],"span":[1322,2,1325,3]},{"path":[4,73,8,0,1],"span":[1322,8,12]},{"path":[4,73,2,0],"span":[1323,4,24]},{"path":[4,73,2,0,6],"span":[1323,4,15]},{"path":[4,73,2,0,1],"span":[1323,16,19]},{"path":[4,73,2,0,3],"span":[1323,22,23]},{"path":[4,73,2,1],"span":[1324,4,24]},{"path":[4,73,2,1,6],"span":[1324,4,13]},{"path":[4,73,2,1,1],"span":[1324,14,19]},{"path":[4,73,2,1,3],"span":[1324,22,23]},{"path":[4,73,2,2],"span":[1328,2,37],"leadingComments":" common fields summarized\n"},{"path":[4,73,2,2,4],"span":[1328,2,10]},{"path":[4,73,2,2,5],"span":[1328,11,17]},{"path":[4,73,2,2,1],"span":[1328,18,30]},{"path":[4,73,2,2,3],"span":[1328,33,36]},{"path":[4,73,2,3],"span":[1329,2,32]},{"path":[4,73,2,3,4],"span":[1329,2,10]},{"path":[4,73,2,3,5],"span":[1329,11,17]},{"path":[4,73,2,3,1],"span":[1329,18,25]},{"path":[4,73,2,3,3],"span":[1329,28,31]},{"path":[4,73,2,4],"span":[1330,2,56]},{"path":[4,73,2,4,4],"span":[1330,2,10]},{"path":[4,73,2,4,6],"span":[1330,11,36]},{"path":[4,73,2,4,1],"span":[1330,37,49]},{"path":[4,73,2,4,3],"span":[1330,52,55]},{"path":[4,74],"span":[1337,0,1357,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,74,1],"span":[1337,8,19]},{"path":[4,74,2,0],"span":[1338,2,48]},{"path":[4,74,2,0,4],"span":[1338,2,10]},{"path":[4,74,2,0,6],"span":[1338,11,22]},{"path":[4,74,2,0,1],"span":[1338,23,43]},{"path":[4,74,2,0,3],"span":[1338,46,47]},{"path":[4,74,2,1],"span":[1339,2,30]},{"path":[4,74,2,1,4],"span":[1339,2,10]},{"path":[4,74,2,1,5],"span":[1339,11,17]},{"path":[4,74,2,1,1],"span":[1339,18,25]},{"path":[4,74,2,1,3],"span":[1339,28,29]},{"path":[4,74,2,2],"span":[1340,2,39]},{"path":[4,74,2,2,4],"span":[1340,2,10]},{"path":[4,74,2,2,5],"span":[1340,11,17]},{"path":[4,74,2,2,1],"span":[1340,18,34]},{"path":[4,74,2,2,3],"span":[1340,37,38]},{"path":[4,74,2,3],"span":[1341,2,43]},{"path":[4,74,2,3,4],"span":[1341,2,10]},{"path":[4,74,2,3,5],"span":[1341,11,16]},{"path":[4,74,2,3,1],"span":[1341,17,38]},{"path":[4,74,2,3,3],"span":[1341,41,42]},{"path":[4,74,2,4],"span":[1342,2,35]},{"path":[4,74,2,4,4],"span":[1342,2,10]},{"path":[4,74,2,4,5],"span":[1342,11,17]},{"path":[4,74,2,4,1],"span":[1342,18,30]},{"path":[4,74,2,4,3],"span":[1342,33,34]},{"path":[4,74,2,5],"span":[1343,2,27]},{"path":[4,74,2,5,4],"span":[1343,2,10]},{"path":[4,74,2,5,5],"span":[1343,11,17]},{"path":[4,74,2,5,1],"span":[1343,18,22]},{"path":[4,74,2,5,3],"span":[1343,25,26]},{"path":[4,74,2,6],"span":[1344,2,33]},{"path":[4,74,2,6,4],"span":[1344,2,10]},{"path":[4,74,2,6,5],"span":[1344,11,15]},{"path":[4,74,2,6,1],"span":[1344,16,28]},{"path":[4,74,2,6,3],"span":[1344,31,32]},{"path":[4,74,2,7],"span":[1345,2,54]},{"path":[4,74,2,7,4],"span":[1345,2,10]},{"path":[4,74,2,7,6],"span":[1345,11,36]},{"path":[4,74,2,7,1],"span":[1345,37,49]},{"path":[4,74,2,7,3],"span":[1345,52,53]},{"path":[4,74,2,8],"span":[1346,2,37]},{"path":[4,74,2,8,4],"span":[1346,2,10]},{"path":[4,74,2,8,5],"span":[1346,11,17]},{"path":[4,74,2,8,1],"span":[1346,18,31]},{"path":[4,74,2,8,3],"span":[1346,34,36]},{"path":[4,74,2,9],"span":[1347,2,43]},{"path":[4,74,2,9,4],"span":[1347,2,10]},{"path":[4,74,2,9,5],"span":[1347,11,17]},{"path":[4,74,2,9,1],"span":[1347,18,37]},{"path":[4,74,2,9,3],"span":[1347,40,42]},{"path":[4,74,2,10],"span":[1348,2,43]},{"path":[4,74,2,10,4],"span":[1348,2,10]},{"path":[4,74,2,10,5],"span":[1348,11,16]},{"path":[4,74,2,10,1],"span":[1348,17,37]},{"path":[4,74,2,10,3],"span":[1348,40,42]},{"path":[4,74,2,11],"span":[1349,2,43]},{"path":[4,74,2,11,4],"span":[1349,2,10]},{"path":[4,74,2,11,5],"span":[1349,11,16]},{"path":[4,74,2,11,1],"span":[1349,17,37]},{"path":[4,74,2,11,3],"span":[1349,40,42]},{"path":[4,74,2,12],"span":[1350,2,36]},{"path":[4,74,2,12,4],"span":[1350,2,10]},{"path":[4,74,2,12,5],"span":[1350,11,15]},{"path":[4,74,2,12,1],"span":[1350,16,30]},{"path":[4,74,2,12,3],"span":[1350,33,35]},{"path":[4,74,2,13],"span":[1351,2,43]},{"path":[4,74,2,13,4],"span":[1351,2,10]},{"path":[4,74,2,13,5],"span":[1351,11,17]},{"path":[4,74,2,13,1],"span":[1351,18,37]},{"path":[4,74,2,13,3],"span":[1351,40,42]},{"path":[4,74,2,14],"span":[1352,2,51]},{"path":[4,74,2,14,4],"span":[1352,2,10]},{"path":[4,74,2,14,6],"span":[1352,11,22]},{"path":[4,74,2,14,1],"span":[1352,23,45]},{"path":[4,74,2,14,3],"span":[1352,48,50]},{"path":[4,74,2,15],"span":[1353,2,30]},{"path":[4,74,2,15,4],"span":[1353,2,10]},{"path":[4,74,2,15,5],"span":[1353,11,17]},{"path":[4,74,2,15,1],"span":[1353,18,24]},{"path":[4,74,2,15,3],"span":[1353,27,29]},{"path":[4,74,2,16],"span":[1354,2,52]},{"path":[4,74,2,16,4],"span":[1354,2,10]},{"path":[4,74,2,16,6],"span":[1354,11,22]},{"path":[4,74,2,16,1],"span":[1354,23,46]},{"path":[4,74,2,16,3],"span":[1354,49,51]},{"path":[4,74,2,17],"span":[1355,2,31]},{"path":[4,74,2,17,4],"span":[1355,2,10]},{"path":[4,74,2,17,5],"span":[1355,11,17]},{"path":[4,74,2,17,1],"span":[1355,18,25]},{"path":[4,74,2,17,3],"span":[1355,28,30]},{"path":[4,74,2,18],"span":[1356,2,36]},{"path":[4,74,2,18,4],"span":[1356,2,10]},{"path":[4,74,2,18,5],"span":[1356,11,17]},{"path":[4,74,2,18,1],"span":[1356,18,30]},{"path":[4,74,2,18,3],"span":[1356,33,35]},{"path":[4,75],"span":[1362,0,1369,1],"leadingComments":"\n Bios for Unix/Linux: Unix.Bios\n"},{"path":[4,75,1],"span":[1362,8,17]},{"path":[4,75,2,0],"span":[1363,2,30],"trailingComments":" e.g.: \"Hyper-V UEFI Release v4.1\"\n"},{"path":[4,75,2,0,4],"span":[1363,2,10]},{"path":[4,75,2,0,5],"span":[1363,11,17]},{"path":[4,75,2,0,1],"span":[1363,18,25]},{"path":[4,75,2,0,3],"span":[1363,28,29]},{"path":[4,75,2,1],"span":[1364,2,30]},{"path":[4,75,2,1,4],"span":[1364,2,10]},{"path":[4,75,2,1,5],"span":[1364,11,17]},{"path":[4,75,2,1,1],"span":[1364,18,25]},{"path":[4,75,2,1,3],"span":[1364,28,29]},{"path":[4,75,2,2],"span":[1365,2,29]},{"path":[4,75,2,2,4],"span":[1365,2,10]},{"path":[4,75,2,2,5],"span":[1365,11,17]},{"path":[4,75,2,2,1],"span":[1365,18,24]},{"path":[4,75,2,2,3],"span":[1365,27,28]},{"path":[4,75,2,3],"span":[1366,2,34],"trailingComments":" parsed from e.g. \"64 kB\"\n"},{"path":[4,75,2,3,4],"span":[1366,2,10]},{"path":[4,75,2,3,5],"span":[1366,11,16]},{"path":[4,75,2,3,1],"span":[1366,17,29]},{"path":[4,75,2,3,3],"span":[1366,32,33]},{"path":[4,75,2,4],"span":[1367,2,30],"trailingComments":" parsed from e.g. \"64 kB\"\n"},{"path":[4,75,2,4,4],"span":[1367,2,10]},{"path":[4,75,2,4,5],"span":[1367,11,16]},{"path":[4,75,2,4,1],"span":[1367,17,25]},{"path":[4,75,2,4,3],"span":[1367,28,29]},{"path":[4,75,2,5],"span":[1368,2,54]},{"path":[4,75,2,5,4],"span":[1368,2,10]},{"path":[4,75,2,5,6],"span":[1368,11,36]},{"path":[4,75,2,5,1],"span":[1368,37,49]},{"path":[4,75,2,5,3],"span":[1368,52,53]},{"path":[4,76],"span":[1374,0,1380,1],"leadingComments":"\n Computer Battery: Windows.WindowsBattery. Mac.Power battery messages.\n"},{"path":[4,76,1],"span":[1374,8,23]},{"path":[4,76,8,0],"span":[1375,2,1379,3]},{"path":[4,76,8,0,1],"span":[1375,8,12]},{"path":[4,76,2,0],"span":[1376,4,43]},{"path":[4,76,2,0,6],"span":[1376,4,26]},{"path":[4,76,2,0,1],"span":[1376,27,38]},{"path":[4,76,2,0,3],"span":[1376,41,42]},{"path":[4,76,2,1],"span":[1377,4,44]},{"path":[4,76,2,1,6],"span":[1377,4,26]},{"path":[4,76,2,1,1],"span":[1377,27,39]},{"path":[4,76,2,1,3],"span":[1377,42,43]},{"path":[4,76,2,2],"span":[1378,4,39]},{"path":[4,76,2,2,6],"span":[1378,4,22]},{"path":[4,76,2,2,1],"span":[1378,23,34]},{"path":[4,76,2,2,3],"span":[1378,37,38]},{"path":[4,77],"span":[1386,0,1397,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,77,1],"span":[1386,8,30]},{"path":[4,77,2,0],"span":[1387,2,40]},{"path":[4,77,2,0,4],"span":[1387,2,10]},{"path":[4,77,2,0,6],"span":[1387,11,22]},{"path":[4,77,2,0,1],"span":[1387,23,35]},{"path":[4,77,2,0,3],"span":[1387,38,39]},{"path":[4,77,2,1],"span":[1388,2,42]},{"path":[4,77,2,1,4],"span":[1388,2,10]},{"path":[4,77,2,1,6],"span":[1388,11,22]},{"path":[4,77,2,1,1],"span":[1388,23,37]},{"path":[4,77,2,1,3],"span":[1388,40,41]},{"path":[4,77,2,2],"span":[1389,2,37]},{"path":[4,77,2,2,4],"span":[1389,2,10]},{"path":[4,77,2,2,6],"span":[1389,11,22]},{"path":[4,77,2,2,1],"span":[1389,23,32]},{"path":[4,77,2,2,3],"span":[1389,35,36]},{"path":[4,77,2,3],"span":[1390,2,43]},{"path":[4,77,2,3,4],"span":[1390,2,10]},{"path":[4,77,2,3,6],"span":[1390,11,22]},{"path":[4,77,2,3,1],"span":[1390,23,38]},{"path":[4,77,2,3,3],"span":[1390,41,42]},{"path":[4,77,2,4],"span":[1391,2,32]},{"path":[4,77,2,4,4],"span":[1391,2,10]},{"path":[4,77,2,4,5],"span":[1391,11,17]},{"path":[4,77,2,4,1],"span":[1391,18,27]},{"path":[4,77,2,4,3],"span":[1391,30,31]},{"path":[4,77,2,5],"span":[1392,2,27]},{"path":[4,77,2,5,4],"span":[1392,2,10]},{"path":[4,77,2,5,5],"span":[1392,11,17]},{"path":[4,77,2,5,1],"span":[1392,18,22]},{"path":[4,77,2,5,3],"span":[1392,25,26]},{"path":[4,77,2,6],"span":[1393,2,57]},{"path":[4,77,2,6,4],"span":[1393,2,10]},{"path":[4,77,2,6,6],"span":[1393,11,22]},{"path":[4,77,2,6,1],"span":[1393,23,52]},{"path":[4,77,2,6,3],"span":[1393,55,56]},{"path":[4,77,2,7],"span":[1394,2,47]},{"path":[4,77,2,7,4],"span":[1394,2,10]},{"path":[4,77,2,7,5],"span":[1394,11,15]},{"path":[4,77,2,7,1],"span":[1394,16,42]},{"path":[4,77,2,7,3],"span":[1394,45,46]},{"path":[4,77,2,8],"span":[1395,2,44]},{"path":[4,77,2,8,4],"span":[1395,2,10]},{"path":[4,77,2,8,5],"span":[1395,11,17]},{"path":[4,77,2,8,1],"span":[1395,18,39]},{"path":[4,77,2,8,3],"span":[1395,42,43]},{"path":[4,77,2,9],"span":[1396,2,30]},{"path":[4,77,2,9,4],"span":[1396,2,10]},{"path":[4,77,2,9,5],"span":[1396,11,17]},{"path":[4,77,2,9,1],"span":[1396,18,24]},{"path":[4,77,2,9,3],"span":[1396,27,29]},{"path":[4,78],"span":[1403,0,1415,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,78,1],"span":[1403,8,30]},{"path":[4,78,2,0],"span":[1404,2,41]},{"path":[4,78,2,0,4],"span":[1404,2,10]},{"path":[4,78,2,0,5],"span":[1404,11,16]},{"path":[4,78,2,0,1],"span":[1404,17,36]},{"path":[4,78,2,0,3],"span":[1404,39,40]},{"path":[4,78,2,1],"span":[1405,2,37]},{"path":[4,78,2,1,4],"span":[1405,2,10]},{"path":[4,78,2,1,6],"span":[1405,11,22]},{"path":[4,78,2,1,1],"span":[1405,23,32]},{"path":[4,78,2,1,3],"span":[1405,35,36]},{"path":[4,78,2,2],"span":[1406,2,37]},{"path":[4,78,2,2,4],"span":[1406,2,10]},{"path":[4,78,2,2,5],"span":[1406,11,16]},{"path":[4,78,2,2,1],"span":[1406,17,32]},{"path":[4,78,2,2,3],"span":[1406,35,36]},{"path":[4,78,2,3],"span":[1407,2,36]},{"path":[4,78,2,3,4],"span":[1407,2,10]},{"path":[4,78,2,3,5],"span":[1407,11,16]},{"path":[4,78,2,3,1],"span":[1407,17,31]},{"path":[4,78,2,3,3],"span":[1407,34,35]},{"path":[4,78,2,4],"span":[1408,2,32]},{"path":[4,78,2,4,4],"span":[1408,2,10]},{"path":[4,78,2,4,5],"span":[1408,11,17]},{"path":[4,78,2,4,1],"span":[1408,18,27]},{"path":[4,78,2,4,3],"span":[1408,30,31]},{"path":[4,78,2,5],"span":[1409,2,31]},{"path":[4,78,2,5,4],"span":[1409,2,10]},{"path":[4,78,2,5,5],"span":[1409,11,17]},{"path":[4,78,2,5,1],"span":[1409,18,26]},{"path":[4,78,2,5,3],"span":[1409,29,30]},{"path":[4,78,2,6],"span":[1410,2,39]},{"path":[4,78,2,6,4],"span":[1410,2,10]},{"path":[4,78,2,6,5],"span":[1410,11,17]},{"path":[4,78,2,6,1],"span":[1410,18,34]},{"path":[4,78,2,6,3],"span":[1410,37,38]},{"path":[4,78,2,7],"span":[1411,2,35]},{"path":[4,78,2,7,4],"span":[1411,2,10]},{"path":[4,78,2,7,5],"span":[1411,11,17]},{"path":[4,78,2,7,1],"span":[1411,18,30]},{"path":[4,78,2,7,3],"span":[1411,33,34]},{"path":[4,78,2,8],"span":[1412,2,39]},{"path":[4,78,2,8,4],"span":[1412,2,10]},{"path":[4,78,2,8,5],"span":[1412,11,16]},{"path":[4,78,2,8,1],"span":[1412,17,34]},{"path":[4,78,2,8,3],"span":[1412,37,38]},{"path":[4,78,2,9],"span":[1413,2,28]},{"path":[4,78,2,9,4],"span":[1413,2,10]},{"path":[4,78,2,9,5],"span":[1413,11,17]},{"path":[4,78,2,9,1],"span":[1413,18,22]},{"path":[4,78,2,9,3],"span":[1413,25,27]},{"path":[4,78,2,10],"span":[1414,2,45]},{"path":[4,78,2,10,4],"span":[1414,2,10]},{"path":[4,78,2,10,5],"span":[1414,11,17]},{"path":[4,78,2,10,1],"span":[1414,18,39]},{"path":[4,78,2,10,3],"span":[1414,42,44]},{"path":[4,79],"span":[1420,0,1456,1],"leadingComments":"\n Computer Battery: Mac.Power battery messages.\n"},{"path":[4,79,1],"span":[1420,8,26]},{"path":[4,79,2,0],"span":[1422,2,38],"leadingComments":" from battery power\n"},{"path":[4,79,2,0,4],"span":[1422,2,10]},{"path":[4,79,2,0,5],"span":[1422,11,16]},{"path":[4,79,2,0,1],"span":[1422,17,33]},{"path":[4,79,2,0,3],"span":[1422,36,37]},{"path":[4,79,2,1],"span":[1423,2,41]},{"path":[4,79,2,1,4],"span":[1423,2,10]},{"path":[4,79,2,1,5],"span":[1423,11,16]},{"path":[4,79,2,1,1],"span":[1423,17,36]},{"path":[4,79,2,1,3],"span":[1423,39,40]},{"path":[4,79,2,2],"span":[1424,2,36]},{"path":[4,79,2,2,4],"span":[1424,2,10]},{"path":[4,79,2,2,5],"span":[1424,11,16]},{"path":[4,79,2,2,1],"span":[1424,17,31]},{"path":[4,79,2,2,3],"span":[1424,34,35]},{"path":[4,79,2,3],"span":[1425,2,64]},{"path":[4,79,2,3,4],"span":[1425,2,10]},{"path":[4,79,2,3,5],"span":[1425,11,16]},{"path":[4,79,2,3,1],"span":[1425,17,59]},{"path":[4,79,2,3,3],"span":[1425,62,63]},{"path":[4,79,2,4],"span":[1426,2,42],"trailingComments":" parse from: 'Yes'\n"},{"path":[4,79,2,4,4],"span":[1426,2,10]},{"path":[4,79,2,4,5],"span":[1426,11,15]},{"path":[4,79,2,4,1],"span":[1426,16,37]},{"path":[4,79,2,4,3],"span":[1426,40,41]},{"path":[4,79,2,5],"span":[1427,2,40]},{"path":[4,79,2,5,4],"span":[1427,2,10]},{"path":[4,79,2,5,5],"span":[1427,11,16]},{"path":[4,79,2,5,1],"span":[1427,17,35]},{"path":[4,79,2,5,3],"span":[1427,38,39]},{"path":[4,79,2,6],"span":[1428,2,32]},{"path":[4,79,2,6,4],"span":[1428,2,10]},{"path":[4,79,2,6,5],"span":[1428,11,15]},{"path":[4,79,2,6,1],"span":[1428,16,27]},{"path":[4,79,2,6,3],"span":[1428,30,31]},{"path":[4,79,2,7],"span":[1429,2,42]},{"path":[4,79,2,7,4],"span":[1429,2,10]},{"path":[4,79,2,7,5],"span":[1429,11,16]},{"path":[4,79,2,7,1],"span":[1429,17,37]},{"path":[4,79,2,7,3],"span":[1429,40,41]},{"path":[4,79,2,8],"span":[1430,2,37]},{"path":[4,79,2,8,4],"span":[1430,2,10]},{"path":[4,79,2,8,5],"span":[1430,11,16]},{"path":[4,79,2,8,1],"span":[1430,17,32]},{"path":[4,79,2,8,3],"span":[1430,35,36]},{"path":[4,79,2,9],"span":[1431,2,37]},{"path":[4,79,2,9,4],"span":[1431,2,10]},{"path":[4,79,2,9,5],"span":[1431,11,16]},{"path":[4,79,2,9,1],"span":[1431,17,31]},{"path":[4,79,2,9,3],"span":[1431,34,36]},{"path":[4,79,2,10],"span":[1432,2,39]},{"path":[4,79,2,10,4],"span":[1432,2,10]},{"path":[4,79,2,10,5],"span":[1432,11,15]},{"path":[4,79,2,10,1],"span":[1432,16,33]},{"path":[4,79,2,10,3],"span":[1432,36,38]},{"path":[4,79,2,11],"span":[1435,2,38],"leadingComments":" from battery charge (parse booleans)\n"},{"path":[4,79,2,11,4],"span":[1435,2,10]},{"path":[4,79,2,11,5],"span":[1435,11,15]},{"path":[4,79,2,11,1],"span":[1435,16,32]},{"path":[4,79,2,11,3],"span":[1435,35,37]},{"path":[4,79,2,12],"span":[1436,2,38]},{"path":[4,79,2,12,4],"span":[1436,2,10]},{"path":[4,79,2,12,5],"span":[1436,11,15]},{"path":[4,79,2,12,1],"span":[1436,16,32]},{"path":[4,79,2,12,3],"span":[1436,35,37]},{"path":[4,79,2,13],"span":[1437,2,33]},{"path":[4,79,2,13,4],"span":[1437,2,10]},{"path":[4,79,2,13,5],"span":[1437,11,15]},{"path":[4,79,2,13,1],"span":[1437,16,27]},{"path":[4,79,2,13,3],"span":[1437,30,32]},{"path":[4,79,2,14],"span":[1438,2,39]},{"path":[4,79,2,14,4],"span":[1438,2,10]},{"path":[4,79,2,14,5],"span":[1438,11,16]},{"path":[4,79,2,14,1],"span":[1438,18,33]},{"path":[4,79,2,14,3],"span":[1438,36,38]},{"path":[4,79,2,15],"span":[1441,2,34],"leadingComments":" from battery_health_info\n"},{"path":[4,79,2,15,4],"span":[1441,2,10]},{"path":[4,79,2,15,5],"span":[1441,11,16]},{"path":[4,79,2,15,1],"span":[1441,17,28]},{"path":[4,79,2,15,3],"span":[1441,31,33]},{"path":[4,79,2,16],"span":[1442,2,37]},{"path":[4,79,2,16,4],"span":[1442,2,10]},{"path":[4,79,2,16,5],"span":[1442,11,17]},{"path":[4,79,2,16,1],"span":[1442,18,31]},{"path":[4,79,2,16,3],"span":[1442,34,36]},{"path":[4,79,2,17],"span":[1443,2,54]},{"path":[4,79,2,17,4],"span":[1443,2,10]},{"path":[4,79,2,17,5],"span":[1443,11,17]},{"path":[4,79,2,17,1],"span":[1443,18,48]},{"path":[4,79,2,17,3],"span":[1443,51,53]},{"path":[4,79,2,18],"span":[1446,2,36],"leadingComments":" from battery_model_info\n"},{"path":[4,79,2,18,4],"span":[1446,2,10]},{"path":[4,79,2,18,5],"span":[1446,11,17]},{"path":[4,79,2,18,1],"span":[1446,18,30]},{"path":[4,79,2,18,3],"span":[1446,33,35]},{"path":[4,79,2,19],"span":[1447,2,37]},{"path":[4,79,2,19,4],"span":[1447,2,10]},{"path":[4,79,2,19,5],"span":[1447,11,17]},{"path":[4,79,2,19,1],"span":[1447,18,31]},{"path":[4,79,2,19,3],"span":[1447,34,36]},{"path":[4,79,2,20],"span":[1448,2,37]},{"path":[4,79,2,20,4],"span":[1448,2,10]},{"path":[4,79,2,20,5],"span":[1448,11,17]},{"path":[4,79,2,20,1],"span":[1448,18,31]},{"path":[4,79,2,20,3],"span":[1448,34,36]},{"path":[4,79,2,21],"span":[1449,2,35]},{"path":[4,79,2,21,4],"span":[1449,2,10]},{"path":[4,79,2,21,5],"span":[1449,11,17]},{"path":[4,79,2,21,1],"span":[1449,18,29]},{"path":[4,79,2,21,3],"span":[1449,32,34]},{"path":[4,79,2,22],"span":[1450,2,40]},{"path":[4,79,2,22,4],"span":[1450,2,10]},{"path":[4,79,2,22,5],"span":[1450,11,17]},{"path":[4,79,2,22,1],"span":[1450,18,34]},{"path":[4,79,2,22,3],"span":[1450,37,39]},{"path":[4,79,2,23],"span":[1451,2,41]},{"path":[4,79,2,23,4],"span":[1451,2,10]},{"path":[4,79,2,23,5],"span":[1451,11,17]},{"path":[4,79,2,23,1],"span":[1451,18,35]},{"path":[4,79,2,23,3],"span":[1451,38,40]},{"path":[4,79,2,24],"span":[1452,2,37]},{"path":[4,79,2,24,4],"span":[1452,2,10]},{"path":[4,79,2,24,5],"span":[1452,11,17]},{"path":[4,79,2,24,1],"span":[1452,18,31]},{"path":[4,79,2,24,3],"span":[1452,34,36]},{"path":[4,79,2,25],"span":[1454,2,47]},{"path":[4,79,2,25,4],"span":[1454,2,10]},{"path":[4,79,2,25,5],"span":[1454,11,15]},{"path":[4,79,2,25,1],"span":[1454,16,41]},{"path":[4,79,2,25,3],"span":[1454,44,46]},{"path":[4,79,2,26],"span":[1455,2,41]},{"path":[4,79,2,26,4],"span":[1455,2,10]},{"path":[4,79,2,26,5],"span":[1455,11,15]},{"path":[4,79,2,26,1],"span":[1455,16,35]},{"path":[4,79,2,26,3],"span":[1455,38,40]},{"path":[4,80],"span":[1461,0,1483,1],"leadingComments":"\n Optical disc drive for computers.\n"},{"path":[4,80,1],"span":[1461,8,20]},{"path":[4,80,2,0],"span":[1462,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,80,2,0,4],"span":[1462,2,10]},{"path":[4,80,2,0,5],"span":[1462,16,22]},{"path":[4,80,2,0,1],"span":[1462,24,28]},{"path":[4,80,2,0,3],"span":[1462,34,35]},{"path":[4,80,2,1],"span":[1463,2,36],"trailingComments":" \t\"OK\",\"Error\",\"Degraded\"\tWindows\n"},{"path":[4,80,2,1,4],"span":[1463,2,10]},{"path":[4,80,2,1,5],"span":[1463,16,22]},{"path":[4,80,2,1,1],"span":[1463,24,30]},{"path":[4,80,2,1,3],"span":[1463,34,35]},{"path":[4,80,2,2],"span":[1464,2,36],"trailingComments":" \t\"2:0:0:0\"\tLinux\n"},{"path":[4,80,2,2,4],"span":[1464,2,10]},{"path":[4,80,2,2,5],"span":[1464,16,22]},{"path":[4,80,2,2,1],"span":[1464,24,27]},{"path":[4,80,2,2,3],"span":[1464,34,35]},{"path":[4,80,2,3],"span":[1465,2,52],"trailingComments":" \t\"Supports writing, Random Access, Supports Removable Media\" \tWindows\n"},{"path":[4,80,2,3,4],"span":[1465,2,10]},{"path":[4,80,2,3,6],"span":[1465,16,27]},{"path":[4,80,2,3,1],"span":[1465,32,44]},{"path":[4,80,2,3,3],"span":[1465,50,51]},{"path":[4,80,2,4],"span":[1466,2,44],"trailingComments":" \t\"32 KB\", \"2048 KB\"\tMac\n"},{"path":[4,80,2,4,4],"span":[1466,2,10]},{"path":[4,80,2,4,5],"span":[1466,16,22]},{"path":[4,80,2,4,1],"span":[1466,24,34]},{"path":[4,80,2,4,3],"span":[1466,42,43]},{"path":[4,80,2,5],"span":[1467,2,44],"trailingComments":" \t\"DRDeviceSupportLevelUnsupported\",\"Yes (Apple Shipping Drive)\",\"Yes (Generic Drive Support)\"\tMac\n"},{"path":[4,80,2,5,4],"span":[1467,2,10]},{"path":[4,80,2,5,5],"span":[1467,16,22]},{"path":[4,80,2,5,1],"span":[1467,24,36]},{"path":[4,80,2,5,3],"span":[1467,42,43]},{"path":[4,80,2,6],"span":[1468,2,44],"trailingComments":" \t\"-R, -RW\"\tMac\n"},{"path":[4,80,2,6,4],"span":[1468,2,10]},{"path":[4,80,2,6,5],"span":[1468,16,22]},{"path":[4,80,2,6,1],"span":[1468,24,32]},{"path":[4,80,2,6,3],"span":[1468,42,43]},{"path":[4,80,2,7],"span":[1469,2,44],"trailingComments":" \t\"-R, -RAM, -RW\"\tMac\n"},{"path":[4,80,2,7,4],"span":[1469,2,10]},{"path":[4,80,2,7,5],"span":[1469,16,22]},{"path":[4,80,2,7,1],"span":[1469,24,33]},{"path":[4,80,2,7,3],"span":[1469,42,43]},{"path":[4,80,2,8],"span":[1470,2,44],"trailingComments":" \t\"yes\"\tMac\n"},{"path":[4,80,2,8,4],"span":[1470,2,10]},{"path":[4,80,2,8,5],"span":[1470,16,22]},{"path":[4,80,2,8,1],"span":[1470,24,32]},{"path":[4,80,2,8,3],"span":[1470,42,43]},{"path":[4,80,2,9],"span":[1471,2,45],"trailingComments":" \tWindows: \"H:\" Linux: \"/dev/sr0 (/dev/sg0)\"\tWindows, Linux\n"},{"path":[4,80,2,9,4],"span":[1471,2,10]},{"path":[4,80,2,9,5],"span":[1471,16,22]},{"path":[4,80,2,9,1],"span":[1471,24,34]},{"path":[4,80,2,9,3],"span":[1471,42,44]},{"path":[4,80,2,10],"span":[1472,2,53],"trailingComments":" \t\"RQ00\",\"1.00\"\tMac\n"},{"path":[4,80,2,10,4],"span":[1472,2,10]},{"path":[4,80,2,10,5],"span":[1472,16,22]},{"path":[4,80,2,10,1],"span":[1472,24,40]},{"path":[4,80,2,10,3],"span":[1472,50,52]},{"path":[4,80,2,11],"span":[1473,2,45],"trailingComments":" \t\"ATAPI\",\"USB\"\tMac\n"},{"path":[4,80,2,11,4],"span":[1473,2,10]},{"path":[4,80,2,11,5],"span":[1473,16,22]},{"path":[4,80,2,11,1],"span":[1473,24,34]},{"path":[4,80,2,11,3],"span":[1473,42,44]},{"path":[4,80,2,12],"span":[1474,2,61],"trailingComments":" \t\"yes\"\tMac\n"},{"path":[4,80,2,12,4],"span":[1474,2,10]},{"path":[4,80,2,12,5],"span":[1474,16,22]},{"path":[4,80,2,12,1],"span":[1474,24,54]},{"path":[4,80,2,12,3],"span":[1474,58,60]},{"path":[4,80,2,13],"span":[1475,2,45],"trailingComments":" \tWindows:\"(Standard CD-ROM drives)\",Linux:\"NECVMWar\"\tWindows, Linux\n"},{"path":[4,80,2,13,4],"span":[1475,2,10]},{"path":[4,80,2,13,5],"span":[1475,16,22]},{"path":[4,80,2,13,1],"span":[1475,24,36]},{"path":[4,80,2,13,3],"span":[1475,42,44]},{"path":[4,80,2,14],"span":[1476,2,45],"trailingComments":" \t\tLinux\n"},{"path":[4,80,2,14,4],"span":[1476,2,10]},{"path":[4,80,2,14,5],"span":[1476,16,22]},{"path":[4,80,2,14,1],"span":[1476,24,35]},{"path":[4,80,2,14,3],"span":[1476,42,44]},{"path":[4,80,2,15],"span":[1477,2,53],"trailingComments":" \t\"CD-TAO, CD-SAO, CD-Raw, DVD-DAO\"\tMac\n"},{"path":[4,80,2,15,4],"span":[1477,2,10]},{"path":[4,80,2,15,5],"span":[1477,16,22]},{"path":[4,80,2,15,1],"span":[1477,24,40]},{"path":[4,80,2,15,3],"span":[1477,50,52]},{"path":[4,80,2,16],"span":[1478,2,45],"trailingComments":" \t7\tWindows\n"},{"path":[4,80,2,16,4],"span":[1478,2,10]},{"path":[4,80,2,16,5],"span":[1478,16,21]},{"path":[4,80,2,16,1],"span":[1478,24,32]},{"path":[4,80,2,16,3],"span":[1478,42,44]},{"path":[4,80,2,17],"span":[1479,2,53],"trailingComments":" \t0\tWindows\n"},{"path":[4,80,2,17,4],"span":[1479,2,10]},{"path":[4,80,2,17,5],"span":[1479,16,21]},{"path":[4,80,2,17,1],"span":[1479,24,41]},{"path":[4,80,2,17,3],"span":[1479,50,52]},{"path":[4,80,2,18],"span":[1480,2,45],"trailingComments":" \t0\tWindows\n"},{"path":[4,80,2,18,4],"span":[1480,2,10]},{"path":[4,80,2,18,5],"span":[1480,16,21]},{"path":[4,80,2,18,1],"span":[1480,24,33]},{"path":[4,80,2,18,3],"span":[1480,42,44]},{"path":[4,80,2,19],"span":[1481,2,45],"trailingComments":" \t0\tWindows\n"},{"path":[4,80,2,19,4],"span":[1481,2,10]},{"path":[4,80,2,19,5],"span":[1481,16,21]},{"path":[4,80,2,19,1],"span":[1481,24,38]},{"path":[4,80,2,19,3],"span":[1481,42,44]},{"path":[4,80,2,20],"span":[1482,2,52],"trailingComments":" \tMac\n"},{"path":[4,80,2,20,4],"span":[1482,2,10]},{"path":[4,80,2,20,5],"span":[1482,16,22]},{"path":[4,80,2,20,1],"span":[1482,24,46]},{"path":[4,80,2,20,3],"span":[1482,49,51]},{"path":[4,81],"span":[1488,0,1501,1],"leadingComments":"\n Motherboard for computers.\n"},{"path":[4,81,1],"span":[1488,8,19]},{"path":[4,81,2,0],"span":[1489,2,18],"trailingComments":" Windows, Linux\n"},{"path":[4,81,2,0,5],"span":[1489,2,8]},{"path":[4,81,2,0,1],"span":[1489,9,13]},{"path":[4,81,2,0,3],"span":[1489,16,17]},{"path":[4,81,2,1],"span":[1490,2,43],"trailingComments":" Windows\n"},{"path":[4,81,2,1,4],"span":[1490,2,10]},{"path":[4,81,2,1,5],"span":[1490,11,17]},{"path":[4,81,2,1,1],"span":[1490,24,38]},{"path":[4,81,2,1,3],"span":[1490,41,42]},{"path":[4,81,2,2],"span":[1491,2,37],"trailingComments":" Windows\n"},{"path":[4,81,2,2,4],"span":[1491,2,10]},{"path":[4,81,2,2,5],"span":[1491,11,15]},{"path":[4,81,2,2,1],"span":[1491,16,32]},{"path":[4,81,2,2,3],"span":[1491,35,36]},{"path":[4,81,2,3],"span":[1492,2,34],"trailingComments":" Windows\n"},{"path":[4,81,2,3,4],"span":[1492,2,10]},{"path":[4,81,2,3,5],"span":[1492,11,15]},{"path":[4,81,2,3,1],"span":[1492,16,29]},{"path":[4,81,2,3,3],"span":[1492,32,33]},{"path":[4,81,2,4],"span":[1493,2,37],"trailingComments":" Linux\n"},{"path":[4,81,2,4,4],"span":[1493,2,10]},{"path":[4,81,2,4,5],"span":[1493,11,17]},{"path":[4,81,2,4,1],"span":[1493,24,32]},{"path":[4,81,2,4,3],"span":[1493,35,36]},{"path":[4,81,2,5],"span":[1494,2,41],"trailingComments":" Windows, Linux\n"},{"path":[4,81,2,5,4],"span":[1494,2,10]},{"path":[4,81,2,5,5],"span":[1494,11,17]},{"path":[4,81,2,5,1],"span":[1494,24,36]},{"path":[4,81,2,5,3],"span":[1494,39,40]},{"path":[4,81,2,6],"span":[1495,2,42],"trailingComments":" Windows, Linux\n"},{"path":[4,81,2,6,4],"span":[1495,2,10]},{"path":[4,81,2,6,5],"span":[1495,11,17]},{"path":[4,81,2,6,1],"span":[1495,24,37]},{"path":[4,81,2,6,3],"span":[1495,40,41]},{"path":[4,81,2,7],"span":[1496,2,32],"trailingComments":" Windows\n"},{"path":[4,81,2,7,4],"span":[1496,2,10]},{"path":[4,81,2,7,5],"span":[1496,11,17]},{"path":[4,81,2,7,1],"span":[1496,24,27]},{"path":[4,81,2,7,3],"span":[1496,30,31]},{"path":[4,81,2,8],"span":[1497,2,33],"trailingComments":" Linux\n"},{"path":[4,81,2,8,4],"span":[1497,2,10]},{"path":[4,81,2,8,5],"span":[1497,11,17]},{"path":[4,81,2,8,1],"span":[1497,24,28]},{"path":[4,81,2,8,3],"span":[1497,31,32]},{"path":[4,81,2,9],"span":[1498,2,37],"trailingComments":" Windows, Linux\n"},{"path":[4,81,2,9,4],"span":[1498,2,10]},{"path":[4,81,2,9,5],"span":[1498,11,17]},{"path":[4,81,2,9,1],"span":[1498,24,31]},{"path":[4,81,2,9,3],"span":[1498,34,36]},{"path":[4,81,2,10],"span":[1500,2,41]},{"path":[4,81,2,10,4],"span":[1500,2,10]},{"path":[4,81,2,10,6],"span":[1500,11,28]},{"path":[4,81,2,10,1],"span":[1500,29,35]},{"path":[4,81,2,10,3],"span":[1500,38,40]},{"path":[4,82],"span":[1506,0,1511,1],"leadingComments":"\n Motherboard device, available only on Windows atm.\n"},{"path":[4,82,1],"span":[1506,8,25]},{"path":[4,82,2,0],"span":[1507,2,40]},{"path":[4,82,2,0,4],"span":[1507,2,10]},{"path":[4,82,2,0,5],"span":[1507,11,17]},{"path":[4,82,2,0,1],"span":[1507,24,35]},{"path":[4,82,2,0,3],"span":[1507,38,39]},{"path":[4,82,2,1],"span":[1508,2,28]},{"path":[4,82,2,1,4],"span":[1508,2,10]},{"path":[4,82,2,1,5],"span":[1508,11,15]},{"path":[4,82,2,1,1],"span":[1508,16,23]},{"path":[4,82,2,1,3],"span":[1508,26,27]},{"path":[4,82,2,2],"span":[1509,2,32]},{"path":[4,82,2,2,4],"span":[1509,2,10]},{"path":[4,82,2,2,5],"span":[1509,11,17]},{"path":[4,82,2,2,1],"span":[1509,24,27]},{"path":[4,82,2,2,3],"span":[1509,30,31]},{"path":[4,82,2,3],"span":[1510,2,32]},{"path":[4,82,2,3,4],"span":[1510,2,10]},{"path":[4,82,2,3,6],"span":[1510,11,22]},{"path":[4,82,2,3,1],"span":[1510,23,27]},{"path":[4,82,2,3,3],"span":[1510,30,31]},{"path":[4,83],"span":[1516,0,1520,1],"leadingComments":"\n Memory with summary fields and repeated entries.\n"},{"path":[4,83,1],"span":[1516,8,14]},{"path":[4,83,2,0],"span":[1517,4,29]},{"path":[4,83,2,0,5],"span":[1517,4,9]},{"path":[4,83,2,0,1],"span":[1517,10,24]},{"path":[4,83,2,0,3],"span":[1517,27,28]},{"path":[4,83,2,1],"span":[1518,4,48]},{"path":[4,83,2,1,4],"span":[1518,4,12]},{"path":[4,83,2,1,6],"span":[1518,13,27]},{"path":[4,83,2,1,1],"span":[1518,28,43]},{"path":[4,83,2,1,3],"span":[1518,46,47]},{"path":[4,83,2,2],"span":[1519,4,42]},{"path":[4,83,2,2,4],"span":[1519,4,12]},{"path":[4,83,2,2,6],"span":[1519,13,24]},{"path":[4,83,2,2,1],"span":[1519,25,37]},{"path":[4,83,2,2,3],"span":[1519,40,41]},{"path":[4,84],"span":[1523,0,1546,1],"leadingComments":" MemoryEntry *"},{"path":[4,84,1],"span":[1523,8,22]},{"path":[4,84,2,0],"span":[1525,4,30],"trailingComments":" memory capacity/size\n"},{"path":[4,84,2,0,4],"span":[1525,4,12]},{"path":[4,84,2,0,5],"span":[1525,14,19]},{"path":[4,84,2,0,1],"span":[1525,20,24]},{"path":[4,84,2,0,3],"span":[1525,27,29]},{"path":[4,84,2,1],"span":[1526,4,40],"trailingComments":"\tLinux\n"},{"path":[4,84,2,1,4],"span":[1526,4,12]},{"path":[4,84,2,1,5],"span":[1526,13,19]},{"path":[4,84,2,1,1],"span":[1526,24,36]},{"path":[4,84,2,1,3],"span":[1526,38,39]},{"path":[4,84,2,2],"span":[1527,4,51],"trailingComments":"\tWindows\n"},{"path":[4,84,2,2,4],"span":[1527,4,12]},{"path":[4,84,2,2,5],"span":[1527,13,18]},{"path":[4,84,2,2,1],"span":[1527,24,46]},{"path":[4,84,2,2,3],"span":[1527,49,50]},{"path":[4,84,2,3],"span":[1528,4,46],"trailingComments":"\tWindows\n"},{"path":[4,84,2,3,4],"span":[1528,4,12]},{"path":[4,84,2,3,5],"span":[1528,13,18]},{"path":[4,84,2,3,1],"span":[1528,24,42]},{"path":[4,84,2,3,3],"span":[1528,44,45]},{"path":[4,84,2,4],"span":[1529,4,38],"trailingComments":"\tWindows, Linux\n"},{"path":[4,84,2,4,4],"span":[1529,4,12]},{"path":[4,84,2,4,5],"span":[1529,13,18]},{"path":[4,84,2,4,1],"span":[1529,24,34]},{"path":[4,84,2,4,3],"span":[1529,36,37]},{"path":[4,84,2,5],"span":[1530,4,42],"trailingComments":"\tWindows, Linux\n"},{"path":[4,84,2,5,4],"span":[1530,4,12]},{"path":[4,84,2,5,5],"span":[1530,13,19]},{"path":[4,84,2,5,1],"span":[1530,24,38]},{"path":[4,84,2,5,3],"span":[1530,40,41]},{"path":[4,84,2,6],"span":[1531,4,47],"trailingComments":"\tWindows, Linux\n"},{"path":[4,84,2,6,4],"span":[1531,4,12]},{"path":[4,84,2,6,6],"span":[1531,13,24]},{"path":[4,84,2,6,1],"span":[1531,32,43]},{"path":[4,84,2,6,3],"span":[1531,45,46]},{"path":[4,84,2,7],"span":[1532,4,49],"trailingComments":"\tWindows\n"},{"path":[4,84,2,7,4],"span":[1532,4,12]},{"path":[4,84,2,7,5],"span":[1532,13,18]},{"path":[4,84,2,7,1],"span":[1532,24,45]},{"path":[4,84,2,7,3],"span":[1532,47,48]},{"path":[4,84,2,8],"span":[1533,4,55],"trailingComments":"\tWindows\n"},{"path":[4,84,2,8,4],"span":[1533,4,12]},{"path":[4,84,2,8,6],"span":[1533,13,24]},{"path":[4,84,2,8,1],"span":[1533,32,51]},{"path":[4,84,2,8,3],"span":[1533,53,54]},{"path":[4,84,2,9],"span":[1534,4,40],"trailingComments":"\tWindows, Linux\n"},{"path":[4,84,2,9,4],"span":[1534,4,12]},{"path":[4,84,2,9,5],"span":[1534,13,19]},{"path":[4,84,2,9,1],"span":[1534,24,36]},{"path":[4,84,2,9,3],"span":[1534,38,39]},{"path":[4,84,2,10],"span":[1535,4,33],"trailingComments":"\tMac\n"},{"path":[4,84,2,10,4],"span":[1535,4,12]},{"path":[4,84,2,10,5],"span":[1535,13,19]},{"path":[4,84,2,10,1],"span":[1535,24,28]},{"path":[4,84,2,10,3],"span":[1535,30,32]},{"path":[4,84,2,11],"span":[1536,4,40],"trailingComments":"\tWindows\n"},{"path":[4,84,2,11,4],"span":[1536,4,12]},{"path":[4,84,2,11,5],"span":[1536,13,19]},{"path":[4,84,2,11,1],"span":[1536,24,35]},{"path":[4,84,2,11,3],"span":[1536,37,39]},{"path":[4,84,2,12],"span":[1537,4,44],"trailingComments":"\tWindows\n"},{"path":[4,84,2,12,4],"span":[1537,4,12]},{"path":[4,84,2,12,5],"span":[1537,13,18]},{"path":[4,84,2,12,1],"span":[1537,24,39]},{"path":[4,84,2,12,3],"span":[1537,41,43]},{"path":[4,84,2,13],"span":[1538,4,42],"trailingComments":"\tWindows, Linux\n"},{"path":[4,84,2,13,4],"span":[1538,4,12]},{"path":[4,84,2,13,5],"span":[1538,13,19]},{"path":[4,84,2,13,1],"span":[1538,24,37]},{"path":[4,84,2,13,3],"span":[1538,39,41]},{"path":[4,84,2,14],"span":[1539,4,32],"trailingComments":"\tLinux\n"},{"path":[4,84,2,14,4],"span":[1539,4,12]},{"path":[4,84,2,14,5],"span":[1539,13,19]},{"path":[4,84,2,14,1],"span":[1539,24,27]},{"path":[4,84,2,14,3],"span":[1539,29,31]},{"path":[4,84,2,15],"span":[1540,4,32],"trailingComments":"\tWindows\n"},{"path":[4,84,2,15,4],"span":[1540,4,12]},{"path":[4,84,2,15,5],"span":[1540,13,19]},{"path":[4,84,2,15,1],"span":[1540,24,27]},{"path":[4,84,2,15,3],"span":[1540,29,31]},{"path":[4,84,2,16],"span":[1541,4,34],"trailingComments":"\tWindows, Linux, Mac\n"},{"path":[4,84,2,16,4],"span":[1541,4,12]},{"path":[4,84,2,16,5],"span":[1541,13,18]},{"path":[4,84,2,16,1],"span":[1541,24,29]},{"path":[4,84,2,16,3],"span":[1541,31,33]},{"path":[4,84,2,17],"span":[1542,4,34],"trailingComments":"\tMac\n"},{"path":[4,84,2,17,4],"span":[1542,4,12]},{"path":[4,84,2,17,5],"span":[1542,13,19]},{"path":[4,84,2,17,1],"span":[1542,24,29]},{"path":[4,84,2,17,3],"span":[1542,31,33]},{"path":[4,84,2,18],"span":[1543,4,40],"trailingComments":"\tWindows, Linux\n"},{"path":[4,84,2,18,4],"span":[1543,4,12]},{"path":[4,84,2,18,5],"span":[1543,13,18]},{"path":[4,84,2,18,1],"span":[1543,24,35]},{"path":[4,84,2,18,3],"span":[1543,37,39]},{"path":[4,84,2,19],"span":[1544,4,41],"trailingComments":"\tWindows, Linux, Mac\n"},{"path":[4,84,2,19,4],"span":[1544,4,12]},{"path":[4,84,2,19,6],"span":[1544,13,24]},{"path":[4,84,2,19,1],"span":[1544,32,36]},{"path":[4,84,2,19,3],"span":[1544,38,40]},{"path":[4,84,2,20],"span":[1545,4,48],"trailingComments":"\tWindows, Linux\n"},{"path":[4,84,2,20,4],"span":[1545,4,12]},{"path":[4,84,2,20,6],"span":[1545,13,24]},{"path":[4,84,2,20,1],"span":[1545,32,43]},{"path":[4,84,2,20,3],"span":[1545,45,47]},{"path":[4,85],"span":[1550,0,1557,1],"leadingComments":" MemoryArray, only Windows *"},{"path":[4,85,1],"span":[1550,8,19]},{"path":[4,85,2,0],"span":[1551,2,40],"trailingComments":"\tWindows\n"},{"path":[4,85,2,0,4],"span":[1551,2,10]},{"path":[4,85,2,0,5],"span":[1551,11,16]},{"path":[4,85,2,0,1],"span":[1551,24,36]},{"path":[4,85,2,0,3],"span":[1551,38,39]},{"path":[4,85,2,1],"span":[1552,2,36],"trailingComments":"\tWindows\n"},{"path":[4,85,2,1,4],"span":[1552,2,10]},{"path":[4,85,2,1,6],"span":[1552,11,22]},{"path":[4,85,2,1,1],"span":[1552,24,32]},{"path":[4,85,2,1,3],"span":[1552,34,35]},{"path":[4,85,2,2],"span":[1553,2,42],"trailingComments":"\tWindows\n"},{"path":[4,85,2,2,4],"span":[1553,2,10]},{"path":[4,85,2,2,5],"span":[1553,11,16]},{"path":[4,85,2,2,1],"span":[1553,24,38]},{"path":[4,85,2,2,3],"span":[1553,40,41]},{"path":[4,85,2,3],"span":[1554,2,51],"trailingComments":"\tWindows\n"},{"path":[4,85,2,3,4],"span":[1554,2,10]},{"path":[4,85,2,3,6],"span":[1554,11,22]},{"path":[4,85,2,3,1],"span":[1554,24,47]},{"path":[4,85,2,3,3],"span":[1554,49,50]},{"path":[4,85,2,4],"span":[1555,2,31],"trailingComments":"\tWindows\n"},{"path":[4,85,2,4,4],"span":[1555,2,10]},{"path":[4,85,2,4,5],"span":[1555,11,17]},{"path":[4,85,2,4,1],"span":[1555,24,27]},{"path":[4,85,2,4,3],"span":[1555,29,30]},{"path":[4,85,2,5],"span":[1556,2,31],"trailingComments":"\tWindows\n"},{"path":[4,85,2,5,4],"span":[1556,2,10]},{"path":[4,85,2,5,6],"span":[1556,11,22]},{"path":[4,85,2,5,1],"span":[1556,24,27]},{"path":[4,85,2,5,3],"span":[1556,29,30]},{"path":[4,86],"span":[1563,0,1572,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,86,1],"span":[1563,8,20]},{"path":[4,86,2,0],"span":[1564,2,30]},{"path":[4,86,2,0,4],"span":[1564,2,10]},{"path":[4,86,2,0,5],"span":[1564,11,17]},{"path":[4,86,2,0,1],"span":[1564,18,25]},{"path":[4,86,2,0,3],"span":[1564,28,29]},{"path":[4,86,2,1],"span":[1565,2,40]},{"path":[4,86,2,1,4],"span":[1565,2,10]},{"path":[4,86,2,1,6],"span":[1565,11,22]},{"path":[4,86,2,1,1],"span":[1565,23,35]},{"path":[4,86,2,1,3],"span":[1565,38,39]},{"path":[4,86,2,2],"span":[1566,2,46]},{"path":[4,86,2,2,4],"span":[1566,2,10]},{"path":[4,86,2,2,6],"span":[1566,11,22]},{"path":[4,86,2,2,1],"span":[1566,23,41]},{"path":[4,86,2,2,3],"span":[1566,44,45]},{"path":[4,86,2,3],"span":[1567,2,53]},{"path":[4,86,2,3,4],"span":[1567,2,10]},{"path":[4,86,2,3,6],"span":[1567,11,22]},{"path":[4,86,2,3,1],"span":[1567,23,48]},{"path":[4,86,2,3,3],"span":[1567,51,52]},{"path":[4,86,2,4],"span":[1568,2,36]},{"path":[4,86,2,4,4],"span":[1568,2,10]},{"path":[4,86,2,4,5],"span":[1568,11,17]},{"path":[4,86,2,4,1],"span":[1568,18,31]},{"path":[4,86,2,4,3],"span":[1568,34,35]},{"path":[4,86,2,5],"span":[1569,2,47]},{"path":[4,86,2,5,4],"span":[1569,2,10]},{"path":[4,86,2,5,5],"span":[1569,11,15]},{"path":[4,86,2,5,1],"span":[1569,16,42]},{"path":[4,86,2,5,3],"span":[1569,45,46]},{"path":[4,86,2,6],"span":[1570,2,39]},{"path":[4,86,2,6,4],"span":[1570,2,10]},{"path":[4,86,2,6,5],"span":[1570,11,15]},{"path":[4,86,2,6,1],"span":[1570,16,34]},{"path":[4,86,2,6,3],"span":[1570,37,38]},{"path":[4,86,2,7],"span":[1571,2,47]},{"path":[4,86,2,7,4],"span":[1571,2,10]},{"path":[4,86,2,7,5],"span":[1571,11,15]},{"path":[4,86,2,7,1],"span":[1571,16,42]},{"path":[4,86,2,7,3],"span":[1571,45,46]},{"path":[4,87],"span":[1578,0,1589,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,87,1],"span":[1578,8,18]},{"path":[4,87,2,0],"span":[1579,2,40]},{"path":[4,87,2,0,4],"span":[1579,2,10]},{"path":[4,87,2,0,6],"span":[1579,11,22]},{"path":[4,87,2,0,1],"span":[1579,23,35]},{"path":[4,87,2,0,3],"span":[1579,38,39]},{"path":[4,87,2,1],"span":[1580,2,27]},{"path":[4,87,2,1,4],"span":[1580,2,10]},{"path":[4,87,2,1,5],"span":[1580,11,15]},{"path":[4,87,2,1,1],"span":[1580,16,22]},{"path":[4,87,2,1,3],"span":[1580,25,26]},{"path":[4,87,2,2],"span":[1581,2,30]},{"path":[4,87,2,2,4],"span":[1581,2,10]},{"path":[4,87,2,2,5],"span":[1581,11,17]},{"path":[4,87,2,2,1],"span":[1581,18,25]},{"path":[4,87,2,2,3],"span":[1581,28,29]},{"path":[4,87,2,3],"span":[1582,2,32]},{"path":[4,87,2,3,4],"span":[1582,2,10]},{"path":[4,87,2,3,5],"span":[1582,11,17]},{"path":[4,87,2,3,1],"span":[1582,18,27]},{"path":[4,87,2,3,3],"span":[1582,30,31]},{"path":[4,87,2,4],"span":[1583,2,35]},{"path":[4,87,2,4,4],"span":[1583,2,10]},{"path":[4,87,2,4,5],"span":[1583,11,16]},{"path":[4,87,2,4,1],"span":[1583,17,30]},{"path":[4,87,2,4,3],"span":[1583,33,34]},{"path":[4,87,2,5],"span":[1584,2,47]},{"path":[4,87,2,5,4],"span":[1584,2,10]},{"path":[4,87,2,5,5],"span":[1584,11,16]},{"path":[4,87,2,5,1],"span":[1584,17,42]},{"path":[4,87,2,5,3],"span":[1584,45,46]},{"path":[4,87,2,6],"span":[1585,2,48]},{"path":[4,87,2,6,4],"span":[1585,2,10]},{"path":[4,87,2,6,5],"span":[1585,11,16]},{"path":[4,87,2,6,1],"span":[1585,17,43]},{"path":[4,87,2,6,3],"span":[1585,46,47]},{"path":[4,87,2,7],"span":[1586,2,39]},{"path":[4,87,2,7,4],"span":[1586,2,10]},{"path":[4,87,2,7,5],"span":[1586,11,15]},{"path":[4,87,2,7,1],"span":[1586,16,34]},{"path":[4,87,2,7,3],"span":[1586,37,38]},{"path":[4,87,2,8],"span":[1587,2,36]},{"path":[4,87,2,8,4],"span":[1587,2,10]},{"path":[4,87,2,8,5],"span":[1587,11,17]},{"path":[4,87,2,8,1],"span":[1587,18,31]},{"path":[4,87,2,8,3],"span":[1587,34,35]},{"path":[4,87,2,9],"span":[1588,2,37]},{"path":[4,87,2,9,4],"span":[1588,2,10]},{"path":[4,87,2,9,5],"span":[1588,11,17]},{"path":[4,87,2,9,1],"span":[1588,18,31]},{"path":[4,87,2,9,3],"span":[1588,34,36]},{"path":[4,88],"span":[1595,0,1602,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,88,1],"span":[1595,8,24]},{"path":[4,88,2,0],"span":[1596,2,30]},{"path":[4,88,2,0,4],"span":[1596,2,10]},{"path":[4,88,2,0,5],"span":[1596,11,17]},{"path":[4,88,2,0,1],"span":[1596,18,25]},{"path":[4,88,2,0,3],"span":[1596,28,29]},{"path":[4,88,2,1],"span":[1597,2,46]},{"path":[4,88,2,1,4],"span":[1597,2,10]},{"path":[4,88,2,1,6],"span":[1597,11,22]},{"path":[4,88,2,1,1],"span":[1597,23,41]},{"path":[4,88,2,1,3],"span":[1597,44,45]},{"path":[4,88,2,2],"span":[1598,2,53]},{"path":[4,88,2,2,4],"span":[1598,2,10]},{"path":[4,88,2,2,6],"span":[1598,11,22]},{"path":[4,88,2,2,1],"span":[1598,23,48]},{"path":[4,88,2,2,3],"span":[1598,51,52]},{"path":[4,88,2,3],"span":[1599,2,47]},{"path":[4,88,2,3,4],"span":[1599,2,10]},{"path":[4,88,2,3,5],"span":[1599,11,15]},{"path":[4,88,2,3,1],"span":[1599,16,42]},{"path":[4,88,2,3,3],"span":[1599,45,46]},{"path":[4,88,2,4],"span":[1600,2,32]},{"path":[4,88,2,4,4],"span":[1600,2,10]},{"path":[4,88,2,4,5],"span":[1600,11,17]},{"path":[4,88,2,4,1],"span":[1600,18,27]},{"path":[4,88,2,4,3],"span":[1600,30,31]},{"path":[4,88,2,5],"span":[1601,2,35]},{"path":[4,88,2,5,4],"span":[1601,2,10]},{"path":[4,88,2,5,5],"span":[1601,11,17]},{"path":[4,88,2,5,1],"span":[1601,18,30]},{"path":[4,88,2,5,3],"span":[1601,33,34]},{"path":[4,89],"span":[1608,0,1614,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,89,1],"span":[1608,8,21]},{"path":[4,89,2,0],"span":[1609,2,42]},{"path":[4,89,2,0,4],"span":[1609,2,10]},{"path":[4,89,2,0,6],"span":[1609,11,22]},{"path":[4,89,2,0,1],"span":[1609,23,37]},{"path":[4,89,2,0,3],"span":[1609,40,41]},{"path":[4,89,2,1],"span":[1610,2,52]},{"path":[4,89,2,1,4],"span":[1610,2,10]},{"path":[4,89,2,1,5],"span":[1610,11,17]},{"path":[4,89,2,1,1],"span":[1610,18,47]},{"path":[4,89,2,1,3],"span":[1610,50,51]},{"path":[4,89,2,2],"span":[1611,2,52]},{"path":[4,89,2,2,4],"span":[1611,2,10]},{"path":[4,89,2,2,5],"span":[1611,11,17]},{"path":[4,89,2,2,1],"span":[1611,18,47]},{"path":[4,89,2,2,3],"span":[1611,50,51]},{"path":[4,89,2,3],"span":[1612,2,37]},{"path":[4,89,2,3,4],"span":[1612,2,10]},{"path":[4,89,2,3,6],"span":[1612,11,22]},{"path":[4,89,2,3,1],"span":[1612,23,32]},{"path":[4,89,2,3,3],"span":[1612,35,36]},{"path":[4,89,2,4],"span":[1613,2,26]},{"path":[4,89,2,4,4],"span":[1613,2,10]},{"path":[4,89,2,4,5],"span":[1613,11,17]},{"path":[4,89,2,4,1],"span":[1613,18,21]},{"path":[4,89,2,4,3],"span":[1613,24,25]},{"path":[4,90],"span":[1620,0,1627,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,90,1],"span":[1620,8,22]},{"path":[4,90,2,0],"span":[1621,2,40]},{"path":[4,90,2,0,4],"span":[1621,2,10]},{"path":[4,90,2,0,6],"span":[1621,11,22]},{"path":[4,90,2,0,1],"span":[1621,23,35]},{"path":[4,90,2,0,3],"span":[1621,38,39]},{"path":[4,90,2,1],"span":[1622,2,30]},{"path":[4,90,2,1,4],"span":[1622,2,10]},{"path":[4,90,2,1,5],"span":[1622,11,17]},{"path":[4,90,2,1,1],"span":[1622,18,25]},{"path":[4,90,2,1,3],"span":[1622,28,29]},{"path":[4,90,2,2],"span":[1623,2,32]},{"path":[4,90,2,2,4],"span":[1623,2,10]},{"path":[4,90,2,2,5],"span":[1623,11,17]},{"path":[4,90,2,2,1],"span":[1623,18,27]},{"path":[4,90,2,2,3],"span":[1623,30,31]},{"path":[4,90,2,3],"span":[1624,2,34]},{"path":[4,90,2,3,4],"span":[1624,2,10]},{"path":[4,90,2,3,5],"span":[1624,11,17]},{"path":[4,90,2,3,1],"span":[1624,18,29]},{"path":[4,90,2,3,3],"span":[1624,32,33]},{"path":[4,90,2,4],"span":[1625,2,35]},{"path":[4,90,2,4,4],"span":[1625,2,10]},{"path":[4,90,2,4,5],"span":[1625,11,17]},{"path":[4,90,2,4,1],"span":[1625,18,30]},{"path":[4,90,2,4,3],"span":[1625,33,34]},{"path":[4,90,2,5],"span":[1626,2,46]},{"path":[4,90,2,5,4],"span":[1626,2,10]},{"path":[4,90,2,5,6],"span":[1626,11,22]},{"path":[4,90,2,5,1],"span":[1626,23,41]},{"path":[4,90,2,5,3],"span":[1626,44,45]},{"path":[4,91],"span":[1633,0,1639,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,91,1],"span":[1633,8,29]},{"path":[4,91,2,0],"span":[1634,2,41]},{"path":[4,91,2,0,4],"span":[1634,2,10]},{"path":[4,91,2,0,5],"span":[1634,11,17]},{"path":[4,91,2,0,1],"span":[1634,18,36]},{"path":[4,91,2,0,3],"span":[1634,39,40]},{"path":[4,91,2,1],"span":[1635,2,27]},{"path":[4,91,2,1,4],"span":[1635,2,10]},{"path":[4,91,2,1,5],"span":[1635,11,17]},{"path":[4,91,2,1,1],"span":[1635,18,22]},{"path":[4,91,2,1,3],"span":[1635,25,26]},{"path":[4,91,2,2],"span":[1636,2,27]},{"path":[4,91,2,2,4],"span":[1636,2,10]},{"path":[4,91,2,2,5],"span":[1636,11,17]},{"path":[4,91,2,2,1],"span":[1636,18,22]},{"path":[4,91,2,2,3],"span":[1636,25,26]},{"path":[4,91,2,3],"span":[1637,2,29]},{"path":[4,91,2,3,4],"span":[1637,2,10]},{"path":[4,91,2,3,5],"span":[1637,11,17]},{"path":[4,91,2,3,1],"span":[1637,18,24]},{"path":[4,91,2,3,3],"span":[1637,27,28]},{"path":[4,91,2,4],"span":[1638,2,30]},{"path":[4,91,2,4,4],"span":[1638,2,10]},{"path":[4,91,2,4,5],"span":[1638,11,17]},{"path":[4,91,2,4,1],"span":[1638,18,25]},{"path":[4,91,2,4,3],"span":[1638,28,29]},{"path":[4,92],"span":[1645,0,1663,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,92,1],"span":[1645,8,29]},{"path":[4,92,2,0],"span":[1646,2,47]},{"path":[4,92,2,0,4],"span":[1646,2,10]},{"path":[4,92,2,0,5],"span":[1646,11,15]},{"path":[4,92,2,0,1],"span":[1646,16,42]},{"path":[4,92,2,0,3],"span":[1646,45,46]},{"path":[4,92,2,1],"span":[1647,2,45]},{"path":[4,92,2,1,4],"span":[1647,2,10]},{"path":[4,92,2,1,5],"span":[1647,11,15]},{"path":[4,92,2,1,1],"span":[1647,16,40]},{"path":[4,92,2,1,3],"span":[1647,43,44]},{"path":[4,92,2,2],"span":[1648,2,43]},{"path":[4,92,2,2,4],"span":[1648,2,10]},{"path":[4,92,2,2,5],"span":[1648,11,15]},{"path":[4,92,2,2,1],"span":[1648,16,38]},{"path":[4,92,2,2,3],"span":[1648,41,42]},{"path":[4,92,2,3],"span":[1649,2,35]},{"path":[4,92,2,3,4],"span":[1649,2,10]},{"path":[4,92,2,3,5],"span":[1649,11,17]},{"path":[4,92,2,3,1],"span":[1649,18,30]},{"path":[4,92,2,3,3],"span":[1649,33,34]},{"path":[4,92,2,4],"span":[1650,2,43]},{"path":[4,92,2,4,4],"span":[1650,2,10]},{"path":[4,92,2,4,5],"span":[1650,11,17]},{"path":[4,92,2,4,1],"span":[1650,18,38]},{"path":[4,92,2,4,3],"span":[1650,41,42]},{"path":[4,92,2,5],"span":[1651,2,48]},{"path":[4,92,2,5,4],"span":[1651,2,10]},{"path":[4,92,2,5,5],"span":[1651,11,17]},{"path":[4,92,2,5,1],"span":[1651,18,43]},{"path":[4,92,2,5,3],"span":[1651,46,47]},{"path":[4,92,2,6],"span":[1658,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,92,2,6,4],"span":[1658,2,10]},{"path":[4,92,2,6,5],"span":[1658,11,17]},{"path":[4,92,2,6,1],"span":[1658,18,33]},{"path":[4,92,2,6,3],"span":[1658,36,37]},{"path":[4,92,2,7],"span":[1660,2,50]},{"path":[4,92,2,7,4],"span":[1660,2,10]},{"path":[4,92,2,7,5],"span":[1660,11,17]},{"path":[4,92,2,7,1],"span":[1660,18,45]},{"path":[4,92,2,7,3],"span":[1660,48,49]},{"path":[4,92,2,8],"span":[1661,2,42]},{"path":[4,92,2,8,4],"span":[1661,2,10]},{"path":[4,92,2,8,5],"span":[1661,11,17]},{"path":[4,92,2,8,1],"span":[1661,18,37]},{"path":[4,92,2,8,3],"span":[1661,40,41]},{"path":[4,92,2,9],"span":[1662,2,54]},{"path":[4,92,2,9,4],"span":[1662,2,10]},{"path":[4,92,2,9,5],"span":[1662,11,17]},{"path":[4,92,2,9,1],"span":[1662,18,48]},{"path":[4,92,2,9,3],"span":[1662,51,53]},{"path":[4,93],"span":[1669,0,1674,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,93,1],"span":[1669,8,38]},{"path":[4,93,2,0],"span":[1670,2,30]},{"path":[4,93,2,0,4],"span":[1670,2,10]},{"path":[4,93,2,0,5],"span":[1670,11,17]},{"path":[4,93,2,0,1],"span":[1670,18,25]},{"path":[4,93,2,0,3],"span":[1670,28,29]},{"path":[4,93,2,1],"span":[1671,2,32]},{"path":[4,93,2,1,4],"span":[1671,2,10]},{"path":[4,93,2,1,5],"span":[1671,11,17]},{"path":[4,93,2,1,1],"span":[1671,18,27]},{"path":[4,93,2,1,3],"span":[1671,30,31]},{"path":[4,93,2,2],"span":[1672,2,35]},{"path":[4,93,2,2,4],"span":[1672,2,10]},{"path":[4,93,2,2,5],"span":[1672,11,17]},{"path":[4,93,2,2,1],"span":[1672,18,30]},{"path":[4,93,2,2,3],"span":[1672,33,34]},{"path":[4,93,2,3],"span":[1673,2,46]},{"path":[4,93,2,3,4],"span":[1673,2,10]},{"path":[4,93,2,3,6],"span":[1673,11,22]},{"path":[4,93,2,3,1],"span":[1673,23,41]},{"path":[4,93,2,3,3],"span":[1673,44,45]},{"path":[4,94],"span":[1679,0,1683,1],"leadingComments":"\n Windows only atm.\n"},{"path":[4,94,1],"span":[1679,8,38]},{"path":[4,94,2,0],"span":[1680,2,24]},{"path":[4,94,2,0,5],"span":[1680,2,8]},{"path":[4,94,2,0,1],"span":[1680,9,19]},{"path":[4,94,2,0,3],"span":[1680,22,23]},{"path":[4,94,2,1],"span":[1681,2,26]},{"path":[4,94,2,1,5],"span":[1681,2,8]},{"path":[4,94,2,1,1],"span":[1681,9,21]},{"path":[4,94,2,1,3],"span":[1681,24,25]},{"path":[4,94,2,2],"span":[1682,2,26]},{"path":[4,94,2,2,5],"span":[1682,2,8]},{"path":[4,94,2,2,1],"span":[1682,9,21]},{"path":[4,94,2,2,3],"span":[1682,24,25]},{"path":[4,95],"span":[1688,0,1704,1],"leadingComments":"\n Modem on computers: windows and mac.\n"},{"path":[4,95,1],"span":[1688,8,30]},{"path":[4,95,2,0],"span":[1689,2,34]},{"path":[4,95,2,0,4],"span":[1689,2,10]},{"path":[4,95,2,0,5],"span":[1689,11,17]},{"path":[4,95,2,0,1],"span":[1689,18,29]},{"path":[4,95,2,0,3],"span":[1689,32,33]},{"path":[4,95,2,1],"span":[1690,2,30],"trailingComments":" mac: name\n"},{"path":[4,95,2,1,4],"span":[1690,2,10]},{"path":[4,95,2,1,5],"span":[1690,11,17]},{"path":[4,95,2,1,1],"span":[1690,18,25]},{"path":[4,95,2,1,3],"span":[1690,28,29]},{"path":[4,95,2,2],"span":[1691,2,35],"trailingComments":" windows: country_selected, mac: country_info \n"},{"path":[4,95,2,2,4],"span":[1691,2,10]},{"path":[4,95,2,2,5],"span":[1691,11,17]},{"path":[4,95,2,2,1],"span":[1691,18,30]},{"path":[4,95,2,2,3],"span":[1691,33,34]},{"path":[4,95,2,3],"span":[1692,2,32]},{"path":[4,95,2,3,4],"span":[1692,2,10]},{"path":[4,95,2,3,5],"span":[1692,11,17]},{"path":[4,95,2,3,1],"span":[1692,18,27]},{"path":[4,95,2,3,3],"span":[1692,30,31]},{"path":[4,95,2,4],"span":[1693,2,34],"trailingComments":" mac: interface_type\n"},{"path":[4,95,2,4,4],"span":[1693,2,10]},{"path":[4,95,2,4,5],"span":[1693,11,17]},{"path":[4,95,2,4,1],"span":[1693,18,29]},{"path":[4,95,2,4,3],"span":[1693,32,33]},{"path":[4,95,2,5],"span":[1694,2,44]},{"path":[4,95,2,5,4],"span":[1694,2,10]},{"path":[4,95,2,5,5],"span":[1694,11,16]},{"path":[4,95,2,5,1],"span":[1694,17,39]},{"path":[4,95,2,5,3],"span":[1694,42,43]},{"path":[4,95,2,6],"span":[1695,2,50]},{"path":[4,95,2,6,4],"span":[1695,2,10]},{"path":[4,95,2,6,5],"span":[1695,11,16]},{"path":[4,95,2,6,1],"span":[1695,17,45]},{"path":[4,95,2,6,3],"span":[1695,48,49]},{"path":[4,95,2,7],"span":[1696,2,37]},{"path":[4,95,2,7,4],"span":[1696,2,10]},{"path":[4,95,2,7,5],"span":[1696,11,17]},{"path":[4,95,2,7,1],"span":[1696,18,32]},{"path":[4,95,2,7,3],"span":[1696,35,36]},{"path":[4,95,2,8],"span":[1697,2,40]},{"path":[4,95,2,8,4],"span":[1697,2,10]},{"path":[4,95,2,8,5],"span":[1697,11,17]},{"path":[4,95,2,8,1],"span":[1697,18,35]},{"path":[4,95,2,8,3],"span":[1697,38,39]},{"path":[4,95,2,9],"span":[1698,2,37]},{"path":[4,95,2,9,4],"span":[1698,2,10]},{"path":[4,95,2,9,5],"span":[1698,11,17]},{"path":[4,95,2,9,1],"span":[1698,18,31]},{"path":[4,95,2,9,3],"span":[1698,34,36]},{"path":[4,95,2,10],"span":[1700,2,34],"trailingComments":" mac only\n"},{"path":[4,95,2,10,4],"span":[1700,2,10]},{"path":[4,95,2,10,5],"span":[1700,11,17]},{"path":[4,95,2,10,1],"span":[1700,18,28]},{"path":[4,95,2,10,3],"span":[1700,31,33]},{"path":[4,95,2,11],"span":[1701,2,38],"trailingComments":" mac only\n"},{"path":[4,95,2,11,4],"span":[1701,2,10]},{"path":[4,95,2,11,5],"span":[1701,11,17]},{"path":[4,95,2,11,1],"span":[1701,18,32]},{"path":[4,95,2,11,3],"span":[1701,35,37]},{"path":[4,95,2,12],"span":[1702,2,29],"trailingComments":" mac only\n"},{"path":[4,95,2,12,4],"span":[1702,2,10]},{"path":[4,95,2,12,5],"span":[1702,11,17]},{"path":[4,95,2,12,1],"span":[1702,18,23]},{"path":[4,95,2,12,3],"span":[1702,26,28]},{"path":[4,95,2,13],"span":[1703,2,34],"trailingComments":" mac only\n"},{"path":[4,95,2,13,4],"span":[1703,2,10]},{"path":[4,95,2,13,5],"span":[1703,11,17]},{"path":[4,95,2,13,1],"span":[1703,18,28]},{"path":[4,95,2,13,3],"span":[1703,31,33]},{"path":[4,96],"span":[1709,0,1727,1],"leadingComments":"\n Windows computer: a Printer connected to the computer.\n"},{"path":[4,96,1],"span":[1709,8,32]},{"path":[4,96,2,0],"span":[1710,2,46]},{"path":[4,96,2,0,4],"span":[1710,2,10]},{"path":[4,96,2,0,5],"span":[1710,11,17]},{"path":[4,96,2,0,1],"span":[1710,18,41]},{"path":[4,96,2,0,3],"span":[1710,44,45]},{"path":[4,96,2,1],"span":[1711,2,30]},{"path":[4,96,2,1,4],"span":[1711,2,10]},{"path":[4,96,2,1,5],"span":[1711,11,17]},{"path":[4,96,2,1,1],"span":[1711,18,25]},{"path":[4,96,2,1,3],"span":[1711,28,29]},{"path":[4,96,2,2],"span":[1712,2,32]},{"path":[4,96,2,2,4],"span":[1712,2,10]},{"path":[4,96,2,2,5],"span":[1712,11,17]},{"path":[4,96,2,2,1],"span":[1712,18,27]},{"path":[4,96,2,2,3],"span":[1712,30,31]},{"path":[4,96,2,3],"span":[1713,2,31]},{"path":[4,96,2,3,4],"span":[1713,2,10]},{"path":[4,96,2,3,5],"span":[1713,11,17]},{"path":[4,96,2,3,1],"span":[1713,18,26]},{"path":[4,96,2,3,3],"span":[1713,29,30]},{"path":[4,96,2,4],"span":[1714,2,32]},{"path":[4,96,2,4,4],"span":[1714,2,10]},{"path":[4,96,2,4,5],"span":[1714,11,17]},{"path":[4,96,2,4,1],"span":[1714,18,27]},{"path":[4,96,2,4,3],"span":[1714,30,31]},{"path":[4,96,2,5],"span":[1715,2,42]},{"path":[4,96,2,5,4],"span":[1715,2,10]},{"path":[4,96,2,5,5],"span":[1715,11,17]},{"path":[4,96,2,5,1],"span":[1715,18,37]},{"path":[4,96,2,5,3],"span":[1715,40,41]},{"path":[4,96,2,6],"span":[1716,2,38]},{"path":[4,96,2,6,4],"span":[1716,2,10]},{"path":[4,96,2,6,5],"span":[1716,11,17]},{"path":[4,96,2,6,1],"span":[1716,18,33]},{"path":[4,96,2,6,3],"span":[1716,36,37]},{"path":[4,96,2,7],"span":[1717,2,34]},{"path":[4,96,2,7,4],"span":[1717,2,10]},{"path":[4,96,2,7,5],"span":[1717,11,17]},{"path":[4,96,2,7,1],"span":[1717,18,28]},{"path":[4,96,2,7,3],"span":[1717,31,33]},{"path":[4,96,2,8],"span":[1718,2,30]},{"path":[4,96,2,8,4],"span":[1718,2,10]},{"path":[4,96,2,8,5],"span":[1718,11,17]},{"path":[4,96,2,8,1],"span":[1718,18,24]},{"path":[4,96,2,8,3],"span":[1718,27,29]},{"path":[4,96,2,9],"span":[1719,2,31]},{"path":[4,96,2,9,4],"span":[1719,2,10]},{"path":[4,96,2,9,5],"span":[1719,11,17]},{"path":[4,96,2,9,1],"span":[1719,18,25]},{"path":[4,96,2,9,3],"span":[1719,28,30]},{"path":[4,96,2,10],"span":[1721,2,43]},{"path":[4,96,2,10,4],"span":[1721,2,10]},{"path":[4,96,2,10,5],"span":[1721,11,16]},{"path":[4,96,2,10,1],"span":[1721,17,38]},{"path":[4,96,2,10,3],"span":[1721,41,42]},{"path":[4,96,2,11],"span":[1722,2,42]},{"path":[4,96,2,11,4],"span":[1722,2,10]},{"path":[4,96,2,11,5],"span":[1722,11,16]},{"path":[4,96,2,11,1],"span":[1722,17,36]},{"path":[4,96,2,11,3],"span":[1722,39,41]},{"path":[4,96,2,12],"span":[1724,2,33]},{"path":[4,96,2,12,4],"span":[1724,2,10]},{"path":[4,96,2,12,5],"span":[1724,11,15]},{"path":[4,96,2,12,1],"span":[1724,16,27]},{"path":[4,96,2,12,3],"span":[1724,30,32]},{"path":[4,96,2,13],"span":[1725,2,27]},{"path":[4,96,2,13,4],"span":[1725,2,10]},{"path":[4,96,2,13,5],"span":[1725,11,15]},{"path":[4,96,2,13,1],"span":[1725,16,21]},{"path":[4,96,2,13,3],"span":[1725,24,26]},{"path":[4,96,2,14],"span":[1726,2,29]},{"path":[4,96,2,14,4],"span":[1726,2,10]},{"path":[4,96,2,14,5],"span":[1726,11,15]},{"path":[4,96,2,14,1],"span":[1726,16,23]},{"path":[4,96,2,14,3],"span":[1726,26,28]},{"path":[4,97],"span":[1732,0,1748,1],"leadingComments":"\n Windows computer: a Tape connected to the computer.\n"},{"path":[4,97,1],"span":[1732,8,34]},{"path":[4,97,2,0],"span":[1733,2,40]},{"path":[4,97,2,0,4],"span":[1733,2,10]},{"path":[4,97,2,0,6],"span":[1733,11,22]},{"path":[4,97,2,0,1],"span":[1733,23,35]},{"path":[4,97,2,0,3],"span":[1733,38,39]},{"path":[4,97,2,1],"span":[1734,2,40]},{"path":[4,97,2,1,4],"span":[1734,2,10]},{"path":[4,97,2,1,6],"span":[1734,11,22]},{"path":[4,97,2,1,1],"span":[1734,23,35]},{"path":[4,97,2,1,3],"span":[1734,38,39]},{"path":[4,97,2,2],"span":[1735,2,30]},{"path":[4,97,2,2,4],"span":[1735,2,10]},{"path":[4,97,2,2,5],"span":[1735,11,17]},{"path":[4,97,2,2,1],"span":[1735,18,25]},{"path":[4,97,2,2,3],"span":[1735,28,29]},{"path":[4,97,2,3],"span":[1736,2,32]},{"path":[4,97,2,3,4],"span":[1736,2,10]},{"path":[4,97,2,3,5],"span":[1736,11,15]},{"path":[4,97,2,3,1],"span":[1736,16,27]},{"path":[4,97,2,3,3],"span":[1736,30,31]},{"path":[4,97,2,4],"span":[1737,2,40]},{"path":[4,97,2,4,4],"span":[1737,2,10]},{"path":[4,97,2,4,5],"span":[1737,11,16]},{"path":[4,97,2,4,1],"span":[1737,17,35]},{"path":[4,97,2,4,3],"span":[1737,38,39]},{"path":[4,97,2,5],"span":[1738,2,32]},{"path":[4,97,2,5,4],"span":[1738,2,10]},{"path":[4,97,2,5,5],"span":[1738,11,17]},{"path":[4,97,2,5,1],"span":[1738,18,27]},{"path":[4,97,2,5,3],"span":[1738,30,31]},{"path":[4,97,2,6],"span":[1739,2,35]},{"path":[4,97,2,6,4],"span":[1739,2,10]},{"path":[4,97,2,6,5],"span":[1739,11,17]},{"path":[4,97,2,6,1],"span":[1739,18,30]},{"path":[4,97,2,6,3],"span":[1739,33,34]},{"path":[4,97,2,7],"span":[1740,2,36]},{"path":[4,97,2,7,4],"span":[1740,2,10]},{"path":[4,97,2,7,5],"span":[1740,11,16]},{"path":[4,97,2,7,1],"span":[1740,17,31]},{"path":[4,97,2,7,3],"span":[1740,34,35]},{"path":[4,97,2,8],"span":[1741,2,36]},{"path":[4,97,2,8,4],"span":[1741,2,10]},{"path":[4,97,2,8,5],"span":[1741,11,16]},{"path":[4,97,2,8,1],"span":[1741,17,31]},{"path":[4,97,2,8,3],"span":[1741,34,35]},{"path":[4,97,2,9],"span":[1742,2,42]},{"path":[4,97,2,9,4],"span":[1742,2,10]},{"path":[4,97,2,9,5],"span":[1742,11,16]},{"path":[4,97,2,9,1],"span":[1742,17,36]},{"path":[4,97,2,9,3],"span":[1742,39,41]},{"path":[4,97,2,10],"span":[1743,2,34]},{"path":[4,97,2,10,4],"span":[1743,2,10]},{"path":[4,97,2,10,5],"span":[1743,11,17]},{"path":[4,97,2,10,1],"span":[1743,18,28]},{"path":[4,97,2,10,3],"span":[1743,31,33]},{"path":[4,97,2,11],"span":[1744,2,37]},{"path":[4,97,2,11,4],"span":[1744,2,10]},{"path":[4,97,2,11,5],"span":[1744,11,16]},{"path":[4,97,2,11,1],"span":[1744,17,31]},{"path":[4,97,2,11,3],"span":[1744,34,36]},{"path":[4,97,2,12],"span":[1745,2,36]},{"path":[4,97,2,12,4],"span":[1745,2,10]},{"path":[4,97,2,12,5],"span":[1745,11,15]},{"path":[4,97,2,12,1],"span":[1745,16,30]},{"path":[4,97,2,12,3],"span":[1745,33,35]},{"path":[4,97,2,13],"span":[1746,2,48]},{"path":[4,97,2,13,4],"span":[1746,2,10]},{"path":[4,97,2,13,5],"span":[1746,11,16]},{"path":[4,97,2,13,1],"span":[1746,17,42]},{"path":[4,97,2,13,3],"span":[1746,45,47]},{"path":[4,97,2,14],"span":[1747,2,30]},{"path":[4,97,2,14,4],"span":[1747,2,10]},{"path":[4,97,2,14,5],"span":[1747,11,16]},{"path":[4,97,2,14,1],"span":[1747,17,24]},{"path":[4,97,2,14,3],"span":[1747,27,29]},{"path":[4,98],"span":[1753,0,1757,1],"leadingComments":"\n Computer, Windows only Serial info. Mapped from\n"},{"path":[4,98,1],"span":[1753,8,29]},{"path":[4,98,2,0],"span":[1754,2,35]},{"path":[4,98,2,0,4],"span":[1754,2,10]},{"path":[4,98,2,0,5],"span":[1754,11,17]},{"path":[4,98,2,0,1],"span":[1754,18,30]},{"path":[4,98,2,0,3],"span":[1754,33,34]},{"path":[4,98,2,1],"span":[1755,2,33]},{"path":[4,98,2,1,4],"span":[1755,2,10]},{"path":[4,98,2,1,5],"span":[1755,11,17]},{"path":[4,98,2,1,1],"span":[1755,18,28]},{"path":[4,98,2,1,3],"span":[1755,31,32]},{"path":[4,98,2,2],"span":[1756,2,37]},{"path":[4,98,2,2,4],"span":[1756,2,10]},{"path":[4,98,2,2,5],"span":[1756,11,17]},{"path":[4,98,2,2,1],"span":[1756,18,32]},{"path":[4,98,2,2,3],"span":[1756,35,36]},{"path":[4,99],"span":[1763,0,1796,1],"leadingComments":"\n Computer, Windows only Certificate.\n"},{"path":[4,99,1],"span":[1763,8,34]},{"path":[4,99,4,0],"span":[1765,2,1775,3]},{"path":[4,99,4,0,1],"span":[1765,7,19]},{"path":[4,99,4,0,2,0],"span":[1766,4,26]},{"path":[4,99,4,0,2,0,1],"span":[1766,4,21]},{"path":[4,99,4,0,2,0,2],"span":[1766,24,25]},{"path":[4,99,4,0,2,1],"span":[1767,4,24]},{"path":[4,99,4,0,2,1,1],"span":[1767,4,19]},{"path":[4,99,4,0,2,1,2],"span":[1767,22,23]},{"path":[4,99,4,0,2,2],"span":[1768,4,25]},{"path":[4,99,4,0,2,2,1],"span":[1768,4,20]},{"path":[4,99,4,0,2,2,2],"span":[1768,23,24]},{"path":[4,99,4,0,2,3],"span":[1769,4,26]},{"path":[4,99,4,0,2,3,1],"span":[1769,4,21]},{"path":[4,99,4,0,2,3,2],"span":[1769,24,25]},{"path":[4,99,4,0,2,4],"span":[1770,4,22]},{"path":[4,99,4,0,2,4,1],"span":[1770,4,17]},{"path":[4,99,4,0,2,4,2],"span":[1770,20,21]},{"path":[4,99,4,0,2,5],"span":[1771,4,22]},{"path":[4,99,4,0,2,5,1],"span":[1771,4,17]},{"path":[4,99,4,0,2,5,2],"span":[1771,20,21]},{"path":[4,99,4,0,2,6],"span":[1772,4,17]},{"path":[4,99,4,0,2,6,1],"span":[1772,4,12]},{"path":[4,99,4,0,2,6,2],"span":[1772,15,16]},{"path":[4,99,4,0,2,7],"span":[1773,4,22]},{"path":[4,99,4,0,2,7,1],"span":[1773,4,17]},{"path":[4,99,4,0,2,7,2],"span":[1773,20,21]},{"path":[4,99,4,0,2,8],"span":[1774,4,22]},{"path":[4,99,4,0,2,8,1],"span":[1774,4,17]},{"path":[4,99,4,0,2,8,2],"span":[1774,20,21]},{"path":[4,99,2,0],"span":[1777,2,69]},{"path":[4,99,2,0,4],"span":[1777,2,10]},{"path":[4,99,2,0,6],"span":[1777,11,45]},{"path":[4,99,2,0,1],"span":[1777,46,64]},{"path":[4,99,2,0,3],"span":[1777,67,68]},{"path":[4,99,2,1],"span":[1778,2,38]},{"path":[4,99,2,1,4],"span":[1778,2,10]},{"path":[4,99,2,1,6],"span":[1778,11,23]},{"path":[4,99,2,1,1],"span":[1778,24,33]},{"path":[4,99,2,1,3],"span":[1778,36,37]},{"path":[4,99,2,2],"span":[1779,2,22]},{"path":[4,99,2,2,5],"span":[1779,2,8]},{"path":[4,99,2,2,1],"span":[1779,9,17]},{"path":[4,99,2,2,3],"span":[1779,20,21]},{"path":[4,99,2,3],"span":[1780,2,27]},{"path":[4,99,2,3,5],"span":[1780,2,8]},{"path":[4,99,2,3,1],"span":[1780,9,22]},{"path":[4,99,2,3,3],"span":[1780,25,26]},{"path":[4,99,2,4],"span":[1781,2,42]},{"path":[4,99,2,4,4],"span":[1781,2,10]},{"path":[4,99,2,4,5],"span":[1781,11,17]},{"path":[4,99,2,4,1],"span":[1781,18,37]},{"path":[4,99,2,4,3],"span":[1781,40,41]},{"path":[4,99,2,5],"span":[1782,2,20]},{"path":[4,99,2,5,5],"span":[1782,2,7]},{"path":[4,99,2,5,1],"span":[1782,8,15]},{"path":[4,99,2,5,3],"span":[1782,18,19]},{"path":[4,99,2,6],"span":[1783,2,27]},{"path":[4,99,2,6,5],"span":[1783,2,6]},{"path":[4,99,2,6,1],"span":[1783,7,22]},{"path":[4,99,2,6,3],"span":[1783,25,26]},{"path":[4,99,2,7],"span":[1784,2,23]},{"path":[4,99,2,7,5],"span":[1784,2,6]},{"path":[4,99,2,7,1],"span":[1784,7,18]},{"path":[4,99,2,7,3],"span":[1784,21,22]},{"path":[4,99,2,8],"span":[1785,2,48]},{"path":[4,99,2,8,6],"span":[1785,2,27]},{"path":[4,99,2,8,1],"span":[1785,28,43]},{"path":[4,99,2,8,3],"span":[1785,46,47]},{"path":[4,99,2,9],"span":[1786,2,44]},{"path":[4,99,2,9,6],"span":[1786,2,27]},{"path":[4,99,2,9,1],"span":[1786,28,38]},{"path":[4,99,2,9,3],"span":[1786,41,43]},{"path":[4,99,2,10],"span":[1787,2,26]},{"path":[4,99,2,10,5],"span":[1787,2,8]},{"path":[4,99,2,10,1],"span":[1787,9,20]},{"path":[4,99,2,10,3],"span":[1787,23,25]},{"path":[4,99,2,11],"span":[1788,2,21]},{"path":[4,99,2,11,5],"span":[1788,2,8]},{"path":[4,99,2,11,1],"span":[1788,9,15]},{"path":[4,99,2,11,3],"span":[1788,18,20]},{"path":[4,99,2,12],"span":[1789,2,39]},{"path":[4,99,2,12,5],"span":[1789,2,8]},{"path":[4,99,2,12,1],"span":[1789,9,33]},{"path":[4,99,2,12,3],"span":[1789,36,38]},{"path":[4,99,2,13],"span":[1790,2,27]},{"path":[4,99,2,13,5],"span":[1790,2,8]},{"path":[4,99,2,13,1],"span":[1790,9,21]},{"path":[4,99,2,13,3],"span":[1790,24,26]},{"path":[4,99,2,14],"span":[1791,2,22]},{"path":[4,99,2,14,5],"span":[1791,2,8]},{"path":[4,99,2,14,1],"span":[1791,9,16]},{"path":[4,99,2,14,3],"span":[1791,19,21]},{"path":[4,99,2,15],"span":[1792,2,21]},{"path":[4,99,2,15,5],"span":[1792,2,8]},{"path":[4,99,2,15,1],"span":[1792,9,15]},{"path":[4,99,2,15,3],"span":[1792,18,20]},{"path":[4,99,2,16],"span":[1793,2,25]},{"path":[4,99,2,16,5],"span":[1793,2,8]},{"path":[4,99,2,16,1],"span":[1793,9,19]},{"path":[4,99,2,16,3],"span":[1793,22,24]},{"path":[4,99,2,17],"span":[1794,2,28]},{"path":[4,99,2,17,5],"span":[1794,2,8]},{"path":[4,99,2,17,1],"span":[1794,9,22]},{"path":[4,99,2,17,3],"span":[1794,25,27]},{"path":[4,99,2,18],"span":[1795,2,52]},{"path":[4,99,2,18,4],"span":[1795,2,10]},{"path":[4,99,2,18,6],"span":[1795,11,37]},{"path":[4,99,2,18,1],"span":[1795,38,46]},{"path":[4,99,2,18,3],"span":[1795,49,51]},{"path":[4,100],"span":[1798,0,1801,1]},{"path":[4,100,1],"span":[1798,8,42]},{"path":[4,100,2,0],"span":[1799,2,31]},{"path":[4,100,2,0,4],"span":[1799,2,10]},{"path":[4,100,2,0,5],"span":[1799,11,17]},{"path":[4,100,2,0,1],"span":[1799,18,26]},{"path":[4,100,2,0,3],"span":[1799,29,30]},{"path":[4,100,2,1],"span":[1800,2,32]},{"path":[4,100,2,1,4],"span":[1800,2,10]},{"path":[4,100,2,1,5],"span":[1800,11,17]},{"path":[4,100,2,1,1],"span":[1800,18,27]},{"path":[4,100,2,1,3],"span":[1800,30,31]},{"path":[4,101],"span":[1803,0,1806,1]},{"path":[4,101,1],"span":[1803,8,34]},{"path":[4,101,2,0],"span":[1804,2,19]},{"path":[4,101,2,0,5],"span":[1804,2,8]},{"path":[4,101,2,0,1],"span":[1804,9,14]},{"path":[4,101,2,0,3],"span":[1804,17,18]},{"path":[4,101,2,1],"span":[1805,2,20]},{"path":[4,101,2,1,5],"span":[1805,2,8]},{"path":[4,101,2,1,1],"span":[1805,9,15]},{"path":[4,101,2,1,3],"span":[1805,18,19]},{"path":[4,102],"span":[1813,0,1818,1],"leadingComments":"\n Computer Windows only: page files.\n"},{"path":[4,102,1],"span":[1813,8,31]},{"path":[4,102,8,0],"span":[1814,2,1817,3]},{"path":[4,102,8,0,1],"span":[1814,8,17]},{"path":[4,102,2,0],"span":[1815,4,37]},{"path":[4,102,2,0,6],"span":[1815,4,25]},{"path":[4,102,2,0,1],"span":[1815,26,32]},{"path":[4,102,2,0,3],"span":[1815,35,36]},{"path":[4,102,2,1],"span":[1816,4,45]},{"path":[4,102,2,1,6],"span":[1816,4,31]},{"path":[4,102,2,1,1],"span":[1816,32,40]},{"path":[4,102,2,1,3],"span":[1816,43,44]},{"path":[4,103],"span":[1820,0,1836,1]},{"path":[4,103,1],"span":[1820,8,29]},{"path":[4,103,2,0],"span":[1821,2,28]},{"path":[4,103,2,0,4],"span":[1821,2,10]},{"path":[4,103,2,0,5],"span":[1821,11,15]},{"path":[4,103,2,0,1],"span":[1821,16,23]},{"path":[4,103,2,0,3],"span":[1821,26,27]},{"path":[4,103,2,1],"span":[1822,2,30]},{"path":[4,103,2,1,4],"span":[1822,2,10]},{"path":[4,103,2,1,5],"span":[1822,11,17]},{"path":[4,103,2,1,1],"span":[1822,18,25]},{"path":[4,103,2,1,3],"span":[1822,28,29]},{"path":[4,103,2,2],"span":[1823,2,55]},{"path":[4,103,2,2,4],"span":[1823,2,10]},{"path":[4,103,2,2,6],"span":[1823,11,36]},{"path":[4,103,2,2,1],"span":[1823,37,50]},{"path":[4,103,2,2,3],"span":[1823,53,54]},{"path":[4,103,2,3],"span":[1824,2,32]},{"path":[4,103,2,3,4],"span":[1824,2,10]},{"path":[4,103,2,3,5],"span":[1824,11,17]},{"path":[4,103,2,3,1],"span":[1824,18,27]},{"path":[4,103,2,3,3],"span":[1824,30,31]},{"path":[4,103,2,4],"span":[1825,2,27]},{"path":[4,103,2,4,4],"span":[1825,2,10]},{"path":[4,103,2,4,5],"span":[1825,11,15]},{"path":[4,103,2,4,1],"span":[1825,16,22]},{"path":[4,103,2,4,3],"span":[1825,25,26]},{"path":[4,103,2,5],"span":[1826,2,35]},{"path":[4,103,2,5,4],"span":[1826,2,10]},{"path":[4,103,2,5,5],"span":[1826,11,17]},{"path":[4,103,2,5,1],"span":[1826,18,30]},{"path":[4,103,2,5,3],"span":[1826,33,34]},{"path":[4,103,2,6],"span":[1827,2,54]},{"path":[4,103,2,6,4],"span":[1827,2,10]},{"path":[4,103,2,6,6],"span":[1827,11,36]},{"path":[4,103,2,6,1],"span":[1827,37,49]},{"path":[4,103,2,6,3],"span":[1827,52,53]},{"path":[4,103,2,7],"span":[1828,2,55]},{"path":[4,103,2,7,4],"span":[1828,2,10]},{"path":[4,103,2,7,6],"span":[1828,11,36]},{"path":[4,103,2,7,1],"span":[1828,37,50]},{"path":[4,103,2,7,3],"span":[1828,53,54]},{"path":[4,103,2,8],"span":[1829,2,55]},{"path":[4,103,2,8,4],"span":[1829,2,10]},{"path":[4,103,2,8,6],"span":[1829,11,36]},{"path":[4,103,2,8,1],"span":[1829,37,50]},{"path":[4,103,2,8,3],"span":[1829,53,54]},{"path":[4,103,2,9],"span":[1830,2,36]},{"path":[4,103,2,9,4],"span":[1830,2,10]},{"path":[4,103,2,9,5],"span":[1830,11,17]},{"path":[4,103,2,9,1],"span":[1830,18,30]},{"path":[4,103,2,9,3],"span":[1830,33,35]},{"path":[4,103,2,10],"span":[1831,2,28]},{"path":[4,103,2,10,4],"span":[1831,2,10]},{"path":[4,103,2,10,5],"span":[1831,11,17]},{"path":[4,103,2,10,1],"span":[1831,18,22]},{"path":[4,103,2,10,3],"span":[1831,25,27]},{"path":[4,103,2,11],"span":[1832,2,28]},{"path":[4,103,2,11,4],"span":[1832,2,10]},{"path":[4,103,2,11,5],"span":[1832,11,17]},{"path":[4,103,2,11,1],"span":[1832,18,22]},{"path":[4,103,2,11,3],"span":[1832,25,27]},{"path":[4,103,2,12],"span":[1833,2,30]},{"path":[4,103,2,12,4],"span":[1833,2,10]},{"path":[4,103,2,12,5],"span":[1833,11,15]},{"path":[4,103,2,12,1],"span":[1833,16,24]},{"path":[4,103,2,12,3],"span":[1833,27,29]},{"path":[4,103,2,13],"span":[1834,2,28]},{"path":[4,103,2,13,4],"span":[1834,2,10]},{"path":[4,103,2,13,5],"span":[1834,11,15]},{"path":[4,103,2,13,1],"span":[1834,16,22]},{"path":[4,103,2,13,3],"span":[1834,25,27]},{"path":[4,103,2,14],"span":[1835,2,31]},{"path":[4,103,2,14,4],"span":[1835,2,10]},{"path":[4,103,2,14,5],"span":[1835,11,15]},{"path":[4,103,2,14,1],"span":[1835,16,25]},{"path":[4,103,2,14,3],"span":[1835,28,30]},{"path":[4,104],"span":[1838,0,1841,1]},{"path":[4,104,1],"span":[1838,8,35]},{"path":[4,104,2,0],"span":[1839,2,53]},{"path":[4,104,2,0,4],"span":[1839,2,10]},{"path":[4,104,2,0,6],"span":[1839,11,31]},{"path":[4,104,2,0,1],"span":[1839,32,48]},{"path":[4,104,2,0,3],"span":[1839,51,52]},{"path":[4,104,2,1],"span":[1840,2,57]},{"path":[4,104,2,1,4],"span":[1840,2,10]},{"path":[4,104,2,1,6],"span":[1840,11,33]},{"path":[4,104,2,1,1],"span":[1840,34,52]},{"path":[4,104,2,1,3],"span":[1840,55,56]},{"path":[4,105],"span":[1843,0,1850,1]},{"path":[4,105,1],"span":[1843,8,30]},{"path":[4,105,2,0],"span":[1844,2,30]},{"path":[4,105,2,0,4],"span":[1844,2,10]},{"path":[4,105,2,0,5],"span":[1844,11,17]},{"path":[4,105,2,0,1],"span":[1844,18,25]},{"path":[4,105,2,0,3],"span":[1844,28,29]},{"path":[4,105,2,1],"span":[1845,2,34]},{"path":[4,105,2,1,4],"span":[1845,2,10]},{"path":[4,105,2,1,5],"span":[1845,11,17]},{"path":[4,105,2,1,1],"span":[1845,18,29]},{"path":[4,105,2,1,3],"span":[1845,32,33]},{"path":[4,105,2,2],"span":[1846,2,35]},{"path":[4,105,2,2,4],"span":[1846,2,10]},{"path":[4,105,2,2,5],"span":[1846,11,17]},{"path":[4,105,2,2,1],"span":[1846,18,30]},{"path":[4,105,2,2,3],"span":[1846,33,34]},{"path":[4,105,2,3],"span":[1847,2,35]},{"path":[4,105,2,3,4],"span":[1847,2,10]},{"path":[4,105,2,3,5],"span":[1847,11,17]},{"path":[4,105,2,3,1],"span":[1847,18,30]},{"path":[4,105,2,3,3],"span":[1847,33,34]},{"path":[4,105,2,4],"span":[1848,2,27]},{"path":[4,105,2,4,4],"span":[1848,2,10]},{"path":[4,105,2,4,5],"span":[1848,11,17]},{"path":[4,105,2,4,1],"span":[1848,18,22]},{"path":[4,105,2,4,3],"span":[1848,25,26]},{"path":[4,105,2,5],"span":[1849,2,33]},{"path":[4,105,2,5,4],"span":[1849,2,10]},{"path":[4,105,2,5,5],"span":[1849,11,17]},{"path":[4,105,2,5,1],"span":[1849,18,28]},{"path":[4,105,2,5,3],"span":[1849,31,32]},{"path":[4,106],"span":[1852,0,1862,1]},{"path":[4,106,1],"span":[1852,8,28]},{"path":[4,106,2,0],"span":[1853,2,42]},{"path":[4,106,2,0,4],"span":[1853,2,10]},{"path":[4,106,2,0,5],"span":[1853,11,17]},{"path":[4,106,2,0,1],"span":[1853,18,37]},{"path":[4,106,2,0,3],"span":[1853,40,41]},{"path":[4,106,2,1],"span":[1854,2,30]},{"path":[4,106,2,1,4],"span":[1854,2,10]},{"path":[4,106,2,1,5],"span":[1854,11,17]},{"path":[4,106,2,1,1],"span":[1854,18,25]},{"path":[4,106,2,1,3],"span":[1854,28,29]},{"path":[4,106,2,2],"span":[1855,2,36]},{"path":[4,106,2,2,4],"span":[1855,2,10]},{"path":[4,106,2,2,5],"span":[1855,11,17]},{"path":[4,106,2,2,1],"span":[1855,18,31]},{"path":[4,106,2,2,3],"span":[1855,34,35]},{"path":[4,106,2,3],"span":[1856,2,35]},{"path":[4,106,2,3,4],"span":[1856,2,10]},{"path":[4,106,2,3,5],"span":[1856,11,17]},{"path":[4,106,2,3,1],"span":[1856,18,29]},{"path":[4,106,2,3,3],"span":[1856,33,34]},{"path":[4,106,2,4],"span":[1857,2,54]},{"path":[4,106,2,4,4],"span":[1857,2,10]},{"path":[4,106,2,4,6],"span":[1857,11,36]},{"path":[4,106,2,4,1],"span":[1857,37,49]},{"path":[4,106,2,4,3],"span":[1857,52,53]},{"path":[4,106,2,5],"span":[1858,2,27]},{"path":[4,106,2,5,4],"span":[1858,2,10]},{"path":[4,106,2,5,5],"span":[1858,11,17]},{"path":[4,106,2,5,1],"span":[1858,18,22]},{"path":[4,106,2,5,3],"span":[1858,25,26]},{"path":[4,106,2,6],"span":[1859,2,33]},{"path":[4,106,2,6,4],"span":[1859,2,10]},{"path":[4,106,2,6,5],"span":[1859,11,17]},{"path":[4,106,2,6,1],"span":[1859,18,28]},{"path":[4,106,2,6,3],"span":[1859,31,32]},{"path":[4,106,2,7],"span":[1860,2,29]},{"path":[4,106,2,7,4],"span":[1860,2,10]},{"path":[4,106,2,7,5],"span":[1860,11,17]},{"path":[4,106,2,7,1],"span":[1860,18,24]},{"path":[4,106,2,7,3],"span":[1860,27,28]},{"path":[4,106,2,8],"span":[1861,2,35]},{"path":[4,106,2,8,4],"span":[1861,2,10]},{"path":[4,106,2,8,5],"span":[1861,11,15]},{"path":[4,106,2,8,1],"span":[1861,16,30]},{"path":[4,106,2,8,3],"span":[1861,33,34]},{"path":[4,107],"span":[1868,0,1887,1],"leadingComments":"\n Computer, Windows only.\n"},{"path":[4,107,1],"span":[1868,8,30]},{"path":[4,107,2,0],"span":[1869,2,34]},{"path":[4,107,2,0,4],"span":[1869,2,10]},{"path":[4,107,2,0,5],"span":[1869,11,16]},{"path":[4,107,2,0,1],"span":[1869,17,29]},{"path":[4,107,2,0,3],"span":[1869,32,33]},{"path":[4,107,2,1],"span":[1870,2,32]},{"path":[4,107,2,1,4],"span":[1870,2,10]},{"path":[4,107,2,1,5],"span":[1870,11,15]},{"path":[4,107,2,1,1],"span":[1870,16,27]},{"path":[4,107,2,1,3],"span":[1870,30,31]},{"path":[4,107,2,2],"span":[1871,2,39]},{"path":[4,107,2,2,4],"span":[1871,2,10]},{"path":[4,107,2,2,5],"span":[1871,11,16]},{"path":[4,107,2,2,1],"span":[1871,17,34]},{"path":[4,107,2,2,3],"span":[1871,37,38]},{"path":[4,107,2,3],"span":[1872,2,38]},{"path":[4,107,2,3,4],"span":[1872,2,10]},{"path":[4,107,2,3,5],"span":[1872,11,15]},{"path":[4,107,2,3,1],"span":[1872,16,33]},{"path":[4,107,2,3,3],"span":[1872,36,37]},{"path":[4,107,2,4],"span":[1873,2,38]},{"path":[4,107,2,4,4],"span":[1873,2,10]},{"path":[4,107,2,4,5],"span":[1873,11,16]},{"path":[4,107,2,4,1],"span":[1873,17,33]},{"path":[4,107,2,4,3],"span":[1873,36,37]},{"path":[4,107,2,5],"span":[1874,2,34]},{"path":[4,107,2,5,4],"span":[1874,2,10]},{"path":[4,107,2,5,5],"span":[1874,11,16]},{"path":[4,107,2,5,1],"span":[1874,17,29]},{"path":[4,107,2,5,3],"span":[1874,32,33]},{"path":[4,107,2,6],"span":[1875,2,42]},{"path":[4,107,2,6,4],"span":[1875,2,10]},{"path":[4,107,2,6,5],"span":[1875,11,17]},{"path":[4,107,2,6,1],"span":[1875,18,37]},{"path":[4,107,2,6,3],"span":[1875,40,41]},{"path":[4,107,2,7],"span":[1876,2,37]},{"path":[4,107,2,7,4],"span":[1876,2,10]},{"path":[4,107,2,7,5],"span":[1876,11,16]},{"path":[4,107,2,7,1],"span":[1876,17,32]},{"path":[4,107,2,7,3],"span":[1876,35,36]},{"path":[4,107,2,8],"span":[1877,2,36]},{"path":[4,107,2,8,4],"span":[1877,2,10]},{"path":[4,107,2,8,5],"span":[1877,11,15]},{"path":[4,107,2,8,1],"span":[1877,16,31]},{"path":[4,107,2,8,3],"span":[1877,34,35]},{"path":[4,107,2,9],"span":[1878,2,28]},{"path":[4,107,2,9,4],"span":[1878,2,10]},{"path":[4,107,2,9,5],"span":[1878,11,17]},{"path":[4,107,2,9,1],"span":[1878,18,22]},{"path":[4,107,2,9,3],"span":[1878,25,27]},{"path":[4,107,2,10],"span":[1879,2,31]},{"path":[4,107,2,10,4],"span":[1879,2,10]},{"path":[4,107,2,10,5],"span":[1879,11,17]},{"path":[4,107,2,10,1],"span":[1879,18,25]},{"path":[4,107,2,10,3],"span":[1879,28,30]},{"path":[4,107,2,11],"span":[1880,2,40]},{"path":[4,107,2,11,4],"span":[1880,2,10]},{"path":[4,107,2,11,5],"span":[1880,11,15]},{"path":[4,107,2,11,1],"span":[1880,16,34]},{"path":[4,107,2,11,3],"span":[1880,37,39]},{"path":[4,107,2,12],"span":[1881,2,46]},{"path":[4,107,2,12,4],"span":[1881,2,10]},{"path":[4,107,2,12,5],"span":[1881,11,17]},{"path":[4,107,2,12,1],"span":[1881,18,40]},{"path":[4,107,2,12,3],"span":[1881,43,45]},{"path":[4,107,2,13],"span":[1882,2,40]},{"path":[4,107,2,13,4],"span":[1882,2,10]},{"path":[4,107,2,13,5],"span":[1882,11,15]},{"path":[4,107,2,13,1],"span":[1882,16,34]},{"path":[4,107,2,13,3],"span":[1882,37,39]},{"path":[4,107,2,14],"span":[1883,2,41]},{"path":[4,107,2,14,4],"span":[1883,2,10]},{"path":[4,107,2,14,5],"span":[1883,11,16]},{"path":[4,107,2,14,1],"span":[1883,17,35]},{"path":[4,107,2,14,3],"span":[1883,38,40]},{"path":[4,107,2,15],"span":[1884,2,33]},{"path":[4,107,2,15,4],"span":[1884,2,10]},{"path":[4,107,2,15,5],"span":[1884,11,17]},{"path":[4,107,2,15,1],"span":[1884,18,27]},{"path":[4,107,2,15,3],"span":[1884,30,32]},{"path":[4,107,2,16],"span":[1885,2,41]},{"path":[4,107,2,16,4],"span":[1885,2,10]},{"path":[4,107,2,16,5],"span":[1885,11,15]},{"path":[4,107,2,16,1],"span":[1885,16,35]},{"path":[4,107,2,16,3],"span":[1885,38,40]},{"path":[4,107,2,17],"span":[1886,2,37]},{"path":[4,107,2,17,4],"span":[1886,2,10]},{"path":[4,107,2,17,5],"span":[1886,11,15]},{"path":[4,107,2,17,1],"span":[1886,16,31]},{"path":[4,107,2,17,3],"span":[1886,34,36]},{"path":[4,108],"span":[1892,0,1903,1],"leadingComments":"\n Computer, Windows only: from WindowsDisplayConfig.\n"},{"path":[4,108,1],"span":[1892,8,30]},{"path":[4,108,2,0],"span":[1893,2,34]},{"path":[4,108,2,0,4],"span":[1893,2,10]},{"path":[4,108,2,0,5],"span":[1893,11,16]},{"path":[4,108,2,0,1],"span":[1893,17,29]},{"path":[4,108,2,0,3],"span":[1893,32,33]},{"path":[4,108,2,1],"span":[1894,2,30]},{"path":[4,108,2,1,4],"span":[1894,2,10]},{"path":[4,108,2,1,5],"span":[1894,11,17]},{"path":[4,108,2,1,1],"span":[1894,18,25]},{"path":[4,108,2,1,3],"span":[1894,28,29]},{"path":[4,108,2,2],"span":[1895,2,34]},{"path":[4,108,2,2,4],"span":[1895,2,10]},{"path":[4,108,2,2,5],"span":[1895,11,17]},{"path":[4,108,2,2,1],"span":[1895,18,29]},{"path":[4,108,2,2,3],"span":[1895,32,33]},{"path":[4,108,2,3],"span":[1896,2,35]},{"path":[4,108,2,3,4],"span":[1896,2,10]},{"path":[4,108,2,3,5],"span":[1896,11,16]},{"path":[4,108,2,3,1],"span":[1896,17,30]},{"path":[4,108,2,3,3],"span":[1896,33,34]},{"path":[4,108,2,4],"span":[1897,2,39]},{"path":[4,108,2,4,4],"span":[1897,2,10]},{"path":[4,108,2,4,5],"span":[1897,11,16]},{"path":[4,108,2,4,1],"span":[1897,17,34]},{"path":[4,108,2,4,3],"span":[1897,37,38]},{"path":[4,108,2,5],"span":[1898,2,37]},{"path":[4,108,2,5,4],"span":[1898,2,10]},{"path":[4,108,2,5,5],"span":[1898,11,17]},{"path":[4,108,2,5,1],"span":[1898,18,32]},{"path":[4,108,2,5,3],"span":[1898,35,36]},{"path":[4,108,2,6],"span":[1899,2,32]},{"path":[4,108,2,6,4],"span":[1899,2,10]},{"path":[4,108,2,6,5],"span":[1899,11,16]},{"path":[4,108,2,6,1],"span":[1899,17,27]},{"path":[4,108,2,6,3],"span":[1899,30,31]},{"path":[4,108,2,7],"span":[1900,2,33]},{"path":[4,108,2,7,4],"span":[1900,2,10]},{"path":[4,108,2,7,5],"span":[1900,11,16]},{"path":[4,108,2,7,1],"span":[1900,17,28]},{"path":[4,108,2,7,3],"span":[1900,31,32]},{"path":[4,108,2,8],"span":[1901,2,32]},{"path":[4,108,2,8,4],"span":[1901,2,10]},{"path":[4,108,2,8,5],"span":[1901,11,16]},{"path":[4,108,2,8,1],"span":[1901,17,27]},{"path":[4,108,2,8,3],"span":[1901,30,31]},{"path":[4,108,2,9],"span":[1902,2,44]},{"path":[4,108,2,9,4],"span":[1902,2,10]},{"path":[4,108,2,9,5],"span":[1902,11,16]},{"path":[4,108,2,9,1],"span":[1902,17,38]},{"path":[4,108,2,9,3],"span":[1902,41,43]},{"path":[4,109],"span":[1908,0,1918,1],"leadingComments":"\n Computer, Windows only.\n"},{"path":[4,109,1],"span":[1908,8,37]},{"path":[4,109,2,0],"span":[1909,2,40]},{"path":[4,109,2,0,4],"span":[1909,2,10]},{"path":[4,109,2,0,6],"span":[1909,11,22]},{"path":[4,109,2,0,1],"span":[1909,23,35]},{"path":[4,109,2,0,3],"span":[1909,38,39]},{"path":[4,109,2,1],"span":[1910,2,30]},{"path":[4,109,2,1,4],"span":[1910,2,10]},{"path":[4,109,2,1,5],"span":[1910,11,17]},{"path":[4,109,2,1,1],"span":[1910,18,25]},{"path":[4,109,2,1,3],"span":[1910,28,29]},{"path":[4,109,2,2],"span":[1911,2,32]},{"path":[4,109,2,2,4],"span":[1911,2,10]},{"path":[4,109,2,2,5],"span":[1911,11,17]},{"path":[4,109,2,2,1],"span":[1911,18,27]},{"path":[4,109,2,2,3],"span":[1911,30,31]},{"path":[4,109,2,3],"span":[1912,2,43]},{"path":[4,109,2,3,4],"span":[1912,2,10]},{"path":[4,109,2,3,5],"span":[1912,11,17]},{"path":[4,109,2,3,1],"span":[1912,18,38]},{"path":[4,109,2,3,3],"span":[1912,41,42]},{"path":[4,109,2,4],"span":[1913,2,48]},{"path":[4,109,2,4,4],"span":[1913,2,10]},{"path":[4,109,2,4,5],"span":[1913,11,17]},{"path":[4,109,2,4,1],"span":[1913,18,43]},{"path":[4,109,2,4,3],"span":[1913,46,47]},{"path":[4,109,2,5],"span":[1914,2,48]},{"path":[4,109,2,5,4],"span":[1914,2,10]},{"path":[4,109,2,5,5],"span":[1914,11,17]},{"path":[4,109,2,5,1],"span":[1914,18,43]},{"path":[4,109,2,5,3],"span":[1914,46,47]},{"path":[4,109,2,6],"span":[1915,2,36]},{"path":[4,109,2,6,4],"span":[1915,2,10]},{"path":[4,109,2,6,5],"span":[1915,11,17]},{"path":[4,109,2,6,1],"span":[1915,18,31]},{"path":[4,109,2,6,3],"span":[1915,34,35]},{"path":[4,109,2,7],"span":[1916,2,36]},{"path":[4,109,2,7,4],"span":[1916,2,10]},{"path":[4,109,2,7,5],"span":[1916,11,17]},{"path":[4,109,2,7,1],"span":[1916,18,31]},{"path":[4,109,2,7,3],"span":[1916,34,35]},{"path":[4,109,2,8],"span":[1917,2,35]},{"path":[4,109,2,8,4],"span":[1917,2,10]},{"path":[4,109,2,8,5],"span":[1917,11,17]},{"path":[4,109,2,8,1],"span":[1917,18,30]},{"path":[4,109,2,8,3],"span":[1917,33,34]},{"path":[4,110],"span":[1924,0,1935,1],"leadingComments":"\n Computer, Windows only: from WindowsDisplayControllerConfig.\n"},{"path":[4,110,1],"span":[1924,8,40]},{"path":[4,110,2,0],"span":[1925,2,36]},{"path":[4,110,2,0,4],"span":[1925,2,10]},{"path":[4,110,2,0,5],"span":[1925,11,16]},{"path":[4,110,2,0,1],"span":[1925,17,31]},{"path":[4,110,2,0,3],"span":[1925,34,35]},{"path":[4,110,2,1],"span":[1926,2,30]},{"path":[4,110,2,1,4],"span":[1926,2,10]},{"path":[4,110,2,1,5],"span":[1926,11,17]},{"path":[4,110,2,1,1],"span":[1926,18,25]},{"path":[4,110,2,1,3],"span":[1926,28,29]},{"path":[4,110,2,2],"span":[1927,2,35]},{"path":[4,110,2,2,4],"span":[1927,2,10]},{"path":[4,110,2,2,5],"span":[1927,11,17]},{"path":[4,110,2,2,1],"span":[1927,18,30]},{"path":[4,110,2,2,3],"span":[1927,33,34]},{"path":[4,110,2,3],"span":[1928,2,54]},{"path":[4,110,2,3,4],"span":[1928,2,10]},{"path":[4,110,2,3,5],"span":[1928,11,17]},{"path":[4,110,2,3,1],"span":[1928,18,49]},{"path":[4,110,2,3,3],"span":[1928,52,53]},{"path":[4,110,2,4],"span":[1929,2,43]},{"path":[4,110,2,4,4],"span":[1929,2,10]},{"path":[4,110,2,4,5],"span":[1929,11,17]},{"path":[4,110,2,4,1],"span":[1929,18,38]},{"path":[4,110,2,4,3],"span":[1929,41,42]},{"path":[4,110,2,5],"span":[1930,2,44]},{"path":[4,110,2,5,4],"span":[1930,2,10]},{"path":[4,110,2,5,5],"span":[1930,11,17]},{"path":[4,110,2,5,1],"span":[1930,18,39]},{"path":[4,110,2,5,3],"span":[1930,42,43]},{"path":[4,110,2,6],"span":[1931,2,27]},{"path":[4,110,2,6,4],"span":[1931,2,10]},{"path":[4,110,2,6,5],"span":[1931,11,17]},{"path":[4,110,2,6,1],"span":[1931,18,22]},{"path":[4,110,2,6,3],"span":[1931,25,26]},{"path":[4,110,2,7],"span":[1932,2,34]},{"path":[4,110,2,7,4],"span":[1932,2,10]},{"path":[4,110,2,7,5],"span":[1932,11,16]},{"path":[4,110,2,7,1],"span":[1932,17,29]},{"path":[4,110,2,7,3],"span":[1932,32,33]},{"path":[4,110,2,8],"span":[1933,2,42]},{"path":[4,110,2,8,4],"span":[1933,2,10]},{"path":[4,110,2,8,5],"span":[1933,11,17]},{"path":[4,110,2,8,1],"span":[1933,18,37]},{"path":[4,110,2,8,3],"span":[1933,40,41]},{"path":[4,110,2,9],"span":[1934,2,34]},{"path":[4,110,2,9,4],"span":[1934,2,10]},{"path":[4,110,2,9,5],"span":[1934,11,17]},{"path":[4,110,2,9,1],"span":[1934,18,28]},{"path":[4,110,2,9,3],"span":[1934,31,33]},{"path":[4,111],"span":[1940,0,1945,1],"leadingComments":"\n Computer Windows only: from WindowsNetworkClient.\n"},{"path":[4,111,1],"span":[1940,8,36]},{"path":[4,111,2,0],"span":[1941,2,30]},{"path":[4,111,2,0,4],"span":[1941,2,10]},{"path":[4,111,2,0,5],"span":[1941,11,17]},{"path":[4,111,2,0,1],"span":[1941,18,25]},{"path":[4,111,2,0,3],"span":[1941,28,29]},{"path":[4,111,2,1],"span":[1942,2,34]},{"path":[4,111,2,1,4],"span":[1942,2,10]},{"path":[4,111,2,1,5],"span":[1942,11,17]},{"path":[4,111,2,1,1],"span":[1942,18,29]},{"path":[4,111,2,1,3],"span":[1942,32,33]},{"path":[4,111,2,2],"span":[1943,2,35]},{"path":[4,111,2,2,4],"span":[1943,2,10]},{"path":[4,111,2,2,5],"span":[1943,11,17]},{"path":[4,111,2,2,1],"span":[1943,18,30]},{"path":[4,111,2,2,3],"span":[1943,33,34]},{"path":[4,111,2,3],"span":[1944,2,27]},{"path":[4,111,2,3,4],"span":[1944,2,10]},{"path":[4,111,2,3,5],"span":[1944,11,17]},{"path":[4,111,2,3,1],"span":[1944,18,22]},{"path":[4,111,2,3,3],"span":[1944,25,26]},{"path":[4,112],"span":[1952,0,1957,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,112,1],"span":[1952,8,36]},{"path":[4,112,2,0],"span":[1953,2,30]},{"path":[4,112,2,0,4],"span":[1953,2,10]},{"path":[4,112,2,0,5],"span":[1953,11,17]},{"path":[4,112,2,0,1],"span":[1953,18,25]},{"path":[4,112,2,0,3],"span":[1953,28,29]},{"path":[4,112,2,1],"span":[1954,2,32]},{"path":[4,112,2,1,4],"span":[1954,2,10]},{"path":[4,112,2,1,5],"span":[1954,11,17]},{"path":[4,112,2,1,1],"span":[1954,18,27]},{"path":[4,112,2,1,3],"span":[1954,30,31]},{"path":[4,112,2,2],"span":[1955,2,35]},{"path":[4,112,2,2,4],"span":[1955,2,10]},{"path":[4,112,2,2,5],"span":[1955,11,17]},{"path":[4,112,2,2,1],"span":[1955,18,30]},{"path":[4,112,2,2,3],"span":[1955,33,34]},{"path":[4,112,2,3],"span":[1956,2,46]},{"path":[4,112,2,3,4],"span":[1956,2,10]},{"path":[4,112,2,3,6],"span":[1956,11,22]},{"path":[4,112,2,3,1],"span":[1956,23,41]},{"path":[4,112,2,3,3],"span":[1956,44,45]},{"path":[4,113],"span":[1963,0,1975,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,113,1],"span":[1963,8,36]},{"path":[4,113,2,0],"span":[1964,2,32]},{"path":[4,113,2,0,4],"span":[1964,2,10]},{"path":[4,113,2,0,5],"span":[1964,11,16]},{"path":[4,113,2,0,1],"span":[1964,17,27]},{"path":[4,113,2,0,3],"span":[1964,30,31]},{"path":[4,113,2,1],"span":[1965,2,29]},{"path":[4,113,2,1,4],"span":[1965,2,10]},{"path":[4,113,2,1,5],"span":[1965,11,15]},{"path":[4,113,2,1,1],"span":[1965,16,24]},{"path":[4,113,2,1,3],"span":[1965,27,28]},{"path":[4,113,2,2],"span":[1966,2,35]},{"path":[4,113,2,2,4],"span":[1966,2,10]},{"path":[4,113,2,2,5],"span":[1966,11,15]},{"path":[4,113,2,2,1],"span":[1966,16,30]},{"path":[4,113,2,2,3],"span":[1966,33,34]},{"path":[4,113,2,3],"span":[1967,2,32]},{"path":[4,113,2,3,4],"span":[1967,2,10]},{"path":[4,113,2,3,5],"span":[1967,11,17]},{"path":[4,113,2,3,1],"span":[1967,18,27]},{"path":[4,113,2,3,3],"span":[1967,30,31]},{"path":[4,113,2,4],"span":[1968,2,32]},{"path":[4,113,2,4,4],"span":[1968,2,10]},{"path":[4,113,2,4,5],"span":[1968,11,16]},{"path":[4,113,2,4,1],"span":[1968,17,27]},{"path":[4,113,2,4,3],"span":[1968,30,31]},{"path":[4,113,2,5],"span":[1969,2,27]},{"path":[4,113,2,5,4],"span":[1969,2,10]},{"path":[4,113,2,5,5],"span":[1969,11,16]},{"path":[4,113,2,5,1],"span":[1969,17,22]},{"path":[4,113,2,5,3],"span":[1969,25,26]},{"path":[4,113,2,6],"span":[1970,2,38]},{"path":[4,113,2,6,4],"span":[1970,2,10]},{"path":[4,113,2,6,5],"span":[1970,11,16]},{"path":[4,113,2,6,1],"span":[1970,17,33]},{"path":[4,113,2,6,3],"span":[1970,36,37]},{"path":[4,113,2,7],"span":[1971,2,38]},{"path":[4,113,2,7,4],"span":[1971,2,10]},{"path":[4,113,2,7,5],"span":[1971,11,15]},{"path":[4,113,2,7,1],"span":[1971,16,33]},{"path":[4,113,2,7,3],"span":[1971,36,37]},{"path":[4,113,2,8],"span":[1972,2,26]},{"path":[4,113,2,8,4],"span":[1972,2,10]},{"path":[4,113,2,8,5],"span":[1972,11,16]},{"path":[4,113,2,8,1],"span":[1972,17,21]},{"path":[4,113,2,8,3],"span":[1972,24,25]},{"path":[4,113,2,9],"span":[1973,2,38]},{"path":[4,113,2,9,4],"span":[1973,2,10]},{"path":[4,113,2,9,5],"span":[1973,11,16]},{"path":[4,113,2,9,1],"span":[1973,17,32]},{"path":[4,113,2,9,3],"span":[1973,35,37]},{"path":[4,113,2,10],"span":[1974,2,28]},{"path":[4,113,2,10,4],"span":[1974,2,10]},{"path":[4,113,2,10,5],"span":[1974,11,17]},{"path":[4,113,2,10,1],"span":[1974,18,22]},{"path":[4,113,2,10,3],"span":[1974,25,27]},{"path":[4,114],"span":[1980,0,2000,1],"leadingComments":"\n Computer Windows only: from WindowsFloppy. Mapped in LEC adapter to DiskDrive.\n"},{"path":[4,114,1],"span":[1980,8,29]},{"path":[4,114,2,0],"span":[1981,2,39]},{"path":[4,114,2,0,4],"span":[1981,2,10]},{"path":[4,114,2,0,5],"span":[1981,11,17]},{"path":[4,114,2,0,1],"span":[1981,18,34]},{"path":[4,114,2,0,3],"span":[1981,37,38]},{"path":[4,114,2,1],"span":[1982,2,34]},{"path":[4,114,2,1,4],"span":[1982,2,10]},{"path":[4,114,2,1,5],"span":[1982,11,17]},{"path":[4,114,2,1,1],"span":[1982,18,29]},{"path":[4,114,2,1,3],"span":[1982,32,33]},{"path":[4,114,2,2],"span":[1983,2,37]},{"path":[4,114,2,2,4],"span":[1983,2,10]},{"path":[4,114,2,2,5],"span":[1983,11,17]},{"path":[4,114,2,2,1],"span":[1983,18,32]},{"path":[4,114,2,2,3],"span":[1983,35,36]},{"path":[4,114,2,3],"span":[1984,2,35]},{"path":[4,114,2,3,4],"span":[1984,2,10]},{"path":[4,114,2,3,5],"span":[1984,11,17]},{"path":[4,114,2,3,1],"span":[1984,18,30]},{"path":[4,114,2,3,3],"span":[1984,33,34]},{"path":[4,114,2,4],"span":[1985,2,28]},{"path":[4,114,2,4,4],"span":[1985,2,10]},{"path":[4,114,2,4,5],"span":[1985,11,17]},{"path":[4,114,2,4,1],"span":[1985,18,23]},{"path":[4,114,2,4,3],"span":[1985,26,27]},{"path":[4,114,2,5],"span":[1986,2,27]},{"path":[4,114,2,5,4],"span":[1986,2,10]},{"path":[4,114,2,5,5],"span":[1986,11,17]},{"path":[4,114,2,5,1],"span":[1986,18,22]},{"path":[4,114,2,5,3],"span":[1986,25,26]},{"path":[4,114,2,6],"span":[1987,2,33]},{"path":[4,114,2,6,4],"span":[1987,2,10]},{"path":[4,114,2,6,5],"span":[1987,11,17]},{"path":[4,114,2,6,1],"span":[1987,18,28]},{"path":[4,114,2,6,3],"span":[1987,31,32]},{"path":[4,114,2,7],"span":[1988,2,36]},{"path":[4,114,2,7,4],"span":[1988,2,10]},{"path":[4,114,2,7,5],"span":[1988,11,17]},{"path":[4,114,2,7,1],"span":[1988,18,31]},{"path":[4,114,2,7,3],"span":[1988,34,35]},{"path":[4,114,2,8],"span":[1989,2,41]},{"path":[4,114,2,8,4],"span":[1989,2,10]},{"path":[4,114,2,8,5],"span":[1989,11,17]},{"path":[4,114,2,8,1],"span":[1989,18,35]},{"path":[4,114,2,8,3],"span":[1989,38,40]},{"path":[4,114,2,9],"span":[1990,2,27]},{"path":[4,114,2,9,4],"span":[1990,2,10]},{"path":[4,114,2,9,5],"span":[1990,11,16]},{"path":[4,114,2,9,1],"span":[1990,17,21]},{"path":[4,114,2,9,3],"span":[1990,24,26]},{"path":[4,114,2,10],"span":[1991,2,38]},{"path":[4,114,2,10,4],"span":[1991,2,10]},{"path":[4,114,2,10,5],"span":[1991,11,16]},{"path":[4,114,2,10,1],"span":[1991,17,32]},{"path":[4,114,2,10,3],"span":[1991,35,37]},{"path":[4,114,2,11],"span":[1992,2,35]},{"path":[4,114,2,11,4],"span":[1992,2,10]},{"path":[4,114,2,11,5],"span":[1992,11,17]},{"path":[4,114,2,11,1],"span":[1992,18,29]},{"path":[4,114,2,11,3],"span":[1992,32,34]},{"path":[4,114,2,12],"span":[1993,2,36]},{"path":[4,114,2,12,4],"span":[1993,2,10]},{"path":[4,114,2,12,5],"span":[1993,11,16]},{"path":[4,114,2,12,1],"span":[1993,17,30]},{"path":[4,114,2,12,3],"span":[1993,33,35]},{"path":[4,114,2,13],"span":[1994,2,35]},{"path":[4,114,2,13,4],"span":[1994,2,10]},{"path":[4,114,2,13,5],"span":[1994,11,16]},{"path":[4,114,2,13,1],"span":[1994,17,29]},{"path":[4,114,2,13,3],"span":[1994,32,34]},{"path":[4,114,2,14],"span":[1995,2,43]},{"path":[4,114,2,14,4],"span":[1995,2,10]},{"path":[4,114,2,14,5],"span":[1995,11,17]},{"path":[4,114,2,14,1],"span":[1995,18,37]},{"path":[4,114,2,14,3],"span":[1995,40,42]},{"path":[4,114,2,15],"span":[1996,2,33]},{"path":[4,114,2,15,4],"span":[1996,2,10]},{"path":[4,114,2,15,5],"span":[1996,11,17]},{"path":[4,114,2,15,1],"span":[1996,18,27]},{"path":[4,114,2,15,3],"span":[1996,30,32]},{"path":[4,114,2,16],"span":[1997,2,30]},{"path":[4,114,2,16,4],"span":[1997,2,10]},{"path":[4,114,2,16,5],"span":[1997,11,17]},{"path":[4,114,2,16,1],"span":[1997,18,24]},{"path":[4,114,2,16,3],"span":[1997,27,29]},{"path":[4,114,2,17],"span":[1998,2,41]},{"path":[4,114,2,17,4],"span":[1998,2,10]},{"path":[4,114,2,17,5],"span":[1998,11,17]},{"path":[4,114,2,17,1],"span":[1998,18,35]},{"path":[4,114,2,17,3],"span":[1998,38,40]},{"path":[4,114,2,18],"span":[1999,2,37]},{"path":[4,114,2,18,4],"span":[1999,2,10]},{"path":[4,114,2,18,5],"span":[1999,11,17]},{"path":[4,114,2,18,1],"span":[1999,18,31]},{"path":[4,114,2,18,3],"span":[1999,34,36]},{"path":[4,115],"span":[2006,0,2018,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,115,1],"span":[2006,8,23]},{"path":[4,115,2,0],"span":[2007,2,41]},{"path":[4,115,2,0,4],"span":[2007,2,10]},{"path":[4,115,2,0,5],"span":[2007,11,16]},{"path":[4,115,2,0,1],"span":[2007,17,36]},{"path":[4,115,2,0,3],"span":[2007,39,40]},{"path":[4,115,2,1],"span":[2008,2,37]},{"path":[4,115,2,1,4],"span":[2008,2,10]},{"path":[4,115,2,1,6],"span":[2008,11,22]},{"path":[4,115,2,1,1],"span":[2008,23,32]},{"path":[4,115,2,1,3],"span":[2008,35,36]},{"path":[4,115,2,2],"span":[2009,2,37]},{"path":[4,115,2,2,4],"span":[2009,2,10]},{"path":[4,115,2,2,5],"span":[2009,11,16]},{"path":[4,115,2,2,1],"span":[2009,17,32]},{"path":[4,115,2,2,3],"span":[2009,35,36]},{"path":[4,115,2,3],"span":[2010,2,36]},{"path":[4,115,2,3,4],"span":[2010,2,10]},{"path":[4,115,2,3,5],"span":[2010,11,16]},{"path":[4,115,2,3,1],"span":[2010,17,31]},{"path":[4,115,2,3,3],"span":[2010,34,35]},{"path":[4,115,2,4],"span":[2011,2,32]},{"path":[4,115,2,4,4],"span":[2011,2,10]},{"path":[4,115,2,4,5],"span":[2011,11,17]},{"path":[4,115,2,4,1],"span":[2011,18,27]},{"path":[4,115,2,4,3],"span":[2011,30,31]},{"path":[4,115,2,5],"span":[2012,2,31]},{"path":[4,115,2,5,4],"span":[2012,2,10]},{"path":[4,115,2,5,5],"span":[2012,11,17]},{"path":[4,115,2,5,1],"span":[2012,18,26]},{"path":[4,115,2,5,3],"span":[2012,29,30]},{"path":[4,115,2,6],"span":[2013,2,39]},{"path":[4,115,2,6,4],"span":[2013,2,10]},{"path":[4,115,2,6,5],"span":[2013,11,17]},{"path":[4,115,2,6,1],"span":[2013,18,34]},{"path":[4,115,2,6,3],"span":[2013,37,38]},{"path":[4,115,2,7],"span":[2014,2,35]},{"path":[4,115,2,7,4],"span":[2014,2,10]},{"path":[4,115,2,7,5],"span":[2014,11,17]},{"path":[4,115,2,7,1],"span":[2014,18,30]},{"path":[4,115,2,7,3],"span":[2014,33,34]},{"path":[4,115,2,8],"span":[2015,2,39]},{"path":[4,115,2,8,4],"span":[2015,2,10]},{"path":[4,115,2,8,5],"span":[2015,11,16]},{"path":[4,115,2,8,1],"span":[2015,17,34]},{"path":[4,115,2,8,3],"span":[2015,37,38]},{"path":[4,115,2,9],"span":[2016,2,28]},{"path":[4,115,2,9,4],"span":[2016,2,10]},{"path":[4,115,2,9,5],"span":[2016,11,17]},{"path":[4,115,2,9,1],"span":[2016,18,22]},{"path":[4,115,2,9,3],"span":[2016,25,27]},{"path":[4,115,2,10],"span":[2017,2,45]},{"path":[4,115,2,10,4],"span":[2017,2,10]},{"path":[4,115,2,10,5],"span":[2017,11,17]},{"path":[4,115,2,10,1],"span":[2017,18,39]},{"path":[4,115,2,10,3],"span":[2017,42,44]},{"path":[4,116],"span":[2027,0,2030,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,116,1],"span":[2027,8,19]},{"path":[4,116,2,0],"span":[2028,2,18]},{"path":[4,116,2,0,5],"span":[2028,2,7]},{"path":[4,116,2,0,1],"span":[2028,8,13]},{"path":[4,116,2,0,3],"span":[2028,16,17]},{"path":[4,116,2,1],"span":[2029,2,27]},{"path":[4,116,2,1,4],"span":[2029,2,10]},{"path":[4,116,2,1,5],"span":[2029,11,17]},{"path":[4,116,2,1,1],"span":[2029,18,22]},{"path":[4,116,2,1,3],"span":[2029,25,26]},{"path":[4,117],"span":[2033,0,2036,1],"leadingComments":" Monitor Inventory with list of connected monitors "},{"path":[4,117,1],"span":[2033,8,24]},{"path":[4,117,2,0],"span":[2034,2,42]},{"path":[4,117,2,0,6],"span":[2034,2,27]},{"path":[4,117,2,0,1],"span":[2034,28,37]},{"path":[4,117,2,0,3],"span":[2034,40,41]},{"path":[4,117,2,1],"span":[2035,2,31]},{"path":[4,117,2,1,4],"span":[2035,2,10]},{"path":[4,117,2,1,6],"span":[2035,11,18]},{"path":[4,117,2,1,1],"span":[2035,19,26]},{"path":[4,117,2,1,3],"span":[2035,29,30]},{"path":[4,118],"span":[2040,0,2061,1],"leadingComments":" Monitor definition: normalized and with link to raw "},{"path":[4,118,1],"span":[2040,8,15]},{"path":[4,118,2,0],"span":[2042,2,24],"leadingComments":" catalog id of: CatalogMonitor\n"},{"path":[4,118,2,0,4],"span":[2042,2,10]},{"path":[4,118,2,0,5],"span":[2042,11,16]},{"path":[4,118,2,0,1],"span":[2042,17,19]},{"path":[4,118,2,0,3],"span":[2042,22,23]},{"path":[4,118,2,1],"span":[2045,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,118,2,1,4],"span":[2045,2,10]},{"path":[4,118,2,1,5],"span":[2045,11,16]},{"path":[4,118,2,1,1],"span":[2045,17,24]},{"path":[4,118,2,1,3],"span":[2045,27,28]},{"path":[4,118,2,2],"span":[2047,2,23]},{"path":[4,118,2,2,5],"span":[2047,2,8]},{"path":[4,118,2,2,1],"span":[2047,9,18]},{"path":[4,118,2,2,3],"span":[2047,21,22]},{"path":[4,118,2,3],"span":[2048,2,24]},{"path":[4,118,2,3,5],"span":[2048,2,8]},{"path":[4,118,2,3,1],"span":[2048,9,19]},{"path":[4,118,2,3,3],"span":[2048,22,23]},{"path":[4,118,2,4],"span":[2050,2,36]},{"path":[4,118,2,4,4],"span":[2050,2,10]},{"path":[4,118,2,4,5],"span":[2050,11,17]},{"path":[4,118,2,4,1],"span":[2050,18,31]},{"path":[4,118,2,4,3],"span":[2050,34,35]},{"path":[4,118,2,5],"span":[2051,2,50]},{"path":[4,118,2,5,6],"span":[2051,2,27]},{"path":[4,118,2,5,1],"span":[2051,28,45]},{"path":[4,118,2,5,3],"span":[2051,48,49]},{"path":[4,118,8,0],"span":[2053,2,2055,3]},{"path":[4,118,8,0,1],"span":[2053,8,12]},{"path":[4,118,2,6],"span":[2054,4,36]},{"path":[4,118,2,6,6],"span":[2054,4,22]},{"path":[4,118,2,6,1],"span":[2054,23,30]},{"path":[4,118,2,6,3],"span":[2054,33,35]},{"path":[4,118,2,7],"span":[2058,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,118,2,7,4],"span":[2058,2,10]},{"path":[4,118,2,7,6],"span":[2058,11,23]},{"path":[4,118,2,7,1],"span":[2058,24,37]},{"path":[4,118,2,7,3],"span":[2058,40,42]},{"path":[4,118,2,8],"span":[2060,2,47],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,118,2,8,4],"span":[2060,2,10]},{"path":[4,118,2,8,6],"span":[2060,11,25]},{"path":[4,118,2,8,1],"span":[2060,26,41]},{"path":[4,118,2,8,3],"span":[2060,44,46]},{"path":[4,119],"span":[2063,0,2072,1]},{"path":[4,119,1],"span":[2063,8,26]},{"path":[4,119,2,0],"span":[2064,2,19]},{"path":[4,119,2,0,5],"span":[2064,2,8]},{"path":[4,119,2,0,1],"span":[2064,9,14]},{"path":[4,119,2,0,3],"span":[2064,17,18]},{"path":[4,119,2,1],"span":[2065,2,36]},{"path":[4,119,2,1,4],"span":[2065,2,10]},{"path":[4,119,2,1,5],"span":[2065,11,17]},{"path":[4,119,2,1,1],"span":[2065,18,31]},{"path":[4,119,2,1,3],"span":[2065,34,35]},{"path":[4,119,2,2],"span":[2066,2,36]},{"path":[4,119,2,2,4],"span":[2066,2,10]},{"path":[4,119,2,2,5],"span":[2066,11,17]},{"path":[4,119,2,2,1],"span":[2066,18,31]},{"path":[4,119,2,2,3],"span":[2066,34,35]},{"path":[4,119,2,3],"span":[2067,2,33]},{"path":[4,119,2,3,4],"span":[2067,2,10]},{"path":[4,119,2,3,5],"span":[2067,11,17]},{"path":[4,119,2,3,1],"span":[2067,18,28]},{"path":[4,119,2,3,3],"span":[2067,31,32]},{"path":[4,119,2,4],"span":[2068,2,40]},{"path":[4,119,2,4,4],"span":[2068,2,10]},{"path":[4,119,2,4,5],"span":[2068,11,17]},{"path":[4,119,2,4,1],"span":[2068,18,35]},{"path":[4,119,2,4,3],"span":[2068,38,39]},{"path":[4,119,2,5],"span":[2069,2,39]},{"path":[4,119,2,5,4],"span":[2069,2,10]},{"path":[4,119,2,5,5],"span":[2069,11,17]},{"path":[4,119,2,5,1],"span":[2069,18,34]},{"path":[4,119,2,5,3],"span":[2069,37,38]},{"path":[4,119,2,6],"span":[2070,2,59]},{"path":[4,119,2,6,4],"span":[2070,2,10]},{"path":[4,119,2,6,6],"span":[2070,11,36]},{"path":[4,119,2,6,1],"span":[2070,37,54]},{"path":[4,119,2,6,3],"span":[2070,57,58]},{"path":[4,119,2,7],"span":[2071,2,32]},{"path":[4,119,2,7,4],"span":[2071,2,10]},{"path":[4,119,2,7,5],"span":[2071,11,17]},{"path":[4,119,2,7,1],"span":[2071,18,27]},{"path":[4,119,2,7,3],"span":[2071,30,31]},{"path":[4,120],"span":[2077,0,2083,1],"leadingComments":"\n Antivirus software (that could be even missing from scanned SW list.\n"},{"path":[4,120,1],"span":[2077,8,25]},{"path":[4,120,2,0],"span":[2078,2,27]},{"path":[4,120,2,0,4],"span":[2078,2,10]},{"path":[4,120,2,0,5],"span":[2078,11,17]},{"path":[4,120,2,0,1],"span":[2078,18,22]},{"path":[4,120,2,0,3],"span":[2078,25,26]},{"path":[4,120,2,1],"span":[2079,2,27]},{"path":[4,120,2,1,4],"span":[2079,2,10]},{"path":[4,120,2,1,5],"span":[2079,11,17]},{"path":[4,120,2,1,1],"span":[2079,18,22]},{"path":[4,120,2,1,3],"span":[2079,25,26]},{"path":[4,120,2,2],"span":[2080,2,28]},{"path":[4,120,2,2,4],"span":[2080,2,10]},{"path":[4,120,2,2,5],"span":[2080,11,15]},{"path":[4,120,2,2,1],"span":[2080,16,23]},{"path":[4,120,2,2,3],"span":[2080,26,27]},{"path":[4,120,2,3],"span":[2081,2,31]},{"path":[4,120,2,3,4],"span":[2081,2,10]},{"path":[4,120,2,3,5],"span":[2081,11,15]},{"path":[4,120,2,3,1],"span":[2081,16,26]},{"path":[4,120,2,3,3],"span":[2081,29,30]},{"path":[4,120,2,4],"span":[2082,2,33],"trailingComments":" filled only in case it was scanned sw (not windows registry)\n"},{"path":[4,120,2,4,4],"span":[2082,2,10]},{"path":[4,120,2,4,6],"span":[2082,11,19]},{"path":[4,120,2,4,1],"span":[2082,20,28]},{"path":[4,120,2,4,3],"span":[2082,31,32]},{"path":[4,121],"span":[2088,0,2098,1],"leadingComments":"\n Internet IP info, if external_ip is present and valid.\n"},{"path":[4,121,1],"span":[2088,8,14]},{"path":[4,121,2,0],"span":[2089,2,21]},{"path":[4,121,2,0,5],"span":[2089,2,8]},{"path":[4,121,2,0,1],"span":[2089,9,16]},{"path":[4,121,2,0,3],"span":[2089,19,20]},{"path":[4,121,2,1],"span":[2090,2,31]},{"path":[4,121,2,1,4],"span":[2090,2,10]},{"path":[4,121,2,1,5],"span":[2090,11,17]},{"path":[4,121,2,1,1],"span":[2090,18,26]},{"path":[4,121,2,1,3],"span":[2090,29,30]},{"path":[4,121,2,2],"span":[2091,2,31]},{"path":[4,121,2,2,4],"span":[2091,2,10]},{"path":[4,121,2,2,5],"span":[2091,11,17]},{"path":[4,121,2,2,1],"span":[2091,18,26]},{"path":[4,121,2,2,3],"span":[2091,29,30]},{"path":[4,121,2,3],"span":[2092,2,37]},{"path":[4,121,2,3,4],"span":[2092,2,10]},{"path":[4,121,2,3,5],"span":[2092,11,17]},{"path":[4,121,2,3,1],"span":[2092,18,32]},{"path":[4,121,2,3,3],"span":[2092,35,36]},{"path":[4,121,2,4],"span":[2093,2,35]},{"path":[4,121,2,4,4],"span":[2093,2,10]},{"path":[4,121,2,4,5],"span":[2093,11,17]},{"path":[4,121,2,4,1],"span":[2093,18,30]},{"path":[4,121,2,4,3],"span":[2093,33,34]},{"path":[4,121,2,5],"span":[2094,2,34]},{"path":[4,121,2,5,4],"span":[2094,2,10]},{"path":[4,121,2,5,5],"span":[2094,11,17]},{"path":[4,121,2,5,1],"span":[2094,18,29]},{"path":[4,121,2,5,3],"span":[2094,32,33]},{"path":[4,121,2,6],"span":[2095,2,35]},{"path":[4,121,2,6,4],"span":[2095,2,10]},{"path":[4,121,2,6,5],"span":[2095,11,17]},{"path":[4,121,2,6,1],"span":[2095,18,30]},{"path":[4,121,2,6,3],"span":[2095,33,34]},{"path":[4,121,2,7],"span":[2096,2,26]},{"path":[4,121,2,7,4],"span":[2096,2,10]},{"path":[4,121,2,7,5],"span":[2096,11,17]},{"path":[4,121,2,7,1],"span":[2096,18,21]},{"path":[4,121,2,7,3],"span":[2096,24,25]},{"path":[4,121,2,8],"span":[2097,2,35]},{"path":[4,121,2,8,4],"span":[2097,2,10]},{"path":[4,121,2,8,5],"span":[2097,11,17]},{"path":[4,121,2,8,1],"span":[2097,18,30]},{"path":[4,121,2,8,3],"span":[2097,33,34]},{"path":[4,122],"span":[2107,0,2110,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,122,1],"span":[2107,8,25]},{"path":[4,122,2,0],"span":[2108,2,42]},{"path":[4,122,2,0,6],"span":[2108,2,27]},{"path":[4,122,2,0,1],"span":[2108,28,37]},{"path":[4,122,2,0,3],"span":[2108,40,41]},{"path":[4,122,2,1],"span":[2109,2,33]},{"path":[4,122,2,1,4],"span":[2109,2,10]},{"path":[4,122,2,1,6],"span":[2109,11,19]},{"path":[4,122,2,1,1],"span":[2109,20,28]},{"path":[4,122,2,1,3],"span":[2109,31,32]},{"path":[4,123],"span":[2119,0,2157,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,123,1],"span":[2119,8,16]},{"path":[4,123,2,0],"span":[2121,2,26]},{"path":[4,123,2,0,4],"span":[2121,2,10]},{"path":[4,123,2,0,5],"span":[2121,11,16]},{"path":[4,123,2,0,1],"span":[2121,17,21]},{"path":[4,123,2,0,3],"span":[2121,24,25]},{"path":[4,123,2,1],"span":[2122,2,29]},{"path":[4,123,2,1,4],"span":[2122,2,10]},{"path":[4,123,2,1,5],"span":[2122,11,16]},{"path":[4,123,2,1,1],"span":[2122,17,24]},{"path":[4,123,2,1,3],"span":[2122,27,28]},{"path":[4,123,2,2],"span":[2123,2,28]},{"path":[4,123,2,2,4],"span":[2123,2,10]},{"path":[4,123,2,2,5],"span":[2123,11,16]},{"path":[4,123,2,2,1],"span":[2123,17,23]},{"path":[4,123,2,2,3],"span":[2123,26,27]},{"path":[4,123,2,3],"span":[2126,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,123,2,3,4],"span":[2126,2,10]},{"path":[4,123,2,3,5],"span":[2126,11,16]},{"path":[4,123,2,3,1],"span":[2126,17,24]},{"path":[4,123,2,3,3],"span":[2126,27,28]},{"path":[4,123,2,4],"span":[2129,2,27],"leadingComments":" catalog id of: CatalogSoftware\n"},{"path":[4,123,2,4,4],"span":[2129,2,10]},{"path":[4,123,2,4,5],"span":[2129,11,16]},{"path":[4,123,2,4,1],"span":[2129,17,22]},{"path":[4,123,2,4,3],"span":[2129,25,26]},{"path":[4,123,2,5],"span":[2132,2,31],"leadingComments":" catalog id of: CatalogSoftware\n"},{"path":[4,123,2,5,4],"span":[2132,2,10]},{"path":[4,123,2,5,5],"span":[2132,11,16]},{"path":[4,123,2,5,1],"span":[2132,17,26]},{"path":[4,123,2,5,3],"span":[2132,29,30]},{"path":[4,123,2,6],"span":[2134,2,32]},{"path":[4,123,2,6,4],"span":[2134,2,10]},{"path":[4,123,2,6,5],"span":[2134,11,17]},{"path":[4,123,2,6,1],"span":[2134,18,27]},{"path":[4,123,2,6,3],"span":[2134,30,31]},{"path":[4,123,2,7],"span":[2135,2,31]},{"path":[4,123,2,7,4],"span":[2135,2,10]},{"path":[4,123,2,7,5],"span":[2135,11,17]},{"path":[4,123,2,7,1],"span":[2135,18,26]},{"path":[4,123,2,7,3],"span":[2135,29,30]},{"path":[4,123,2,8],"span":[2136,2,32]},{"path":[4,123,2,8,4],"span":[2136,2,10]},{"path":[4,123,2,8,5],"span":[2136,11,17]},{"path":[4,123,2,8,1],"span":[2136,18,27]},{"path":[4,123,2,8,3],"span":[2136,30,31]},{"path":[4,123,2,9],"span":[2137,2,28]},{"path":[4,123,2,9,4],"span":[2137,2,10]},{"path":[4,123,2,9,5],"span":[2137,11,17]},{"path":[4,123,2,9,1],"span":[2137,18,22]},{"path":[4,123,2,9,3],"span":[2137,25,27]},{"path":[4,123,2,10],"span":[2138,2,31]},{"path":[4,123,2,10,4],"span":[2138,2,10]},{"path":[4,123,2,10,5],"span":[2138,11,17]},{"path":[4,123,2,10,1],"span":[2138,18,25]},{"path":[4,123,2,10,3],"span":[2138,28,30]},{"path":[4,123,2,11],"span":[2139,2,34]},{"path":[4,123,2,11,4],"span":[2139,2,10]},{"path":[4,123,2,11,5],"span":[2139,11,17]},{"path":[4,123,2,11,1],"span":[2139,18,28]},{"path":[4,123,2,11,3],"span":[2139,31,33]},{"path":[4,123,2,12],"span":[2140,2,31]},{"path":[4,123,2,12,4],"span":[2140,2,10]},{"path":[4,123,2,12,5],"span":[2140,11,17]},{"path":[4,123,2,12,1],"span":[2140,18,25]},{"path":[4,123,2,12,3],"span":[2140,28,30]},{"path":[4,123,2,13],"span":[2141,2,29]},{"path":[4,123,2,13,4],"span":[2141,2,10]},{"path":[4,123,2,13,5],"span":[2141,11,17]},{"path":[4,123,2,13,1],"span":[2141,18,23]},{"path":[4,123,2,13,3],"span":[2141,26,28]},{"path":[4,123,2,14],"span":[2142,2,28]},{"path":[4,123,2,14,4],"span":[2142,2,10]},{"path":[4,123,2,14,5],"span":[2142,11,17]},{"path":[4,123,2,14,1],"span":[2142,18,22]},{"path":[4,123,2,14,3],"span":[2142,25,27]},{"path":[4,123,2,15],"span":[2143,2,28]},{"path":[4,123,2,15,4],"span":[2143,2,10]},{"path":[4,123,2,15,5],"span":[2143,11,17]},{"path":[4,123,2,15,1],"span":[2143,18,22]},{"path":[4,123,2,15,3],"span":[2143,25,27]},{"path":[4,123,2,16],"span":[2145,2,27]},{"path":[4,123,2,16,4],"span":[2145,2,10]},{"path":[4,123,2,16,5],"span":[2145,11,17]},{"path":[4,123,2,16,1],"span":[2145,18,21]},{"path":[4,123,2,16,3],"span":[2145,24,26]},{"path":[4,123,2,17],"span":[2147,2,23]},{"path":[4,123,2,17,6],"span":[2147,2,13]},{"path":[4,123,2,17,1],"span":[2147,14,17]},{"path":[4,123,2,17,3],"span":[2147,20,22]},{"path":[4,123,2,18],"span":[2148,2,32],"trailingComments":" optional raw hash of SW\n"},{"path":[4,123,2,18,4],"span":[2148,2,10]},{"path":[4,123,2,18,5],"span":[2148,11,17]},{"path":[4,123,2,18,1],"span":[2148,18,26]},{"path":[4,123,2,18,3],"span":[2148,29,31]},{"path":[4,123,2,19],"span":[2149,2,32],"trailingComments":" optional NRE hash of SW\n"},{"path":[4,123,2,19,4],"span":[2149,2,10]},{"path":[4,123,2,19,5],"span":[2149,11,17]},{"path":[4,123,2,19,1],"span":[2149,18,26]},{"path":[4,123,2,19,3],"span":[2149,29,31]},{"path":[4,123,2,20],"span":[2152,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,123,2,20,4],"span":[2152,2,10]},{"path":[4,123,2,20,6],"span":[2152,11,23]},{"path":[4,123,2,20,1],"span":[2152,24,37]},{"path":[4,123,2,20,3],"span":[2152,40,42]},{"path":[4,123,2,21],"span":[2154,2,49],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,123,2,21,4],"span":[2154,2,10]},{"path":[4,123,2,21,6],"span":[2154,11,26]},{"path":[4,123,2,21,1],"span":[2154,27,43]},{"path":[4,123,2,21,3],"span":[2154,46,48]},{"path":[4,123,2,22],"span":[2156,2,47],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,123,2,22,4],"span":[2156,2,10]},{"path":[4,123,2,22,6],"span":[2156,11,26]},{"path":[4,123,2,22,1],"span":[2156,27,41]},{"path":[4,123,2,22,3],"span":[2156,44,46]},{"path":[4,124],"span":[2162,0,2176,1],"leadingComments":"\n Raw Software definition, as mapped from Windows, Mac, Linux.\n"},{"path":[4,124,1],"span":[2162,8,19]},{"path":[4,124,2,0],"span":[2163,2,18]},{"path":[4,124,2,0,5],"span":[2163,2,8]},{"path":[4,124,2,0,1],"span":[2163,9,13]},{"path":[4,124,2,0,3],"span":[2163,16,17]},{"path":[4,124,2,1],"span":[2165,2,29]},{"path":[4,124,2,1,4],"span":[2165,2,10]},{"path":[4,124,2,1,5],"span":[2165,11,17]},{"path":[4,124,2,1,1],"span":[2165,18,24]},{"path":[4,124,2,1,3],"span":[2165,27,28]},{"path":[4,124,2,2],"span":[2166,2,30]},{"path":[4,124,2,2,4],"span":[2166,2,10]},{"path":[4,124,2,2,5],"span":[2166,11,17]},{"path":[4,124,2,2,1],"span":[2166,18,25]},{"path":[4,124,2,2,3],"span":[2166,28,29]},{"path":[4,124,2,3],"span":[2167,2,27]},{"path":[4,124,2,3,4],"span":[2167,2,10]},{"path":[4,124,2,3,5],"span":[2167,11,17]},{"path":[4,124,2,3,1],"span":[2167,18,22]},{"path":[4,124,2,3,3],"span":[2167,25,26]},{"path":[4,124,2,4],"span":[2168,2,31]},{"path":[4,124,2,4,4],"span":[2168,2,10]},{"path":[4,124,2,4,5],"span":[2168,11,17]},{"path":[4,124,2,4,1],"span":[2168,18,26]},{"path":[4,124,2,4,3],"span":[2168,29,30]},{"path":[4,124,2,5],"span":[2169,2,27],"trailingComments":" when available the specific sw arch\n"},{"path":[4,124,2,5,4],"span":[2169,2,10]},{"path":[4,124,2,5,5],"span":[2169,11,17]},{"path":[4,124,2,5,1],"span":[2169,18,22]},{"path":[4,124,2,5,3],"span":[2169,25,26]},{"path":[4,124,2,6],"span":[2170,2,54]},{"path":[4,124,2,6,4],"span":[2170,2,10]},{"path":[4,124,2,6,6],"span":[2170,11,36]},{"path":[4,124,2,6,1],"span":[2170,37,49]},{"path":[4,124,2,6,3],"span":[2170,52,53]},{"path":[4,124,2,7],"span":[2171,2,34],"trailingComments":" Registry | System | MsStore | Package | Custom | etc\n"},{"path":[4,124,2,7,4],"span":[2171,2,10]},{"path":[4,124,2,7,5],"span":[2171,11,17]},{"path":[4,124,2,7,1],"span":[2171,18,29]},{"path":[4,124,2,7,3],"span":[2171,32,33]},{"path":[4,124,2,8],"span":[2173,2,28],"trailingComments":" optional SW id on the client side\n"},{"path":[4,124,2,8,4],"span":[2173,2,10]},{"path":[4,124,2,8,5],"span":[2173,11,17]},{"path":[4,124,2,8,1],"span":[2173,18,23]},{"path":[4,124,2,8,3],"span":[2173,26,27]},{"path":[4,124,2,9],"span":[2175,2,37]},{"path":[4,124,2,9,4],"span":[2175,2,10]},{"path":[4,124,2,9,5],"span":[2175,11,15]},{"path":[4,124,2,9,1],"span":[2175,16,31]},{"path":[4,124,2,9,3],"span":[2175,34,36]},{"path":[4,125],"span":[2180,0,2214,1],"leadingDetachedComments":[" <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< CATALOG ENTITIES >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n"]},{"path":[4,125,1],"span":[2180,8,20]},{"path":[4,125,2,0],"span":[2181,2,16]},{"path":[4,125,2,0,5],"span":[2181,2,7]},{"path":[4,125,2,0,1],"span":[2181,9,11]},{"path":[4,125,2,0,3],"span":[2181,14,15]},{"path":[4,125,2,1],"span":[2182,2,23]},{"path":[4,125,2,1,5],"span":[2182,2,8]},{"path":[4,125,2,1,1],"span":[2182,9,18]},{"path":[4,125,2,1,3],"span":[2182,21,22]},{"path":[4,125,2,2],"span":[2184,2,32]},{"path":[4,125,2,2,4],"span":[2184,2,10]},{"path":[4,125,2,2,5],"span":[2184,11,16]},{"path":[4,125,2,2,1],"span":[2184,17,26]},{"path":[4,125,2,2,3],"span":[2184,29,31]},{"path":[4,125,2,3],"span":[2185,2,58]},{"path":[4,125,2,3,4],"span":[2185,2,10]},{"path":[4,125,2,3,6],"span":[2185,11,36]},{"path":[4,125,2,3,1],"span":[2185,37,53]},{"path":[4,125,2,3,3],"span":[2185,56,57]},{"path":[4,125,2,4],"span":[2187,2,35]},{"path":[4,125,2,4,4],"span":[2187,2,10]},{"path":[4,125,2,4,5],"span":[2187,11,17]},{"path":[4,125,2,4,1],"span":[2187,18,30]},{"path":[4,125,2,4,3],"span":[2187,33,34]},{"path":[4,125,2,5],"span":[2188,2,37]},{"path":[4,125,2,5,4],"span":[2188,2,10]},{"path":[4,125,2,5,5],"span":[2188,11,17]},{"path":[4,125,2,5,1],"span":[2188,18,32]},{"path":[4,125,2,5,3],"span":[2188,35,36]},{"path":[4,125,2,6],"span":[2189,2,39]},{"path":[4,125,2,6,4],"span":[2189,2,10]},{"path":[4,125,2,6,5],"span":[2189,11,17]},{"path":[4,125,2,6,1],"span":[2189,18,34]},{"path":[4,125,2,6,3],"span":[2189,37,38]},{"path":[4,125,2,7],"span":[2190,2,35]},{"path":[4,125,2,7,4],"span":[2190,2,10]},{"path":[4,125,2,7,5],"span":[2190,11,17]},{"path":[4,125,2,7,1],"span":[2190,18,30]},{"path":[4,125,2,7,3],"span":[2190,33,34]},{"path":[4,125,2,8],"span":[2191,2,43]},{"path":[4,125,2,8,4],"span":[2191,2,10]},{"path":[4,125,2,8,5],"span":[2191,11,17]},{"path":[4,125,2,8,1],"span":[2191,18,37]},{"path":[4,125,2,8,3],"span":[2191,40,42]},{"path":[4,125,2,9],"span":[2192,2,35]},{"path":[4,125,2,9,4],"span":[2192,2,10]},{"path":[4,125,2,9,5],"span":[2192,11,17]},{"path":[4,125,2,9,1],"span":[2192,18,29]},{"path":[4,125,2,9,3],"span":[2192,32,34]},{"path":[4,125,2,10],"span":[2193,2,35]},{"path":[4,125,2,10,4],"span":[2193,2,10]},{"path":[4,125,2,10,5],"span":[2193,11,17]},{"path":[4,125,2,10,1],"span":[2193,18,29]},{"path":[4,125,2,10,3],"span":[2193,32,34]},{"path":[4,125,2,11],"span":[2194,2,37]},{"path":[4,125,2,11,4],"span":[2194,2,10]},{"path":[4,125,2,11,5],"span":[2194,11,17]},{"path":[4,125,2,11,1],"span":[2194,18,31]},{"path":[4,125,2,11,3],"span":[2194,34,36]},{"path":[4,125,2,12],"span":[2195,2,40]},{"path":[4,125,2,12,4],"span":[2195,2,10]},{"path":[4,125,2,12,5],"span":[2195,11,17]},{"path":[4,125,2,12,1],"span":[2195,18,34]},{"path":[4,125,2,12,3],"span":[2195,37,39]},{"path":[4,125,2,13],"span":[2196,2,39]},{"path":[4,125,2,13,4],"span":[2196,2,10]},{"path":[4,125,2,13,5],"span":[2196,11,17]},{"path":[4,125,2,13,1],"span":[2196,18,33]},{"path":[4,125,2,13,3],"span":[2196,36,38]},{"path":[4,125,2,14],"span":[2197,2,36]},{"path":[4,125,2,14,4],"span":[2197,2,10]},{"path":[4,125,2,14,5],"span":[2197,11,17]},{"path":[4,125,2,14,1],"span":[2197,18,30]},{"path":[4,125,2,14,3],"span":[2197,33,35]},{"path":[4,125,2,15],"span":[2198,2,43]},{"path":[4,125,2,15,4],"span":[2198,2,10]},{"path":[4,125,2,15,5],"span":[2198,11,17]},{"path":[4,125,2,15,1],"span":[2198,18,37]},{"path":[4,125,2,15,3],"span":[2198,40,42]},{"path":[4,125,2,16],"span":[2199,2,37]},{"path":[4,125,2,16,4],"span":[2199,2,10]},{"path":[4,125,2,16,5],"span":[2199,11,17]},{"path":[4,125,2,16,1],"span":[2199,18,31]},{"path":[4,125,2,16,3],"span":[2199,34,36]},{"path":[4,125,2,17],"span":[2200,2,40]},{"path":[4,125,2,17,4],"span":[2200,2,10]},{"path":[4,125,2,17,5],"span":[2200,11,17]},{"path":[4,125,2,17,1],"span":[2200,18,34]},{"path":[4,125,2,17,3],"span":[2200,37,39]},{"path":[4,125,2,18],"span":[2201,2,41]},{"path":[4,125,2,18,4],"span":[2201,2,10]},{"path":[4,125,2,18,5],"span":[2201,11,17]},{"path":[4,125,2,18,1],"span":[2201,18,35]},{"path":[4,125,2,18,3],"span":[2201,38,40]},{"path":[4,125,2,19],"span":[2202,2,39]},{"path":[4,125,2,19,4],"span":[2202,2,10]},{"path":[4,125,2,19,5],"span":[2202,11,17]},{"path":[4,125,2,19,1],"span":[2202,18,33]},{"path":[4,125,2,19,3],"span":[2202,36,38]},{"path":[4,125,2,20],"span":[2203,2,41]},{"path":[4,125,2,20,4],"span":[2203,2,10]},{"path":[4,125,2,20,5],"span":[2203,11,17]},{"path":[4,125,2,20,1],"span":[2203,18,35]},{"path":[4,125,2,20,3],"span":[2203,38,40]},{"path":[4,125,2,21],"span":[2204,2,38]},{"path":[4,125,2,21,4],"span":[2204,2,10]},{"path":[4,125,2,21,5],"span":[2204,11,17]},{"path":[4,125,2,21,1],"span":[2204,18,32]},{"path":[4,125,2,21,3],"span":[2204,35,37]},{"path":[4,125,2,22],"span":[2206,2,36]},{"path":[4,125,2,22,4],"span":[2206,2,10]},{"path":[4,125,2,22,5],"span":[2206,11,15]},{"path":[4,125,2,22,1],"span":[2206,16,30]},{"path":[4,125,2,22,3],"span":[2206,33,35]},{"path":[4,125,2,23],"span":[2207,2,36]},{"path":[4,125,2,23,4],"span":[2207,2,10]},{"path":[4,125,2,23,5],"span":[2207,11,15]},{"path":[4,125,2,23,1],"span":[2207,16,30]},{"path":[4,125,2,23,3],"span":[2207,33,35]},{"path":[4,125,2,24],"span":[2208,2,36]},{"path":[4,125,2,24,4],"span":[2208,2,10]},{"path":[4,125,2,24,5],"span":[2208,11,15]},{"path":[4,125,2,24,1],"span":[2208,16,30]},{"path":[4,125,2,24,3],"span":[2208,33,35]},{"path":[4,125,2,25],"span":[2209,2,38]},{"path":[4,125,2,25,4],"span":[2209,2,10]},{"path":[4,125,2,25,5],"span":[2209,11,15]},{"path":[4,125,2,25,1],"span":[2209,16,32]},{"path":[4,125,2,25,3],"span":[2209,35,37]},{"path":[4,125,2,26],"span":[2210,2,38]},{"path":[4,125,2,26,4],"span":[2210,2,10]},{"path":[4,125,2,26,5],"span":[2210,11,15]},{"path":[4,125,2,26,1],"span":[2210,16,32]},{"path":[4,125,2,26,3],"span":[2210,35,37]},{"path":[4,125,2,27],"span":[2211,2,38]},{"path":[4,125,2,27,4],"span":[2211,2,10]},{"path":[4,125,2,27,5],"span":[2211,11,15]},{"path":[4,125,2,27,1],"span":[2211,16,32]},{"path":[4,125,2,27,3],"span":[2211,35,37]},{"path":[4,125,2,28],"span":[2213,2,34],"trailingComments":" relevant only in search result\n"},{"path":[4,125,2,28,4],"span":[2213,2,10]},{"path":[4,125,2,28,5],"span":[2213,11,16]},{"path":[4,125,2,28,1],"span":[2213,17,28]},{"path":[4,125,2,28,3],"span":[2213,31,33]},{"path":[4,126],"span":[2216,0,2251,1]},{"path":[4,126,1],"span":[2216,8,20]},{"path":[4,126,2,0],"span":[2217,2,15]},{"path":[4,126,2,0,5],"span":[2217,2,7]},{"path":[4,126,2,0,1],"span":[2217,8,10]},{"path":[4,126,2,0,3],"span":[2217,13,14]},{"path":[4,126,2,1],"span":[2219,2,20]},{"path":[4,126,2,1,5],"span":[2219,2,7]},{"path":[4,126,2,1,1],"span":[2219,8,15]},{"path":[4,126,2,1,3],"span":[2219,18,19]},{"path":[4,126,2,2],"span":[2220,2,26]},{"path":[4,126,2,2,5],"span":[2220,2,8]},{"path":[4,126,2,2,1],"span":[2220,9,21]},{"path":[4,126,2,2,3],"span":[2220,24,25]},{"path":[4,126,2,3],"span":[2222,2,36]},{"path":[4,126,2,3,4],"span":[2222,2,10]},{"path":[4,126,2,3,5],"span":[2222,11,16]},{"path":[4,126,2,3,1],"span":[2222,17,31]},{"path":[4,126,2,3,3],"span":[2222,34,35]},{"path":[4,126,2,4],"span":[2223,2,40]},{"path":[4,126,2,4,4],"span":[2223,2,10]},{"path":[4,126,2,4,5],"span":[2223,11,17]},{"path":[4,126,2,4,1],"span":[2223,18,35]},{"path":[4,126,2,4,3],"span":[2223,38,39]},{"path":[4,126,2,5],"span":[2225,2,32]},{"path":[4,126,2,5,4],"span":[2225,2,10]},{"path":[4,126,2,5,5],"span":[2225,11,16]},{"path":[4,126,2,5,1],"span":[2225,17,26]},{"path":[4,126,2,5,3],"span":[2225,29,31]},{"path":[4,126,2,6],"span":[2226,2,31]},{"path":[4,126,2,6,4],"span":[2226,2,10]},{"path":[4,126,2,6,5],"span":[2226,11,15]},{"path":[4,126,2,6,1],"span":[2226,16,25]},{"path":[4,126,2,6,3],"span":[2226,28,30]},{"path":[4,126,2,7],"span":[2227,2,34]},{"path":[4,126,2,7,4],"span":[2227,2,10]},{"path":[4,126,2,7,5],"span":[2227,11,17]},{"path":[4,126,2,7,1],"span":[2227,18,28]},{"path":[4,126,2,7,3],"span":[2227,31,33]},{"path":[4,126,2,8],"span":[2228,2,31]},{"path":[4,126,2,8,4],"span":[2228,2,10]},{"path":[4,126,2,8,5],"span":[2228,11,17]},{"path":[4,126,2,8,1],"span":[2228,18,25]},{"path":[4,126,2,8,3],"span":[2228,28,30]},{"path":[4,126,2,9],"span":[2229,2,55]},{"path":[4,126,2,9,4],"span":[2229,2,10]},{"path":[4,126,2,9,6],"span":[2229,11,36]},{"path":[4,126,2,9,1],"span":[2229,37,49]},{"path":[4,126,2,9,3],"span":[2229,52,54]},{"path":[4,126,2,10],"span":[2230,2,52]},{"path":[4,126,2,10,4],"span":[2230,2,10]},{"path":[4,126,2,10,6],"span":[2230,11,36]},{"path":[4,126,2,10,1],"span":[2230,37,46]},{"path":[4,126,2,10,3],"span":[2230,49,51]},{"path":[4,126,2,11],"span":[2231,2,51]},{"path":[4,126,2,11,4],"span":[2231,2,10]},{"path":[4,126,2,11,6],"span":[2231,11,36]},{"path":[4,126,2,11,1],"span":[2231,37,45]},{"path":[4,126,2,11,3],"span":[2231,48,50]},{"path":[4,126,2,12],"span":[2232,2,43]},{"path":[4,126,2,12,4],"span":[2232,2,10]},{"path":[4,126,2,12,5],"span":[2232,11,17]},{"path":[4,126,2,12,1],"span":[2232,18,37]},{"path":[4,126,2,12,3],"span":[2232,40,42]},{"path":[4,126,2,13],"span":[2234,2,35]},{"path":[4,126,2,13,4],"span":[2234,2,10]},{"path":[4,126,2,13,5],"span":[2234,11,17]},{"path":[4,126,2,13,1],"span":[2234,18,29]},{"path":[4,126,2,13,3],"span":[2234,32,34]},{"path":[4,126,2,14],"span":[2235,2,37]},{"path":[4,126,2,14,4],"span":[2235,2,10]},{"path":[4,126,2,14,5],"span":[2235,11,17]},{"path":[4,126,2,14,1],"span":[2235,18,31]},{"path":[4,126,2,14,3],"span":[2235,34,36]},{"path":[4,126,2,15],"span":[2237,2,39]},{"path":[4,126,2,15,4],"span":[2237,2,10]},{"path":[4,126,2,15,5],"span":[2237,11,17]},{"path":[4,126,2,15,1],"span":[2237,18,33]},{"path":[4,126,2,15,3],"span":[2237,36,38]},{"path":[4,126,2,16],"span":[2238,2,43]},{"path":[4,126,2,16,4],"span":[2238,2,10]},{"path":[4,126,2,16,5],"span":[2238,11,17]},{"path":[4,126,2,16,1],"span":[2238,18,37]},{"path":[4,126,2,16,3],"span":[2238,40,42]},{"path":[4,126,2,17],"span":[2239,2,38]},{"path":[4,126,2,17,4],"span":[2239,2,10]},{"path":[4,126,2,17,5],"span":[2239,11,17]},{"path":[4,126,2,17,1],"span":[2239,18,32]},{"path":[4,126,2,17,3],"span":[2239,35,37]},{"path":[4,126,2,18],"span":[2240,2,38]},{"path":[4,126,2,18,4],"span":[2240,2,10]},{"path":[4,126,2,18,5],"span":[2240,11,17]},{"path":[4,126,2,18,1],"span":[2240,18,32]},{"path":[4,126,2,18,3],"span":[2240,35,37]},{"path":[4,126,2,19],"span":[2241,2,41]},{"path":[4,126,2,19,4],"span":[2241,2,10]},{"path":[4,126,2,19,5],"span":[2241,11,15]},{"path":[4,126,2,19,1],"span":[2241,18,35]},{"path":[4,126,2,19,3],"span":[2241,38,40]},{"path":[4,126,2,20],"span":[2242,2,42]},{"path":[4,126,2,20,4],"span":[2242,2,10]},{"path":[4,126,2,20,5],"span":[2242,11,17]},{"path":[4,126,2,20,1],"span":[2242,18,36]},{"path":[4,126,2,20,3],"span":[2242,39,41]},{"path":[4,126,2,21],"span":[2244,2,32]},{"path":[4,126,2,21,4],"span":[2244,2,10]},{"path":[4,126,2,21,5],"span":[2244,11,17]},{"path":[4,126,2,21,1],"span":[2244,18,26]},{"path":[4,126,2,21,3],"span":[2244,29,31]},{"path":[4,126,2,22],"span":[2246,2,33]},{"path":[4,126,2,22,4],"span":[2246,2,10]},{"path":[4,126,2,22,5],"span":[2246,11,16]},{"path":[4,126,2,22,1],"span":[2246,17,27]},{"path":[4,126,2,22,3],"span":[2246,30,32]},{"path":[4,126,2,23],"span":[2248,2,59]},{"path":[4,126,2,23,4],"span":[2248,2,10]},{"path":[4,126,2,23,6],"span":[2248,11,36]},{"path":[4,126,2,23,1],"span":[2248,37,53]},{"path":[4,126,2,23,3],"span":[2248,56,58]},{"path":[4,126,2,24],"span":[2250,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,126,2,24,4],"span":[2250,2,10]},{"path":[4,126,2,24,5],"span":[2250,11,16]},{"path":[4,126,2,24,1],"span":[2250,17,28]},{"path":[4,126,2,24,3],"span":[2250,31,33]},{"path":[4,127],"span":[2253,0,2286,1]},{"path":[4,127,1],"span":[2253,8,17]},{"path":[4,127,2,0],"span":[2254,2,15]},{"path":[4,127,2,0,5],"span":[2254,2,7]},{"path":[4,127,2,0,1],"span":[2254,8,10]},{"path":[4,127,2,0,3],"span":[2254,13,14]},{"path":[4,127,2,1],"span":[2256,2,21]},{"path":[4,127,2,1,5],"span":[2256,2,8]},{"path":[4,127,2,1,1],"span":[2256,9,16]},{"path":[4,127,2,1,3],"span":[2256,19,20]},{"path":[4,127,2,2],"span":[2258,2,33]},{"path":[4,127,2,2,4],"span":[2258,2,10]},{"path":[4,127,2,2,5],"span":[2258,11,17]},{"path":[4,127,2,2,1],"span":[2258,18,28]},{"path":[4,127,2,2,3],"span":[2258,31,32]},{"path":[4,127,2,3],"span":[2259,2,32]},{"path":[4,127,2,3,4],"span":[2259,2,10]},{"path":[4,127,2,3,5],"span":[2259,11,17]},{"path":[4,127,2,3,1],"span":[2259,18,26]},{"path":[4,127,2,3,3],"span":[2259,29,31]},{"path":[4,127,2,4],"span":[2260,2,38]},{"path":[4,127,2,4,4],"span":[2260,2,10]},{"path":[4,127,2,4,5],"span":[2260,11,17]},{"path":[4,127,2,4,1],"span":[2260,18,33]},{"path":[4,127,2,4,3],"span":[2260,36,37]},{"path":[4,127,2,5],"span":[2262,2,33]},{"path":[4,127,2,5,4],"span":[2262,2,10]},{"path":[4,127,2,5,5],"span":[2262,11,16]},{"path":[4,127,2,5,1],"span":[2262,17,28]},{"path":[4,127,2,5,3],"span":[2262,31,32]},{"path":[4,127,2,6],"span":[2263,2,29]},{"path":[4,127,2,6,4],"span":[2263,2,10]},{"path":[4,127,2,6,5],"span":[2263,11,16]},{"path":[4,127,2,6,1],"span":[2263,17,24]},{"path":[4,127,2,6,3],"span":[2263,27,28]},{"path":[4,127,2,7],"span":[2264,2,31]},{"path":[4,127,2,7,4],"span":[2264,2,10]},{"path":[4,127,2,7,5],"span":[2264,11,16]},{"path":[4,127,2,7,1],"span":[2264,17,26]},{"path":[4,127,2,7,3],"span":[2264,29,30]},{"path":[4,127,2,8],"span":[2266,2,54]},{"path":[4,127,2,8,4],"span":[2266,2,10]},{"path":[4,127,2,8,6],"span":[2266,11,36]},{"path":[4,127,2,8,1],"span":[2266,37,49]},{"path":[4,127,2,8,3],"span":[2266,52,53]},{"path":[4,127,2,9],"span":[2267,2,51]},{"path":[4,127,2,9,4],"span":[2267,2,10]},{"path":[4,127,2,9,6],"span":[2267,11,36]},{"path":[4,127,2,9,1],"span":[2267,37,45]},{"path":[4,127,2,9,3],"span":[2267,48,50]},{"path":[4,127,2,10],"span":[2268,2,51]},{"path":[4,127,2,10,4],"span":[2268,2,10]},{"path":[4,127,2,10,6],"span":[2268,11,36]},{"path":[4,127,2,10,1],"span":[2268,37,45]},{"path":[4,127,2,10,3],"span":[2268,48,50]},{"path":[4,127,2,11],"span":[2269,2,52]},{"path":[4,127,2,11,4],"span":[2269,2,10]},{"path":[4,127,2,11,6],"span":[2269,11,36]},{"path":[4,127,2,11,1],"span":[2269,37,46]},{"path":[4,127,2,11,3],"span":[2269,49,51]},{"path":[4,127,2,12],"span":[2270,2,43]},{"path":[4,127,2,12,4],"span":[2270,2,10]},{"path":[4,127,2,12,5],"span":[2270,11,17]},{"path":[4,127,2,12,1],"span":[2270,18,37]},{"path":[4,127,2,12,3],"span":[2270,40,42]},{"path":[4,127,2,13],"span":[2271,2,38]},{"path":[4,127,2,13,4],"span":[2271,2,10]},{"path":[4,127,2,13,5],"span":[2271,11,17]},{"path":[4,127,2,13,1],"span":[2271,18,32]},{"path":[4,127,2,13,3],"span":[2271,35,37]},{"path":[4,127,2,14],"span":[2272,2,40]},{"path":[4,127,2,14,4],"span":[2272,2,10]},{"path":[4,127,2,14,5],"span":[2272,11,17]},{"path":[4,127,2,14,1],"span":[2272,18,34]},{"path":[4,127,2,14,3],"span":[2272,37,39]},{"path":[4,127,2,15],"span":[2273,2,36]},{"path":[4,127,2,15,4],"span":[2273,2,10]},{"path":[4,127,2,15,5],"span":[2273,11,17]},{"path":[4,127,2,15,1],"span":[2273,18,30]},{"path":[4,127,2,15,3],"span":[2273,33,35]},{"path":[4,127,2,16],"span":[2274,2,43]},{"path":[4,127,2,16,4],"span":[2274,2,10]},{"path":[4,127,2,16,5],"span":[2274,11,17]},{"path":[4,127,2,16,1],"span":[2274,18,37]},{"path":[4,127,2,16,3],"span":[2274,40,42]},{"path":[4,127,2,17],"span":[2275,2,35]},{"path":[4,127,2,17,4],"span":[2275,2,10]},{"path":[4,127,2,17,5],"span":[2275,11,17]},{"path":[4,127,2,17,1],"span":[2275,18,29]},{"path":[4,127,2,17,3],"span":[2275,32,34]},{"path":[4,127,2,18],"span":[2276,2,35]},{"path":[4,127,2,18,4],"span":[2276,2,10]},{"path":[4,127,2,18,5],"span":[2276,11,17]},{"path":[4,127,2,18,1],"span":[2276,18,29]},{"path":[4,127,2,18,3],"span":[2276,32,34]},{"path":[4,127,2,19],"span":[2277,2,37]},{"path":[4,127,2,19,4],"span":[2277,2,10]},{"path":[4,127,2,19,5],"span":[2277,11,17]},{"path":[4,127,2,19,1],"span":[2277,18,31]},{"path":[4,127,2,19,3],"span":[2277,34,36]},{"path":[4,127,2,20],"span":[2278,2,40]},{"path":[4,127,2,20,4],"span":[2278,2,10]},{"path":[4,127,2,20,5],"span":[2278,11,17]},{"path":[4,127,2,20,1],"span":[2278,18,34]},{"path":[4,127,2,20,3],"span":[2278,37,39]},{"path":[4,127,2,21],"span":[2279,2,39]},{"path":[4,127,2,21,4],"span":[2279,2,10]},{"path":[4,127,2,21,5],"span":[2279,11,17]},{"path":[4,127,2,21,1],"span":[2279,18,33]},{"path":[4,127,2,21,3],"span":[2279,36,38]},{"path":[4,127,2,22],"span":[2281,2,32]},{"path":[4,127,2,22,4],"span":[2281,2,10]},{"path":[4,127,2,22,5],"span":[2281,11,17]},{"path":[4,127,2,22,1],"span":[2281,18,26]},{"path":[4,127,2,22,3],"span":[2281,29,31]},{"path":[4,127,2,23],"span":[2283,2,59]},{"path":[4,127,2,23,4],"span":[2283,2,10]},{"path":[4,127,2,23,6],"span":[2283,11,36]},{"path":[4,127,2,23,1],"span":[2283,37,53]},{"path":[4,127,2,23,3],"span":[2283,56,58]},{"path":[4,127,2,24],"span":[2285,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,127,2,24,4],"span":[2285,2,10]},{"path":[4,127,2,24,5],"span":[2285,11,16]},{"path":[4,127,2,24,1],"span":[2285,17,28]},{"path":[4,127,2,24,3],"span":[2285,31,33]},{"path":[4,128],"span":[2288,0,2318,1]},{"path":[4,128,1],"span":[2288,8,23]},{"path":[4,128,2,0],"span":[2289,2,15]},{"path":[4,128,2,0,5],"span":[2289,2,7]},{"path":[4,128,2,0,1],"span":[2289,8,10]},{"path":[4,128,2,0,3],"span":[2289,13,14]},{"path":[4,128,2,1],"span":[2290,2,21]},{"path":[4,128,2,1,5],"span":[2290,2,8]},{"path":[4,128,2,1,1],"span":[2290,9,16]},{"path":[4,128,2,1,3],"span":[2290,19,20]},{"path":[4,128,2,2],"span":[2292,2,33]},{"path":[4,128,2,2,4],"span":[2292,2,10]},{"path":[4,128,2,2,5],"span":[2292,11,17]},{"path":[4,128,2,2,1],"span":[2292,18,28]},{"path":[4,128,2,2,3],"span":[2292,31,32]},{"path":[4,128,2,3],"span":[2293,2,36]},{"path":[4,128,2,3,4],"span":[2293,2,10]},{"path":[4,128,2,3,5],"span":[2293,11,17]},{"path":[4,128,2,3,1],"span":[2293,18,31]},{"path":[4,128,2,3,3],"span":[2293,34,35]},{"path":[4,128,2,4],"span":[2294,2,33]},{"path":[4,128,2,4,4],"span":[2294,2,10]},{"path":[4,128,2,4,5],"span":[2294,11,17]},{"path":[4,128,2,4,1],"span":[2294,18,28]},{"path":[4,128,2,4,3],"span":[2294,31,32]},{"path":[4,128,2,5],"span":[2295,2,30]},{"path":[4,128,2,5,4],"span":[2295,2,10]},{"path":[4,128,2,5,5],"span":[2295,11,17]},{"path":[4,128,2,5,1],"span":[2295,18,25]},{"path":[4,128,2,5,3],"span":[2295,28,29]},{"path":[4,128,2,6],"span":[2296,2,31]},{"path":[4,128,2,6,4],"span":[2296,2,10]},{"path":[4,128,2,6,5],"span":[2296,11,17]},{"path":[4,128,2,6,1],"span":[2296,18,26]},{"path":[4,128,2,6,3],"span":[2296,29,30]},{"path":[4,128,2,7],"span":[2298,2,29]},{"path":[4,128,2,7,4],"span":[2298,2,10]},{"path":[4,128,2,7,5],"span":[2298,11,16]},{"path":[4,128,2,7,1],"span":[2298,17,24]},{"path":[4,128,2,7,3],"span":[2298,27,28]},{"path":[4,128,2,8],"span":[2299,2,31]},{"path":[4,128,2,8,4],"span":[2299,2,10]},{"path":[4,128,2,8,5],"span":[2299,11,16]},{"path":[4,128,2,8,1],"span":[2299,17,26]},{"path":[4,128,2,8,3],"span":[2299,29,30]},{"path":[4,128,2,9],"span":[2300,2,32]},{"path":[4,128,2,9,4],"span":[2300,2,10]},{"path":[4,128,2,9,5],"span":[2300,11,16]},{"path":[4,128,2,9,1],"span":[2300,17,26]},{"path":[4,128,2,9,3],"span":[2300,29,31]},{"path":[4,128,2,10],"span":[2302,2,31]},{"path":[4,128,2,10,4],"span":[2302,2,10]},{"path":[4,128,2,10,5],"span":[2302,11,17]},{"path":[4,128,2,10,1],"span":[2302,18,25]},{"path":[4,128,2,10,3],"span":[2302,28,30]},{"path":[4,128,2,11],"span":[2303,2,35]},{"path":[4,128,2,11,4],"span":[2303,2,10]},{"path":[4,128,2,11,5],"span":[2303,11,17]},{"path":[4,128,2,11,1],"span":[2303,18,29]},{"path":[4,128,2,11,3],"span":[2303,32,34]},{"path":[4,128,2,12],"span":[2305,2,55]},{"path":[4,128,2,12,4],"span":[2305,2,10]},{"path":[4,128,2,12,6],"span":[2305,11,36]},{"path":[4,128,2,12,1],"span":[2305,37,49]},{"path":[4,128,2,12,3],"span":[2305,52,54]},{"path":[4,128,2,13],"span":[2306,2,51]},{"path":[4,128,2,13,4],"span":[2306,2,10]},{"path":[4,128,2,13,6],"span":[2306,11,36]},{"path":[4,128,2,13,1],"span":[2306,37,45]},{"path":[4,128,2,13,3],"span":[2306,48,50]},{"path":[4,128,2,14],"span":[2307,2,51]},{"path":[4,128,2,14,4],"span":[2307,2,10]},{"path":[4,128,2,14,6],"span":[2307,11,36]},{"path":[4,128,2,14,1],"span":[2307,37,45]},{"path":[4,128,2,14,3],"span":[2307,48,50]},{"path":[4,128,2,15],"span":[2308,2,52]},{"path":[4,128,2,15,4],"span":[2308,2,10]},{"path":[4,128,2,15,6],"span":[2308,11,36]},{"path":[4,128,2,15,1],"span":[2308,37,46]},{"path":[4,128,2,15,3],"span":[2308,49,51]},{"path":[4,128,2,16],"span":[2309,2,43]},{"path":[4,128,2,16,4],"span":[2309,2,10]},{"path":[4,128,2,16,5],"span":[2309,11,17]},{"path":[4,128,2,16,1],"span":[2309,18,37]},{"path":[4,128,2,16,3],"span":[2309,40,42]},{"path":[4,128,2,17],"span":[2311,2,33]},{"path":[4,128,2,17,4],"span":[2311,2,10]},{"path":[4,128,2,17,5],"span":[2311,11,15]},{"path":[4,128,2,17,1],"span":[2311,16,27]},{"path":[4,128,2,17,3],"span":[2311,30,32]},{"path":[4,128,2,18],"span":[2312,2,37]},{"path":[4,128,2,18,4],"span":[2312,2,10]},{"path":[4,128,2,18,5],"span":[2312,11,15]},{"path":[4,128,2,18,1],"span":[2312,16,31]},{"path":[4,128,2,18,3],"span":[2312,34,36]},{"path":[4,128,2,19],"span":[2313,2,37]},{"path":[4,128,2,19,4],"span":[2313,2,10]},{"path":[4,128,2,19,5],"span":[2313,11,15]},{"path":[4,128,2,19,1],"span":[2313,16,31]},{"path":[4,128,2,19,3],"span":[2313,34,36]},{"path":[4,128,2,20],"span":[2315,2,59]},{"path":[4,128,2,20,4],"span":[2315,2,10]},{"path":[4,128,2,20,6],"span":[2315,11,36]},{"path":[4,128,2,20,1],"span":[2315,37,53]},{"path":[4,128,2,20,3],"span":[2315,56,58]},{"path":[4,128,2,21],"span":[2317,2,35],"trailingComments":" filled only when a result of search\n"},{"path":[4,128,2,21,4],"span":[2317,2,10]},{"path":[4,128,2,21,5],"span":[2317,11,16]},{"path":[4,128,2,21,1],"span":[2317,17,28]},{"path":[4,128,2,21,3],"span":[2317,31,34]},{"path":[4,129],"span":[2320,0,2376,1]},{"path":[4,129,1],"span":[2320,8,22]},{"path":[4,129,2,0],"span":[2321,2,16]},{"path":[4,129,2,0,5],"span":[2321,2,7]},{"path":[4,129,2,0,1],"span":[2321,9,11]},{"path":[4,129,2,0,3],"span":[2321,14,15]},{"path":[4,129,2,1],"span":[2323,2,19]},{"path":[4,129,2,1,5],"span":[2323,2,8]},{"path":[4,129,2,1,1],"span":[2323,9,14]},{"path":[4,129,2,1,3],"span":[2323,17,18]},{"path":[4,129,2,2],"span":[2324,2,32]},{"path":[4,129,2,2,4],"span":[2324,2,10]},{"path":[4,129,2,2,5],"span":[2324,11,17]},{"path":[4,129,2,2,1],"span":[2324,18,27]},{"path":[4,129,2,2,3],"span":[2324,30,31]},{"path":[4,129,2,3],"span":[2325,2,29]},{"path":[4,129,2,3,4],"span":[2325,2,10]},{"path":[4,129,2,3,5],"span":[2325,11,16]},{"path":[4,129,2,3,1],"span":[2325,17,24]},{"path":[4,129,2,3,3],"span":[2325,27,28]},{"path":[4,129,2,4],"span":[2327,2,31]},{"path":[4,129,2,4,4],"span":[2327,2,10]},{"path":[4,129,2,4,5],"span":[2327,11,16]},{"path":[4,129,2,4,1],"span":[2327,17,26]},{"path":[4,129,2,4,3],"span":[2327,29,30]},{"path":[4,129,2,5],"span":[2328,2,30]},{"path":[4,129,2,5,4],"span":[2328,2,10]},{"path":[4,129,2,5,5],"span":[2328,11,15]},{"path":[4,129,2,5,1],"span":[2328,16,25]},{"path":[4,129,2,5,3],"span":[2328,28,29]},{"path":[4,129,2,6],"span":[2329,2,36]},{"path":[4,129,2,6,4],"span":[2329,2,10]},{"path":[4,129,2,6,5],"span":[2329,11,17]},{"path":[4,129,2,6,1],"span":[2329,18,31]},{"path":[4,129,2,6,3],"span":[2329,34,35]},{"path":[4,129,2,7],"span":[2330,2,35]},{"path":[4,129,2,7,4],"span":[2330,2,10]},{"path":[4,129,2,7,5],"span":[2330,11,17]},{"path":[4,129,2,7,1],"span":[2330,18,30]},{"path":[4,129,2,7,3],"span":[2330,33,34]},{"path":[4,129,2,8],"span":[2332,2,33]},{"path":[4,129,2,8,4],"span":[2332,2,10]},{"path":[4,129,2,8,5],"span":[2332,11,17]},{"path":[4,129,2,8,1],"span":[2332,18,27]},{"path":[4,129,2,8,3],"span":[2332,30,32]},{"path":[4,129,2,9],"span":[2333,2,38]},{"path":[4,129,2,9,4],"span":[2333,2,10]},{"path":[4,129,2,9,5],"span":[2333,11,17]},{"path":[4,129,2,9,1],"span":[2333,18,32]},{"path":[4,129,2,9,3],"span":[2333,35,37]},{"path":[4,129,2,10],"span":[2334,2,36]},{"path":[4,129,2,10,4],"span":[2334,2,10]},{"path":[4,129,2,10,5],"span":[2334,11,17]},{"path":[4,129,2,10,1],"span":[2334,18,30]},{"path":[4,129,2,10,3],"span":[2334,33,35]},{"path":[4,129,2,11],"span":[2335,2,40]},{"path":[4,129,2,11,4],"span":[2335,2,10]},{"path":[4,129,2,11,5],"span":[2335,11,17]},{"path":[4,129,2,11,1],"span":[2335,18,34]},{"path":[4,129,2,11,3],"span":[2335,37,39]},{"path":[4,129,2,12],"span":[2336,2,31]},{"path":[4,129,2,12,4],"span":[2336,2,10]},{"path":[4,129,2,12,5],"span":[2336,11,17]},{"path":[4,129,2,12,1],"span":[2336,18,25]},{"path":[4,129,2,12,3],"span":[2336,28,30]},{"path":[4,129,2,13],"span":[2337,2,36]},{"path":[4,129,2,13,4],"span":[2337,2,10]},{"path":[4,129,2,13,5],"span":[2337,11,17]},{"path":[4,129,2,13,1],"span":[2337,18,30]},{"path":[4,129,2,13,3],"span":[2337,33,35]},{"path":[4,129,2,14],"span":[2338,2,35]},{"path":[4,129,2,14,4],"span":[2338,2,10]},{"path":[4,129,2,14,5],"span":[2338,11,16]},{"path":[4,129,2,14,1],"span":[2338,17,29]},{"path":[4,129,2,14,3],"span":[2338,32,34]},{"path":[4,129,2,15],"span":[2339,2,29]},{"path":[4,129,2,15,4],"span":[2339,2,10]},{"path":[4,129,2,15,5],"span":[2339,11,17]},{"path":[4,129,2,15,1],"span":[2339,18,23]},{"path":[4,129,2,15,3],"span":[2339,26,28]},{"path":[4,129,2,16],"span":[2340,2,33]},{"path":[4,129,2,16,4],"span":[2340,2,10]},{"path":[4,129,2,16,5],"span":[2340,11,17]},{"path":[4,129,2,16,1],"span":[2340,18,27]},{"path":[4,129,2,16,3],"span":[2340,30,32]},{"path":[4,129,2,17],"span":[2341,2,32]},{"path":[4,129,2,17,4],"span":[2341,2,10]},{"path":[4,129,2,17,5],"span":[2341,11,17]},{"path":[4,129,2,17,1],"span":[2341,18,26]},{"path":[4,129,2,17,3],"span":[2341,29,31]},{"path":[4,129,2,18],"span":[2342,2,35]},{"path":[4,129,2,18,4],"span":[2342,2,10]},{"path":[4,129,2,18,5],"span":[2342,11,17]},{"path":[4,129,2,18,1],"span":[2342,18,29]},{"path":[4,129,2,18,3],"span":[2342,32,34]},{"path":[4,129,2,19],"span":[2344,2,36]},{"path":[4,129,2,19,4],"span":[2344,2,10]},{"path":[4,129,2,19,5],"span":[2344,11,17]},{"path":[4,129,2,19,1],"span":[2344,18,30]},{"path":[4,129,2,19,3],"span":[2344,33,35]},{"path":[4,129,2,20],"span":[2345,2,38]},{"path":[4,129,2,20,4],"span":[2345,2,10]},{"path":[4,129,2,20,5],"span":[2345,11,16]},{"path":[4,129,2,20,1],"span":[2345,17,32]},{"path":[4,129,2,20,3],"span":[2345,35,37]},{"path":[4,129,2,21],"span":[2346,2,47]},{"path":[4,129,2,21,4],"span":[2346,2,10]},{"path":[4,129,2,21,5],"span":[2346,11,16]},{"path":[4,129,2,21,1],"span":[2346,17,41]},{"path":[4,129,2,21,3],"span":[2346,44,46]},{"path":[4,129,2,22],"span":[2347,2,30]},{"path":[4,129,2,22,4],"span":[2347,2,10]},{"path":[4,129,2,22,5],"span":[2347,11,16]},{"path":[4,129,2,22,1],"span":[2347,17,24]},{"path":[4,129,2,22,3],"span":[2347,27,29]},{"path":[4,129,2,23],"span":[2348,2,29]},{"path":[4,129,2,23,4],"span":[2348,2,10]},{"path":[4,129,2,23,5],"span":[2348,11,16]},{"path":[4,129,2,23,1],"span":[2348,17,23]},{"path":[4,129,2,23,3],"span":[2348,26,28]},{"path":[4,129,2,24],"span":[2349,2,29]},{"path":[4,129,2,24,4],"span":[2349,2,10]},{"path":[4,129,2,24,5],"span":[2349,11,16]},{"path":[4,129,2,24,1],"span":[2349,17,23]},{"path":[4,129,2,24,3],"span":[2349,26,28]},{"path":[4,129,2,25],"span":[2350,2,36]},{"path":[4,129,2,25,4],"span":[2350,2,10]},{"path":[4,129,2,25,5],"span":[2350,11,17]},{"path":[4,129,2,25,1],"span":[2350,18,30]},{"path":[4,129,2,25,3],"span":[2350,33,35]},{"path":[4,129,2,26],"span":[2351,2,39]},{"path":[4,129,2,26,4],"span":[2351,2,10]},{"path":[4,129,2,26,5],"span":[2351,11,16]},{"path":[4,129,2,26,1],"span":[2351,17,33]},{"path":[4,129,2,26,3],"span":[2351,36,38]},{"path":[4,129,2,27],"span":[2352,2,44]},{"path":[4,129,2,27,4],"span":[2352,2,10]},{"path":[4,129,2,27,5],"span":[2352,11,17]},{"path":[4,129,2,27,1],"span":[2352,18,38]},{"path":[4,129,2,27,3],"span":[2352,41,43]},{"path":[4,129,2,28],"span":[2354,2,36]},{"path":[4,129,2,28,4],"span":[2354,2,10]},{"path":[4,129,2,28,5],"span":[2354,11,17]},{"path":[4,129,2,28,1],"span":[2354,18,30]},{"path":[4,129,2,28,3],"span":[2354,33,35]},{"path":[4,129,2,29],"span":[2355,2,37]},{"path":[4,129,2,29,4],"span":[2355,2,10]},{"path":[4,129,2,29,5],"span":[2355,11,16]},{"path":[4,129,2,29,1],"span":[2355,17,31]},{"path":[4,129,2,29,3],"span":[2355,34,36]},{"path":[4,129,2,30],"span":[2356,2,42]},{"path":[4,129,2,30,4],"span":[2356,2,10]},{"path":[4,129,2,30,5],"span":[2356,11,17]},{"path":[4,129,2,30,1],"span":[2356,18,36]},{"path":[4,129,2,30,3],"span":[2356,39,41]},{"path":[4,129,2,31],"span":[2357,2,38]},{"path":[4,129,2,31,4],"span":[2357,2,10]},{"path":[4,129,2,31,5],"span":[2357,11,17]},{"path":[4,129,2,31,1],"span":[2357,18,32]},{"path":[4,129,2,31,3],"span":[2357,35,37]},{"path":[4,129,2,32],"span":[2358,2,42]},{"path":[4,129,2,32,4],"span":[2358,2,10]},{"path":[4,129,2,32,5],"span":[2358,11,17]},{"path":[4,129,2,32,1],"span":[2358,18,36]},{"path":[4,129,2,32,3],"span":[2358,39,41]},{"path":[4,129,2,33],"span":[2359,2,39]},{"path":[4,129,2,33,4],"span":[2359,2,10]},{"path":[4,129,2,33,5],"span":[2359,11,17]},{"path":[4,129,2,33,1],"span":[2359,18,33]},{"path":[4,129,2,33,3],"span":[2359,36,38]},{"path":[4,129,2,34],"span":[2360,2,34]},{"path":[4,129,2,34,4],"span":[2360,2,10]},{"path":[4,129,2,34,5],"span":[2360,11,17]},{"path":[4,129,2,34,1],"span":[2360,18,28]},{"path":[4,129,2,34,3],"span":[2360,31,33]},{"path":[4,129,2,35],"span":[2361,2,34]},{"path":[4,129,2,35,4],"span":[2361,2,10]},{"path":[4,129,2,35,5],"span":[2361,11,17]},{"path":[4,129,2,35,1],"span":[2361,18,28]},{"path":[4,129,2,35,3],"span":[2361,31,33]},{"path":[4,129,2,36],"span":[2362,2,33]},{"path":[4,129,2,36,4],"span":[2362,2,10]},{"path":[4,129,2,36,5],"span":[2362,11,17]},{"path":[4,129,2,36,1],"span":[2362,18,27]},{"path":[4,129,2,36,3],"span":[2362,30,32]},{"path":[4,129,2,37],"span":[2364,2,33]},{"path":[4,129,2,37,4],"span":[2364,2,10]},{"path":[4,129,2,37,5],"span":[2364,11,15]},{"path":[4,129,2,37,1],"span":[2364,16,27]},{"path":[4,129,2,37,3],"span":[2364,30,32]},{"path":[4,129,2,38],"span":[2365,2,36]},{"path":[4,129,2,38,4],"span":[2365,2,10]},{"path":[4,129,2,38,5],"span":[2365,11,15]},{"path":[4,129,2,38,1],"span":[2365,16,30]},{"path":[4,129,2,38,3],"span":[2365,33,35]},{"path":[4,129,2,39],"span":[2366,2,38]},{"path":[4,129,2,39,4],"span":[2366,2,10]},{"path":[4,129,2,39,5],"span":[2366,11,15]},{"path":[4,129,2,39,1],"span":[2366,16,32]},{"path":[4,129,2,39,3],"span":[2366,35,37]},{"path":[4,129,2,40],"span":[2367,2,34]},{"path":[4,129,2,40,4],"span":[2367,2,10]},{"path":[4,129,2,40,5],"span":[2367,11,15]},{"path":[4,129,2,40,1],"span":[2367,16,28]},{"path":[4,129,2,40,3],"span":[2367,31,33]},{"path":[4,129,2,41],"span":[2368,2,33]},{"path":[4,129,2,41,4],"span":[2368,2,10]},{"path":[4,129,2,41,5],"span":[2368,11,15]},{"path":[4,129,2,41,1],"span":[2368,16,27]},{"path":[4,129,2,41,3],"span":[2368,30,32]},{"path":[4,129,2,42],"span":[2369,2,38]},{"path":[4,129,2,42,4],"span":[2369,2,10]},{"path":[4,129,2,42,5],"span":[2369,11,15]},{"path":[4,129,2,42,1],"span":[2369,16,32]},{"path":[4,129,2,42,3],"span":[2369,35,37]},{"path":[4,129,2,43],"span":[2370,2,36]},{"path":[4,129,2,43,4],"span":[2370,2,10]},{"path":[4,129,2,43,5],"span":[2370,11,15]},{"path":[4,129,2,43,1],"span":[2370,16,30]},{"path":[4,129,2,43,3],"span":[2370,33,35]},{"path":[4,129,2,44],"span":[2372,2,59]},{"path":[4,129,2,44,4],"span":[2372,2,10]},{"path":[4,129,2,44,6],"span":[2372,11,36]},{"path":[4,129,2,44,1],"span":[2372,37,53]},{"path":[4,129,2,44,3],"span":[2372,56,58]},{"path":[4,129,2,45],"span":[2374,2,35],"trailingComments":" filled only when a result of search\n"},{"path":[4,129,2,45,4],"span":[2374,2,10]},{"path":[4,129,2,45,5],"span":[2374,11,16]},{"path":[4,129,2,45,1],"span":[2374,17,28]},{"path":[4,129,2,45,3],"span":[2374,31,34]},{"path":[4,130],"span":[2384,0,2386,1],"leadingComments":"\n IP location management\n","leadingDetachedComments":[" ---------------------------------------------------------------------------------------------------------------------\n"]},{"path":[4,130,1],"span":[2384,8,35]},{"path":[4,130,2,0],"span":[2385,2,39]},{"path":[4,130,2,0,4],"span":[2385,2,10]},{"path":[4,130,2,0,6],"span":[2385,11,27]},{"path":[4,130,2,0,1],"span":[2385,28,34]},{"path":[4,130,2,0,3],"span":[2385,37,38]},{"path":[4,131],"span":[2388,0,2390,1]},{"path":[4,131,1],"span":[2388,8,34]},{"path":[4,131,2,0],"span":[2389,2,39]},{"path":[4,131,2,0,4],"span":[2389,2,10]},{"path":[4,131,2,0,6],"span":[2389,11,27]},{"path":[4,131,2,0,1],"span":[2389,28,34]},{"path":[4,131,2,0,3],"span":[2389,37,38]},{"path":[4,132],"span":[2392,0,2394,1]},{"path":[4,132,1],"span":[2392,8,35]},{"path":[4,132,2,0],"span":[2393,2,14]},{"path":[4,132,2,0,5],"span":[2393,2,6]},{"path":[4,132,2,0,1],"span":[2393,7,9]},{"path":[4,132,2,0,3],"span":[2393,12,13]},{"path":[4,133],"span":[2399,0,2415,1],"leadingComments":"\n Configuration of rules for IP location.\n"},{"path":[4,133,1],"span":[2399,8,24]},{"path":[4,133,2,0],"span":[2401,2,18],"trailingComments":" IP location name, to set when match\n"},{"path":[4,133,2,0,5],"span":[2401,2,8]},{"path":[4,133,2,0,1],"span":[2401,9,13]},{"path":[4,133,2,0,3],"span":[2401,16,17]},{"path":[4,133,2,1],"span":[2404,2,36],"leadingComments":" Local IP Address filter\n"},{"path":[4,133,2,1,4],"span":[2404,2,10]},{"path":[4,133,2,1,5],"span":[2404,11,17]},{"path":[4,133,2,1,1],"span":[2404,18,31]},{"path":[4,133,2,1,3],"span":[2404,34,35]},{"path":[4,133,2,2],"span":[2405,2,37]},{"path":[4,133,2,2,4],"span":[2405,2,10]},{"path":[4,133,2,2,5],"span":[2405,11,17]},{"path":[4,133,2,2,1],"span":[2405,18,32]},{"path":[4,133,2,2,3],"span":[2405,35,36]},{"path":[4,133,2,3],"span":[2406,2,35]},{"path":[4,133,2,3,4],"span":[2406,2,10]},{"path":[4,133,2,3,5],"span":[2406,11,17]},{"path":[4,133,2,3,1],"span":[2406,18,30]},{"path":[4,133,2,3,3],"span":[2406,33,34]},{"path":[4,133,2,4],"span":[2408,2,32],"trailingComments":" source id / name (optional in vNext, this was mandatory in LS-classic)\n"},{"path":[4,133,2,4,4],"span":[2408,2,10]},{"path":[4,133,2,4,5],"span":[2408,11,17]},{"path":[4,133,2,4,1],"span":[2408,18,27]},{"path":[4,133,2,4,3],"span":[2408,30,31]},{"path":[4,133,2,5],"span":[2411,2,39],"leadingComments":" Internet public rules: vNext new\n"},{"path":[4,133,2,5,4],"span":[2411,2,10]},{"path":[4,133,2,5,5],"span":[2411,11,17]},{"path":[4,133,2,5,1],"span":[2411,18,34]},{"path":[4,133,2,5,3],"span":[2411,37,38]},{"path":[4,133,2,6],"span":[2412,2,44]},{"path":[4,133,2,6,4],"span":[2412,2,10]},{"path":[4,133,2,6,5],"span":[2412,11,17]},{"path":[4,133,2,6,1],"span":[2412,18,39]},{"path":[4,133,2,6,3],"span":[2412,42,43]},{"path":[4,133,2,7],"span":[2413,2,44]},{"path":[4,133,2,7,4],"span":[2413,2,10]},{"path":[4,133,2,7,5],"span":[2413,11,17]},{"path":[4,133,2,7,1],"span":[2413,18,39]},{"path":[4,133,2,7,3],"span":[2413,42,43]}]},"syntax":"proto3","bufExtension":{"isImport":false,"isSyntaxUnspecified":false}}]}
|