@lansweeper/data-platform-outbound-grpc 0.1.62 → 0.1.64

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- {"file":[{"name":"google/protobuf/timestamp.proto","package":"google.protobuf","messageType":[{"name":"Timestamp","field":[{"name":"seconds","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"seconds"},{"name":"nanos","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"nanos"}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"TimestampProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/timestamppb","ccEnableArenas":true,"objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"sourceCodeInfo":{"location":[{"span":[30,0,146,1]},{"path":[12],"span":[30,0,18],"leadingDetachedComments":[" Protocol Buffers - Google's data interchange format\n Copyright 2008 Google Inc. All rights reserved.\n https://developers.google.com/protocol-buffers/\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"]},{"path":[2],"span":[32,0,24]},{"path":[8],"span":[34,0,59]},{"path":[8,37],"span":[34,0,59]},{"path":[8],"span":[35,0,31]},{"path":[8,31],"span":[35,0,31]},{"path":[8],"span":[36,0,73]},{"path":[8,11],"span":[36,0,73]},{"path":[8],"span":[37,0,44]},{"path":[8,1],"span":[37,0,44]},{"path":[8],"span":[38,0,47]},{"path":[8,8],"span":[38,0,47]},{"path":[8],"span":[39,0,34]},{"path":[8,10],"span":[39,0,34]},{"path":[8],"span":[40,0,33]},{"path":[8,36],"span":[40,0,33]},{"path":[4,0],"span":[135,0,146,1],"leadingComments":" A Timestamp represents a point in time independent of any time zone or local\n calendar, encoded as a count of seconds and fractions of seconds at\n nanosecond resolution. The count is relative to an epoch at UTC midnight on\n January 1, 1970, in the proleptic Gregorian calendar which extends the\n Gregorian calendar backwards to year one.\n\n All minutes are 60 seconds long. Leap seconds are \"smeared\" so that no leap\n second table is needed for interpretation, using a [24-hour linear\n smear](https://developers.google.com/time/smear).\n\n The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By\n restricting to that range, we ensure that we can convert to and from [RFC\n 3339](https://www.ietf.org/rfc/rfc3339.txt) date strings.\n\n # Examples\n\n Example 1: Compute Timestamp from POSIX `time()`.\n\n Timestamp timestamp;\n timestamp.set_seconds(time(NULL));\n timestamp.set_nanos(0);\n\n Example 2: Compute Timestamp from POSIX `gettimeofday()`.\n\n struct timeval tv;\n gettimeofday(&tv, NULL);\n\n Timestamp timestamp;\n timestamp.set_seconds(tv.tv_sec);\n timestamp.set_nanos(tv.tv_usec * 1000);\n\n Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`.\n\n FILETIME ft;\n GetSystemTimeAsFileTime(&ft);\n UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime;\n\n // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z\n // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.\n Timestamp timestamp;\n timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL));\n timestamp.set_nanos((INT32) ((ticks % 10000000) * 100));\n\n Example 4: Compute Timestamp from Java `System.currentTimeMillis()`.\n\n long millis = System.currentTimeMillis();\n\n Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)\n .setNanos((int) ((millis % 1000) * 1000000)).build();\n\n\n Example 5: Compute Timestamp from Java `Instant.now()`.\n\n Instant now = Instant.now();\n\n Timestamp timestamp =\n Timestamp.newBuilder().setSeconds(now.getEpochSecond())\n .setNanos(now.getNano()).build();\n\n\n Example 6: Compute Timestamp from current time in Python.\n\n timestamp = Timestamp()\n timestamp.GetCurrentTime()\n\n # JSON Mapping\n\n In JSON format, the Timestamp type is encoded as a string in the\n [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the\n format is \"{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z\"\n where {year} is always expressed using four digits while {month}, {day},\n {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional\n seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution),\n are optional. The \"Z\" suffix indicates the timezone (\"UTC\"); the timezone\n is required. A proto3 JSON serializer should always use UTC (as indicated by\n \"Z\") when printing the Timestamp type and a proto3 JSON parser should be\n able to accept both UTC and other timezones (as indicated by an offset).\n\n For example, \"2017-01-15T01:30:15.01Z\" encodes 15.01 seconds past\n 01:30 UTC on January 15, 2017.\n\n In JavaScript, one can convert a Date object to this format using the\n standard\n [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString)\n method. In Python, a standard `datetime.datetime` object can be converted\n to this format using\n [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with\n the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use\n the Joda Time's [`ISODateTimeFormat.dateTime()`](\n http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D\n ) to obtain a formatter capable of generating timestamps in this format.\n\n\n"},{"path":[4,0,1],"span":[135,8,17]},{"path":[4,0,2,0],"span":[139,2,20],"leadingComments":" Represents seconds of UTC time since Unix epoch\n 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to\n 9999-12-31T23:59:59Z inclusive.\n"},{"path":[4,0,2,0,5],"span":[139,2,7]},{"path":[4,0,2,0,1],"span":[139,8,15]},{"path":[4,0,2,0,3],"span":[139,18,19]},{"path":[4,0,2,1],"span":[145,2,18],"leadingComments":" Non-negative fractions of a second at nanosecond resolution. Negative\n second values with fractions must still have non-negative nanos values\n that count forward in time. Must be from 0 to 999,999,999\n inclusive.\n"},{"path":[4,0,2,1,5],"span":[145,2,7]},{"path":[4,0,2,1,1],"span":[145,8,13]},{"path":[4,0,2,1,3],"span":[145,16,17]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"google/protobuf/any.proto","package":"google.protobuf","messageType":[{"name":"Any","field":[{"name":"type_url","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"typeUrl"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"value"}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"AnyProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/anypb","objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"sourceCodeInfo":{"location":[{"span":[30,0,157,1]},{"path":[12],"span":[30,0,18],"leadingDetachedComments":[" Protocol Buffers - Google's data interchange format\n Copyright 2008 Google Inc. All rights reserved.\n https://developers.google.com/protocol-buffers/\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"]},{"path":[2],"span":[32,0,24]},{"path":[8],"span":[34,0,59]},{"path":[8,37],"span":[34,0,59]},{"path":[8],"span":[35,0,67]},{"path":[8,11],"span":[35,0,67]},{"path":[8],"span":[36,0,44]},{"path":[8,1],"span":[36,0,44]},{"path":[8],"span":[37,0,41]},{"path":[8,8],"span":[37,0,41]},{"path":[8],"span":[38,0,34]},{"path":[8,10],"span":[38,0,34]},{"path":[8],"span":[39,0,33]},{"path":[8,36],"span":[39,0,33]},{"path":[4,0],"span":[124,0,157,1],"leadingComments":" `Any` contains an arbitrary serialized protocol buffer message along with a\n URL that describes the type of the serialized message.\n\n Protobuf library provides support to pack/unpack Any values in the form\n of utility functions or additional generated methods of the Any type.\n\n Example 1: Pack and unpack a message in C++.\n\n Foo foo = ...;\n Any any;\n any.PackFrom(foo);\n ...\n if (any.UnpackTo(&foo)) {\n ...\n }\n\n Example 2: Pack and unpack a message in Java.\n\n Foo foo = ...;\n Any any = Any.pack(foo);\n ...\n if (any.is(Foo.class)) {\n foo = any.unpack(Foo.class);\n }\n\n Example 3: Pack and unpack a message in Python.\n\n foo = Foo(...)\n any = Any()\n any.Pack(foo)\n ...\n if any.Is(Foo.DESCRIPTOR):\n any.Unpack(foo)\n ...\n\n Example 4: Pack and unpack a message in Go\n\n foo := &pb.Foo{...}\n any, err := anypb.New(foo)\n if err != nil {\n ...\n }\n ...\n foo := &pb.Foo{}\n if err := any.UnmarshalTo(foo); err != nil {\n ...\n }\n\n The pack methods provided by protobuf library will by default use\n 'type.googleapis.com/full.type.name' as the type URL and the unpack\n methods only use the fully qualified type name after the last '/'\n in the type URL, for example \"foo.bar.com/x/y.z\" will yield type\n name \"y.z\".\n\n\n JSON\n ====\n The JSON representation of an `Any` value uses the regular\n representation of the deserialized, embedded message, with an\n additional field `@type` which contains the type URL. Example:\n\n package google.profile;\n message Person {\n string first_name = 1;\n string last_name = 2;\n }\n\n {\n \"@type\": \"type.googleapis.com/google.profile.Person\",\n \"firstName\": <string>,\n \"lastName\": <string>\n }\n\n If the embedded message type is well-known and has a custom JSON\n representation, that representation will be embedded adding a field\n `value` which holds the custom JSON in addition to the `@type`\n field. Example (for message [google.protobuf.Duration][]):\n\n {\n \"@type\": \"type.googleapis.com/google.protobuf.Duration\",\n \"value\": \"1.212s\"\n }\n\n"},{"path":[4,0,1],"span":[124,8,11]},{"path":[4,0,2,0],"span":[153,2,22],"leadingComments":" A URL/resource name that uniquely identifies the type of the serialized\n protocol buffer message. This string must contain at least\n one \"/\" character. The last segment of the URL's path must represent\n the fully qualified name of the type (as in\n `path/google.protobuf.Duration`). The name should be in a canonical form\n (e.g., leading \".\" is not accepted).\n\n In practice, teams usually precompile into the binary all types that they\n expect it to use in the context of Any. However, for URLs which use the\n scheme `http`, `https`, or no scheme, one can optionally set up a type\n server that maps type URLs to message definitions as follows:\n\n * If no scheme is provided, `https` is assumed.\n * An HTTP GET on the URL must yield a [google.protobuf.Type][]\n value in binary format, or produce an error.\n * Applications are allowed to cache lookup results based on the\n URL, or have them precompiled into a binary to avoid any\n lookup. Therefore, binary compatibility needs to be preserved\n on changes to types. (Use versioned type names to manage\n breaking changes.)\n\n Note: this functionality is not currently available in the official\n protobuf release, and it is not used for type URLs beginning with\n type.googleapis.com.\n\n Schemes other than `http`, `https` (or the empty scheme) might be\n used with implementation specific semantics.\n\n"},{"path":[4,0,2,0,5],"span":[153,2,8]},{"path":[4,0,2,0,1],"span":[153,9,17]},{"path":[4,0,2,0,3],"span":[153,20,21]},{"path":[4,0,2,1],"span":[156,2,18],"leadingComments":" Must be a valid serialized protocol buffer of the above specified type.\n"},{"path":[4,0,2,1,5],"span":[156,2,7]},{"path":[4,0,2,1,1],"span":[156,8,13]},{"path":[4,0,2,1,3],"span":[156,16,17]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"proto/outbound.proto","package":"com.lansweeper.dp.outbound.v1","dependency":["google/protobuf/timestamp.proto","google/protobuf/any.proto"],"messageType":[{"name":"GetEntityRequest","field":[{"name":"entity_path","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","jsonName":"entityPath"}]},{"name":"GetEntityResponse","field":[{"name":"success","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"success"},{"name":"error_description","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"errorDescription","proto3Optional":true},{"name":"entity","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","oneofIndex":1,"jsonName":"entity","proto3Optional":true},{"name":"related","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","jsonName":"related"}],"oneofDecl":[{"name":"_error_description"},{"name":"_entity"}]},{"name":"ListEntityRequest","field":[{"name":"filter","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.EntityPath","jsonName":"filter"}]},{"name":"ListEntityResponse","field":[{"name":"entity","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","jsonName":"entity"},{"name":"related","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Entity","jsonName":"related"}]},{"name":"CatalogLookupRequest","field":[{"name":"brand_id","number":1,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"brandId"},{"name":"model_id","number":2,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"modelId"},{"name":"os_id","number":3,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"osId"},{"name":"sw_id","number":4,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"swId"},{"name":"monitor_id","number":5,"label":"LABEL_REPEATED","type":"TYPE_INT64","jsonName":"monitorId"},{"name":"only_requested","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","oneofIndex":0,"jsonName":"onlyRequested","proto3Optional":true}],"oneofDecl":[{"name":"_only_requested"}]},{"name":"CatalogLookupResponse","field":[{"name":"brand","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","jsonName":"brand"},{"name":"model","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogModel","jsonName":"model"},{"name":"os","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogOs","jsonName":"os"},{"name":"sw","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogSoftware","jsonName":"sw"},{"name":"monitor","number":5,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogMonitor","jsonName":"monitor"}]},{"name":"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":"unique_key","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"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":"last_synced_source_agent","number":39,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"lastSyncedSourceAgent","proto3Optional":true},{"name":"last_synced_source_name","number":49,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"lastSyncedSourceName","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":"internet_ip","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.IpInfo","oneofIndex":3,"jsonName":"internetIp","proto3Optional":true},{"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":"software_inventory","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SoftwareInventory","oneofIndex":6,"jsonName":"softwareInventory","proto3Optional":true},{"name":"antivirus","number":26,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.AntivirusSoftware","jsonName":"antivirus"},{"name":"monitor_inventory","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MonitorInventory","oneofIndex":7,"jsonName":"monitorInventory","proto3Optional":true},{"name":"network_interfaces","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetworkInterfaces","oneofIndex":8,"jsonName":"networkInterfaces","proto3Optional":true},{"name":"os_patch","number":13,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemPatch","jsonName":"osPatch"},{"name":"os_feature","number":37,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemFeature","jsonName":"osFeature"},{"name":"os_recovery","number":42,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemRecovery","oneofIndex":9,"jsonName":"osRecovery","proto3Optional":true},{"name":"os_service","number":43,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemService","jsonName":"osService"},{"name":"processor","number":15,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Processor","jsonName":"processor"},{"name":"chassis","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Chassis","oneofIndex":10,"jsonName":"chassis","proto3Optional":true},{"name":"memory","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Memory","oneofIndex":11,"jsonName":"memory","proto3Optional":true},{"name":"motherboard","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Motherboard","oneofIndex":12,"jsonName":"motherboard","proto3Optional":true},{"name":"bios","number":46,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Bios","oneofIndex":13,"jsonName":"bios","proto3Optional":true},{"name":"computer_battery","number":45,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerBattery","jsonName":"computerBattery"},{"name":"portable_battery","number":53,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.PortableBattery","jsonName":"portableBattery"},{"name":"optical_drive","number":24,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OpticalDrive","jsonName":"opticalDrive"},{"name":"hard_drive","number":25,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.HardDrive","jsonName":"hardDrive"},{"name":"drive_volume","number":38,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.DriveVolume","jsonName":"driveVolume"},{"name":"network_volume","number":40,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetworkVolume","jsonName":"networkVolume"},{"name":"graphics_card","number":27,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.GraphicsCard","jsonName":"graphicsCard"},{"name":"sound_card","number":30,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SoundCard","jsonName":"soundCard"},{"name":"keyboard","number":28,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Keyboard","jsonName":"keyboard"},{"name":"pointing_device","number":29,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.PointingDevice","jsonName":"pointingDevice"},{"name":"computer_bus","number":47,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerBus","jsonName":"computerBus"},{"name":"computer_infrared","number":48,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerInfrared","jsonName":"computerInfrared"},{"name":"parallel_port","number":50,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ParallelPort","jsonName":"parallelPort"},{"name":"serial_port","number":51,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SerialPort","jsonName":"serialPort"},{"name":"pcmcia","number":52,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.PcmciaController","jsonName":"pcmcia"},{"name":"port_connector","number":54,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.PortConnector","jsonName":"portConnector"},{"name":"scsi_controller","number":55,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ScsiController","jsonName":"scsiController"},{"name":"computer_system_product","number":56,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerSystemProduct","oneofIndex":14,"jsonName":"computerSystemProduct","proto3Optional":true},{"name":"tpm","number":57,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.TrustedPlatformModule","jsonName":"tpm"},{"name":"usb_controller","number":58,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerConnectedUsbController","jsonName":"usbController"},{"name":"usb_device_info","number":59,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerConnectedUsbDeviceInfo","jsonName":"usbDeviceInfo"},{"name":"modem","number":60,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerConnectedModem","jsonName":"modem"},{"name":"printer","number":61,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerConnectedPrinter","jsonName":"printer"},{"name":"tape_drive","number":62,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerConnectedTapeDrive","jsonName":"tapeDrive"},{"name":"windows_desktop","number":63,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsDesktop","jsonName":"windowsDesktop"},{"name":"windows_display","number":64,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsDisplay","jsonName":"windowsDisplay"},{"name":"windows_display_controller","number":65,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsDisplayController","jsonName":"windowsDisplayController"},{"name":"windows_network_client","number":66,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsNetworkClient","jsonName":"windowsNetworkClient"},{"name":"windows_ide_controller","number":67,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsIdeController","jsonName":"windowsIdeController"},{"name":"windows_disk_partition","number":68,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsDiskPartition","jsonName":"windowsDiskPartition"},{"name":"auto_run_command","number":34,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.AutoRunCommand","jsonName":"autoRunCommand"},{"name":"boot_config","number":35,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.BootConfig","oneofIndex":15,"jsonName":"bootConfig","proto3Optional":true},{"name":"driver","number":36,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Driver","jsonName":"driver"},{"name":"running_process","number":41,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.RunningProcess","jsonName":"runningProcess"},{"name":"shared_resource","number":44,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SharedResource","jsonName":"sharedResource"},{"name":"last_user","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.LastUser","oneofIndex":16,"jsonName":"lastUser","proto3Optional":true},{"name":"user","number":69,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.UserAccount","jsonName":"user"},{"name":"user_group","number":70,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.UserGroup","jsonName":"userGroup"},{"name":"user_in_group","number":71,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.UserInGroup","jsonName":"userInGroup"},{"name":"ot_module","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OtModule","oneofIndex":17,"jsonName":"otModule","proto3Optional":true},{"name":"cloud","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CloudEntity","oneofIndex":18,"jsonName":"cloud","proto3Optional":true}],"oneofDecl":[{"name":"_unique_key"},{"name":"_last_synced_source_agent"},{"name":"_last_synced_source_name"},{"name":"_internet_ip"},{"name":"_hw"},{"name":"_os"},{"name":"_software_inventory"},{"name":"_monitor_inventory"},{"name":"_network_interfaces"},{"name":"_os_recovery"},{"name":"_chassis"},{"name":"_memory"},{"name":"_motherboard"},{"name":"_bios"},{"name":"_computer_system_product"},{"name":"_boot_config"},{"name":"_last_user"},{"name":"_ot_module"},{"name":"_cloud"}]},{"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":"OtModule","field":[{"name":"component_type","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"componentType","proto3Optional":true},{"name":"rack","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OtRack","oneofIndex":1,"jsonName":"rack","proto3Optional":true},{"name":"is_main_module","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isMainModule"},{"name":"is_network_node","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isNetworkNode"},{"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}],"oneofDecl":[{"name":"_component_type"},{"name":"_rack"},{"name":"_part_number"},{"name":"_route_path"}]},{"name":"OtRack","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":"slot_number","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"slotNumber","proto3Optional":true},{"name":"slot_width","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"slotWidth","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_type"},{"name":"_slot_number"},{"name":"_slot_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":"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":"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}],"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":"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":"make_name","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"makeName","proto3Optional":true},{"name":"model_name","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"modelName","proto3Optional":true},{"name":"family_name","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"familyName","proto3Optional":true},{"name":"cpe","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"cpe","proto3Optional":true},{"name":"rank","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":11,"jsonName":"rank","proto3Optional":true},{"name":"spec","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SpecHardwareInfo","oneofIndex":12,"jsonName":"spec","proto3Optional":true},{"name":"catalog_brand","number":50,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","oneofIndex":13,"jsonName":"catalogBrand","proto3Optional":true},{"name":"catalog_model","number":51,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogModel","oneofIndex":14,"jsonName":"catalogModel","proto3Optional":true},{"name":"catalog_family","number":52,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogModel","oneofIndex":15,"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":"_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}],"oneofDecl":[{"name":"_architecture"},{"name":"_model"},{"name":"_manufacturer"},{"name":"_serial_number"},{"name":"_system_sku"},{"name":"_uptime"}]},{"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}],"oneofDecl":[{"name":"_kernel_caption"}]},{"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":"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}],"oneofDecl":[{"name":"_caption"},{"name":"_name"},{"name":"_path"},{"name":"_type"}]},{"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":"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":"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_INT32","oneofIndex":2,"jsonName":"colorPlanes","proto3Optional":true},{"name":"device_entries_in_a_color_table","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"deviceEntriesInAColorTable","proto3Optional":true},{"name":"device_specific_pens","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":4,"jsonName":"deviceSpecificPens","proto3Optional":true},{"name":"horizontal_resolution","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","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_INT32","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_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","jsonName":"protocolSupported"}],"oneofDecl":[{"name":"_caption"},{"name":"_device_id"},{"name":"_manufacturer"}]},{"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,1921,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,76,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,6],"span":[80,0,86,1],"leadingDetachedComments":[" ----- Data Part ------\n"]},{"path":[4,6,1],"span":[80,8,18]},{"path":[4,6,2,0],"span":[81,2,21]},{"path":[4,6,2,0,5],"span":[81,2,8]},{"path":[4,6,2,0,1],"span":[81,9,16]},{"path":[4,6,2,0,3],"span":[81,19,20]},{"path":[4,6,2,1],"span":[82,2,32]},{"path":[4,6,2,1,4],"span":[82,2,10]},{"path":[4,6,2,1,5],"span":[82,11,17]},{"path":[4,6,2,1,1],"span":[82,18,27]},{"path":[4,6,2,1,3],"span":[82,30,31]},{"path":[4,6,2,2],"span":[83,2,34],"trailingComments":" IT, OT, CDK, 3rdParty\n"},{"path":[4,6,2,2,4],"span":[83,2,10]},{"path":[4,6,2,2,5],"span":[83,11,17]},{"path":[4,6,2,2,1],"span":[83,18,29]},{"path":[4,6,2,2,3],"span":[83,32,33]},{"path":[4,6,2,3],"span":[84,2,34],"trailingComments":" \"asset\" \"user\" etc\n"},{"path":[4,6,2,3,4],"span":[84,2,10]},{"path":[4,6,2,3,5],"span":[84,11,17]},{"path":[4,6,2,3,1],"span":[84,18,29]},{"path":[4,6,2,3,3],"span":[84,32,33]},{"path":[4,6,2,4],"span":[85,2,32]},{"path":[4,6,2,4,4],"span":[85,2,10]},{"path":[4,6,2,4,5],"span":[85,11,17]},{"path":[4,6,2,4,1],"span":[85,18,27]},{"path":[4,6,2,4,3],"span":[85,30,31]},{"path":[4,7],"span":[89,0,95,1],"leadingComments":" Main Entity object: variant "},{"path":[4,7,1],"span":[89,8,14]},{"path":[4,7,8,0],"span":[90,2,94,3]},{"path":[4,7,8,0,1],"span":[90,8,14]},{"path":[4,7,2,0],"span":[91,4,20],"trailingComments":" User user = 2;\n Other ...\n"},{"path":[4,7,2,0,6],"span":[91,4,9]},{"path":[4,7,2,0,1],"span":[91,10,15]},{"path":[4,7,2,0,3],"span":[91,18,19]},{"path":[4,8],"span":[99,0,202,1],"leadingComments":" Asset object: IT/OT/CDR "},{"path":[4,8,1],"span":[99,8,13]},{"path":[4,8,2,0],"span":[101,2,20]},{"path":[4,8,2,0,6],"span":[101,2,12]},{"path":[4,8,2,0,1],"span":[101,13,15]},{"path":[4,8,2,0,3],"span":[101,18,19]},{"path":[4,8,2,1],"span":[103,2,44]},{"path":[4,8,2,1,6],"span":[103,2,27]},{"path":[4,8,2,1,1],"span":[103,28,39]},{"path":[4,8,2,1,3],"span":[103,42,43]},{"path":[4,8,2,2],"span":[104,2,43]},{"path":[4,8,2,2,6],"span":[104,2,27]},{"path":[4,8,2,2,1],"span":[104,28,38]},{"path":[4,8,2,2,3],"span":[104,41,42]},{"path":[4,8,2,3],"span":[105,2,45]},{"path":[4,8,2,3,6],"span":[105,2,27]},{"path":[4,8,2,3,1],"span":[105,28,40]},{"path":[4,8,2,3,3],"span":[105,43,44]},{"path":[4,8,2,4],"span":[106,2,46]},{"path":[4,8,2,4,6],"span":[106,2,27]},{"path":[4,8,2,4,1],"span":[106,28,41]},{"path":[4,8,2,4,3],"span":[106,44,45]},{"path":[4,8,2,5],"span":[115,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,5,4],"span":[115,2,10]},{"path":[4,8,2,5,5],"span":[115,11,17]},{"path":[4,8,2,5,1],"span":[115,18,28]},{"path":[4,8,2,5,3],"span":[115,31,33]},{"path":[4,8,2,6],"span":[117,2,37]},{"path":[4,8,2,6,4],"span":[117,2,10]},{"path":[4,8,2,6,6],"span":[117,11,20]},{"path":[4,8,2,6,1],"span":[117,21,31]},{"path":[4,8,2,6,3],"span":[117,34,36]},{"path":[4,8,2,7],"span":[119,2,48],"trailingComments":" last synced source agent name and version\n"},{"path":[4,8,2,7,4],"span":[119,2,10]},{"path":[4,8,2,7,5],"span":[119,11,17]},{"path":[4,8,2,7,1],"span":[119,18,42]},{"path":[4,8,2,7,3],"span":[119,45,47]},{"path":[4,8,2,8],"span":[120,2,47],"trailingComments":" last synced source name\n"},{"path":[4,8,2,8,4],"span":[120,2,10]},{"path":[4,8,2,8,5],"span":[120,11,17]},{"path":[4,8,2,8,1],"span":[120,18,41]},{"path":[4,8,2,8,3],"span":[120,44,46]},{"path":[4,8,2,9],"span":[122,2,24]},{"path":[4,8,2,9,4],"span":[122,2,10]},{"path":[4,8,2,9,6],"span":[122,11,14]},{"path":[4,8,2,9,1],"span":[122,15,18]},{"path":[4,8,2,9,3],"span":[122,21,23]},{"path":[4,8,2,10],"span":[123,2,34],"trailingComments":" e.g. relations to and from OT parent module to sub-modules\n"},{"path":[4,8,2,10,4],"span":[123,2,10]},{"path":[4,8,2,10,6],"span":[123,11,19]},{"path":[4,8,2,10,1],"span":[123,20,28]},{"path":[4,8,2,10,3],"span":[123,31,33]},{"path":[4,8,2,11],"span":[125,2,22]},{"path":[4,8,2,11,6],"span":[125,2,12]},{"path":[4,8,2,11,1],"span":[125,13,17]},{"path":[4,8,2,11,3],"span":[125,20,21]},{"path":[4,8,2,12],"span":[127,2,35],"trailingComments":" Internet IP and related geo-location info, when available\n"},{"path":[4,8,2,12,4],"span":[127,2,10]},{"path":[4,8,2,12,6],"span":[127,11,17]},{"path":[4,8,2,12,1],"span":[127,18,29]},{"path":[4,8,2,12,3],"span":[127,32,34]},{"path":[4,8,2,13],"span":[129,2,31]},{"path":[4,8,2,13,4],"span":[129,2,10]},{"path":[4,8,2,13,6],"span":[129,11,23]},{"path":[4,8,2,13,1],"span":[129,24,26]},{"path":[4,8,2,13,3],"span":[129,29,30]},{"path":[4,8,2,14],"span":[130,2,34]},{"path":[4,8,2,14,4],"span":[130,2,10]},{"path":[4,8,2,14,6],"span":[130,11,26]},{"path":[4,8,2,14,1],"span":[130,27,29]},{"path":[4,8,2,14,3],"span":[130,32,33]},{"path":[4,8,2,15],"span":[132,2,52]},{"path":[4,8,2,15,4],"span":[132,2,10]},{"path":[4,8,2,15,6],"span":[132,11,28]},{"path":[4,8,2,15,1],"span":[132,29,47]},{"path":[4,8,2,15,3],"span":[132,50,51]},{"path":[4,8,2,16],"span":[133,2,44]},{"path":[4,8,2,16,4],"span":[133,2,10]},{"path":[4,8,2,16,6],"span":[133,11,28]},{"path":[4,8,2,16,1],"span":[133,29,38]},{"path":[4,8,2,16,3],"span":[133,41,43]},{"path":[4,8,2,17],"span":[135,2,51]},{"path":[4,8,2,17,4],"span":[135,2,10]},{"path":[4,8,2,17,6],"span":[135,11,27]},{"path":[4,8,2,17,1],"span":[135,28,45]},{"path":[4,8,2,17,3],"span":[135,48,50]},{"path":[4,8,2,18],"span":[137,2,53]},{"path":[4,8,2,18,4],"span":[137,2,10]},{"path":[4,8,2,18,6],"span":[137,11,28]},{"path":[4,8,2,18,1],"span":[137,29,47]},{"path":[4,8,2,18,3],"span":[137,50,52]},{"path":[4,8,2,19],"span":[139,2,46]},{"path":[4,8,2,19,4],"span":[139,2,10]},{"path":[4,8,2,19,6],"span":[139,11,31]},{"path":[4,8,2,19,1],"span":[139,32,40]},{"path":[4,8,2,19,3],"span":[139,43,45]},{"path":[4,8,2,20],"span":[140,2,50]},{"path":[4,8,2,20,4],"span":[140,2,10]},{"path":[4,8,2,20,6],"span":[140,11,33]},{"path":[4,8,2,20,1],"span":[140,34,44]},{"path":[4,8,2,20,3],"span":[140,47,49]},{"path":[4,8,2,21],"span":[141,2,52]},{"path":[4,8,2,21,4],"span":[141,2,10]},{"path":[4,8,2,21,6],"span":[141,11,34]},{"path":[4,8,2,21,1],"span":[141,35,46]},{"path":[4,8,2,21,3],"span":[141,49,51]},{"path":[4,8,2,22],"span":[142,2,50]},{"path":[4,8,2,22,4],"span":[142,2,10]},{"path":[4,8,2,22,6],"span":[142,11,33]},{"path":[4,8,2,22,1],"span":[142,34,44]},{"path":[4,8,2,22,3],"span":[142,47,49]},{"path":[4,8,2,23],"span":[144,2,36]},{"path":[4,8,2,23,4],"span":[144,2,10]},{"path":[4,8,2,23,6],"span":[144,11,20]},{"path":[4,8,2,23,1],"span":[144,21,30]},{"path":[4,8,2,23,3],"span":[144,33,35]},{"path":[4,8,2,24],"span":[145,2,32]},{"path":[4,8,2,24,4],"span":[145,2,10]},{"path":[4,8,2,24,6],"span":[145,11,18]},{"path":[4,8,2,24,1],"span":[145,19,26]},{"path":[4,8,2,24,3],"span":[145,29,31]},{"path":[4,8,2,25],"span":[146,2,30]},{"path":[4,8,2,25,4],"span":[146,2,10]},{"path":[4,8,2,25,6],"span":[146,11,17]},{"path":[4,8,2,25,1],"span":[146,18,24]},{"path":[4,8,2,25,3],"span":[146,27,29]},{"path":[4,8,2,26],"span":[147,2,40]},{"path":[4,8,2,26,4],"span":[147,2,10]},{"path":[4,8,2,26,6],"span":[147,11,22]},{"path":[4,8,2,26,1],"span":[147,23,34]},{"path":[4,8,2,26,3],"span":[147,37,39]},{"path":[4,8,2,27],"span":[148,2,26]},{"path":[4,8,2,27,4],"span":[148,2,10]},{"path":[4,8,2,27,6],"span":[148,11,15]},{"path":[4,8,2,27,1],"span":[148,16,20]},{"path":[4,8,2,27,3],"span":[148,23,25]},{"path":[4,8,2,28],"span":[149,2,49]},{"path":[4,8,2,28,4],"span":[149,2,10]},{"path":[4,8,2,28,6],"span":[149,11,26]},{"path":[4,8,2,28,1],"span":[149,27,43]},{"path":[4,8,2,28,3],"span":[149,46,48]},{"path":[4,8,2,29],"span":[150,2,49]},{"path":[4,8,2,29,4],"span":[150,2,10]},{"path":[4,8,2,29,6],"span":[150,11,26]},{"path":[4,8,2,29,1],"span":[150,27,43]},{"path":[4,8,2,29,3],"span":[150,46,48]},{"path":[4,8,2,30],"span":[151,2,43]},{"path":[4,8,2,30,4],"span":[151,2,10]},{"path":[4,8,2,30,6],"span":[151,11,23]},{"path":[4,8,2,30,1],"span":[151,24,37]},{"path":[4,8,2,30,3],"span":[151,40,42]},{"path":[4,8,2,31],"span":[152,2,37]},{"path":[4,8,2,31,4],"span":[152,2,10]},{"path":[4,8,2,31,6],"span":[152,11,20]},{"path":[4,8,2,31,1],"span":[152,21,31]},{"path":[4,8,2,31,3],"span":[152,34,36]},{"path":[4,8,2,32],"span":[153,2,41]},{"path":[4,8,2,32,4],"span":[153,2,10]},{"path":[4,8,2,32,6],"span":[153,11,22]},{"path":[4,8,2,32,1],"span":[153,23,35]},{"path":[4,8,2,32,3],"span":[153,38,40]},{"path":[4,8,2,33],"span":[154,2,45]},{"path":[4,8,2,33,4],"span":[154,2,10]},{"path":[4,8,2,33,6],"span":[154,11,24]},{"path":[4,8,2,33,1],"span":[154,25,39]},{"path":[4,8,2,33,3],"span":[154,42,44]},{"path":[4,8,2,34],"span":[155,2,43]},{"path":[4,8,2,34,4],"span":[155,2,10]},{"path":[4,8,2,34,6],"span":[155,11,23]},{"path":[4,8,2,34,1],"span":[155,24,37]},{"path":[4,8,2,34,3],"span":[155,40,42]},{"path":[4,8,2,35],"span":[156,2,37]},{"path":[4,8,2,35,4],"span":[156,2,10]},{"path":[4,8,2,35,6],"span":[156,11,20]},{"path":[4,8,2,35,1],"span":[156,21,31]},{"path":[4,8,2,35,3],"span":[156,34,36]},{"path":[4,8,2,36],"span":[157,2,34]},{"path":[4,8,2,36,4],"span":[157,2,10]},{"path":[4,8,2,36,6],"span":[157,11,19]},{"path":[4,8,2,36,1],"span":[157,20,28]},{"path":[4,8,2,36,3],"span":[157,31,33]},{"path":[4,8,2,37],"span":[158,2,47]},{"path":[4,8,2,37,4],"span":[158,2,10]},{"path":[4,8,2,37,6],"span":[158,11,25]},{"path":[4,8,2,37,1],"span":[158,26,41]},{"path":[4,8,2,37,3],"span":[158,44,46]},{"path":[4,8,2,38],"span":[159,2,41]},{"path":[4,8,2,38,4],"span":[159,2,10]},{"path":[4,8,2,38,6],"span":[159,11,22]},{"path":[4,8,2,38,1],"span":[159,23,35]},{"path":[4,8,2,38,3],"span":[159,38,40]},{"path":[4,8,2,39],"span":[160,2,51]},{"path":[4,8,2,39,4],"span":[160,2,10]},{"path":[4,8,2,39,6],"span":[160,11,27]},{"path":[4,8,2,39,1],"span":[160,28,45]},{"path":[4,8,2,39,3],"span":[160,48,50]},{"path":[4,8,2,40],"span":[161,2,43]},{"path":[4,8,2,40,4],"span":[161,2,10]},{"path":[4,8,2,40,6],"span":[161,11,23]},{"path":[4,8,2,40,1],"span":[161,24,37]},{"path":[4,8,2,40,3],"span":[161,40,42]},{"path":[4,8,2,41],"span":[162,2,39]},{"path":[4,8,2,41,4],"span":[162,2,10]},{"path":[4,8,2,41,6],"span":[162,11,21]},{"path":[4,8,2,41,1],"span":[162,22,33]},{"path":[4,8,2,41,3],"span":[162,36,38]},{"path":[4,8,2,42],"span":[163,2,40]},{"path":[4,8,2,42,4],"span":[163,2,10]},{"path":[4,8,2,42,6],"span":[163,11,27]},{"path":[4,8,2,42,1],"span":[163,28,34]},{"path":[4,8,2,42,3],"span":[163,37,39]},{"path":[4,8,2,43],"span":[164,2,45]},{"path":[4,8,2,43,4],"span":[164,2,10]},{"path":[4,8,2,43,6],"span":[164,11,24]},{"path":[4,8,2,43,1],"span":[164,25,39]},{"path":[4,8,2,43,3],"span":[164,42,44]},{"path":[4,8,2,44],"span":[165,2,47]},{"path":[4,8,2,44,4],"span":[165,2,10]},{"path":[4,8,2,44,6],"span":[165,11,25]},{"path":[4,8,2,44,1],"span":[165,26,41]},{"path":[4,8,2,44,3],"span":[165,44,46]},{"path":[4,8,2,45],"span":[166,2,62]},{"path":[4,8,2,45,4],"span":[166,2,10]},{"path":[4,8,2,45,6],"span":[166,11,32]},{"path":[4,8,2,45,1],"span":[166,33,56]},{"path":[4,8,2,45,3],"span":[166,59,61]},{"path":[4,8,2,46],"span":[167,2,42]},{"path":[4,8,2,46,4],"span":[167,2,10]},{"path":[4,8,2,46,6],"span":[167,11,32]},{"path":[4,8,2,46,1],"span":[167,33,36]},{"path":[4,8,2,46,3],"span":[167,39,41]},{"path":[4,8,2,47],"span":[168,2,62]},{"path":[4,8,2,47,4],"span":[168,2,10]},{"path":[4,8,2,47,6],"span":[168,11,41]},{"path":[4,8,2,47,1],"span":[168,42,56]},{"path":[4,8,2,47,3],"span":[168,59,61]},{"path":[4,8,2,48],"span":[169,2,63]},{"path":[4,8,2,48,4],"span":[169,2,10]},{"path":[4,8,2,48,6],"span":[169,11,41]},{"path":[4,8,2,48,1],"span":[169,42,57]},{"path":[4,8,2,48,3],"span":[169,60,62]},{"path":[4,8,2,49],"span":[170,2,45]},{"path":[4,8,2,49,4],"span":[170,2,10]},{"path":[4,8,2,49,6],"span":[170,11,33]},{"path":[4,8,2,49,1],"span":[170,34,39]},{"path":[4,8,2,49,3],"span":[170,42,44]},{"path":[4,8,2,50],"span":[171,2,49]},{"path":[4,8,2,50,4],"span":[171,2,10]},{"path":[4,8,2,50,6],"span":[171,11,35]},{"path":[4,8,2,50,1],"span":[171,36,43]},{"path":[4,8,2,50,3],"span":[171,46,48]},{"path":[4,8,2,51],"span":[172,2,54]},{"path":[4,8,2,51,4],"span":[172,2,10]},{"path":[4,8,2,51,6],"span":[172,11,37]},{"path":[4,8,2,51,1],"span":[172,38,48]},{"path":[4,8,2,51,3],"span":[172,51,53]},{"path":[4,8,2,52],"span":[173,2,55]},{"path":[4,8,2,52,4],"span":[173,2,10]},{"path":[4,8,2,52,6],"span":[173,11,33]},{"path":[4,8,2,52,1],"span":[173,34,49]},{"path":[4,8,2,52,3],"span":[173,52,54]},{"path":[4,8,2,53],"span":[174,2,55]},{"path":[4,8,2,53,4],"span":[174,2,10]},{"path":[4,8,2,53,6],"span":[174,11,33]},{"path":[4,8,2,53,1],"span":[174,34,49]},{"path":[4,8,2,53,3],"span":[174,52,54]},{"path":[4,8,2,54],"span":[175,2,76]},{"path":[4,8,2,54,4],"span":[175,2,10]},{"path":[4,8,2,54,6],"span":[175,11,43]},{"path":[4,8,2,54,1],"span":[175,44,70]},{"path":[4,8,2,54,3],"span":[175,73,75]},{"path":[4,8,2,55],"span":[176,2,68]},{"path":[4,8,2,55,4],"span":[176,2,10]},{"path":[4,8,2,55,6],"span":[176,11,39]},{"path":[4,8,2,55,1],"span":[176,40,62]},{"path":[4,8,2,55,3],"span":[176,65,67]},{"path":[4,8,2,56],"span":[177,2,68]},{"path":[4,8,2,56,4],"span":[177,2,10]},{"path":[4,8,2,56,6],"span":[177,11,39]},{"path":[4,8,2,56,1],"span":[177,40,62]},{"path":[4,8,2,56,3],"span":[177,65,67]},{"path":[4,8,2,57],"span":[178,2,68]},{"path":[4,8,2,57,4],"span":[178,2,10]},{"path":[4,8,2,57,6],"span":[178,11,39]},{"path":[4,8,2,57,1],"span":[178,40,62]},{"path":[4,8,2,57,3],"span":[178,65,67]},{"path":[4,8,2,58],"span":[180,2,48]},{"path":[4,8,2,58,4],"span":[180,2,10]},{"path":[4,8,2,58,6],"span":[180,11,25]},{"path":[4,8,2,58,1],"span":[180,26,42]},{"path":[4,8,2,58,3],"span":[180,45,47]},{"path":[4,8,2,59],"span":[181,2,39]},{"path":[4,8,2,59,4],"span":[181,2,10]},{"path":[4,8,2,59,6],"span":[181,11,21]},{"path":[4,8,2,59,1],"span":[181,22,33]},{"path":[4,8,2,59,3],"span":[181,36,38]},{"path":[4,8,2,60],"span":[182,2,30]},{"path":[4,8,2,60,4],"span":[182,2,10]},{"path":[4,8,2,60,6],"span":[182,11,17]},{"path":[4,8,2,60,1],"span":[182,18,24]},{"path":[4,8,2,60,3],"span":[182,27,29]},{"path":[4,8,2,61],"span":[183,2,47]},{"path":[4,8,2,61,4],"span":[183,2,10]},{"path":[4,8,2,61,6],"span":[183,11,25]},{"path":[4,8,2,61,1],"span":[183,26,41]},{"path":[4,8,2,61,3],"span":[183,44,46]},{"path":[4,8,2,62],"span":[184,2,47]},{"path":[4,8,2,62,4],"span":[184,2,10]},{"path":[4,8,2,62,6],"span":[184,11,25]},{"path":[4,8,2,62,1],"span":[184,26,41]},{"path":[4,8,2,62,3],"span":[184,44,46]},{"path":[4,8,2,63],"span":[186,2,35],"trailingComments":" i.e. computer current user\n"},{"path":[4,8,2,63,4],"span":[186,2,10]},{"path":[4,8,2,63,6],"span":[186,11,19]},{"path":[4,8,2,63,1],"span":[186,20,29]},{"path":[4,8,2,63,3],"span":[186,32,34]},{"path":[4,8,2,64],"span":[187,2,33]},{"path":[4,8,2,64,4],"span":[187,2,10]},{"path":[4,8,2,64,6],"span":[187,11,22]},{"path":[4,8,2,64,1],"span":[187,23,27]},{"path":[4,8,2,64,3],"span":[187,30,32]},{"path":[4,8,2,65],"span":[188,2,37]},{"path":[4,8,2,65,4],"span":[188,2,10]},{"path":[4,8,2,65,6],"span":[188,11,20]},{"path":[4,8,2,65,1],"span":[188,21,31]},{"path":[4,8,2,65,3],"span":[188,34,36]},{"path":[4,8,2,66],"span":[189,2,42]},{"path":[4,8,2,66,4],"span":[189,2,10]},{"path":[4,8,2,66,6],"span":[189,11,22]},{"path":[4,8,2,66,1],"span":[189,23,36]},{"path":[4,8,2,66,3],"span":[189,39,41]},{"path":[4,8,2,67],"span":[191,2,35],"trailingComments":" OT specific module info when asset type is 'OT'\n"},{"path":[4,8,2,67,4],"span":[191,2,10]},{"path":[4,8,2,67,6],"span":[191,11,19]},{"path":[4,8,2,67,1],"span":[191,20,29]},{"path":[4,8,2,67,3],"span":[191,32,34]},{"path":[4,8,2,68],"span":[193,2,34]},{"path":[4,8,2,68,4],"span":[193,2,10]},{"path":[4,8,2,68,6],"span":[193,11,22]},{"path":[4,8,2,68,1],"span":[193,23,28]},{"path":[4,8,2,68,3],"span":[193,31,33]},{"path":[4,9],"span":[220,0,223,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,9,1],"span":[220,8,11]},{"path":[4,9,2,0],"span":[221,2,17]},{"path":[4,9,2,0,5],"span":[221,2,8]},{"path":[4,9,2,0,1],"span":[221,9,12]},{"path":[4,9,2,0,3],"span":[221,15,16]},{"path":[4,9,2,1],"span":[222,2,28]},{"path":[4,9,2,1,4],"span":[222,2,10]},{"path":[4,9,2,1,5],"span":[222,11,17]},{"path":[4,9,2,1,1],"span":[222,18,23]},{"path":[4,9,2,1,3],"span":[222,26,27]},{"path":[4,10],"span":[230,0,237,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,10,1],"span":[230,8,16]},{"path":[4,10,2,0],"span":[231,2,31],"trailingComments":" if missing, 'self' assumed\n"},{"path":[4,10,2,0,4],"span":[231,2,10]},{"path":[4,10,2,0,6],"span":[231,11,21]},{"path":[4,10,2,0,1],"span":[231,22,26]},{"path":[4,10,2,0,3],"span":[231,29,30]},{"path":[4,10,2,1],"span":[232,2,29],"trailingComments":" if missing, 'self' assumed\n"},{"path":[4,10,2,1,4],"span":[232,2,10]},{"path":[4,10,2,1,6],"span":[232,11,21]},{"path":[4,10,2,1,1],"span":[232,22,24]},{"path":[4,10,2,1,3],"span":[232,27,28]},{"path":[4,10,2,2],"span":[233,2,38]},{"path":[4,10,2,2,6],"span":[233,2,27]},{"path":[4,10,2,2,1],"span":[233,28,33]},{"path":[4,10,2,2,3],"span":[233,36,37]},{"path":[4,10,2,3],"span":[234,2,45],"trailingComments":" if end is marked, it's over\n"},{"path":[4,10,2,3,4],"span":[234,2,10]},{"path":[4,10,2,3,6],"span":[234,11,36]},{"path":[4,10,2,3,1],"span":[234,37,40]},{"path":[4,10,2,3,3],"span":[234,43,44]},{"path":[4,10,2,4],"span":[235,2,18]},{"path":[4,10,2,4,5],"span":[235,2,8]},{"path":[4,10,2,4,1],"span":[235,9,13]},{"path":[4,10,2,4,3],"span":[235,16,17]},{"path":[4,10,2,5],"span":[236,2,23]},{"path":[4,10,2,5,4],"span":[236,2,10]},{"path":[4,10,2,5,6],"span":[236,11,14]},{"path":[4,10,2,5,1],"span":[236,15,18]},{"path":[4,10,2,5,3],"span":[236,21,22]},{"path":[4,11],"span":[247,0,249,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,11,1],"span":[247,8,19]},{"path":[4,11,2,0],"span":[248,2,31]},{"path":[4,11,2,0,6],"span":[248,2,21]},{"path":[4,11,2,0,1],"span":[248,22,26]},{"path":[4,11,2,0,3],"span":[248,29,30]},{"path":[4,12],"span":[259,0,271,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,12,1],"span":[259,8,16]},{"path":[4,12,2,0],"span":[260,2,37]},{"path":[4,12,2,0,4],"span":[260,2,10]},{"path":[4,12,2,0,5],"span":[260,11,17]},{"path":[4,12,2,0,1],"span":[260,18,32]},{"path":[4,12,2,0,3],"span":[260,35,36]},{"path":[4,12,2,1],"span":[261,2,27]},{"path":[4,12,2,1,4],"span":[261,2,10]},{"path":[4,12,2,1,6],"span":[261,11,17]},{"path":[4,12,2,1,1],"span":[261,18,22]},{"path":[4,12,2,1,3],"span":[261,25,26]},{"path":[4,12,2,2],"span":[263,2,26]},{"path":[4,12,2,2,5],"span":[263,2,6]},{"path":[4,12,2,2,1],"span":[263,7,21]},{"path":[4,12,2,2,3],"span":[263,24,25]},{"path":[4,12,2,3],"span":[264,2,27]},{"path":[4,12,2,3,5],"span":[264,2,6]},{"path":[4,12,2,3,1],"span":[264,7,22]},{"path":[4,12,2,3,3],"span":[264,25,26]},{"path":[4,12,2,4],"span":[266,2,34]},{"path":[4,12,2,4,4],"span":[266,2,10]},{"path":[4,12,2,4,5],"span":[266,11,17]},{"path":[4,12,2,4,1],"span":[266,18,29]},{"path":[4,12,2,4,3],"span":[266,32,33]},{"path":[4,12,2,5],"span":[267,2,40]},{"path":[4,12,2,5,4],"span":[267,2,10]},{"path":[4,12,2,5,6],"span":[267,11,26]},{"path":[4,12,2,5,1],"span":[267,27,35]},{"path":[4,12,2,5,3],"span":[267,38,39]},{"path":[4,12,2,6],"span":[269,2,33]},{"path":[4,12,2,6,4],"span":[269,2,10]},{"path":[4,12,2,6,5],"span":[269,11,17]},{"path":[4,12,2,6,1],"span":[269,18,28]},{"path":[4,12,2,6,3],"span":[269,31,32]},{"path":[4,13],"span":[274,0,281,1],"leadingComments":" Information about the OT rack the module is plugged into\n"},{"path":[4,13,1],"span":[274,8,14]},{"path":[4,13,2,0],"span":[275,2,19]},{"path":[4,13,2,0,5],"span":[275,2,7]},{"path":[4,13,2,0,1],"span":[275,8,14]},{"path":[4,13,2,0,3],"span":[275,17,18]},{"path":[4,13,2,1],"span":[276,2,27]},{"path":[4,13,2,1,4],"span":[276,2,10]},{"path":[4,13,2,1,5],"span":[276,11,17]},{"path":[4,13,2,1,1],"span":[276,18,22]},{"path":[4,13,2,1,3],"span":[276,25,26]},{"path":[4,13,2,2],"span":[277,2,27]},{"path":[4,13,2,2,4],"span":[277,2,10]},{"path":[4,13,2,2,5],"span":[277,11,17]},{"path":[4,13,2,2,1],"span":[277,18,22]},{"path":[4,13,2,2,3],"span":[277,25,26]},{"path":[4,13,2,3],"span":[278,2,17]},{"path":[4,13,2,3,5],"span":[278,2,7]},{"path":[4,13,2,3,1],"span":[278,8,12]},{"path":[4,13,2,3,3],"span":[278,15,16]},{"path":[4,13,2,4],"span":[279,2,33],"trailingComments":" the specific slot number for this module in the rack\n"},{"path":[4,13,2,4,4],"span":[279,2,10]},{"path":[4,13,2,4,5],"span":[279,11,16]},{"path":[4,13,2,4,1],"span":[279,17,28]},{"path":[4,13,2,4,3],"span":[279,31,32]},{"path":[4,13,2,5],"span":[280,2,32],"trailingComments":" the specific slot width for this module in the rack\n"},{"path":[4,13,2,5,4],"span":[280,2,10]},{"path":[4,13,2,5,5],"span":[280,11,16]},{"path":[4,13,2,5,1],"span":[280,17,27]},{"path":[4,13,2,5,3],"span":[280,30,31]},{"path":[4,14],"span":[283,0,286,1]},{"path":[4,14,1],"span":[283,8,23]},{"path":[4,14,2,0],"span":[284,2,17]},{"path":[4,14,2,0,5],"span":[284,2,8]},{"path":[4,14,2,0,1],"span":[284,9,12]},{"path":[4,14,2,0,3],"span":[284,15,16]},{"path":[4,14,2,1],"span":[285,2,19]},{"path":[4,14,2,1,5],"span":[285,2,8]},{"path":[4,14,2,1,1],"span":[285,9,14]},{"path":[4,14,2,1,3],"span":[285,17,18]},{"path":[4,15],"span":[292,0,301,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,15,1],"span":[292,8,17]},{"path":[4,15,2,0],"span":[294,2,21],"leadingComments":" Lansweeper Asset Type. Full list available here: /lansweeperapis/packages/model/masterData/content/masterData.json\n"},{"path":[4,15,2,0,5],"span":[294,2,8]},{"path":[4,15,2,0,1],"span":[294,9,16]},{"path":[4,15,2,0,3],"span":[294,19,20]},{"path":[4,15,2,1],"span":[296,2,18],"leadingComments":" Lansweeper type ID\n"},{"path":[4,15,2,1,5],"span":[296,2,7]},{"path":[4,15,2,1,1],"span":[296,8,13]},{"path":[4,15,2,1,3],"span":[296,16,17]},{"path":[4,15,2,2],"span":[298,2,32],"leadingComments":" Fing Type\n"},{"path":[4,15,2,2,4],"span":[298,2,10]},{"path":[4,15,2,2,5],"span":[298,11,17]},{"path":[4,15,2,2,1],"span":[298,18,27]},{"path":[4,15,2,2,3],"span":[298,30,31]},{"path":[4,15,2,3],"span":[300,2,31],"trailingComments":" sub type for OT and CDK\n"},{"path":[4,15,2,3,4],"span":[300,2,10]},{"path":[4,15,2,3,5],"span":[300,11,17]},{"path":[4,15,2,3,1],"span":[300,18,26]},{"path":[4,15,2,3,3],"span":[300,29,30]},{"path":[4,16],"span":[306,0,312,1],"leadingComments":"\n Scan errors.\n"},{"path":[4,16,1],"span":[306,8,17]},{"path":[4,16,2,0],"span":[307,2,21],"trailingComments":" name of section\n"},{"path":[4,16,2,0,5],"span":[307,2,8]},{"path":[4,16,2,0,1],"span":[307,9,16]},{"path":[4,16,2,0,3],"span":[307,19,20]},{"path":[4,16,2,1],"span":[308,2,19],"trailingComments":" error descr\n"},{"path":[4,16,2,1,5],"span":[308,2,8]},{"path":[4,16,2,1,1],"span":[308,9,14]},{"path":[4,16,2,1,3],"span":[308,17,18]},{"path":[4,16,2,2],"span":[309,2,29],"trailingComments":" e.g. \"WMI\"\n"},{"path":[4,16,2,2,4],"span":[309,2,10]},{"path":[4,16,2,2,5],"span":[309,11,17]},{"path":[4,16,2,2,1],"span":[309,18,24]},{"path":[4,16,2,2,3],"span":[309,27,28]},{"path":[4,16,2,3],"span":[310,2,51]},{"path":[4,16,2,3,4],"span":[310,2,10]},{"path":[4,16,2,3,6],"span":[310,11,36]},{"path":[4,16,2,3,1],"span":[310,37,46]},{"path":[4,16,2,3,3],"span":[310,49,50]},{"path":[4,16,2,4],"span":[311,2,30]},{"path":[4,16,2,4,4],"span":[311,2,10]},{"path":[4,16,2,4,5],"span":[311,11,16]},{"path":[4,16,2,4,1],"span":[311,17,25]},{"path":[4,16,2,4,3],"span":[311,28,29]},{"path":[4,17],"span":[317,0,327,1],"leadingComments":"\n Core Fields for all Assets.\n"},{"path":[4,17,1],"span":[317,8,18]},{"path":[4,17,2,0],"span":[318,2,21]},{"path":[4,17,2,0,6],"span":[318,2,11]},{"path":[4,17,2,0,1],"span":[318,12,16]},{"path":[4,17,2,0,3],"span":[318,19,20]},{"path":[4,17,2,1],"span":[319,2,18]},{"path":[4,17,2,1,5],"span":[319,2,8]},{"path":[4,17,2,1,1],"span":[319,9,13]},{"path":[4,17,2,1,3],"span":[319,16,17]},{"path":[4,17,2,2],"span":[320,2,29]},{"path":[4,17,2,2,4],"span":[320,2,10]},{"path":[4,17,2,2,5],"span":[320,11,17]},{"path":[4,17,2,2,1],"span":[320,18,24]},{"path":[4,17,2,2,3],"span":[320,27,28]},{"path":[4,17,2,3],"span":[321,2,33]},{"path":[4,17,2,3,4],"span":[321,2,10]},{"path":[4,17,2,3,5],"span":[321,11,17]},{"path":[4,17,2,3,1],"span":[321,18,28]},{"path":[4,17,2,3,3],"span":[321,31,32]},{"path":[4,17,2,4],"span":[322,2,29]},{"path":[4,17,2,4,4],"span":[322,2,10]},{"path":[4,17,2,4,5],"span":[322,11,17]},{"path":[4,17,2,4,1],"span":[322,18,24]},{"path":[4,17,2,4,3],"span":[322,27,28]},{"path":[4,17,2,5],"span":[323,2,26]},{"path":[4,17,2,5,4],"span":[323,2,10]},{"path":[4,17,2,5,5],"span":[323,11,17]},{"path":[4,17,2,5,1],"span":[323,18,21]},{"path":[4,17,2,5,3],"span":[323,24,25]},{"path":[4,17,2,6],"span":[324,2,33]},{"path":[4,17,2,6,4],"span":[324,2,10]},{"path":[4,17,2,6,5],"span":[324,11,17]},{"path":[4,17,2,6,1],"span":[324,18,28]},{"path":[4,17,2,6,3],"span":[324,31,32]},{"path":[4,17,2,7],"span":[325,2,32]},{"path":[4,17,2,7,4],"span":[325,2,10]},{"path":[4,17,2,7,5],"span":[325,11,17]},{"path":[4,17,2,7,1],"span":[325,18,27]},{"path":[4,17,2,7,3],"span":[325,30,31]},{"path":[4,17,2,8],"span":[326,2,27]},{"path":[4,17,2,8,4],"span":[326,2,10]},{"path":[4,17,2,8,5],"span":[326,11,17]},{"path":[4,17,2,8,1],"span":[326,18,22]},{"path":[4,17,2,8,3],"span":[326,25,26]},{"path":[4,18],"span":[329,0,334,1]},{"path":[4,18,1],"span":[329,8,16]},{"path":[4,18,2,0],"span":[330,4,25]},{"path":[4,18,2,0,5],"span":[330,4,10]},{"path":[4,18,2,0,1],"span":[330,11,20]},{"path":[4,18,2,0,3],"span":[330,23,24]},{"path":[4,18,2,1],"span":[331,4,34]},{"path":[4,18,2,1,4],"span":[331,4,12]},{"path":[4,18,2,1,5],"span":[331,13,19]},{"path":[4,18,2,1,1],"span":[331,20,29]},{"path":[4,18,2,1,3],"span":[331,32,33]},{"path":[4,18,2,2],"span":[332,4,28]},{"path":[4,18,2,2,4],"span":[332,4,12]},{"path":[4,18,2,2,5],"span":[332,13,19]},{"path":[4,18,2,2,1],"span":[332,20,23]},{"path":[4,18,2,2,3],"span":[332,26,27]},{"path":[4,18,2,3],"span":[333,4,28]},{"path":[4,18,2,3,4],"span":[333,4,12]},{"path":[4,18,2,3,5],"span":[333,13,19]},{"path":[4,18,2,3,1],"span":[333,20,23]},{"path":[4,18,2,3,3],"span":[333,26,27]},{"path":[4,19],"span":[339,0,366,1],"leadingComments":"\n User account: from Windows.WindowsUser and Unix.Users.\n"},{"path":[4,19,1],"span":[339,8,19]},{"path":[4,19,2,0],"span":[340,2,27],"trailingComments":" unix:user_name\n"},{"path":[4,19,2,0,4],"span":[340,2,10]},{"path":[4,19,2,0,5],"span":[340,11,17]},{"path":[4,19,2,0,1],"span":[340,18,22]},{"path":[4,19,2,0,3],"span":[340,25,26]},{"path":[4,19,2,1],"span":[341,2,29]},{"path":[4,19,2,1,4],"span":[341,2,10]},{"path":[4,19,2,1,5],"span":[341,11,17]},{"path":[4,19,2,1,1],"span":[341,18,24]},{"path":[4,19,2,1,3],"span":[341,27,28]},{"path":[4,19,2,2],"span":[342,2,30]},{"path":[4,19,2,2,4],"span":[342,2,10]},{"path":[4,19,2,2,5],"span":[342,11,17]},{"path":[4,19,2,2,1],"span":[342,18,25]},{"path":[4,19,2,2,3],"span":[342,28,29]},{"path":[4,19,2,3],"span":[343,2,34],"trailingComments":" unix:comment\n"},{"path":[4,19,2,3,4],"span":[343,2,10]},{"path":[4,19,2,3,5],"span":[343,11,17]},{"path":[4,19,2,3,1],"span":[343,18,29]},{"path":[4,19,2,3,3],"span":[343,32,33]},{"path":[4,19,2,4],"span":[344,2,32]},{"path":[4,19,2,4,4],"span":[344,2,10]},{"path":[4,19,2,4,5],"span":[344,11,17]},{"path":[4,19,2,4,1],"span":[344,18,27]},{"path":[4,19,2,4,3],"span":[344,30,31]},{"path":[4,19,2,5],"span":[346,2,40],"trailingComments":" unix:type\n"},{"path":[4,19,2,5,4],"span":[346,2,10]},{"path":[4,19,2,5,6],"span":[346,11,22]},{"path":[4,19,2,5,1],"span":[346,23,35]},{"path":[4,19,2,5,3],"span":[346,38,39]},{"path":[4,19,2,6],"span":[348,2,26]},{"path":[4,19,2,6,4],"span":[348,2,10]},{"path":[4,19,2,6,5],"span":[348,11,17]},{"path":[4,19,2,6,1],"span":[348,18,21]},{"path":[4,19,2,6,3],"span":[348,24,25]},{"path":[4,19,2,7],"span":[349,2,36]},{"path":[4,19,2,7,4],"span":[349,2,10]},{"path":[4,19,2,7,6],"span":[349,11,22]},{"path":[4,19,2,7,1],"span":[349,23,31]},{"path":[4,19,2,7,3],"span":[349,34,35]},{"path":[4,19,2,8],"span":[351,2,34]},{"path":[4,19,2,8,4],"span":[351,2,10]},{"path":[4,19,2,8,5],"span":[351,11,15]},{"path":[4,19,2,8,1],"span":[351,16,29]},{"path":[4,19,2,8,3],"span":[351,32,33]},{"path":[4,19,2,9],"span":[352,2,30]},{"path":[4,19,2,9,4],"span":[352,2,10]},{"path":[4,19,2,9,5],"span":[352,11,15]},{"path":[4,19,2,9,1],"span":[352,16,24]},{"path":[4,19,2,9,3],"span":[352,27,29]},{"path":[4,19,2,10],"span":[353,2,29]},{"path":[4,19,2,10,4],"span":[353,2,10]},{"path":[4,19,2,10,5],"span":[353,11,15]},{"path":[4,19,2,10,1],"span":[353,16,23]},{"path":[4,19,2,10,3],"span":[353,26,28]},{"path":[4,19,2,11],"span":[354,2,41]},{"path":[4,19,2,11,4],"span":[354,2,10]},{"path":[4,19,2,11,5],"span":[354,11,15]},{"path":[4,19,2,11,1],"span":[354,16,35]},{"path":[4,19,2,11,3],"span":[354,38,40]},{"path":[4,19,2,12],"span":[355,2,38]},{"path":[4,19,2,12,4],"span":[355,2,10]},{"path":[4,19,2,12,5],"span":[355,11,15]},{"path":[4,19,2,12,1],"span":[355,16,32]},{"path":[4,19,2,12,3],"span":[355,35,37]},{"path":[4,19,2,13],"span":[356,2,39]},{"path":[4,19,2,13,4],"span":[356,2,10]},{"path":[4,19,2,13,5],"span":[356,11,15]},{"path":[4,19,2,13,1],"span":[356,16,33]},{"path":[4,19,2,13,3],"span":[356,36,38]},{"path":[4,19,2,14],"span":[358,2,30]},{"path":[4,19,2,14,4],"span":[358,2,10]},{"path":[4,19,2,14,5],"span":[358,11,17]},{"path":[4,19,2,14,1],"span":[358,18,24]},{"path":[4,19,2,14,3],"span":[358,27,29]},{"path":[4,19,2,15],"span":[361,2,30],"leadingComments":" unix specific\n"},{"path":[4,19,2,15,4],"span":[361,2,10]},{"path":[4,19,2,15,5],"span":[361,11,16]},{"path":[4,19,2,15,1],"span":[361,17,24]},{"path":[4,19,2,15,3],"span":[361,27,29]},{"path":[4,19,2,16],"span":[362,2,31]},{"path":[4,19,2,16,4],"span":[362,2,10]},{"path":[4,19,2,16,5],"span":[362,11,16]},{"path":[4,19,2,16,1],"span":[362,17,25]},{"path":[4,19,2,16,3],"span":[362,28,30]},{"path":[4,19,2,17],"span":[364,2,38]},{"path":[4,19,2,17,4],"span":[364,2,10]},{"path":[4,19,2,17,5],"span":[364,11,17]},{"path":[4,19,2,17,1],"span":[364,18,32]},{"path":[4,19,2,17,3],"span":[364,35,37]},{"path":[4,19,2,18],"span":[365,2,35]},{"path":[4,19,2,18,4],"span":[365,2,10]},{"path":[4,19,2,18,5],"span":[365,11,17]},{"path":[4,19,2,18,1],"span":[365,18,29]},{"path":[4,19,2,18,3],"span":[365,32,34]},{"path":[4,20],"span":[372,0,384,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,20,1],"span":[372,8,17]},{"path":[4,20,2,0],"span":[373,2,27]},{"path":[4,20,2,0,4],"span":[373,2,10]},{"path":[4,20,2,0,5],"span":[373,11,17]},{"path":[4,20,2,0,1],"span":[373,18,22]},{"path":[4,20,2,0,3],"span":[373,25,26]},{"path":[4,20,2,1],"span":[374,2,30]},{"path":[4,20,2,1,4],"span":[374,2,10]},{"path":[4,20,2,1,5],"span":[374,11,17]},{"path":[4,20,2,1,1],"span":[374,18,25]},{"path":[4,20,2,1,3],"span":[374,28,29]},{"path":[4,20,2,2],"span":[375,2,34]},{"path":[4,20,2,2,4],"span":[375,2,10]},{"path":[4,20,2,2,5],"span":[375,11,17]},{"path":[4,20,2,2,1],"span":[375,18,29]},{"path":[4,20,2,2,3],"span":[375,32,33]},{"path":[4,20,2,3],"span":[376,2,29]},{"path":[4,20,2,3,4],"span":[376,2,10]},{"path":[4,20,2,3,5],"span":[376,11,17]},{"path":[4,20,2,3,1],"span":[376,18,24]},{"path":[4,20,2,3,3],"span":[376,27,28]},{"path":[4,20,2,4],"span":[378,2,26]},{"path":[4,20,2,4,4],"span":[378,2,10]},{"path":[4,20,2,4,5],"span":[378,11,17]},{"path":[4,20,2,4,1],"span":[378,18,21]},{"path":[4,20,2,4,3],"span":[378,24,25]},{"path":[4,20,2,5],"span":[379,2,34]},{"path":[4,20,2,5,4],"span":[379,2,10]},{"path":[4,20,2,5,5],"span":[379,11,15]},{"path":[4,20,2,5,1],"span":[379,16,29]},{"path":[4,20,2,5,3],"span":[379,32,33]},{"path":[4,20,2,6],"span":[382,2,30],"leadingComments":" unix specific\n"},{"path":[4,20,2,6,4],"span":[382,2,10]},{"path":[4,20,2,6,5],"span":[382,11,16]},{"path":[4,20,2,6,1],"span":[382,17,25]},{"path":[4,20,2,6,3],"span":[382,28,29]},{"path":[4,20,2,7],"span":[383,2,27]},{"path":[4,20,2,7,4],"span":[383,2,10]},{"path":[4,20,2,7,5],"span":[383,11,17]},{"path":[4,20,2,7,1],"span":[383,18,22]},{"path":[4,20,2,7,3],"span":[383,25,26]},{"path":[4,21],"span":[391,0,398,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,21,1],"span":[391,8,19]},{"path":[4,21,2,0],"span":[392,2,33]},{"path":[4,21,2,0,4],"span":[392,2,10]},{"path":[4,21,2,0,5],"span":[392,11,17]},{"path":[4,21,2,0,1],"span":[392,18,28]},{"path":[4,21,2,0,3],"span":[392,31,32]},{"path":[4,21,2,1],"span":[393,2,32]},{"path":[4,21,2,1,4],"span":[393,2,10]},{"path":[4,21,2,1,5],"span":[393,11,17]},{"path":[4,21,2,1,1],"span":[393,18,27]},{"path":[4,21,2,1,3],"span":[393,30,31]},{"path":[4,21,2,2],"span":[394,2,39]},{"path":[4,21,2,2,4],"span":[394,2,10]},{"path":[4,21,2,2,5],"span":[394,11,17]},{"path":[4,21,2,2,1],"span":[394,18,34]},{"path":[4,21,2,2,3],"span":[394,37,38]},{"path":[4,21,2,3],"span":[395,2,35]},{"path":[4,21,2,3,4],"span":[395,2,10]},{"path":[4,21,2,3,5],"span":[395,11,17]},{"path":[4,21,2,3,1],"span":[395,18,30]},{"path":[4,21,2,3,3],"span":[395,33,34]},{"path":[4,21,2,4],"span":[397,2,35]},{"path":[4,21,2,4,4],"span":[397,2,10]},{"path":[4,21,2,4,5],"span":[397,11,15]},{"path":[4,21,2,4,1],"span":[397,16,30]},{"path":[4,21,2,4,3],"span":[397,33,34]},{"path":[4,22],"span":[400,0,430,1]},{"path":[4,22,1],"span":[400,8,20]},{"path":[4,22,2,0],"span":[401,2,29]},{"path":[4,22,2,0,4],"span":[401,2,10]},{"path":[4,22,2,0,5],"span":[401,11,16]},{"path":[4,22,2,0,1],"span":[401,17,24]},{"path":[4,22,2,0,3],"span":[401,27,28]},{"path":[4,22,2,1],"span":[404,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,22,2,1,4],"span":[404,2,10]},{"path":[4,22,2,1,5],"span":[404,11,16]},{"path":[4,22,2,1,1],"span":[404,17,24]},{"path":[4,22,2,1,3],"span":[404,27,28]},{"path":[4,22,2,2],"span":[407,2,30],"leadingComments":" catalog id of: CatalogModel\n"},{"path":[4,22,2,2,4],"span":[407,2,10]},{"path":[4,22,2,2,5],"span":[407,11,16]},{"path":[4,22,2,2,1],"span":[407,17,25]},{"path":[4,22,2,2,3],"span":[407,28,29]},{"path":[4,22,2,3],"span":[410,2,31],"leadingComments":" catalog id of: CatalogModel\n"},{"path":[4,22,2,3,4],"span":[410,2,10]},{"path":[4,22,2,3,5],"span":[410,11,16]},{"path":[4,22,2,3,1],"span":[410,17,26]},{"path":[4,22,2,3,3],"span":[410,29,30]},{"path":[4,22,2,4],"span":[412,2,30]},{"path":[4,22,2,4,4],"span":[412,2,10]},{"path":[4,22,2,4,5],"span":[412,11,15]},{"path":[4,22,2,4,1],"span":[412,16,25]},{"path":[4,22,2,4,3],"span":[412,28,29]},{"path":[4,22,2,5],"span":[413,2,29]},{"path":[4,22,2,5,4],"span":[413,2,10]},{"path":[4,22,2,5,5],"span":[413,11,17]},{"path":[4,22,2,5,1],"span":[413,18,24]},{"path":[4,22,2,5,3],"span":[413,27,28]},{"path":[4,22,2,6],"span":[414,2,33]},{"path":[4,22,2,6,4],"span":[414,2,10]},{"path":[4,22,2,6,5],"span":[414,11,17]},{"path":[4,22,2,6,1],"span":[414,18,27]},{"path":[4,22,2,6,3],"span":[414,30,32]},{"path":[4,22,2,7],"span":[415,2,33]},{"path":[4,22,2,7,4],"span":[415,2,10]},{"path":[4,22,2,7,5],"span":[415,11,17]},{"path":[4,22,2,7,1],"span":[415,18,27]},{"path":[4,22,2,7,3],"span":[415,30,32]},{"path":[4,22,2,8],"span":[416,2,34]},{"path":[4,22,2,8,4],"span":[416,2,10]},{"path":[4,22,2,8,5],"span":[416,11,17]},{"path":[4,22,2,8,1],"span":[416,18,28]},{"path":[4,22,2,8,3],"span":[416,31,33]},{"path":[4,22,2,9],"span":[417,2,35]},{"path":[4,22,2,9,4],"span":[417,2,10]},{"path":[4,22,2,9,5],"span":[417,11,17]},{"path":[4,22,2,9,1],"span":[417,18,29]},{"path":[4,22,2,9,3],"span":[417,32,34]},{"path":[4,22,2,10],"span":[419,2,27]},{"path":[4,22,2,10,4],"span":[419,2,10]},{"path":[4,22,2,10,5],"span":[419,11,17]},{"path":[4,22,2,10,1],"span":[419,18,21]},{"path":[4,22,2,10,3],"span":[419,24,26]},{"path":[4,22,2,11],"span":[420,2,27]},{"path":[4,22,2,11,4],"span":[420,2,10]},{"path":[4,22,2,11,5],"span":[420,11,16]},{"path":[4,22,2,11,1],"span":[420,17,21]},{"path":[4,22,2,11,3],"span":[420,24,26]},{"path":[4,22,2,12],"span":[422,2,38]},{"path":[4,22,2,12,4],"span":[422,2,10]},{"path":[4,22,2,12,6],"span":[422,11,27]},{"path":[4,22,2,12,1],"span":[422,28,32]},{"path":[4,22,2,12,3],"span":[422,35,37]},{"path":[4,22,2,13],"span":[425,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,22,2,13,4],"span":[425,2,10]},{"path":[4,22,2,13,6],"span":[425,11,23]},{"path":[4,22,2,13,1],"span":[425,24,37]},{"path":[4,22,2,13,3],"span":[425,40,42]},{"path":[4,22,2,14],"span":[427,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,22,2,14,4],"span":[427,2,10]},{"path":[4,22,2,14,6],"span":[427,11,23]},{"path":[4,22,2,14,1],"span":[427,24,37]},{"path":[4,22,2,14,3],"span":[427,40,42]},{"path":[4,22,2,15],"span":[429,2,44],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,22,2,15,4],"span":[429,2,10]},{"path":[4,22,2,15,6],"span":[429,11,23]},{"path":[4,22,2,15,1],"span":[429,24,38]},{"path":[4,22,2,15,3],"span":[429,41,43]},{"path":[4,23],"span":[432,0,439,1]},{"path":[4,23,1],"span":[432,8,24]},{"path":[4,23,2,0],"span":[433,2,35]},{"path":[4,23,2,0,4],"span":[433,2,10]},{"path":[4,23,2,0,5],"span":[433,11,17]},{"path":[4,23,2,0,1],"span":[433,18,30]},{"path":[4,23,2,0,3],"span":[433,33,34]},{"path":[4,23,2,1],"span":[434,2,28]},{"path":[4,23,2,1,4],"span":[434,2,10]},{"path":[4,23,2,1,5],"span":[434,11,17]},{"path":[4,23,2,1,1],"span":[434,18,23]},{"path":[4,23,2,1,3],"span":[434,26,27]},{"path":[4,23,2,2],"span":[435,2,35]},{"path":[4,23,2,2,4],"span":[435,2,10]},{"path":[4,23,2,2,5],"span":[435,11,17]},{"path":[4,23,2,2,1],"span":[435,18,30]},{"path":[4,23,2,2,3],"span":[435,33,34]},{"path":[4,23,2,3],"span":[436,2,36]},{"path":[4,23,2,3,4],"span":[436,2,10]},{"path":[4,23,2,3,5],"span":[436,11,17]},{"path":[4,23,2,3,1],"span":[436,18,31]},{"path":[4,23,2,3,3],"span":[436,34,35]},{"path":[4,23,2,4],"span":[437,2,33]},{"path":[4,23,2,4,4],"span":[437,2,10]},{"path":[4,23,2,4,5],"span":[437,11,17]},{"path":[4,23,2,4,1],"span":[437,18,28]},{"path":[4,23,2,4,3],"span":[437,31,32]},{"path":[4,23,2,5],"span":[438,2,29]},{"path":[4,23,2,5,4],"span":[438,2,10]},{"path":[4,23,2,5,5],"span":[438,11,16]},{"path":[4,23,2,5,1],"span":[438,18,24]},{"path":[4,23,2,5,3],"span":[438,27,28]},{"path":[4,24],"span":[443,0,466,1]},{"path":[4,24,1],"span":[443,8,23]},{"path":[4,24,2,0],"span":[445,2,24],"leadingComments":" catalog id of: CatalogOs\n"},{"path":[4,24,2,0,4],"span":[445,2,10]},{"path":[4,24,2,0,5],"span":[445,11,16]},{"path":[4,24,2,0,1],"span":[445,17,19]},{"path":[4,24,2,0,3],"span":[445,22,23]},{"path":[4,24,2,1],"span":[448,2,30],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,24,2,1,4],"span":[448,2,10]},{"path":[4,24,2,1,5],"span":[448,11,16]},{"path":[4,24,2,1,1],"span":[448,17,24]},{"path":[4,24,2,1,3],"span":[448,27,29]},{"path":[4,24,2,2],"span":[450,2,27]},{"path":[4,24,2,2,4],"span":[450,2,10]},{"path":[4,24,2,2,5],"span":[450,11,17]},{"path":[4,24,2,2,1],"span":[450,18,22]},{"path":[4,24,2,2,3],"span":[450,25,26]},{"path":[4,24,2,3],"span":[451,2,30]},{"path":[4,24,2,3,4],"span":[451,2,10]},{"path":[4,24,2,3,5],"span":[451,11,17]},{"path":[4,24,2,3,1],"span":[451,18,25]},{"path":[4,24,2,3,3],"span":[451,28,29]},{"path":[4,24,2,4],"span":[452,2,28]},{"path":[4,24,2,4,4],"span":[452,2,10]},{"path":[4,24,2,4,5],"span":[452,11,17]},{"path":[4,24,2,4,1],"span":[452,18,23]},{"path":[4,24,2,4,3],"span":[452,26,27]},{"path":[4,24,2,5],"span":[454,2,33]},{"path":[4,24,2,5,4],"span":[454,2,10]},{"path":[4,24,2,5,5],"span":[454,11,17]},{"path":[4,24,2,5,1],"span":[454,18,28]},{"path":[4,24,2,5,3],"span":[454,31,32]},{"path":[4,24,2,6],"span":[456,2,26]},{"path":[4,24,2,6,4],"span":[456,2,10]},{"path":[4,24,2,6,5],"span":[456,11,17]},{"path":[4,24,2,6,1],"span":[456,18,21]},{"path":[4,24,2,6,3],"span":[456,24,25]},{"path":[4,24,2,7],"span":[457,2,29]},{"path":[4,24,2,7,4],"span":[457,2,10]},{"path":[4,24,2,7,5],"span":[457,11,17]},{"path":[4,24,2,7,1],"span":[457,18,24]},{"path":[4,24,2,7,3],"span":[457,27,28]},{"path":[4,24,2,8],"span":[459,2,26]},{"path":[4,24,2,8,4],"span":[459,2,10]},{"path":[4,24,2,8,5],"span":[459,11,16]},{"path":[4,24,2,8,1],"span":[459,17,21]},{"path":[4,24,2,8,3],"span":[459,24,25]},{"path":[4,24,8,0],"span":[461,2,465,3]},{"path":[4,24,8,0,1],"span":[461,8,12]},{"path":[4,24,2,9],"span":[462,4,44]},{"path":[4,24,2,9,6],"span":[462,4,30]},{"path":[4,24,2,9,1],"span":[462,31,38]},{"path":[4,24,2,9,3],"span":[462,41,43]},{"path":[4,24,2,10],"span":[463,4,36]},{"path":[4,24,2,10,6],"span":[463,4,26]},{"path":[4,24,2,10,1],"span":[463,27,30]},{"path":[4,24,2,10,3],"span":[463,33,35]},{"path":[4,24,2,11],"span":[464,4,40]},{"path":[4,24,2,11,6],"span":[464,4,28]},{"path":[4,24,2,11,1],"span":[464,29,34]},{"path":[4,24,2,11,3],"span":[464,37,39]},{"path":[4,25],"span":[468,0,470,1]},{"path":[4,25,1],"span":[468,8,30]},{"path":[4,25,2,0],"span":[469,2,37]},{"path":[4,25,2,0,4],"span":[469,2,10]},{"path":[4,25,2,0,5],"span":[469,11,17]},{"path":[4,25,2,0,1],"span":[469,18,32]},{"path":[4,25,2,0,3],"span":[469,35,36]},{"path":[4,26],"span":[472,0,478,1]},{"path":[4,26,1],"span":[472,8,32]},{"path":[4,26,2,0],"span":[473,2,34]},{"path":[4,26,2,0,4],"span":[473,2,10]},{"path":[4,26,2,0,5],"span":[473,11,17]},{"path":[4,26,2,0,1],"span":[473,18,29]},{"path":[4,26,2,0,3],"span":[473,32,33]},{"path":[4,26,2,1],"span":[474,2,37]},{"path":[4,26,2,1,4],"span":[474,2,10]},{"path":[4,26,2,1,5],"span":[474,11,17]},{"path":[4,26,2,1,1],"span":[474,18,32]},{"path":[4,26,2,1,3],"span":[474,35,36]},{"path":[4,26,2,2],"span":[475,2,37]},{"path":[4,26,2,2,4],"span":[475,2,10]},{"path":[4,26,2,2,5],"span":[475,11,17]},{"path":[4,26,2,2,1],"span":[475,18,32]},{"path":[4,26,2,2,3],"span":[475,35,36]},{"path":[4,26,2,3],"span":[476,2,35]},{"path":[4,26,2,3,4],"span":[476,2,10]},{"path":[4,26,2,3,5],"span":[476,11,17]},{"path":[4,26,2,3,1],"span":[476,18,30]},{"path":[4,26,2,3,3],"span":[476,33,34]},{"path":[4,26,2,4],"span":[477,2,33]},{"path":[4,26,2,4,4],"span":[477,2,10]},{"path":[4,26,2,4,5],"span":[477,11,17]},{"path":[4,26,2,4,1],"span":[477,18,28]},{"path":[4,26,2,4,3],"span":[477,31,32]},{"path":[4,27],"span":[480,0,533,1]},{"path":[4,27,1],"span":[480,8,34]},{"path":[4,27,2,0],"span":[481,2,30]},{"path":[4,27,2,0,4],"span":[481,2,10]},{"path":[4,27,2,0,5],"span":[481,11,17]},{"path":[4,27,2,0,1],"span":[481,18,25]},{"path":[4,27,2,0,3],"span":[481,28,29]},{"path":[4,27,2,1],"span":[482,2,34]},{"path":[4,27,2,1,4],"span":[482,2,10]},{"path":[4,27,2,1,5],"span":[482,11,16]},{"path":[4,27,2,1,1],"span":[482,17,29]},{"path":[4,27,2,1,3],"span":[482,32,33]},{"path":[4,27,2,2],"span":[483,2,28],"trailingComments":" \"WindowsVersion\": \"10.0.19045\"\n"},{"path":[4,27,2,2,4],"span":[483,2,10]},{"path":[4,27,2,2,5],"span":[483,11,17]},{"path":[4,27,2,2,1],"span":[483,18,23]},{"path":[4,27,2,2,3],"span":[483,26,27]},{"path":[4,27,2,3],"span":[484,2,35],"trailingComments":" OsVersion\": \"22H2\",\n"},{"path":[4,27,2,3,4],"span":[484,2,10]},{"path":[4,27,2,3,5],"span":[484,11,17]},{"path":[4,27,2,3,1],"span":[484,18,30]},{"path":[4,27,2,3,3],"span":[484,33,34]},{"path":[4,27,2,4],"span":[485,2,41]},{"path":[4,27,2,4,4],"span":[485,2,10]},{"path":[4,27,2,4,5],"span":[485,11,15]},{"path":[4,27,2,4,1],"span":[485,16,36]},{"path":[4,27,2,4,3],"span":[485,39,40]},{"path":[4,27,2,5],"span":[486,2,35]},{"path":[4,27,2,5,4],"span":[486,2,10]},{"path":[4,27,2,5,5],"span":[486,11,15]},{"path":[4,27,2,5,1],"span":[486,16,30]},{"path":[4,27,2,5,3],"span":[486,33,34]},{"path":[4,27,2,6],"span":[487,2,39]},{"path":[4,27,2,6,4],"span":[487,2,10]},{"path":[4,27,2,6,5],"span":[487,11,15]},{"path":[4,27,2,6,1],"span":[487,16,34]},{"path":[4,27,2,6,3],"span":[487,37,38]},{"path":[4,27,2,7],"span":[489,2,31],"trailingComments":" \"OsCode\": \"10.0.19045\" - with S if server\n"},{"path":[4,27,2,7,4],"span":[489,2,10]},{"path":[4,27,2,7,5],"span":[489,11,17]},{"path":[4,27,2,7,1],"span":[489,18,25]},{"path":[4,27,2,7,3],"span":[489,28,30]},{"path":[4,27,2,8],"span":[491,2,35]},{"path":[4,27,2,8,4],"span":[491,2,10]},{"path":[4,27,2,8,5],"span":[491,11,17]},{"path":[4,27,2,8,1],"span":[491,18,29]},{"path":[4,27,2,8,3],"span":[491,32,34]},{"path":[4,27,2,9],"span":[492,2,36],"trailingComments":" \"OsBuildNumber\": \"2486\",\n"},{"path":[4,27,2,9,4],"span":[492,2,10]},{"path":[4,27,2,9,5],"span":[492,11,17]},{"path":[4,27,2,9,1],"span":[492,18,30]},{"path":[4,27,2,9,3],"span":[492,33,35]},{"path":[4,27,2,10],"span":[493,2,34]},{"path":[4,27,2,10,4],"span":[493,2,10]},{"path":[4,27,2,10,5],"span":[493,11,17]},{"path":[4,27,2,10,1],"span":[493,18,28]},{"path":[4,27,2,10,3],"span":[493,31,33]},{"path":[4,27,2,11],"span":[494,2,31]},{"path":[4,27,2,11,4],"span":[494,2,10]},{"path":[4,27,2,11,5],"span":[494,11,17]},{"path":[4,27,2,11,1],"span":[494,18,25]},{"path":[4,27,2,11,3],"span":[494,28,30]},{"path":[4,27,2,12],"span":[495,2,32]},{"path":[4,27,2,12,4],"span":[495,2,10]},{"path":[4,27,2,12,5],"span":[495,11,17]},{"path":[4,27,2,12,1],"span":[495,18,26]},{"path":[4,27,2,12,3],"span":[495,29,31]},{"path":[4,27,2,13],"span":[496,2,36]},{"path":[4,27,2,13,4],"span":[496,2,10]},{"path":[4,27,2,13,5],"span":[496,11,17]},{"path":[4,27,2,13,1],"span":[496,18,30]},{"path":[4,27,2,13,3],"span":[496,33,35]},{"path":[4,27,2,14],"span":[497,2,35]},{"path":[4,27,2,14,4],"span":[497,2,10]},{"path":[4,27,2,14,5],"span":[497,11,17]},{"path":[4,27,2,14,1],"span":[497,18,29]},{"path":[4,27,2,14,3],"span":[497,32,34]},{"path":[4,27,2,15],"span":[498,2,39]},{"path":[4,27,2,15,4],"span":[498,2,10]},{"path":[4,27,2,15,5],"span":[498,11,16]},{"path":[4,27,2,15,1],"span":[498,17,33]},{"path":[4,27,2,15,3],"span":[498,36,38]},{"path":[4,27,2,16],"span":[499,2,27]},{"path":[4,27,2,16,4],"span":[499,2,10]},{"path":[4,27,2,16,5],"span":[499,11,15]},{"path":[4,27,2,16,1],"span":[499,16,21]},{"path":[4,27,2,16,3],"span":[499,24,26]},{"path":[4,27,2,17],"span":[500,2,35]},{"path":[4,27,2,17,4],"span":[500,2,10]},{"path":[4,27,2,17,5],"span":[500,11,17]},{"path":[4,27,2,17,1],"span":[500,18,29]},{"path":[4,27,2,17,3],"span":[500,32,34]},{"path":[4,27,2,18],"span":[501,2,52]},{"path":[4,27,2,18,4],"span":[501,2,10]},{"path":[4,27,2,18,5],"span":[501,11,17]},{"path":[4,27,2,18,1],"span":[501,18,46]},{"path":[4,27,2,18,3],"span":[501,49,51]},{"path":[4,27,2,19],"span":[502,2,55]},{"path":[4,27,2,19,4],"span":[502,2,10]},{"path":[4,27,2,19,6],"span":[502,11,36]},{"path":[4,27,2,19,1],"span":[502,37,49]},{"path":[4,27,2,19,3],"span":[502,52,54]},{"path":[4,27,2,20],"span":[503,2,47]},{"path":[4,27,2,20,4],"span":[503,2,10]},{"path":[4,27,2,20,5],"span":[503,11,17]},{"path":[4,27,2,20,1],"span":[503,18,41]},{"path":[4,27,2,20,3],"span":[503,44,46]},{"path":[4,27,2,21],"span":[504,2,48]},{"path":[4,27,2,21,4],"span":[504,2,10]},{"path":[4,27,2,21,5],"span":[504,11,17]},{"path":[4,27,2,21,1],"span":[504,18,42]},{"path":[4,27,2,21,3],"span":[504,45,47]},{"path":[4,27,2,22],"span":[505,2,36]},{"path":[4,27,2,22,4],"span":[505,2,10]},{"path":[4,27,2,22,5],"span":[505,11,17]},{"path":[4,27,2,22,1],"span":[505,18,30]},{"path":[4,27,2,22,3],"span":[505,33,35]},{"path":[4,27,2,23],"span":[506,2,40]},{"path":[4,27,2,23,4],"span":[506,2,10]},{"path":[4,27,2,23,6],"span":[506,11,22]},{"path":[4,27,2,23,1],"span":[506,23,34]},{"path":[4,27,2,23,3],"span":[506,37,39]},{"path":[4,27,2,24],"span":[507,2,45]},{"path":[4,27,2,24,4],"span":[507,2,10]},{"path":[4,27,2,24,6],"span":[507,11,22]},{"path":[4,27,2,24,1],"span":[507,23,39]},{"path":[4,27,2,24,3],"span":[507,42,44]},{"path":[4,27,2,25],"span":[508,2,36]},{"path":[4,27,2,25,4],"span":[508,2,10]},{"path":[4,27,2,25,6],"span":[508,11,22]},{"path":[4,27,2,25,1],"span":[508,23,30]},{"path":[4,27,2,25,3],"span":[508,33,35]},{"path":[4,27,2,26],"span":[509,2,39]},{"path":[4,27,2,26,4],"span":[509,2,10]},{"path":[4,27,2,26,5],"span":[509,11,17]},{"path":[4,27,2,26,1],"span":[509,18,33]},{"path":[4,27,2,26,3],"span":[509,36,38]},{"path":[4,27,2,27],"span":[510,2,43]},{"path":[4,27,2,27,4],"span":[510,2,10]},{"path":[4,27,2,27,5],"span":[510,11,17]},{"path":[4,27,2,27,1],"span":[510,18,37]},{"path":[4,27,2,27,3],"span":[510,40,42]},{"path":[4,27,2,28],"span":[511,2,39]},{"path":[4,27,2,28,4],"span":[511,2,10]},{"path":[4,27,2,28,5],"span":[511,11,17]},{"path":[4,27,2,28,1],"span":[511,18,33]},{"path":[4,27,2,28,3],"span":[511,36,38]},{"path":[4,27,2,29],"span":[512,2,37]},{"path":[4,27,2,29,4],"span":[512,2,10]},{"path":[4,27,2,29,5],"span":[512,11,17]},{"path":[4,27,2,29,1],"span":[512,18,31]},{"path":[4,27,2,29,3],"span":[512,34,36]},{"path":[4,27,2,30],"span":[513,2,50]},{"path":[4,27,2,30,4],"span":[513,2,10]},{"path":[4,27,2,30,5],"span":[513,11,17]},{"path":[4,27,2,30,1],"span":[513,18,44]},{"path":[4,27,2,30,3],"span":[513,47,49]},{"path":[4,27,2,31],"span":[514,2,50]},{"path":[4,27,2,31,4],"span":[514,2,10]},{"path":[4,27,2,31,5],"span":[514,11,17]},{"path":[4,27,2,31,1],"span":[514,18,44]},{"path":[4,27,2,31,3],"span":[514,47,49]},{"path":[4,27,2,32],"span":[515,2,51]},{"path":[4,27,2,32,4],"span":[515,2,10]},{"path":[4,27,2,32,5],"span":[515,11,17]},{"path":[4,27,2,32,1],"span":[515,18,45]},{"path":[4,27,2,32,3],"span":[515,48,50]},{"path":[4,27,2,33],"span":[516,2,30]},{"path":[4,27,2,33,4],"span":[516,2,10]},{"path":[4,27,2,33,5],"span":[516,11,17]},{"path":[4,27,2,33,1],"span":[516,18,24]},{"path":[4,27,2,33,3],"span":[516,27,29]},{"path":[4,27,2,34],"span":[517,2,37]},{"path":[4,27,2,34,4],"span":[517,2,10]},{"path":[4,27,2,34,5],"span":[517,11,17]},{"path":[4,27,2,34,1],"span":[517,18,31]},{"path":[4,27,2,34,3],"span":[517,34,36]},{"path":[4,27,2,35],"span":[518,2,40]},{"path":[4,27,2,35,4],"span":[518,2,10]},{"path":[4,27,2,35,5],"span":[518,11,17]},{"path":[4,27,2,35,1],"span":[518,18,34]},{"path":[4,27,2,35,3],"span":[518,37,39]},{"path":[4,27,2,36],"span":[519,2,49]},{"path":[4,27,2,36,4],"span":[519,2,10]},{"path":[4,27,2,36,5],"span":[519,11,17]},{"path":[4,27,2,36,1],"span":[519,18,43]},{"path":[4,27,2,36,3],"span":[519,46,48]},{"path":[4,27,2,37],"span":[520,2,49]},{"path":[4,27,2,37,4],"span":[520,2,10]},{"path":[4,27,2,37,5],"span":[520,11,17]},{"path":[4,27,2,37,1],"span":[520,18,43]},{"path":[4,27,2,37,3],"span":[520,46,48]},{"path":[4,27,2,38],"span":[521,2,41]},{"path":[4,27,2,38,4],"span":[521,2,10]},{"path":[4,27,2,38,5],"span":[521,11,17]},{"path":[4,27,2,38,1],"span":[521,18,35]},{"path":[4,27,2,38,3],"span":[521,38,40]},{"path":[4,27,2,39],"span":[522,2,45]},{"path":[4,27,2,39,4],"span":[522,2,10]},{"path":[4,27,2,39,5],"span":[522,11,17]},{"path":[4,27,2,39,1],"span":[522,18,39]},{"path":[4,27,2,39,3],"span":[522,42,44]},{"path":[4,27,2,40],"span":[523,2,42]},{"path":[4,27,2,40,4],"span":[523,2,10]},{"path":[4,27,2,40,5],"span":[523,11,17]},{"path":[4,27,2,40,1],"span":[523,18,36]},{"path":[4,27,2,40,3],"span":[523,39,41]},{"path":[4,27,2,41],"span":[524,2,46]},{"path":[4,27,2,41,4],"span":[524,2,10]},{"path":[4,27,2,41,5],"span":[524,11,17]},{"path":[4,27,2,41,1],"span":[524,18,40]},{"path":[4,27,2,41,3],"span":[524,43,45]},{"path":[4,27,2,42],"span":[525,2,41]},{"path":[4,27,2,42,4],"span":[525,2,10]},{"path":[4,27,2,42,6],"span":[525,11,22]},{"path":[4,27,2,42,1],"span":[525,23,35]},{"path":[4,27,2,42,3],"span":[525,38,40]},{"path":[4,27,2,43],"span":[526,2,34]},{"path":[4,27,2,43,4],"span":[526,2,10]},{"path":[4,27,2,43,5],"span":[526,11,17]},{"path":[4,27,2,43,1],"span":[526,18,28]},{"path":[4,27,2,43,3],"span":[526,31,33]},{"path":[4,27,2,44],"span":[527,2,36]},{"path":[4,27,2,44,4],"span":[527,2,10]},{"path":[4,27,2,44,5],"span":[527,11,17]},{"path":[4,27,2,44,1],"span":[527,18,30]},{"path":[4,27,2,44,3],"span":[527,33,35]},{"path":[4,27,2,45],"span":[528,2,40]},{"path":[4,27,2,45,4],"span":[528,2,10]},{"path":[4,27,2,45,5],"span":[528,11,17]},{"path":[4,27,2,45,1],"span":[528,18,34]},{"path":[4,27,2,45,3],"span":[528,37,39]},{"path":[4,27,2,46],"span":[529,2,66]},{"path":[4,27,2,46,4],"span":[529,2,10]},{"path":[4,27,2,46,5],"span":[529,11,15]},{"path":[4,27,2,46,1],"span":[529,16,60]},{"path":[4,27,2,46,3],"span":[529,63,65]},{"path":[4,27,2,47],"span":[530,2,60]},{"path":[4,27,2,47,4],"span":[530,2,10]},{"path":[4,27,2,47,5],"span":[530,11,15]},{"path":[4,27,2,47,1],"span":[530,16,54]},{"path":[4,27,2,47,3],"span":[530,57,59]},{"path":[4,27,2,48],"span":[531,2,55]},{"path":[4,27,2,48,4],"span":[531,2,10]},{"path":[4,27,2,48,5],"span":[531,11,15]},{"path":[4,27,2,48,1],"span":[531,16,49]},{"path":[4,27,2,48,3],"span":[531,52,54]},{"path":[4,27,2,49],"span":[532,2,64]},{"path":[4,27,2,49,4],"span":[532,2,10]},{"path":[4,27,2,49,5],"span":[532,11,17]},{"path":[4,27,2,49,1],"span":[532,18,58]},{"path":[4,27,2,49,3],"span":[532,61,63]},{"path":[4,28],"span":[537,0,540,1],"leadingComments":" OS Feature, i.e. WindowsFeature "},{"path":[4,28,1],"span":[537,8,30]},{"path":[4,28,2,0],"span":[538,2,18]},{"path":[4,28,2,0,5],"span":[538,2,8]},{"path":[4,28,2,0,1],"span":[538,9,13]},{"path":[4,28,2,0,3],"span":[538,16,17]},{"path":[4,28,2,1],"span":[539,2,21]},{"path":[4,28,2,1,5],"span":[539,2,8]},{"path":[4,28,2,1,1],"span":[539,9,16]},{"path":[4,28,2,1,3],"span":[539,19,20]},{"path":[4,29],"span":[543,0,559,1],"leadingComments":" OS Patch, i.e. Windows KB's, aka Hotfix, aka QuickFixEngieering "},{"path":[4,29,1],"span":[543,8,28]},{"path":[4,29,2,0],"span":[545,2,16],"leadingComments":" from hot_fix_id, e.g.: \"KB4570334\"\n"},{"path":[4,29,2,0,5],"span":[545,2,8]},{"path":[4,29,2,0,1],"span":[545,9,11]},{"path":[4,29,2,0,3],"span":[545,14,15]},{"path":[4,29,2,1],"span":[548,2,27],"leadingComments":" from description, e.g.: Security Update\n"},{"path":[4,29,2,1,4],"span":[548,2,10]},{"path":[4,29,2,1,5],"span":[548,11,17]},{"path":[4,29,2,1,1],"span":[548,18,22]},{"path":[4,29,2,1,3],"span":[548,25,26]},{"path":[4,29,2,2],"span":[550,2,54]},{"path":[4,29,2,2,4],"span":[550,2,10]},{"path":[4,29,2,2,6],"span":[550,11,36]},{"path":[4,29,2,2,1],"span":[550,37,49]},{"path":[4,29,2,2,3],"span":[550,52,53]},{"path":[4,29,2,3],"span":[553,2,33],"leadingComments":" e.g.: \"NT AUTHORITY\\\\SYSTEM\"\n"},{"path":[4,29,2,3,4],"span":[553,2,10]},{"path":[4,29,2,3,5],"span":[553,11,17]},{"path":[4,29,2,3,1],"span":[553,18,28]},{"path":[4,29,2,3,3],"span":[553,31,32]},{"path":[4,29,2,4],"span":[555,2,31]},{"path":[4,29,2,4,4],"span":[555,2,10]},{"path":[4,29,2,4,5],"span":[555,11,17]},{"path":[4,29,2,4,1],"span":[555,18,26]},{"path":[4,29,2,4,3],"span":[555,29,30]},{"path":[4,29,2,5],"span":[557,2,43]},{"path":[4,29,2,5,4],"span":[557,2,10]},{"path":[4,29,2,5,5],"span":[557,11,17]},{"path":[4,29,2,5,1],"span":[557,18,38]},{"path":[4,29,2,5,3],"span":[557,41,42]},{"path":[4,30],"span":[562,0,565,1],"leadingComments":" Network Interface cards "},{"path":[4,30,1],"span":[562,8,25]},{"path":[4,30,2,0],"span":[563,2,42]},{"path":[4,30,2,0,6],"span":[563,2,27]},{"path":[4,30,2,0,1],"span":[563,28,37]},{"path":[4,30,2,0,3],"span":[563,40,41]},{"path":[4,30,2,1],"span":[564,2,42]},{"path":[4,30,2,1,4],"span":[564,2,10]},{"path":[4,30,2,1,6],"span":[564,11,27]},{"path":[4,30,2,1,1],"span":[564,28,37]},{"path":[4,30,2,1,3],"span":[564,40,41]},{"path":[4,31],"span":[567,0,590,1]},{"path":[4,31,1],"span":[567,8,24]},{"path":[4,31,2,0],"span":[568,2,18]},{"path":[4,31,2,0,5],"span":[568,2,8]},{"path":[4,31,2,0,1],"span":[568,9,13]},{"path":[4,31,2,0,3],"span":[568,16,17]},{"path":[4,31,2,1],"span":[569,2,18]},{"path":[4,31,2,1,5],"span":[569,2,8]},{"path":[4,31,2,1,1],"span":[569,9,13]},{"path":[4,31,2,1,3],"span":[569,16,17]},{"path":[4,31,2,2],"span":[570,2,22]},{"path":[4,31,2,2,5],"span":[570,2,8]},{"path":[4,31,2,2,1],"span":[570,9,17]},{"path":[4,31,2,2,3],"span":[570,20,21]},{"path":[4,31,2,3],"span":[572,2,25]},{"path":[4,31,2,3,4],"span":[572,2,10]},{"path":[4,31,2,3,5],"span":[572,11,17]},{"path":[4,31,2,3,1],"span":[572,18,20]},{"path":[4,31,2,3,3],"span":[572,23,24]},{"path":[4,31,2,4],"span":[574,2,26]},{"path":[4,31,2,4,4],"span":[574,2,10]},{"path":[4,31,2,4,5],"span":[574,11,17]},{"path":[4,31,2,4,1],"span":[574,18,21]},{"path":[4,31,2,4,3],"span":[574,24,25]},{"path":[4,31,2,5],"span":[576,2,33]},{"path":[4,31,2,5,4],"span":[576,2,10]},{"path":[4,31,2,5,5],"span":[576,11,15]},{"path":[4,31,2,5,1],"span":[576,16,28]},{"path":[4,31,2,5,3],"span":[576,31,32]},{"path":[4,31,2,6],"span":[577,2,37]},{"path":[4,31,2,6,4],"span":[577,2,10]},{"path":[4,31,2,6,5],"span":[577,11,17]},{"path":[4,31,2,6,1],"span":[577,18,32]},{"path":[4,31,2,6,3],"span":[577,35,36]},{"path":[4,31,2,7],"span":[579,2,31]},{"path":[4,31,2,7,4],"span":[579,2,10]},{"path":[4,31,2,7,6],"span":[579,11,23]},{"path":[4,31,2,7,1],"span":[579,24,26]},{"path":[4,31,2,7,3],"span":[579,29,30]},{"path":[4,31,2,8],"span":[581,2,33]},{"path":[4,31,2,8,4],"span":[581,2,10]},{"path":[4,31,2,8,5],"span":[581,11,17]},{"path":[4,31,2,8,1],"span":[581,18,28]},{"path":[4,31,2,8,3],"span":[581,31,32]},{"path":[4,31,2,9],"span":[582,2,35]},{"path":[4,31,2,9,4],"span":[582,2,10]},{"path":[4,31,2,9,5],"span":[582,11,17]},{"path":[4,31,2,9,1],"span":[582,18,29]},{"path":[4,31,2,9,3],"span":[582,32,34]},{"path":[4,31,2,10],"span":[584,2,34]},{"path":[4,31,2,10,4],"span":[584,2,10]},{"path":[4,31,2,10,5],"span":[584,11,17]},{"path":[4,31,2,10,1],"span":[584,18,28]},{"path":[4,31,2,10,3],"span":[584,31,33]},{"path":[4,31,2,11],"span":[585,2,37]},{"path":[4,31,2,11,4],"span":[585,2,10]},{"path":[4,31,2,11,5],"span":[585,11,17]},{"path":[4,31,2,11,1],"span":[585,18,31]},{"path":[4,31,2,11,3],"span":[585,34,36]},{"path":[4,31,2,12],"span":[586,2,54]},{"path":[4,31,2,12,4],"span":[586,2,10]},{"path":[4,31,2,12,5],"span":[586,11,17]},{"path":[4,31,2,12,1],"span":[586,18,48]},{"path":[4,31,2,12,3],"span":[586,51,53]},{"path":[4,31,2,13],"span":[588,2,36]},{"path":[4,31,2,13,4],"span":[588,2,10]},{"path":[4,31,2,13,5],"span":[588,11,17]},{"path":[4,31,2,13,1],"span":[588,18,30]},{"path":[4,31,2,13,3],"span":[588,33,35]},{"path":[4,31,2,14],"span":[589,2,37]},{"path":[4,31,2,14,4],"span":[589,2,10]},{"path":[4,31,2,14,5],"span":[589,11,17]},{"path":[4,31,2,14,1],"span":[589,18,31]},{"path":[4,31,2,14,3],"span":[589,34,36]},{"path":[4,32],"span":[593,0,596,1],"leadingComments":" Network IP address with IP and subnet "},{"path":[4,32,1],"span":[593,8,20]},{"path":[4,32,2,0],"span":[594,2,16]},{"path":[4,32,2,0,5],"span":[594,2,8]},{"path":[4,32,2,0,1],"span":[594,9,11]},{"path":[4,32,2,0,3],"span":[594,14,15]},{"path":[4,32,2,1],"span":[595,2,20]},{"path":[4,32,2,1,5],"span":[595,2,8]},{"path":[4,32,2,1,1],"span":[595,9,15]},{"path":[4,32,2,1,3],"span":[595,18,19]},{"path":[4,33],"span":[599,0,640,1],"leadingComments":" Processor *"},{"path":[4,33,1],"span":[599,8,17]},{"path":[4,33,2,0],"span":[600,2,21]},{"path":[4,33,2,0,5],"span":[600,2,8]},{"path":[4,33,2,0,1],"span":[600,10,14]},{"path":[4,33,2,0,3],"span":[600,17,18]},{"path":[4,33,2,1],"span":[601,2,36],"trailingComments":" Linux-only\n"},{"path":[4,33,2,1,4],"span":[601,2,10]},{"path":[4,33,2,1,5],"span":[601,11,17]},{"path":[4,33,2,1,1],"span":[601,18,31]},{"path":[4,33,2,1,3],"span":[601,34,35]},{"path":[4,33,2,2],"span":[602,2,35],"trailingComments":" Windows-only\n"},{"path":[4,33,2,2,4],"span":[602,2,10]},{"path":[4,33,2,2,5],"span":[602,11,16]},{"path":[4,33,2,2,1],"span":[602,17,30]},{"path":[4,33,2,2,3],"span":[602,33,34]},{"path":[4,33,2,3],"span":[603,2,40],"trailingComments":" Consolidate on-prem fields into single numeric list with translations\n"},{"path":[4,33,2,3,4],"span":[603,2,10]},{"path":[4,33,2,3,6],"span":[603,11,22]},{"path":[4,33,2,3,1],"span":[603,23,35]},{"path":[4,33,2,3,3],"span":[603,38,39]},{"path":[4,33,2,4],"span":[604,2,34],"trailingComments":" Windows-only\n"},{"path":[4,33,2,4,4],"span":[604,2,10]},{"path":[4,33,2,4,5],"span":[604,11,16]},{"path":[4,33,2,4,1],"span":[604,17,29]},{"path":[4,33,2,4,3],"span":[604,32,33]},{"path":[4,33,2,5],"span":[605,2,32],"trailingComments":" Standardize to numeric\n"},{"path":[4,33,2,5,4],"span":[605,2,10]},{"path":[4,33,2,5,5],"span":[605,11,17]},{"path":[4,33,2,5,1],"span":[605,18,27]},{"path":[4,33,2,5,3],"span":[605,30,31]},{"path":[4,33,2,6],"span":[606,2,33],"trailingComments":" Linux-only\n"},{"path":[4,33,2,6,4],"span":[606,2,10]},{"path":[4,33,2,6,5],"span":[606,11,17]},{"path":[4,33,2,6,1],"span":[606,18,28]},{"path":[4,33,2,6,3],"span":[606,31,32]},{"path":[4,33,2,7],"span":[607,2,30],"trailingComments":" Windows-only\n"},{"path":[4,33,2,7,4],"span":[607,2,10]},{"path":[4,33,2,7,5],"span":[607,11,17]},{"path":[4,33,2,7,1],"span":[607,18,25]},{"path":[4,33,2,7,3],"span":[607,28,29]},{"path":[4,33,2,8],"span":[608,2,41],"trailingComments":" Standardize values to numeric (MHz)\n"},{"path":[4,33,2,8,4],"span":[608,2,10]},{"path":[4,33,2,8,5],"span":[608,11,16]},{"path":[4,33,2,8,1],"span":[608,17,36]},{"path":[4,33,2,8,3],"span":[608,39,40]},{"path":[4,33,2,9],"span":[609,2,33],"trailingComments":" Windows-only\n"},{"path":[4,33,2,9,4],"span":[609,2,10]},{"path":[4,33,2,9,5],"span":[609,11,16]},{"path":[4,33,2,9,1],"span":[609,17,27]},{"path":[4,33,2,9,3],"span":[609,30,32]},{"path":[4,33,2,10],"span":[610,2,33],"trailingComments":" Windows-only\n"},{"path":[4,33,2,10,4],"span":[610,2,10]},{"path":[4,33,2,10,5],"span":[610,11,17]},{"path":[4,33,2,10,1],"span":[610,18,27]},{"path":[4,33,2,10,3],"span":[610,30,32]},{"path":[4,33,2,11],"span":[611,2,41],"trailingComments":" Windows-only\n"},{"path":[4,33,2,11,4],"span":[611,2,10]},{"path":[4,33,2,11,5],"span":[611,11,16]},{"path":[4,33,2,11,1],"span":[611,17,35]},{"path":[4,33,2,11,3],"span":[611,38,40]},{"path":[4,33,2,12],"span":[612,2,35],"trailingComments":" Consolidate on-prem fields into single numeric list with translations\n"},{"path":[4,33,2,12,4],"span":[612,2,10]},{"path":[4,33,2,12,6],"span":[612,11,22]},{"path":[4,33,2,12,1],"span":[612,23,29]},{"path":[4,33,2,12,3],"span":[612,32,34]},{"path":[4,33,2,13],"span":[613,2,41],"trailingComments":" Linux-only\n"},{"path":[4,33,2,13,4],"span":[613,2,10]},{"path":[4,33,2,13,5],"span":[613,11,17]},{"path":[4,33,2,13,1],"span":[613,18,35]},{"path":[4,33,2,13,3],"span":[613,38,40]},{"path":[4,33,2,14],"span":[614,2,40],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,33,2,14,4],"span":[614,2,10]},{"path":[4,33,2,14,5],"span":[614,11,16]},{"path":[4,33,2,14,1],"span":[614,17,34]},{"path":[4,33,2,14,3],"span":[614,37,39]},{"path":[4,33,2,15],"span":[615,2,40],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,33,2,15,4],"span":[615,2,10]},{"path":[4,33,2,15,5],"span":[615,11,16]},{"path":[4,33,2,15,1],"span":[615,17,34]},{"path":[4,33,2,15,3],"span":[615,37,39]},{"path":[4,33,2,16],"span":[616,2,39],"trailingComments":" Standardize values to int (kilobytes)\n"},{"path":[4,33,2,16,4],"span":[616,2,10]},{"path":[4,33,2,16,5],"span":[616,11,16]},{"path":[4,33,2,16,1],"span":[616,17,33]},{"path":[4,33,2,16,3],"span":[616,36,38]},{"path":[4,33,2,17],"span":[617,2,41],"trailingComments":" Windows-only\n"},{"path":[4,33,2,17,4],"span":[617,2,10]},{"path":[4,33,2,17,5],"span":[617,11,16]},{"path":[4,33,2,17,1],"span":[617,17,35]},{"path":[4,33,2,17,3],"span":[617,38,40]},{"path":[4,33,2,18],"span":[618,2,39],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,33,2,18,4],"span":[618,2,10]},{"path":[4,33,2,18,5],"span":[618,11,16]},{"path":[4,33,2,18,1],"span":[618,17,33]},{"path":[4,33,2,18,3],"span":[618,36,38]},{"path":[4,33,2,19],"span":[619,2,28],"trailingComments":" Windows-only, unclear meaning\n"},{"path":[4,33,2,19,4],"span":[619,2,10]},{"path":[4,33,2,19,5],"span":[619,11,16]},{"path":[4,33,2,19,1],"span":[619,17,22]},{"path":[4,33,2,19,3],"span":[619,25,27]},{"path":[4,33,2,20],"span":[620,2,44]},{"path":[4,33,2,20,4],"span":[620,2,10]},{"path":[4,33,2,20,5],"span":[620,11,16]},{"path":[4,33,2,20,1],"span":[620,17,36]},{"path":[4,33,2,20,3],"span":[620,39,41]},{"path":[4,33,2,21],"span":[621,2,38]},{"path":[4,33,2,21,4],"span":[621,2,10]},{"path":[4,33,2,21,5],"span":[621,11,17]},{"path":[4,33,2,21,1],"span":[621,18,30]},{"path":[4,33,2,21,3],"span":[621,33,35]},{"path":[4,33,2,22],"span":[622,2,42],"trailingComments":" Standardize Linux values to int (MHz)\n"},{"path":[4,33,2,22,4],"span":[622,2,10]},{"path":[4,33,2,22,5],"span":[622,11,16]},{"path":[4,33,2,22,1],"span":[622,17,36]},{"path":[4,33,2,22,3],"span":[622,39,41]},{"path":[4,33,2,23],"span":[623,2,42],"trailingComments":" Linux-only, standardize to numeric (MHz)\n"},{"path":[4,33,2,23,4],"span":[623,2,10]},{"path":[4,33,2,23,5],"span":[623,11,16]},{"path":[4,33,2,23,1],"span":[623,17,36]},{"path":[4,33,2,23,3],"span":[623,39,41]},{"path":[4,33,2,24],"span":[624,2,35],"trailingComments":" Linux-only, standardize to numeric\n"},{"path":[4,33,2,24,4],"span":[624,2,10]},{"path":[4,33,2,24,5],"span":[624,11,16]},{"path":[4,33,2,24,1],"span":[624,17,29]},{"path":[4,33,2,24,3],"span":[624,32,34]},{"path":[4,33,2,25],"span":[625,2,32],"trailingComments":" Linux-only\n"},{"path":[4,33,2,25,4],"span":[625,2,10]},{"path":[4,33,2,25,5],"span":[625,11,17]},{"path":[4,33,2,25,1],"span":[625,18,26]},{"path":[4,33,2,25,3],"span":[625,29,31]},{"path":[4,33,2,26],"span":[626,2,45]},{"path":[4,33,2,26,4],"span":[626,2,10]},{"path":[4,33,2,26,5],"span":[626,11,16]},{"path":[4,33,2,26,1],"span":[626,17,37]},{"path":[4,33,2,26,3],"span":[626,40,42]},{"path":[4,33,2,27],"span":[627,2,36],"trailingComments":" Windows-only, probably not used much by customers due to its complexity\n"},{"path":[4,33,2,27,4],"span":[627,2,10]},{"path":[4,33,2,27,5],"span":[627,11,17]},{"path":[4,33,2,27,1],"span":[627,18,30]},{"path":[4,33,2,27,3],"span":[627,33,35]},{"path":[4,33,2,28],"span":[628,2,43],"trailingComments":" Windows-only\n"},{"path":[4,33,2,28,4],"span":[628,2,10]},{"path":[4,33,2,28,6],"span":[628,11,22]},{"path":[4,33,2,28,1],"span":[628,23,37]},{"path":[4,33,2,28,3],"span":[628,40,42]},{"path":[4,33,2,29],"span":[629,2,31],"trailingComments":" Windows-only\n"},{"path":[4,33,2,29,4],"span":[629,2,10]},{"path":[4,33,2,29,5],"span":[629,11,16]},{"path":[4,33,2,29,1],"span":[629,17,25]},{"path":[4,33,2,29,3],"span":[629,28,30]},{"path":[4,33,2,30],"span":[630,2,42],"trailingComments":" Windows-only\n"},{"path":[4,33,2,30,4],"span":[630,2,10]},{"path":[4,33,2,30,5],"span":[630,11,17]},{"path":[4,33,2,30,1],"span":[630,18,36]},{"path":[4,33,2,30,3],"span":[630,39,41]},{"path":[4,33,2,31],"span":[631,2,31],"trailingComments":" Linux-only\n"},{"path":[4,33,2,31,4],"span":[631,2,10]},{"path":[4,33,2,31,5],"span":[631,11,16]},{"path":[4,33,2,31,1],"span":[631,18,25]},{"path":[4,33,2,31,3],"span":[631,28,30]},{"path":[4,33,2,32],"span":[632,2,35],"trailingComments":" Windows-only\n"},{"path":[4,33,2,32,4],"span":[632,2,10]},{"path":[4,33,2,32,6],"span":[632,11,22]},{"path":[4,33,2,32,1],"span":[632,23,29]},{"path":[4,33,2,32,3],"span":[632,32,34]},{"path":[4,33,2,33],"span":[633,2,31],"trailingComments":" Consolidate on-prem fields into single numeric list\n"},{"path":[4,33,2,33,4],"span":[633,2,10]},{"path":[4,33,2,33,5],"span":[633,11,16]},{"path":[4,33,2,33,1],"span":[633,17,25]},{"path":[4,33,2,33,3],"span":[633,28,30]},{"path":[4,33,2,34],"span":[634,2,54],"trailingComments":" Linux-only\n"},{"path":[4,33,2,34,4],"span":[634,2,10]},{"path":[4,33,2,34,5],"span":[634,11,16]},{"path":[4,33,2,34,1],"span":[634,17,48]},{"path":[4,33,2,34,3],"span":[634,51,53]},{"path":[4,33,2,35],"span":[635,2,33],"trailingComments":" Windows-only\n"},{"path":[4,33,2,35,4],"span":[635,2,10]},{"path":[4,33,2,35,5],"span":[635,11,17]},{"path":[4,33,2,35,1],"span":[635,18,27]},{"path":[4,33,2,35,3],"span":[635,30,32]},{"path":[4,33,2,36],"span":[636,2,43],"trailingComments":" Windows-only\n"},{"path":[4,33,2,36,4],"span":[636,2,10]},{"path":[4,33,2,36,6],"span":[636,11,22]},{"path":[4,33,2,36,1],"span":[636,23,37]},{"path":[4,33,2,36,3],"span":[636,40,42]},{"path":[4,33,2,37],"span":[637,2,31],"trailingComments":" Windows-only\n"},{"path":[4,33,2,37,4],"span":[637,2,10]},{"path":[4,33,2,37,5],"span":[637,11,17]},{"path":[4,33,2,37,1],"span":[637,18,25]},{"path":[4,33,2,37,3],"span":[637,28,30]},{"path":[4,33,2,38],"span":[638,2,38],"trailingComments":" Linux-only\n"},{"path":[4,33,2,38,4],"span":[638,2,10]},{"path":[4,33,2,38,5],"span":[638,11,17]},{"path":[4,33,2,38,1],"span":[638,18,32]},{"path":[4,33,2,38,3],"span":[638,35,37]},{"path":[4,33,2,39],"span":[639,2,49],"trailingComments":" Windows-only\n"},{"path":[4,33,2,39,4],"span":[639,2,10]},{"path":[4,33,2,39,6],"span":[639,11,22]},{"path":[4,33,2,39,1],"span":[639,23,43]},{"path":[4,33,2,39,3],"span":[639,46,48]},{"path":[4,34],"span":[643,0,653,1],"leadingComments":" Chassis *"},{"path":[4,34,1],"span":[643,8,15]},{"path":[4,34,2,0],"span":[645,2,25]},{"path":[4,34,2,0,6],"span":[645,2,13]},{"path":[4,34,2,0,1],"span":[645,16,20]},{"path":[4,34,2,0,3],"span":[645,23,24]},{"path":[4,34,2,1],"span":[646,2,33]},{"path":[4,34,2,1,4],"span":[646,2,10]},{"path":[4,34,2,1,5],"span":[646,11,15]},{"path":[4,34,2,1,1],"span":[646,16,28]},{"path":[4,34,2,1,3],"span":[646,31,32]},{"path":[4,34,2,2],"span":[647,2,41]},{"path":[4,34,2,2,4],"span":[647,2,10]},{"path":[4,34,2,2,5],"span":[647,11,17]},{"path":[4,34,2,2,1],"span":[647,24,36]},{"path":[4,34,2,2,3],"span":[647,39,40]},{"path":[4,34,2,3],"span":[648,2,43]},{"path":[4,34,2,3,4],"span":[648,2,10]},{"path":[4,34,2,3,6],"span":[648,11,22]},{"path":[4,34,2,3,1],"span":[648,23,38]},{"path":[4,34,2,3,3],"span":[648,41,42]},{"path":[4,34,2,4],"span":[649,2,42]},{"path":[4,34,2,4,4],"span":[649,2,10]},{"path":[4,34,2,4,5],"span":[649,11,17]},{"path":[4,34,2,4,1],"span":[649,24,37]},{"path":[4,34,2,4,3],"span":[649,40,41]},{"path":[4,34,2,5],"span":[650,2,38]},{"path":[4,34,2,5,4],"span":[650,2,10]},{"path":[4,34,2,5,5],"span":[650,11,17]},{"path":[4,34,2,5,1],"span":[650,24,33]},{"path":[4,34,2,5,3],"span":[650,36,37]},{"path":[4,34,2,6],"span":[651,2,36]},{"path":[4,34,2,6,4],"span":[651,2,10]},{"path":[4,34,2,6,5],"span":[651,11,17]},{"path":[4,34,2,6,1],"span":[651,24,31]},{"path":[4,34,2,6,3],"span":[651,34,35]},{"path":[4,34,2,7],"span":[652,2,40]},{"path":[4,34,2,7,4],"span":[652,2,10]},{"path":[4,34,2,7,6],"span":[652,11,22]},{"path":[4,34,2,7,1],"span":[652,23,35]},{"path":[4,34,2,7,3],"span":[652,38,39]},{"path":[4,35],"span":[658,0,670,1],"leadingComments":"\n Hard drive for computers: Windows.WindowsHardDisk, Unix.HardDisks, Mac.MacHardDisk\n"},{"path":[4,35,1],"span":[658,8,17]},{"path":[4,35,2,0],"span":[659,2,30]},{"path":[4,35,2,0,4],"span":[659,2,10]},{"path":[4,35,2,0,5],"span":[659,11,17]},{"path":[4,35,2,0,1],"span":[659,18,25]},{"path":[4,35,2,0,3],"span":[659,28,29]},{"path":[4,35,2,1],"span":[660,2,31]},{"path":[4,35,2,1,4],"span":[660,2,10]},{"path":[4,35,2,1,5],"span":[660,11,15]},{"path":[4,35,2,1,1],"span":[660,16,26]},{"path":[4,35,2,1,3],"span":[660,29,30]},{"path":[4,35,2,2],"span":[661,2,34]},{"path":[4,35,2,2,4],"span":[661,2,10]},{"path":[4,35,2,2,5],"span":[661,11,17]},{"path":[4,35,2,2,1],"span":[661,18,29]},{"path":[4,35,2,2,3],"span":[661,32,33]},{"path":[4,35,2,3],"span":[662,2,32]},{"path":[4,35,2,3,4],"span":[662,2,10]},{"path":[4,35,2,3,5],"span":[662,11,17]},{"path":[4,35,2,3,1],"span":[662,18,27]},{"path":[4,35,2,3,3],"span":[662,30,31]},{"path":[4,35,2,4],"span":[663,2,38]},{"path":[4,35,2,4,4],"span":[663,2,10]},{"path":[4,35,2,4,6],"span":[663,11,22]},{"path":[4,35,2,4,1],"span":[663,23,33]},{"path":[4,35,2,4,3],"span":[663,36,37]},{"path":[4,35,2,5],"span":[664,2,34]},{"path":[4,35,2,5,4],"span":[664,2,10]},{"path":[4,35,2,5,5],"span":[664,11,17]},{"path":[4,35,2,5,1],"span":[664,18,29]},{"path":[4,35,2,5,3],"span":[664,32,33]},{"path":[4,35,2,6],"span":[665,2,32]},{"path":[4,35,2,6,4],"span":[665,2,10]},{"path":[4,35,2,6,5],"span":[665,11,16]},{"path":[4,35,2,6,1],"span":[665,17,27]},{"path":[4,35,2,6,3],"span":[665,30,31]},{"path":[4,35,2,7],"span":[666,2,26]},{"path":[4,35,2,7,4],"span":[666,2,10]},{"path":[4,35,2,7,5],"span":[666,11,16]},{"path":[4,35,2,7,1],"span":[666,17,21]},{"path":[4,35,2,7,3],"span":[666,24,25]},{"path":[4,35,2,8],"span":[667,2,34]},{"path":[4,35,2,8,4],"span":[667,2,10]},{"path":[4,35,2,8,5],"span":[667,11,17]},{"path":[4,35,2,8,1],"span":[667,18,29]},{"path":[4,35,2,8,3],"span":[667,32,33]},{"path":[4,35,2,9],"span":[668,2,37]},{"path":[4,35,2,9,4],"span":[668,2,10]},{"path":[4,35,2,9,5],"span":[668,11,17]},{"path":[4,35,2,9,1],"span":[668,18,31]},{"path":[4,35,2,9,3],"span":[668,34,36]},{"path":[4,35,2,10],"span":[669,2,34]},{"path":[4,35,2,10,4],"span":[669,2,10]},{"path":[4,35,2,10,5],"span":[669,11,17]},{"path":[4,35,2,10,1],"span":[669,18,28]},{"path":[4,35,2,10,3],"span":[669,31,33]},{"path":[4,36],"span":[675,0,705,1],"leadingComments":"\n Volumes for Computers: Windows.Volume+Windows.EncryptableVolumes and Unix.Volumes\n"},{"path":[4,36,1],"span":[675,8,19]},{"path":[4,36,2,0],"span":[676,2,32]},{"path":[4,36,2,0,4],"span":[676,2,10]},{"path":[4,36,2,0,5],"span":[676,11,17]},{"path":[4,36,2,0,1],"span":[676,18,27]},{"path":[4,36,2,0,3],"span":[676,30,31]},{"path":[4,36,2,1],"span":[677,2,27],"trailingComments":" unix path, windows drive_letter\n"},{"path":[4,36,2,1,4],"span":[677,2,10]},{"path":[4,36,2,1,5],"span":[677,11,17]},{"path":[4,36,2,1,1],"span":[677,18,22]},{"path":[4,36,2,1,3],"span":[677,25,26]},{"path":[4,36,2,2],"span":[678,2,28],"trailingComments":" win and linux\n"},{"path":[4,36,2,2,4],"span":[678,2,10]},{"path":[4,36,2,2,5],"span":[678,11,17]},{"path":[4,36,2,2,1],"span":[678,18,23]},{"path":[4,36,2,2,3],"span":[678,26,27]},{"path":[4,36,2,3],"span":[679,2,27]},{"path":[4,36,2,3,4],"span":[679,2,10]},{"path":[4,36,2,3,5],"span":[679,11,17]},{"path":[4,36,2,3,1],"span":[679,18,22]},{"path":[4,36,2,3,3],"span":[679,25,26]},{"path":[4,36,2,4],"span":[681,2,30],"trailingComments":" windows capacity, size in unix\n"},{"path":[4,36,2,4,4],"span":[681,2,10]},{"path":[4,36,2,4,5],"span":[681,11,16]},{"path":[4,36,2,4,1],"span":[681,17,25]},{"path":[4,36,2,4,3],"span":[681,28,29]},{"path":[4,36,2,5],"span":[682,2,32]},{"path":[4,36,2,5,4],"span":[682,2,10]},{"path":[4,36,2,5,5],"span":[682,11,16]},{"path":[4,36,2,5,1],"span":[682,17,27]},{"path":[4,36,2,5,3],"span":[682,30,31]},{"path":[4,36,2,6],"span":[683,2,32]},{"path":[4,36,2,6,4],"span":[683,2,10]},{"path":[4,36,2,6,5],"span":[683,11,16]},{"path":[4,36,2,6,1],"span":[683,17,27]},{"path":[4,36,2,6,3],"span":[683,30,31]},{"path":[4,36,2,7],"span":[685,2,38],"trailingComments":" Windows: WMI mapped, Unix: string\n"},{"path":[4,36,2,7,4],"span":[685,2,10]},{"path":[4,36,2,7,6],"span":[685,11,22]},{"path":[4,36,2,7,1],"span":[685,23,33]},{"path":[4,36,2,7,3],"span":[685,36,37]},{"path":[4,36,2,8],"span":[686,2,45],"trailingComments":" from Windows if encrypted: Windows.EncryptableVolumes\n"},{"path":[4,36,2,8,4],"span":[686,2,10]},{"path":[4,36,2,8,6],"span":[686,11,22]},{"path":[4,36,2,8,1],"span":[686,23,40]},{"path":[4,36,2,8,3],"span":[686,43,44]},{"path":[4,36,2,9],"span":[688,2,41]},{"path":[4,36,2,9,4],"span":[688,2,10]},{"path":[4,36,2,9,5],"span":[688,11,17]},{"path":[4,36,2,9,1],"span":[688,18,35]},{"path":[4,36,2,9,3],"span":[688,38,40]},{"path":[4,36,2,10],"span":[689,2,41]},{"path":[4,36,2,10,4],"span":[689,2,10]},{"path":[4,36,2,10,5],"span":[689,11,17]},{"path":[4,36,2,10,1],"span":[689,18,35]},{"path":[4,36,2,10,3],"span":[689,38,40]},{"path":[4,36,2,11],"span":[690,2,35]},{"path":[4,36,2,11,4],"span":[690,2,10]},{"path":[4,36,2,11,5],"span":[690,11,17]},{"path":[4,36,2,11,1],"span":[690,18,29]},{"path":[4,36,2,11,3],"span":[690,32,34]},{"path":[4,36,2,12],"span":[692,2,32]},{"path":[4,36,2,12,4],"span":[692,2,10]},{"path":[4,36,2,12,5],"span":[692,11,15]},{"path":[4,36,2,12,1],"span":[692,16,26]},{"path":[4,36,2,12,3],"span":[692,29,31]},{"path":[4,36,2,13],"span":[693,2,32]},{"path":[4,36,2,13,4],"span":[693,2,10]},{"path":[4,36,2,13,5],"span":[693,11,15]},{"path":[4,36,2,13,1],"span":[693,16,26]},{"path":[4,36,2,13,3],"span":[693,29,31]},{"path":[4,36,2,14],"span":[694,2,35]},{"path":[4,36,2,14,4],"span":[694,2,10]},{"path":[4,36,2,14,5],"span":[694,11,15]},{"path":[4,36,2,14,1],"span":[694,16,29]},{"path":[4,36,2,14,3],"span":[694,32,34]},{"path":[4,36,2,15],"span":[695,2,35]},{"path":[4,36,2,15,4],"span":[695,2,10]},{"path":[4,36,2,15,5],"span":[695,11,15]},{"path":[4,36,2,15,1],"span":[695,16,29]},{"path":[4,36,2,15,3],"span":[695,32,34]},{"path":[4,36,2,16],"span":[696,2,38]},{"path":[4,36,2,16,4],"span":[696,2,10]},{"path":[4,36,2,16,5],"span":[696,11,15]},{"path":[4,36,2,16,1],"span":[696,16,32]},{"path":[4,36,2,16,3],"span":[696,35,37]},{"path":[4,36,2,17],"span":[697,2,39]},{"path":[4,36,2,17,4],"span":[697,2,10]},{"path":[4,36,2,17,5],"span":[697,11,15]},{"path":[4,36,2,17,1],"span":[697,16,33]},{"path":[4,36,2,17,3],"span":[697,36,38]},{"path":[4,36,2,18],"span":[698,2,42]},{"path":[4,36,2,18,4],"span":[698,2,10]},{"path":[4,36,2,18,5],"span":[698,11,15]},{"path":[4,36,2,18,1],"span":[698,16,36]},{"path":[4,36,2,18,3],"span":[698,39,41]},{"path":[4,36,2,19],"span":[699,2,53]},{"path":[4,36,2,19,4],"span":[699,2,10]},{"path":[4,36,2,19,5],"span":[699,11,15]},{"path":[4,36,2,19,1],"span":[699,16,47]},{"path":[4,36,2,19,3],"span":[699,50,52]},{"path":[4,36,2,20],"span":[702,2,31],"leadingComments":" unix\n"},{"path":[4,36,2,20,4],"span":[702,2,10]},{"path":[4,36,2,20,5],"span":[702,11,17]},{"path":[4,36,2,20,1],"span":[702,18,25]},{"path":[4,36,2,20,3],"span":[702,28,30]},{"path":[4,36,2,21],"span":[703,2,35]},{"path":[4,36,2,21,4],"span":[703,2,10]},{"path":[4,36,2,21,5],"span":[703,11,17]},{"path":[4,36,2,21,1],"span":[703,18,29]},{"path":[4,36,2,21,3],"span":[703,32,34]},{"path":[4,37],"span":[710,0,717,1],"leadingComments":"\n Network drives/volumes for Computers: Windows.MappedDrive and Mac.NetworkVolume\n"},{"path":[4,37,1],"span":[710,8,21]},{"path":[4,37,8,0],"span":[711,2,714,5]},{"path":[4,37,8,0,1],"span":[711,8,14]},{"path":[4,37,2,0],"span":[712,4,44]},{"path":[4,37,2,0,6],"span":[712,4,22]},{"path":[4,37,2,0,1],"span":[712,23,39]},{"path":[4,37,2,0,3],"span":[712,42,43]},{"path":[4,37,2,1],"span":[713,4,36]},{"path":[4,37,2,1,6],"span":[713,4,20]},{"path":[4,37,2,1,1],"span":[713,21,31]},{"path":[4,37,2,1,3],"span":[713,34,35]},{"path":[4,37,2,2],"span":[716,2,29]},{"path":[4,37,2,2,4],"span":[716,2,10]},{"path":[4,37,2,2,5],"span":[716,11,17]},{"path":[4,37,2,2,1],"span":[716,18,22]},{"path":[4,37,2,2,3],"span":[716,25,28]},{"path":[4,38],"span":[720,0,725,1],"leadingComments":" Network drive for Windows: Mapped drive.\n"},{"path":[4,38,1],"span":[720,8,26]},{"path":[4,38,2,0],"span":[721,2,26]},{"path":[4,38,2,0,5],"span":[721,2,8]},{"path":[4,38,2,0,1],"span":[721,9,21]},{"path":[4,38,2,0,3],"span":[721,24,25]},{"path":[4,38,2,1],"span":[722,2,32]},{"path":[4,38,2,1,4],"span":[722,2,10]},{"path":[4,38,2,1,5],"span":[722,11,17]},{"path":[4,38,2,1,1],"span":[722,18,27]},{"path":[4,38,2,1,3],"span":[722,30,31]},{"path":[4,38,2,2],"span":[723,2,34]},{"path":[4,38,2,2,4],"span":[723,2,10]},{"path":[4,38,2,2,5],"span":[723,11,17]},{"path":[4,38,2,2,1],"span":[723,18,29]},{"path":[4,38,2,2,3],"span":[723,32,33]},{"path":[4,38,2,3],"span":[724,2,34]},{"path":[4,38,2,3,4],"span":[724,2,10]},{"path":[4,38,2,3,5],"span":[724,11,17]},{"path":[4,38,2,3,1],"span":[724,18,29]},{"path":[4,38,2,3,3],"span":[724,32,33]},{"path":[4,39],"span":[728,0,734,1],"leadingComments":" Network volume for Mac: NetworkVolume.\n"},{"path":[4,39,1],"span":[728,8,24]},{"path":[4,39,2,0],"span":[729,2,27]},{"path":[4,39,2,0,4],"span":[729,2,10]},{"path":[4,39,2,0,5],"span":[729,11,17]},{"path":[4,39,2,0,1],"span":[729,18,22]},{"path":[4,39,2,0,3],"span":[729,25,26]},{"path":[4,39,2,1],"span":[730,2,35]},{"path":[4,39,2,1,4],"span":[730,2,10]},{"path":[4,39,2,1,5],"span":[730,11,17]},{"path":[4,39,2,1,1],"span":[730,18,30]},{"path":[4,39,2,1,3],"span":[730,33,34]},{"path":[4,39,2,2],"span":[731,2,36]},{"path":[4,39,2,2,4],"span":[731,2,10]},{"path":[4,39,2,2,5],"span":[731,11,17]},{"path":[4,39,2,2,1],"span":[731,18,31]},{"path":[4,39,2,2,3],"span":[731,34,35]},{"path":[4,39,2,3],"span":[732,2,35]},{"path":[4,39,2,3,4],"span":[732,2,10]},{"path":[4,39,2,3,5],"span":[732,11,17]},{"path":[4,39,2,3,1],"span":[732,18,30]},{"path":[4,39,2,3,3],"span":[732,33,34]},{"path":[4,39,2,4],"span":[733,2,36]},{"path":[4,39,2,4,4],"span":[733,2,10]},{"path":[4,39,2,4,5],"span":[733,11,17]},{"path":[4,39,2,4,1],"span":[733,18,31]},{"path":[4,39,2,4,3],"span":[733,34,35]},{"path":[4,40],"span":[739,0,746,1],"leadingComments":"\n Keyboard for computers: Windows.Keyboards\n"},{"path":[4,40,1],"span":[739,8,16]},{"path":[4,40,2,0],"span":[740,2,53]},{"path":[4,40,2,0,4],"span":[740,2,10]},{"path":[4,40,2,0,6],"span":[740,11,22]},{"path":[4,40,2,0,1],"span":[740,23,48]},{"path":[4,40,2,0,3],"span":[740,51,52]},{"path":[4,40,2,1],"span":[741,2,47]},{"path":[4,40,2,1,4],"span":[741,2,10]},{"path":[4,40,2,1,5],"span":[741,11,15]},{"path":[4,40,2,1,1],"span":[741,16,42]},{"path":[4,40,2,1,3],"span":[741,45,46]},{"path":[4,40,2,2],"span":[742,2,34]},{"path":[4,40,2,2,4],"span":[742,2,10]},{"path":[4,40,2,2,5],"span":[742,11,17]},{"path":[4,40,2,2,1],"span":[742,18,29]},{"path":[4,40,2,2,3],"span":[742,32,33]},{"path":[4,40,2,3],"span":[743,2,32]},{"path":[4,40,2,3,4],"span":[743,2,10]},{"path":[4,40,2,3,5],"span":[743,11,17]},{"path":[4,40,2,3,1],"span":[743,18,27]},{"path":[4,40,2,3,3],"span":[743,30,31]},{"path":[4,40,2,4],"span":[744,2,29]},{"path":[4,40,2,4,4],"span":[744,2,10]},{"path":[4,40,2,4,5],"span":[744,11,17]},{"path":[4,40,2,4,1],"span":[744,18,24]},{"path":[4,40,2,4,3],"span":[744,27,28]},{"path":[4,40,2,5],"span":[745,2,45]},{"path":[4,40,2,5,4],"span":[745,2,10]},{"path":[4,40,2,5,5],"span":[745,11,16]},{"path":[4,40,2,5,1],"span":[745,17,40]},{"path":[4,40,2,5,3],"span":[745,43,44]},{"path":[4,41],"span":[752,0,757,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,41,1],"span":[752,8,19]},{"path":[4,41,2,0],"span":[753,2,29]},{"path":[4,41,2,0,4],"span":[753,2,10]},{"path":[4,41,2,0,5],"span":[753,11,16]},{"path":[4,41,2,0,1],"span":[753,17,24]},{"path":[4,41,2,0,3],"span":[753,27,28]},{"path":[4,41,2,1],"span":[754,2,36]},{"path":[4,41,2,1,4],"span":[754,2,10]},{"path":[4,41,2,1,6],"span":[754,11,22]},{"path":[4,41,2,1,1],"span":[754,23,31]},{"path":[4,41,2,1,3],"span":[754,34,35]},{"path":[4,41,2,2],"span":[755,2,32]},{"path":[4,41,2,2,4],"span":[755,2,10]},{"path":[4,41,2,2,5],"span":[755,11,17]},{"path":[4,41,2,2,1],"span":[755,18,27]},{"path":[4,41,2,2,3],"span":[755,30,31]},{"path":[4,41,2,3],"span":[756,2,36]},{"path":[4,41,2,3,4],"span":[756,2,10]},{"path":[4,41,2,3,5],"span":[756,11,17]},{"path":[4,41,2,3,1],"span":[756,18,31]},{"path":[4,41,2,3,3],"span":[756,34,35]},{"path":[4,42],"span":[763,0,771,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,42,1],"span":[763,8,24]},{"path":[4,42,2,0],"span":[764,2,40]},{"path":[4,42,2,0,4],"span":[764,2,10]},{"path":[4,42,2,0,6],"span":[764,11,22]},{"path":[4,42,2,0,1],"span":[764,23,35]},{"path":[4,42,2,0,3],"span":[764,38,39]},{"path":[4,42,2,1],"span":[765,2,30]},{"path":[4,42,2,1,4],"span":[765,2,10]},{"path":[4,42,2,1,5],"span":[765,11,17]},{"path":[4,42,2,1,1],"span":[765,18,25]},{"path":[4,42,2,1,3],"span":[765,28,29]},{"path":[4,42,2,2],"span":[766,2,53]},{"path":[4,42,2,2,4],"span":[766,2,10]},{"path":[4,42,2,2,6],"span":[766,11,22]},{"path":[4,42,2,2,1],"span":[766,23,48]},{"path":[4,42,2,2,3],"span":[766,51,52]},{"path":[4,42,2,3],"span":[767,2,47]},{"path":[4,42,2,3,4],"span":[767,2,10]},{"path":[4,42,2,3,5],"span":[767,11,15]},{"path":[4,42,2,3,1],"span":[767,16,42]},{"path":[4,42,2,3,3],"span":[767,45,46]},{"path":[4,42,2,4],"span":[768,2,32]},{"path":[4,42,2,4,4],"span":[768,2,10]},{"path":[4,42,2,4,5],"span":[768,11,17]},{"path":[4,42,2,4,1],"span":[768,18,27]},{"path":[4,42,2,4,3],"span":[768,30,31]},{"path":[4,42,2,5],"span":[769,2,35]},{"path":[4,42,2,5,4],"span":[769,2,10]},{"path":[4,42,2,5,5],"span":[769,11,17]},{"path":[4,42,2,5,1],"span":[769,18,30]},{"path":[4,42,2,5,3],"span":[769,33,34]},{"path":[4,42,2,6],"span":[770,2,46]},{"path":[4,42,2,6,4],"span":[770,2,10]},{"path":[4,42,2,6,6],"span":[770,11,22]},{"path":[4,42,2,6,1],"span":[770,23,41]},{"path":[4,42,2,6,3],"span":[770,44,45]},{"path":[4,43],"span":[777,0,789,1],"leadingComments":"\n Pointing Device for computers, like mouse or trackpad: Windows.PointingDevice\n"},{"path":[4,43,1],"span":[777,8,22]},{"path":[4,43,2,0],"span":[778,2,30]},{"path":[4,43,2,0,4],"span":[778,2,10]},{"path":[4,43,2,0,5],"span":[778,11,17]},{"path":[4,43,2,0,1],"span":[778,18,25]},{"path":[4,43,2,0,3],"span":[778,28,29]},{"path":[4,43,2,1],"span":[779,2,32]},{"path":[4,43,2,1,4],"span":[779,2,10]},{"path":[4,43,2,1,5],"span":[779,11,17]},{"path":[4,43,2,1,1],"span":[779,18,27]},{"path":[4,43,2,1,3],"span":[779,30,31]},{"path":[4,43,2,2],"span":[780,2,44]},{"path":[4,43,2,2,4],"span":[780,2,10]},{"path":[4,43,2,2,6],"span":[780,11,22]},{"path":[4,43,2,2,1],"span":[780,23,39]},{"path":[4,43,2,2,3],"span":[780,42,43]},{"path":[4,43,2,3],"span":[781,2,45]},{"path":[4,43,2,3,4],"span":[781,2,10]},{"path":[4,43,2,3,5],"span":[781,11,16]},{"path":[4,43,2,3,1],"span":[781,18,40]},{"path":[4,43,2,3,3],"span":[781,43,44]},{"path":[4,43,2,4],"span":[782,2,38]},{"path":[4,43,2,4,4],"span":[782,2,10]},{"path":[4,43,2,4,6],"span":[782,11,22]},{"path":[4,43,2,4,1],"span":[782,23,33]},{"path":[4,43,2,4,3],"span":[782,36,37]},{"path":[4,43,2,5],"span":[783,2,36]},{"path":[4,43,2,5,4],"span":[783,2,10]},{"path":[4,43,2,5,5],"span":[783,11,17]},{"path":[4,43,2,5,1],"span":[783,18,31]},{"path":[4,43,2,5,3],"span":[783,34,35]},{"path":[4,43,2,6],"span":[784,2,34]},{"path":[4,43,2,6,4],"span":[784,2,10]},{"path":[4,43,2,6,5],"span":[784,11,17]},{"path":[4,43,2,6,1],"span":[784,18,29]},{"path":[4,43,2,6,3],"span":[784,32,33]},{"path":[4,43,2,7],"span":[785,2,35]},{"path":[4,43,2,7,4],"span":[785,2,10]},{"path":[4,43,2,7,5],"span":[785,11,17]},{"path":[4,43,2,7,1],"span":[785,18,30]},{"path":[4,43,2,7,3],"span":[785,33,34]},{"path":[4,43,2,8],"span":[786,2,40]},{"path":[4,43,2,8,4],"span":[786,2,10]},{"path":[4,43,2,8,5],"span":[786,11,16]},{"path":[4,43,2,8,1],"span":[786,18,35]},{"path":[4,43,2,8,3],"span":[786,38,39]},{"path":[4,43,2,9],"span":[787,2,42]},{"path":[4,43,2,9,4],"span":[787,2,10]},{"path":[4,43,2,9,6],"span":[787,11,22]},{"path":[4,43,2,9,1],"span":[787,23,36]},{"path":[4,43,2,9,3],"span":[787,39,41]},{"path":[4,43,2,10],"span":[788,2,44]},{"path":[4,43,2,10,4],"span":[788,2,10]},{"path":[4,43,2,10,5],"span":[788,11,16]},{"path":[4,43,2,10,1],"span":[788,18,38]},{"path":[4,43,2,10,3],"span":[788,41,43]},{"path":[4,44],"span":[794,0,801,1],"leadingComments":"\n AutoRunCommand: Windows.Autorun\n"},{"path":[4,44,1],"span":[794,8,22]},{"path":[4,44,2,0],"span":[795,2,30]},{"path":[4,44,2,0,4],"span":[795,2,10]},{"path":[4,44,2,0,5],"span":[795,11,17]},{"path":[4,44,2,0,1],"span":[795,18,25]},{"path":[4,44,2,0,3],"span":[795,28,29]},{"path":[4,44,2,1],"span":[796,2,30]},{"path":[4,44,2,1,4],"span":[796,2,10]},{"path":[4,44,2,1,5],"span":[796,11,17]},{"path":[4,44,2,1,1],"span":[796,18,25]},{"path":[4,44,2,1,3],"span":[796,28,29]},{"path":[4,44,2,2],"span":[797,2,31]},{"path":[4,44,2,2,4],"span":[797,2,10]},{"path":[4,44,2,2,5],"span":[797,11,17]},{"path":[4,44,2,2,1],"span":[797,18,26]},{"path":[4,44,2,2,3],"span":[797,29,30]},{"path":[4,44,2,3],"span":[798,2,27]},{"path":[4,44,2,3,4],"span":[798,2,10]},{"path":[4,44,2,3,5],"span":[798,11,17]},{"path":[4,44,2,3,1],"span":[798,18,22]},{"path":[4,44,2,3,3],"span":[798,25,26]},{"path":[4,44,2,4],"span":[799,2,27]},{"path":[4,44,2,4,4],"span":[799,2,10]},{"path":[4,44,2,4,5],"span":[799,11,17]},{"path":[4,44,2,4,1],"span":[799,18,22]},{"path":[4,44,2,4,3],"span":[799,25,26]},{"path":[4,44,2,5],"span":[800,2,31]},{"path":[4,44,2,5,4],"span":[800,2,10]},{"path":[4,44,2,5,5],"span":[800,11,17]},{"path":[4,44,2,5,1],"span":[800,18,26]},{"path":[4,44,2,5,3],"span":[800,29,30]},{"path":[4,45],"span":[806,0,817,1],"leadingComments":"\n BootConfig: Windows.BootConfig \n"},{"path":[4,45,1],"span":[806,8,18]},{"path":[4,45,2,0],"span":[807,2,37]},{"path":[4,45,2,0,4],"span":[807,2,10]},{"path":[4,45,2,0,5],"span":[807,11,17]},{"path":[4,45,2,0,1],"span":[807,18,32]},{"path":[4,45,2,0,3],"span":[807,35,36]},{"path":[4,45,2,1],"span":[808,2,30]},{"path":[4,45,2,1,4],"span":[808,2,10]},{"path":[4,45,2,1,5],"span":[808,11,17]},{"path":[4,45,2,1,1],"span":[808,18,25]},{"path":[4,45,2,1,3],"span":[808,28,29]},{"path":[4,45,2,2],"span":[809,2,27]},{"path":[4,45,2,2,4],"span":[809,2,10]},{"path":[4,45,2,2,5],"span":[809,11,17]},{"path":[4,45,2,2,1],"span":[809,18,22]},{"path":[4,45,2,2,3],"span":[809,25,26]},{"path":[4,45,2,3],"span":[810,2,41]},{"path":[4,45,2,3,4],"span":[810,2,10]},{"path":[4,45,2,3,5],"span":[810,11,17]},{"path":[4,45,2,3,1],"span":[810,18,36]},{"path":[4,45,2,3,3],"span":[810,39,40]},{"path":[4,45,2,4],"span":[811,2,40]},{"path":[4,45,2,4,4],"span":[811,2,10]},{"path":[4,45,2,4,5],"span":[811,11,17]},{"path":[4,45,2,4,1],"span":[811,18,35]},{"path":[4,45,2,4,3],"span":[811,38,39]},{"path":[4,45,2,5],"span":[812,2,37]},{"path":[4,45,2,5,4],"span":[812,2,10]},{"path":[4,45,2,5,5],"span":[812,11,17]},{"path":[4,45,2,5,1],"span":[812,18,32]},{"path":[4,45,2,5,3],"span":[812,35,36]},{"path":[4,45,2,6],"span":[815,2,34],"leadingComments":" from mac\n"},{"path":[4,45,2,6,4],"span":[815,2,10]},{"path":[4,45,2,6,5],"span":[815,11,17]},{"path":[4,45,2,6,1],"span":[815,18,29]},{"path":[4,45,2,6,3],"span":[815,32,33]},{"path":[4,45,2,7],"span":[816,2,32]},{"path":[4,45,2,7,4],"span":[816,2,10]},{"path":[4,45,2,7,5],"span":[816,11,17]},{"path":[4,45,2,7,1],"span":[816,18,27]},{"path":[4,45,2,7,3],"span":[816,30,31]},{"path":[4,46],"span":[822,0,827,1],"leadingComments":"\n SharedResource: windows WindowsShare.\n"},{"path":[4,46,1],"span":[822,8,22]},{"path":[4,46,2,0],"span":[823,2,30]},{"path":[4,46,2,0,4],"span":[823,2,10]},{"path":[4,46,2,0,5],"span":[823,11,17]},{"path":[4,46,2,0,1],"span":[823,18,25]},{"path":[4,46,2,0,3],"span":[823,28,29]},{"path":[4,46,2,1],"span":[824,2,28]},{"path":[4,46,2,1,4],"span":[824,2,10]},{"path":[4,46,2,1,5],"span":[824,11,17]},{"path":[4,46,2,1,1],"span":[824,18,22]},{"path":[4,46,2,1,3],"span":[824,26,27]},{"path":[4,46,2,2],"span":[825,2,27]},{"path":[4,46,2,2,4],"span":[825,2,10]},{"path":[4,46,2,2,5],"span":[825,11,17]},{"path":[4,46,2,2,1],"span":[825,18,22]},{"path":[4,46,2,2,3],"span":[825,25,26]},{"path":[4,46,2,3],"span":[826,2,32]},{"path":[4,46,2,3,4],"span":[826,2,10]},{"path":[4,46,2,3,6],"span":[826,11,22]},{"path":[4,46,2,3,1],"span":[826,23,27]},{"path":[4,46,2,3,3],"span":[826,30,31]},{"path":[4,47],"span":[832,0,838,1],"leadingComments":"\n RunningProcess: computer running processes. Windows.WindowsProcess\n"},{"path":[4,47,1],"span":[832,8,22]},{"path":[4,47,2,0],"span":[833,2,27],"trailingComments":" caption\n"},{"path":[4,47,2,0,4],"span":[833,2,10]},{"path":[4,47,2,0,5],"span":[833,11,17]},{"path":[4,47,2,0,1],"span":[833,18,22]},{"path":[4,47,2,0,3],"span":[833,25,26]},{"path":[4,47,2,1],"span":[834,2,27],"trailingComments":" executable_path\n"},{"path":[4,47,2,1,4],"span":[834,2,10]},{"path":[4,47,2,1,5],"span":[834,11,17]},{"path":[4,47,2,1,1],"span":[834,18,22]},{"path":[4,47,2,1,3],"span":[834,25,26]},{"path":[4,47,2,2],"span":[835,2,29]},{"path":[4,47,2,2,4],"span":[835,2,10]},{"path":[4,47,2,2,5],"span":[835,11,16]},{"path":[4,47,2,2,1],"span":[835,17,24]},{"path":[4,47,2,2,3],"span":[835,27,28]},{"path":[4,47,2,3],"span":[836,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,47,2,3,4],"span":[836,2,10]},{"path":[4,47,2,3,5],"span":[836,11,16]},{"path":[4,47,2,3,1],"span":[836,17,25]},{"path":[4,47,2,3,3],"span":[836,28,29]},{"path":[4,47,2,4],"span":[837,2,29]},{"path":[4,47,2,4,4],"span":[837,2,10]},{"path":[4,47,2,4,5],"span":[837,11,17]},{"path":[4,47,2,4,1],"span":[837,18,24]},{"path":[4,47,2,4,3],"span":[837,27,28]},{"path":[4,48],"span":[843,0,854,1],"leadingComments":"\n Operating System Service: WindowsService.\n"},{"path":[4,48,1],"span":[843,8,30]},{"path":[4,48,2,0],"span":[844,2,27]},{"path":[4,48,2,0,4],"span":[844,2,10]},{"path":[4,48,2,0,5],"span":[844,11,17]},{"path":[4,48,2,0,1],"span":[844,18,22]},{"path":[4,48,2,0,3],"span":[844,25,26]},{"path":[4,48,2,1],"span":[845,2,30]},{"path":[4,48,2,1,4],"span":[845,2,10]},{"path":[4,48,2,1,5],"span":[845,11,17]},{"path":[4,48,2,1,1],"span":[845,18,25]},{"path":[4,48,2,1,3],"span":[845,28,29]},{"path":[4,48,2,2],"span":[846,2,31]},{"path":[4,48,2,2,4],"span":[846,2,10]},{"path":[4,48,2,2,5],"span":[846,11,17]},{"path":[4,48,2,2,1],"span":[846,18,26]},{"path":[4,48,2,2,3],"span":[846,29,30]},{"path":[4,48,2,3],"span":[847,2,33]},{"path":[4,48,2,3,4],"span":[847,2,10]},{"path":[4,48,2,3,5],"span":[847,11,17]},{"path":[4,48,2,3,1],"span":[847,18,28]},{"path":[4,48,2,3,3],"span":[847,31,32]},{"path":[4,48,2,4],"span":[848,2,33]},{"path":[4,48,2,4,4],"span":[848,2,10]},{"path":[4,48,2,4,5],"span":[848,11,17]},{"path":[4,48,2,4,1],"span":[848,18,28]},{"path":[4,48,2,4,3],"span":[848,31,32]},{"path":[4,48,2,5],"span":[849,2,28]},{"path":[4,48,2,5,4],"span":[849,2,10]},{"path":[4,48,2,5,5],"span":[849,11,17]},{"path":[4,48,2,5,1],"span":[849,18,23]},{"path":[4,48,2,5,3],"span":[849,26,27]},{"path":[4,48,2,6],"span":[850,2,28]},{"path":[4,48,2,6,4],"span":[850,2,10]},{"path":[4,48,2,6,5],"span":[850,11,15]},{"path":[4,48,2,6,1],"span":[850,16,23]},{"path":[4,48,2,6,3],"span":[850,26,27]},{"path":[4,48,2,7],"span":[851,2,33]},{"path":[4,48,2,7,4],"span":[851,2,10]},{"path":[4,48,2,7,5],"span":[851,11,15]},{"path":[4,48,2,7,1],"span":[851,16,28]},{"path":[4,48,2,7,3],"span":[851,31,32]},{"path":[4,48,2,8],"span":[852,2,32]},{"path":[4,48,2,8,4],"span":[852,2,10]},{"path":[4,48,2,8,5],"span":[852,11,15]},{"path":[4,48,2,8,1],"span":[852,16,27]},{"path":[4,48,2,8,3],"span":[852,30,31]},{"path":[4,48,2,9],"span":[853,2,38]},{"path":[4,48,2,9,4],"span":[853,2,10]},{"path":[4,48,2,9,5],"span":[853,11,15]},{"path":[4,48,2,9,1],"span":[853,16,32]},{"path":[4,48,2,9,3],"span":[853,35,37]},{"path":[4,49],"span":[859,0,863,1],"leadingComments":"\n Operating System Recovery: only windows atm.\n"},{"path":[4,49,1],"span":[859,8,31]},{"path":[4,49,8,0],"span":[860,2,862,3]},{"path":[4,49,8,0,1],"span":[860,8,10]},{"path":[4,49,2,0],"span":[861,6,32]},{"path":[4,49,2,0,6],"span":[861,6,23]},{"path":[4,49,2,0,1],"span":[861,24,27]},{"path":[4,49,2,0,3],"span":[861,30,31]},{"path":[4,50],"span":[868,0,879,1],"leadingComments":"\n Windows WindowsOsRecovery.\n"},{"path":[4,50,1],"span":[868,8,25]},{"path":[4,50,2,0],"span":[869,2,32]},{"path":[4,50,2,0,4],"span":[869,2,10]},{"path":[4,50,2,0,5],"span":[869,11,15]},{"path":[4,50,2,0,1],"span":[869,16,27]},{"path":[4,50,2,0,3],"span":[869,30,31]},{"path":[4,50,2,1],"span":[870,2,38]},{"path":[4,50,2,1,4],"span":[870,2,10]},{"path":[4,50,2,1,5],"span":[870,11,17]},{"path":[4,50,2,1,1],"span":[870,18,33]},{"path":[4,50,2,1,3],"span":[870,36,37]},{"path":[4,50,2,2],"span":[871,2,37]},{"path":[4,50,2,2,4],"span":[871,2,10]},{"path":[4,50,2,2,5],"span":[871,11,15]},{"path":[4,50,2,2,1],"span":[871,16,32]},{"path":[4,50,2,2,3],"span":[871,35,36]},{"path":[4,50,2,3],"span":[872,2,27]},{"path":[4,50,2,3,4],"span":[872,2,10]},{"path":[4,50,2,3,5],"span":[872,11,17]},{"path":[4,50,2,3,1],"span":[872,18,22]},{"path":[4,50,2,3,3],"span":[872,25,26]},{"path":[4,50,2,4],"span":[873,2,50]},{"path":[4,50,2,4,4],"span":[873,2,10]},{"path":[4,50,2,4,5],"span":[873,11,15]},{"path":[4,50,2,4,1],"span":[873,16,45]},{"path":[4,50,2,4,3],"span":[873,48,49]},{"path":[4,50,2,5],"span":[874,2,37]},{"path":[4,50,2,5,4],"span":[874,2,10]},{"path":[4,50,2,5,5],"span":[874,11,15]},{"path":[4,50,2,5,1],"span":[874,16,32]},{"path":[4,50,2,5,3],"span":[874,35,36]},{"path":[4,50,2,6],"span":[875,2,37]},{"path":[4,50,2,6,4],"span":[875,2,10]},{"path":[4,50,2,6,5],"span":[875,11,15]},{"path":[4,50,2,6,1],"span":[875,16,32]},{"path":[4,50,2,6,3],"span":[875,35,36]},{"path":[4,50,2,7],"span":[876,2,40]},{"path":[4,50,2,7,4],"span":[876,2,10]},{"path":[4,50,2,7,5],"span":[876,11,15]},{"path":[4,50,2,7,1],"span":[876,16,35]},{"path":[4,50,2,7,3],"span":[876,38,39]},{"path":[4,50,2,8],"span":[877,2,44]},{"path":[4,50,2,8,4],"span":[877,2,10]},{"path":[4,50,2,8,6],"span":[877,11,22]},{"path":[4,50,2,8,1],"span":[877,23,38]},{"path":[4,50,2,8,3],"span":[877,41,43]},{"path":[4,50,2,9],"span":[878,2,43]},{"path":[4,50,2,9,4],"span":[878,2,10]},{"path":[4,50,2,9,5],"span":[878,11,17]},{"path":[4,50,2,9,1],"span":[878,18,37]},{"path":[4,50,2,9,3],"span":[878,40,42]},{"path":[4,51],"span":[885,0,894,1],"leadingComments":"\n Driver: computer drivers.\n"},{"path":[4,51,1],"span":[885,8,14]},{"path":[4,51,8,0],"span":[886,2,890,3]},{"path":[4,51,8,0,1],"span":[886,8,14]},{"path":[4,51,2,0],"span":[887,4,36]},{"path":[4,51,2,0,6],"span":[887,4,23]},{"path":[4,51,2,0,1],"span":[887,24,31]},{"path":[4,51,2,0,3],"span":[887,34,35]},{"path":[4,51,2,1],"span":[888,4,39]},{"path":[4,51,2,1,6],"span":[888,4,26]},{"path":[4,51,2,1,1],"span":[888,27,34]},{"path":[4,51,2,1,3],"span":[888,37,38]},{"path":[4,51,2,2],"span":[889,4,41]},{"path":[4,51,2,2,6],"span":[889,4,24]},{"path":[4,51,2,2,1],"span":[889,25,36]},{"path":[4,51,2,2,3],"span":[889,39,40]},{"path":[4,51,2,3],"span":[892,2,29]},{"path":[4,51,2,3,4],"span":[892,2,10]},{"path":[4,51,2,3,5],"span":[892,11,17]},{"path":[4,51,2,3,1],"span":[892,18,22]},{"path":[4,51,2,3,3],"span":[892,25,28]},{"path":[4,51,2,4],"span":[893,2,36]},{"path":[4,51,2,4,4],"span":[893,2,10]},{"path":[4,51,2,4,5],"span":[893,11,17]},{"path":[4,51,2,4,1],"span":[893,18,29]},{"path":[4,51,2,4,3],"span":[893,32,35]},{"path":[4,52],"span":[899,0,918,1],"leadingComments":"\n WindowsSystemDriver: Windows.SystemDriver\n"},{"path":[4,52,1],"span":[899,8,27]},{"path":[4,52,2,0],"span":[900,2,34]},{"path":[4,52,2,0,4],"span":[900,2,10]},{"path":[4,52,2,0,5],"span":[900,11,15]},{"path":[4,52,2,0,1],"span":[900,17,29]},{"path":[4,52,2,0,3],"span":[900,32,33]},{"path":[4,52,2,1],"span":[901,2,33]},{"path":[4,52,2,1,4],"span":[901,2,10]},{"path":[4,52,2,1,5],"span":[901,11,15]},{"path":[4,52,2,1,1],"span":[901,17,28]},{"path":[4,52,2,1,3],"span":[901,31,32]},{"path":[4,52,2,2],"span":[902,2,38]},{"path":[4,52,2,2,4],"span":[902,2,10]},{"path":[4,52,2,2,5],"span":[902,11,15]},{"path":[4,52,2,2,1],"span":[902,17,33]},{"path":[4,52,2,2,3],"span":[902,36,37]},{"path":[4,52,2,3],"span":[903,2,36]},{"path":[4,52,2,3,4],"span":[903,2,10]},{"path":[4,52,2,3,5],"span":[903,11,17]},{"path":[4,52,2,3,1],"span":[903,18,31]},{"path":[4,52,2,3,3],"span":[903,34,35]},{"path":[4,52,2,4],"span":[904,2,32]},{"path":[4,52,2,4,4],"span":[904,2,10]},{"path":[4,52,2,4,5],"span":[904,11,16]},{"path":[4,52,2,4,1],"span":[904,18,27]},{"path":[4,52,2,4,3],"span":[904,30,31]},{"path":[4,52,2,5],"span":[905,2,32]},{"path":[4,52,2,5,4],"span":[905,2,10]},{"path":[4,52,2,5,5],"span":[905,11,17]},{"path":[4,52,2,5,1],"span":[905,18,27]},{"path":[4,52,2,5,3],"span":[905,30,31]},{"path":[4,52,2,6],"span":[906,2,49]},{"path":[4,52,2,6,4],"span":[906,2,10]},{"path":[4,52,2,6,5],"span":[906,11,16]},{"path":[4,52,2,6,1],"span":[906,18,44]},{"path":[4,52,2,6,3],"span":[906,47,48]},{"path":[4,52,2,7],"span":[907,2,34]},{"path":[4,52,2,7,4],"span":[907,2,10]},{"path":[4,52,2,7,5],"span":[907,11,17]},{"path":[4,52,2,7,1],"span":[907,18,30]},{"path":[4,52,2,7,3],"span":[907,32,33]},{"path":[4,52,2,8],"span":[908,2,29]},{"path":[4,52,2,8,4],"span":[908,2,10]},{"path":[4,52,2,8,5],"span":[908,11,15]},{"path":[4,52,2,8,1],"span":[908,17,24]},{"path":[4,52,2,8,3],"span":[908,27,28]},{"path":[4,52,2,9],"span":[909,2,34]},{"path":[4,52,2,9,4],"span":[909,2,10]},{"path":[4,52,2,9,5],"span":[909,11,17]},{"path":[4,52,2,9,1],"span":[909,18,28]},{"path":[4,52,2,9,3],"span":[909,31,33]},{"path":[4,52,2,10],"span":[910,2,34]},{"path":[4,52,2,10,4],"span":[910,2,10]},{"path":[4,52,2,10,5],"span":[910,11,17]},{"path":[4,52,2,10,1],"span":[910,18,28]},{"path":[4,52,2,10,3],"span":[910,31,33]},{"path":[4,52,2,11],"span":[911,2,29]},{"path":[4,52,2,11,4],"span":[911,2,10]},{"path":[4,52,2,11,5],"span":[911,11,17]},{"path":[4,52,2,11,1],"span":[911,18,23]},{"path":[4,52,2,11,3],"span":[911,26,28]},{"path":[4,52,2,12],"span":[912,2,30]},{"path":[4,52,2,12,4],"span":[912,2,10]},{"path":[4,52,2,12,5],"span":[912,11,17]},{"path":[4,52,2,12,1],"span":[912,18,24]},{"path":[4,52,2,12,3],"span":[912,27,29]},{"path":[4,52,2,13],"span":[913,2,30]},{"path":[4,52,2,13,4],"span":[913,2,10]},{"path":[4,52,2,13,5],"span":[913,11,16]},{"path":[4,52,2,13,1],"span":[913,18,24]},{"path":[4,52,2,13,3],"span":[913,27,29]},{"path":[4,52,2,14],"span":[914,2,28]},{"path":[4,52,2,14,4],"span":[914,2,10]},{"path":[4,52,2,14,5],"span":[914,11,17]},{"path":[4,52,2,14,1],"span":[914,18,22]},{"path":[4,52,2,14,3],"span":[914,25,27]},{"path":[4,52,2,15],"span":[915,2,35]},{"path":[4,52,2,15,4],"span":[915,2,10]},{"path":[4,52,2,15,5],"span":[915,11,17]},{"path":[4,52,2,15,1],"span":[915,18,29]},{"path":[4,52,2,15,3],"span":[915,32,34]},{"path":[4,52,2,16],"span":[916,2,31]},{"path":[4,52,2,16,4],"span":[916,2,10]},{"path":[4,52,2,16,5],"span":[916,11,17]},{"path":[4,52,2,16,1],"span":[916,18,25]},{"path":[4,52,2,16,3],"span":[916,28,30]},{"path":[4,52,2,17],"span":[917,2,36]},{"path":[4,52,2,17,4],"span":[917,2,10]},{"path":[4,52,2,17,5],"span":[917,11,17]},{"path":[4,52,2,17,1],"span":[917,18,30]},{"path":[4,52,2,17,3],"span":[917,33,35]},{"path":[4,53],"span":[923,0,942,1],"leadingComments":"\n WindowsPnpSignedDriver: Windows.PnpSignedDriver\n"},{"path":[4,53,1],"span":[923,8,30]},{"path":[4,53,2,0],"span":[924,2,32]},{"path":[4,53,2,0,4],"span":[924,2,10]},{"path":[4,53,2,0,5],"span":[924,11,17]},{"path":[4,53,2,0,1],"span":[924,18,27]},{"path":[4,53,2,0,3],"span":[924,30,31]},{"path":[4,53,2,1],"span":[925,2,32]},{"path":[4,53,2,1,4],"span":[925,2,10]},{"path":[4,53,2,1,5],"span":[925,11,17]},{"path":[4,53,2,1,1],"span":[925,18,27]},{"path":[4,53,2,1,3],"span":[925,30,31]},{"path":[4,53,2,2],"span":[926,2,33]},{"path":[4,53,2,2,4],"span":[926,2,10]},{"path":[4,53,2,2,5],"span":[926,11,17]},{"path":[4,53,2,2,1],"span":[926,18,28]},{"path":[4,53,2,2,3],"span":[926,31,32]},{"path":[4,53,2,3],"span":[927,2,34]},{"path":[4,53,2,3,4],"span":[927,2,10]},{"path":[4,53,2,3,5],"span":[927,11,17]},{"path":[4,53,2,3,1],"span":[927,18,29]},{"path":[4,53,2,3,3],"span":[927,32,33]},{"path":[4,53,2,4],"span":[928,2,36]},{"path":[4,53,2,4,4],"span":[928,2,10]},{"path":[4,53,2,4,5],"span":[928,11,17]},{"path":[4,53,2,4,1],"span":[928,18,31]},{"path":[4,53,2,4,3],"span":[928,34,35]},{"path":[4,53,2,5],"span":[929,2,44]},{"path":[4,53,2,5,6],"span":[929,2,27]},{"path":[4,53,2,5,1],"span":[929,28,39]},{"path":[4,53,2,5,3],"span":[929,42,43]},{"path":[4,53,2,6],"span":[930,2,37]},{"path":[4,53,2,6,4],"span":[930,2,10]},{"path":[4,53,2,6,5],"span":[930,11,17]},{"path":[4,53,2,6,1],"span":[930,18,32]},{"path":[4,53,2,6,3],"span":[930,35,36]},{"path":[4,53,2,7],"span":[931,2,34]},{"path":[4,53,2,7,4],"span":[931,2,10]},{"path":[4,53,2,7,5],"span":[931,11,17]},{"path":[4,53,2,7,1],"span":[931,18,29]},{"path":[4,53,2,7,3],"span":[931,32,33]},{"path":[4,53,2,8],"span":[932,2,31]},{"path":[4,53,2,8,4],"span":[932,2,10]},{"path":[4,53,2,8,5],"span":[932,11,17]},{"path":[4,53,2,8,1],"span":[932,18,26]},{"path":[4,53,2,8,3],"span":[932,29,30]},{"path":[4,53,2,9],"span":[933,2,32]},{"path":[4,53,2,9,4],"span":[933,2,10]},{"path":[4,53,2,9,5],"span":[933,11,15]},{"path":[4,53,2,9,1],"span":[933,17,26]},{"path":[4,53,2,9,3],"span":[933,29,31]},{"path":[4,53,2,10],"span":[934,2,32]},{"path":[4,53,2,10,4],"span":[934,2,10]},{"path":[4,53,2,10,5],"span":[934,11,17]},{"path":[4,53,2,10,1],"span":[934,18,26]},{"path":[4,53,2,10,3],"span":[934,29,31]},{"path":[4,53,2,11],"span":[935,2,27]},{"path":[4,53,2,11,4],"span":[935,2,10]},{"path":[4,53,2,11,5],"span":[935,11,17]},{"path":[4,53,2,11,1],"span":[935,18,21]},{"path":[4,53,2,11,3],"span":[935,24,26]},{"path":[4,53,2,12],"span":[936,2,36]},{"path":[4,53,2,12,4],"span":[936,2,10]},{"path":[4,53,2,12,5],"span":[936,11,17]},{"path":[4,53,2,12,1],"span":[936,18,30]},{"path":[4,53,2,12,3],"span":[936,33,35]},{"path":[4,53,2,13],"span":[937,2,35]},{"path":[4,53,2,13,4],"span":[937,2,10]},{"path":[4,53,2,13,5],"span":[937,11,17]},{"path":[4,53,2,13,1],"span":[937,18,29]},{"path":[4,53,2,13,3],"span":[937,32,34]},{"path":[4,53,2,14],"span":[938,2,36]},{"path":[4,53,2,14,4],"span":[938,2,10]},{"path":[4,53,2,14,5],"span":[938,11,17]},{"path":[4,53,2,14,1],"span":[938,18,30]},{"path":[4,53,2,14,3],"span":[938,33,35]},{"path":[4,53,2,15],"span":[939,2,35]},{"path":[4,53,2,15,4],"span":[939,2,10]},{"path":[4,53,2,15,5],"span":[939,11,17]},{"path":[4,53,2,15,1],"span":[939,18,29]},{"path":[4,53,2,15,3],"span":[939,32,34]},{"path":[4,53,2,16],"span":[940,2,30]},{"path":[4,53,2,16,4],"span":[940,2,10]},{"path":[4,53,2,16,5],"span":[940,11,17]},{"path":[4,53,2,16,1],"span":[940,18,24]},{"path":[4,53,2,16,3],"span":[940,27,29]},{"path":[4,53,2,17],"span":[941,2,44]},{"path":[4,53,2,17,4],"span":[941,2,10]},{"path":[4,53,2,17,5],"span":[941,11,17]},{"path":[4,53,2,17,1],"span":[941,18,38]},{"path":[4,53,2,17,3],"span":[941,41,43]},{"path":[4,54],"span":[947,0,967,1],"leadingComments":"\n WindowsPrinterDriver: Windows.PrinterDriver\n"},{"path":[4,54,1],"span":[947,8,28]},{"path":[4,54,2,0],"span":[948,2,34]},{"path":[4,54,2,0,4],"span":[948,2,10]},{"path":[4,54,2,0,5],"span":[948,11,17]},{"path":[4,54,2,0,1],"span":[948,18,29]},{"path":[4,54,2,0,3],"span":[948,32,33]},{"path":[4,54,2,1],"span":[949,2,32]},{"path":[4,54,2,1,4],"span":[949,2,10]},{"path":[4,54,2,1,5],"span":[949,11,17]},{"path":[4,54,2,1,1],"span":[949,18,27]},{"path":[4,54,2,1,3],"span":[949,30,31]},{"path":[4,54,2,2],"span":[950,2,40]},{"path":[4,54,2,2,4],"span":[950,2,10]},{"path":[4,54,2,2,5],"span":[950,11,17]},{"path":[4,54,2,2,1],"span":[950,18,35]},{"path":[4,54,2,2,3],"span":[950,38,39]},{"path":[4,54,2,3],"span":[951,2,34]},{"path":[4,54,2,3,4],"span":[951,2,10]},{"path":[4,54,2,3,5],"span":[951,11,17]},{"path":[4,54,2,3,1],"span":[951,18,29]},{"path":[4,54,2,3,3],"span":[951,32,33]},{"path":[4,54,2,4],"span":[952,2,32]},{"path":[4,54,2,4,4],"span":[952,2,10]},{"path":[4,54,2,4,5],"span":[952,11,17]},{"path":[4,54,2,4,1],"span":[952,18,27]},{"path":[4,54,2,4,3],"span":[952,30,31]},{"path":[4,54,2,5],"span":[953,2,32]},{"path":[4,54,2,5,4],"span":[953,2,10]},{"path":[4,54,2,5,5],"span":[953,11,17]},{"path":[4,54,2,5,1],"span":[953,18,27]},{"path":[4,54,2,5,3],"span":[953,30,31]},{"path":[4,54,2,6],"span":[954,2,35]},{"path":[4,54,2,6,4],"span":[954,2,10]},{"path":[4,54,2,6,5],"span":[954,11,17]},{"path":[4,54,2,6,1],"span":[954,18,30]},{"path":[4,54,2,6,3],"span":[954,33,34]},{"path":[4,54,2,7],"span":[955,2,30]},{"path":[4,54,2,7,4],"span":[955,2,10]},{"path":[4,54,2,7,5],"span":[955,11,17]},{"path":[4,54,2,7,1],"span":[955,18,25]},{"path":[4,54,2,7,3],"span":[955,28,29]},{"path":[4,54,2,8],"span":[956,2,30]},{"path":[4,54,2,8,4],"span":[956,2,10]},{"path":[4,54,2,8,5],"span":[956,11,16]},{"path":[4,54,2,8,1],"span":[956,18,25]},{"path":[4,54,2,8,3],"span":[956,28,29]},{"path":[4,54,2,9],"span":[957,2,38]},{"path":[4,54,2,9,4],"span":[957,2,10]},{"path":[4,54,2,9,5],"span":[957,11,17]},{"path":[4,54,2,9,1],"span":[957,18,32]},{"path":[4,54,2,9,3],"span":[957,35,37]},{"path":[4,54,2,10],"span":[958,2,35]},{"path":[4,54,2,10,4],"span":[958,2,10]},{"path":[4,54,2,10,5],"span":[958,11,17]},{"path":[4,54,2,10,1],"span":[958,18,29]},{"path":[4,54,2,10,3],"span":[958,32,34]},{"path":[4,54,2,11],"span":[959,2,35]},{"path":[4,54,2,11,4],"span":[959,2,10]},{"path":[4,54,2,11,5],"span":[959,11,17]},{"path":[4,54,2,11,1],"span":[959,18,29]},{"path":[4,54,2,11,3],"span":[959,32,34]},{"path":[4,54,2,12],"span":[960,2,32]},{"path":[4,54,2,12,4],"span":[960,2,10]},{"path":[4,54,2,12,5],"span":[960,11,17]},{"path":[4,54,2,12,1],"span":[960,18,26]},{"path":[4,54,2,12,3],"span":[960,29,31]},{"path":[4,54,2,13],"span":[961,2,43]},{"path":[4,54,2,13,4],"span":[961,2,10]},{"path":[4,54,2,13,5],"span":[961,11,17]},{"path":[4,54,2,13,1],"span":[961,18,37]},{"path":[4,54,2,13,3],"span":[961,40,42]},{"path":[4,54,2,14],"span":[962,2,39]},{"path":[4,54,2,14,4],"span":[962,2,10]},{"path":[4,54,2,14,5],"span":[962,11,17]},{"path":[4,54,2,14,1],"span":[962,18,33]},{"path":[4,54,2,14,3],"span":[962,36,38]},{"path":[4,54,2,15],"span":[963,2,28]},{"path":[4,54,2,15,4],"span":[963,2,10]},{"path":[4,54,2,15,5],"span":[963,11,17]},{"path":[4,54,2,15,1],"span":[963,18,22]},{"path":[4,54,2,15,3],"span":[963,25,27]},{"path":[4,54,2,16],"span":[964,2,32]},{"path":[4,54,2,16,4],"span":[964,2,10]},{"path":[4,54,2,16,5],"span":[964,11,17]},{"path":[4,54,2,16,1],"span":[964,18,26]},{"path":[4,54,2,16,3],"span":[964,29,31]},{"path":[4,54,2,17],"span":[965,2,42]},{"path":[4,54,2,17,4],"span":[965,2,10]},{"path":[4,54,2,17,5],"span":[965,11,17]},{"path":[4,54,2,17,1],"span":[965,18,36]},{"path":[4,54,2,17,3],"span":[965,39,41]},{"path":[4,54,2,18],"span":[966,2,36]},{"path":[4,54,2,18,4],"span":[966,2,10]},{"path":[4,54,2,18,5],"span":[966,11,17]},{"path":[4,54,2,18,1],"span":[966,18,30]},{"path":[4,54,2,18,3],"span":[966,33,35]},{"path":[4,55],"span":[972,0,981,1],"leadingComments":"\n Sound Card for computers: Windows.WindowsSound, Unix.SoundCards (=PciCards)\n"},{"path":[4,55,1],"span":[972,8,17]},{"path":[4,55,2,0],"span":[973,2,30],"trailingComments":" Windows, Linux(name)\n"},{"path":[4,55,2,0,4],"span":[973,2,10]},{"path":[4,55,2,0,5],"span":[973,11,17]},{"path":[4,55,2,0,1],"span":[973,18,25]},{"path":[4,55,2,0,3],"span":[973,28,29]},{"path":[4,55,2,1],"span":[974,2,32],"trailingComments":" Windows, Linux\n"},{"path":[4,55,2,1,4],"span":[974,2,10]},{"path":[4,55,2,1,5],"span":[974,11,17]},{"path":[4,55,2,1,1],"span":[974,18,27]},{"path":[4,55,2,1,3],"span":[974,30,31]},{"path":[4,55,2,2],"span":[975,2,35],"trailingComments":" Windows, Linux\n"},{"path":[4,55,2,2,4],"span":[975,2,10]},{"path":[4,55,2,2,5],"span":[975,11,17]},{"path":[4,55,2,2,1],"span":[975,18,30]},{"path":[4,55,2,2,3],"span":[975,33,34]},{"path":[4,55,2,3],"span":[977,2,27],"trailingComments":" Linux\n"},{"path":[4,55,2,3,4],"span":[977,2,10]},{"path":[4,55,2,3,5],"span":[977,11,17]},{"path":[4,55,2,3,1],"span":[977,18,22]},{"path":[4,55,2,3,3],"span":[977,25,26]},{"path":[4,55,2,4],"span":[978,2,37],"trailingComments":" Linux\n"},{"path":[4,55,2,4,4],"span":[978,2,10]},{"path":[4,55,2,4,5],"span":[978,11,17]},{"path":[4,55,2,4,1],"span":[978,18,32]},{"path":[4,55,2,4,3],"span":[978,35,36]},{"path":[4,55,2,5],"span":[979,2,45],"trailingComments":" Linux\n"},{"path":[4,55,2,5,4],"span":[979,2,10]},{"path":[4,55,2,5,5],"span":[979,11,17]},{"path":[4,55,2,5,1],"span":[979,18,40]},{"path":[4,55,2,5,3],"span":[979,43,44]},{"path":[4,55,2,6],"span":[980,2,29],"trailingComments":" Linux\n"},{"path":[4,55,2,6,4],"span":[980,2,10]},{"path":[4,55,2,6,5],"span":[980,11,17]},{"path":[4,55,2,6,1],"span":[980,18,24]},{"path":[4,55,2,6,3],"span":[980,27,28]},{"path":[4,56],"span":[986,0,1015,1],"leadingComments":"\n Graphics Card for computers: Windows.VideoControllers, Unix.SoundCards (=PciCards)\n"},{"path":[4,56,1],"span":[986,8,20]},{"path":[4,56,2,0],"span":[987,2,33],"trailingComments":"\tWindows, Linux\n"},{"path":[4,56,2,0,4],"span":[987,2,10]},{"path":[4,56,2,0,5],"span":[987,16,22]},{"path":[4,56,2,0,1],"span":[987,24,28]},{"path":[4,56,2,0,3],"span":[987,31,32]},{"path":[4,56,2,1],"span":[988,2,47],"trailingComments":"\t\tWindows\n"},{"path":[4,56,2,1,4],"span":[988,2,10]},{"path":[4,56,2,1,5],"span":[988,16,21]},{"path":[4,56,2,1,1],"span":[988,24,42]},{"path":[4,56,2,1,3],"span":[988,45,46]},{"path":[4,56,2,2],"span":[989,2,51],"trailingComments":"\t\tWindows\n"},{"path":[4,56,2,2,4],"span":[989,2,10]},{"path":[4,56,2,2,5],"span":[989,16,21]},{"path":[4,56,2,2,1],"span":[989,24,46]},{"path":[4,56,2,2,3],"span":[989,49,50]},{"path":[4,56,2,3],"span":[990,2,58],"trailingComments":"\t\tWindows\n"},{"path":[4,56,2,3,4],"span":[990,2,10]},{"path":[4,56,2,3,5],"span":[990,16,21]},{"path":[4,56,2,3,1],"span":[990,24,53]},{"path":[4,56,2,3,3],"span":[990,56,57]},{"path":[4,56,2,4],"span":[991,2,53],"trailingComments":"\t\tWindows\n"},{"path":[4,56,2,4,4],"span":[991,2,10]},{"path":[4,56,2,4,5],"span":[991,16,21]},{"path":[4,56,2,4,1],"span":[991,24,48]},{"path":[4,56,2,4,3],"span":[991,51,52]},{"path":[4,56,2,5],"span":[992,2,49],"trailingComments":"\t\tWindows\n"},{"path":[4,56,2,5,4],"span":[992,2,10]},{"path":[4,56,2,5,5],"span":[992,16,21]},{"path":[4,56,2,5,1],"span":[992,24,44]},{"path":[4,56,2,5,3],"span":[992,47,48]},{"path":[4,56,2,6],"span":[993,2,54],"trailingComments":"\t\tWindows\n"},{"path":[4,56,2,6,4],"span":[993,2,10]},{"path":[4,56,2,6,6],"span":[993,16,27]},{"path":[4,56,2,6,1],"span":[993,32,49]},{"path":[4,56,2,6,3],"span":[993,52,53]},{"path":[4,56,2,7],"span":[994,2,56],"trailingComments":"\t\tWindows\n"},{"path":[4,56,2,7,4],"span":[994,2,10]},{"path":[4,56,2,7,5],"span":[994,16,21]},{"path":[4,56,2,7,1],"span":[994,24,51]},{"path":[4,56,2,7,3],"span":[994,54,55]},{"path":[4,56,2,8],"span":[995,2,38],"trailingComments":"\t\tWindows, Linux\n"},{"path":[4,56,2,8,4],"span":[995,2,10]},{"path":[4,56,2,8,5],"span":[995,16,22]},{"path":[4,56,2,8,1],"span":[995,24,33]},{"path":[4,56,2,8,3],"span":[995,36,37]},{"path":[4,56,2,9],"span":[996,2,50],"trailingComments":"\t\tWindows\n"},{"path":[4,56,2,9,4],"span":[996,2,10]},{"path":[4,56,2,9,5],"span":[996,16,21]},{"path":[4,56,2,9,1],"span":[996,24,44]},{"path":[4,56,2,9,3],"span":[996,47,49]},{"path":[4,56,2,10],"span":[997,2,44],"trailingComments":"\t\tWindows\n"},{"path":[4,56,2,10,4],"span":[997,2,10]},{"path":[4,56,2,10,5],"span":[997,16,22]},{"path":[4,56,2,10,1],"span":[997,24,38]},{"path":[4,56,2,10,3],"span":[997,41,43]},{"path":[4,56,2,11],"span":[998,2,42],"trailingComments":"\t\tWindows\n"},{"path":[4,56,2,11,4],"span":[998,2,10]},{"path":[4,56,2,11,5],"span":[998,16,22]},{"path":[4,56,2,11,1],"span":[998,24,36]},{"path":[4,56,2,11,3],"span":[998,39,41]},{"path":[4,56,2,12],"span":[999,2,41],"trailingComments":"\t\tWindows\n"},{"path":[4,56,2,12,4],"span":[999,2,10]},{"path":[4,56,2,12,5],"span":[999,16,22]},{"path":[4,56,2,12,1],"span":[999,24,35]},{"path":[4,56,2,12,3],"span":[999,38,40]},{"path":[4,56,2,13],"span":[1000,2,55],"trailingComments":"\t\tWindows\n"},{"path":[4,56,2,13,4],"span":[1000,2,10]},{"path":[4,56,2,13,5],"span":[1000,16,22]},{"path":[4,56,2,13,1],"span":[1000,24,49]},{"path":[4,56,2,13,3],"span":[1000,52,54]},{"path":[4,56,2,14],"span":[1001,2,43],"trailingComments":"\t\tWindows\n"},{"path":[4,56,2,14,4],"span":[1001,2,10]},{"path":[4,56,2,14,5],"span":[1001,16,20]},{"path":[4,56,2,14,1],"span":[1001,24,37]},{"path":[4,56,2,14,3],"span":[1001,40,42]},{"path":[4,56,2,15],"span":[1002,2,42],"trailingComments":"\t\tWindows, Linux\n"},{"path":[4,56,2,15,4],"span":[1002,2,10]},{"path":[4,56,2,15,5],"span":[1002,16,22]},{"path":[4,56,2,15,1],"span":[1002,24,36]},{"path":[4,56,2,15,3],"span":[1002,39,41]},{"path":[4,56,2,16],"span":[1003,2,46],"trailingComments":"\t\tWindows\n"},{"path":[4,56,2,16,4],"span":[1003,2,10]},{"path":[4,56,2,16,5],"span":[1003,16,21]},{"path":[4,56,2,16,1],"span":[1003,24,40]},{"path":[4,56,2,16,3],"span":[1003,43,45]},{"path":[4,56,2,17],"span":[1004,2,36],"trailingComments":"\t\tWindows\n"},{"path":[4,56,2,17,4],"span":[1004,2,10]},{"path":[4,56,2,17,5],"span":[1004,16,21]},{"path":[4,56,2,17,1],"span":[1004,24,30]},{"path":[4,56,2,17,3],"span":[1004,33,35]},{"path":[4,56,2,18],"span":[1005,2,49],"trailingComments":"\t\tWindows\n"},{"path":[4,56,2,18,4],"span":[1005,2,10]},{"path":[4,56,2,18,6],"span":[1005,16,27]},{"path":[4,56,2,18,1],"span":[1005,32,43]},{"path":[4,56,2,18,3],"span":[1005,46,48]},{"path":[4,56,2,19],"span":[1006,2,46],"trailingComments":"\t\tWindows\n"},{"path":[4,56,2,19,4],"span":[1006,2,10]},{"path":[4,56,2,19,5],"span":[1006,16,21]},{"path":[4,56,2,19,1],"span":[1006,24,40]},{"path":[4,56,2,19,3],"span":[1006,43,45]},{"path":[4,56,2,20],"span":[1007,2,38],"trailingComments":"\t\tLinux\n"},{"path":[4,56,2,20,4],"span":[1007,2,10]},{"path":[4,56,2,20,5],"span":[1007,16,22]},{"path":[4,56,2,20,1],"span":[1007,24,32]},{"path":[4,56,2,20,3],"span":[1007,35,37]},{"path":[4,56,2,21],"span":[1008,2,43],"trailingComments":"\t\tWindows\n"},{"path":[4,56,2,21,4],"span":[1008,2,10]},{"path":[4,56,2,21,5],"span":[1008,16,22]},{"path":[4,56,2,21,1],"span":[1008,24,37]},{"path":[4,56,2,21,3],"span":[1008,40,42]},{"path":[4,56,2,22],"span":[1009,2,43],"trailingComments":"\t\tWindows\n"},{"path":[4,56,2,22,4],"span":[1009,2,10]},{"path":[4,56,2,22,6],"span":[1009,16,27]},{"path":[4,56,2,22,1],"span":[1009,32,37]},{"path":[4,56,2,22,3],"span":[1009,40,42]},{"path":[4,56,2,23],"span":[1010,2,52],"trailingComments":"\t\tLinux\n"},{"path":[4,56,2,23,4],"span":[1010,2,10]},{"path":[4,56,2,23,5],"span":[1010,16,22]},{"path":[4,56,2,23,1],"span":[1010,24,46]},{"path":[4,56,2,23,3],"span":[1010,49,51]},{"path":[4,56,2,24],"span":[1011,2,44],"trailingComments":"\t\tLinux\n"},{"path":[4,56,2,24,4],"span":[1011,2,10]},{"path":[4,56,2,24,5],"span":[1011,16,22]},{"path":[4,56,2,24,1],"span":[1011,24,38]},{"path":[4,56,2,24,3],"span":[1011,41,43]},{"path":[4,56,2,25],"span":[1012,2,56],"trailingComments":"\t\tWindows\n"},{"path":[4,56,2,25,4],"span":[1012,2,10]},{"path":[4,56,2,25,6],"span":[1012,16,27]},{"path":[4,56,2,25,1],"span":[1012,32,50]},{"path":[4,56,2,25,3],"span":[1012,53,55]},{"path":[4,56,2,26],"span":[1013,2,40],"trailingComments":"\t\tWindows\n"},{"path":[4,56,2,26,4],"span":[1013,2,10]},{"path":[4,56,2,26,5],"span":[1013,16,22]},{"path":[4,56,2,26,1],"span":[1013,24,34]},{"path":[4,56,2,26,3],"span":[1013,37,39]},{"path":[4,56,2,27],"span":[1014,2,45],"trailingComments":"\t\tWindows\n"},{"path":[4,56,2,27,4],"span":[1014,2,10]},{"path":[4,56,2,27,5],"span":[1014,16,22]},{"path":[4,56,2,27,1],"span":[1014,24,39]},{"path":[4,56,2,27,3],"span":[1014,42,44]},{"path":[4,57],"span":[1020,0,1030,1],"leadingComments":"\n BIOS for computers.\n"},{"path":[4,57,1],"span":[1020,8,12]},{"path":[4,57,8,0],"span":[1021,2,1024,3]},{"path":[4,57,8,0,1],"span":[1021,8,12]},{"path":[4,57,2,0],"span":[1022,4,24]},{"path":[4,57,2,0,6],"span":[1022,4,15]},{"path":[4,57,2,0,1],"span":[1022,16,19]},{"path":[4,57,2,0,3],"span":[1022,22,23]},{"path":[4,57,2,1],"span":[1023,4,24]},{"path":[4,57,2,1,6],"span":[1023,4,13]},{"path":[4,57,2,1,1],"span":[1023,14,19]},{"path":[4,57,2,1,3],"span":[1023,22,23]},{"path":[4,57,2,2],"span":[1027,2,37],"leadingComments":" common fields summarized\n"},{"path":[4,57,2,2,4],"span":[1027,2,10]},{"path":[4,57,2,2,5],"span":[1027,11,17]},{"path":[4,57,2,2,1],"span":[1027,18,30]},{"path":[4,57,2,2,3],"span":[1027,33,36]},{"path":[4,57,2,3],"span":[1028,2,32]},{"path":[4,57,2,3,4],"span":[1028,2,10]},{"path":[4,57,2,3,5],"span":[1028,11,17]},{"path":[4,57,2,3,1],"span":[1028,18,25]},{"path":[4,57,2,3,3],"span":[1028,28,31]},{"path":[4,57,2,4],"span":[1029,2,56]},{"path":[4,57,2,4,4],"span":[1029,2,10]},{"path":[4,57,2,4,6],"span":[1029,11,36]},{"path":[4,57,2,4,1],"span":[1029,37,49]},{"path":[4,57,2,4,3],"span":[1029,52,55]},{"path":[4,58],"span":[1036,0,1056,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,58,1],"span":[1036,8,19]},{"path":[4,58,2,0],"span":[1037,2,48]},{"path":[4,58,2,0,4],"span":[1037,2,10]},{"path":[4,58,2,0,6],"span":[1037,11,22]},{"path":[4,58,2,0,1],"span":[1037,23,43]},{"path":[4,58,2,0,3],"span":[1037,46,47]},{"path":[4,58,2,1],"span":[1038,2,30]},{"path":[4,58,2,1,4],"span":[1038,2,10]},{"path":[4,58,2,1,5],"span":[1038,11,17]},{"path":[4,58,2,1,1],"span":[1038,18,25]},{"path":[4,58,2,1,3],"span":[1038,28,29]},{"path":[4,58,2,2],"span":[1039,2,39]},{"path":[4,58,2,2,4],"span":[1039,2,10]},{"path":[4,58,2,2,5],"span":[1039,11,17]},{"path":[4,58,2,2,1],"span":[1039,18,34]},{"path":[4,58,2,2,3],"span":[1039,37,38]},{"path":[4,58,2,3],"span":[1040,2,43]},{"path":[4,58,2,3,4],"span":[1040,2,10]},{"path":[4,58,2,3,5],"span":[1040,11,16]},{"path":[4,58,2,3,1],"span":[1040,17,38]},{"path":[4,58,2,3,3],"span":[1040,41,42]},{"path":[4,58,2,4],"span":[1041,2,35]},{"path":[4,58,2,4,4],"span":[1041,2,10]},{"path":[4,58,2,4,5],"span":[1041,11,17]},{"path":[4,58,2,4,1],"span":[1041,18,30]},{"path":[4,58,2,4,3],"span":[1041,33,34]},{"path":[4,58,2,5],"span":[1042,2,27]},{"path":[4,58,2,5,4],"span":[1042,2,10]},{"path":[4,58,2,5,5],"span":[1042,11,17]},{"path":[4,58,2,5,1],"span":[1042,18,22]},{"path":[4,58,2,5,3],"span":[1042,25,26]},{"path":[4,58,2,6],"span":[1043,2,33]},{"path":[4,58,2,6,4],"span":[1043,2,10]},{"path":[4,58,2,6,5],"span":[1043,11,15]},{"path":[4,58,2,6,1],"span":[1043,16,28]},{"path":[4,58,2,6,3],"span":[1043,31,32]},{"path":[4,58,2,7],"span":[1044,2,54]},{"path":[4,58,2,7,4],"span":[1044,2,10]},{"path":[4,58,2,7,6],"span":[1044,11,36]},{"path":[4,58,2,7,1],"span":[1044,37,49]},{"path":[4,58,2,7,3],"span":[1044,52,53]},{"path":[4,58,2,8],"span":[1045,2,37]},{"path":[4,58,2,8,4],"span":[1045,2,10]},{"path":[4,58,2,8,5],"span":[1045,11,17]},{"path":[4,58,2,8,1],"span":[1045,18,31]},{"path":[4,58,2,8,3],"span":[1045,34,36]},{"path":[4,58,2,9],"span":[1046,2,43]},{"path":[4,58,2,9,4],"span":[1046,2,10]},{"path":[4,58,2,9,5],"span":[1046,11,17]},{"path":[4,58,2,9,1],"span":[1046,18,37]},{"path":[4,58,2,9,3],"span":[1046,40,42]},{"path":[4,58,2,10],"span":[1047,2,43]},{"path":[4,58,2,10,4],"span":[1047,2,10]},{"path":[4,58,2,10,5],"span":[1047,11,16]},{"path":[4,58,2,10,1],"span":[1047,17,37]},{"path":[4,58,2,10,3],"span":[1047,40,42]},{"path":[4,58,2,11],"span":[1048,2,43]},{"path":[4,58,2,11,4],"span":[1048,2,10]},{"path":[4,58,2,11,5],"span":[1048,11,16]},{"path":[4,58,2,11,1],"span":[1048,17,37]},{"path":[4,58,2,11,3],"span":[1048,40,42]},{"path":[4,58,2,12],"span":[1049,2,36]},{"path":[4,58,2,12,4],"span":[1049,2,10]},{"path":[4,58,2,12,5],"span":[1049,11,15]},{"path":[4,58,2,12,1],"span":[1049,16,30]},{"path":[4,58,2,12,3],"span":[1049,33,35]},{"path":[4,58,2,13],"span":[1050,2,43]},{"path":[4,58,2,13,4],"span":[1050,2,10]},{"path":[4,58,2,13,5],"span":[1050,11,17]},{"path":[4,58,2,13,1],"span":[1050,18,37]},{"path":[4,58,2,13,3],"span":[1050,40,42]},{"path":[4,58,2,14],"span":[1051,2,51]},{"path":[4,58,2,14,4],"span":[1051,2,10]},{"path":[4,58,2,14,6],"span":[1051,11,22]},{"path":[4,58,2,14,1],"span":[1051,23,45]},{"path":[4,58,2,14,3],"span":[1051,48,50]},{"path":[4,58,2,15],"span":[1052,2,30]},{"path":[4,58,2,15,4],"span":[1052,2,10]},{"path":[4,58,2,15,5],"span":[1052,11,17]},{"path":[4,58,2,15,1],"span":[1052,18,24]},{"path":[4,58,2,15,3],"span":[1052,27,29]},{"path":[4,58,2,16],"span":[1053,2,52]},{"path":[4,58,2,16,4],"span":[1053,2,10]},{"path":[4,58,2,16,6],"span":[1053,11,22]},{"path":[4,58,2,16,1],"span":[1053,23,46]},{"path":[4,58,2,16,3],"span":[1053,49,51]},{"path":[4,58,2,17],"span":[1054,2,31]},{"path":[4,58,2,17,4],"span":[1054,2,10]},{"path":[4,58,2,17,5],"span":[1054,11,17]},{"path":[4,58,2,17,1],"span":[1054,18,25]},{"path":[4,58,2,17,3],"span":[1054,28,30]},{"path":[4,58,2,18],"span":[1055,2,36]},{"path":[4,58,2,18,4],"span":[1055,2,10]},{"path":[4,58,2,18,5],"span":[1055,11,17]},{"path":[4,58,2,18,1],"span":[1055,18,30]},{"path":[4,58,2,18,3],"span":[1055,33,35]},{"path":[4,59],"span":[1061,0,1068,1],"leadingComments":"\n Bios for Unix/Linux: Unix.Bios\n"},{"path":[4,59,1],"span":[1061,8,17]},{"path":[4,59,2,0],"span":[1062,2,30],"trailingComments":" e.g.: \"Hyper-V UEFI Release v4.1\"\n"},{"path":[4,59,2,0,4],"span":[1062,2,10]},{"path":[4,59,2,0,5],"span":[1062,11,17]},{"path":[4,59,2,0,1],"span":[1062,18,25]},{"path":[4,59,2,0,3],"span":[1062,28,29]},{"path":[4,59,2,1],"span":[1063,2,30]},{"path":[4,59,2,1,4],"span":[1063,2,10]},{"path":[4,59,2,1,5],"span":[1063,11,17]},{"path":[4,59,2,1,1],"span":[1063,18,25]},{"path":[4,59,2,1,3],"span":[1063,28,29]},{"path":[4,59,2,2],"span":[1064,2,29]},{"path":[4,59,2,2,4],"span":[1064,2,10]},{"path":[4,59,2,2,5],"span":[1064,11,17]},{"path":[4,59,2,2,1],"span":[1064,18,24]},{"path":[4,59,2,2,3],"span":[1064,27,28]},{"path":[4,59,2,3],"span":[1065,2,34],"trailingComments":" parsed from e.g. \"64 kB\"\n"},{"path":[4,59,2,3,4],"span":[1065,2,10]},{"path":[4,59,2,3,5],"span":[1065,11,16]},{"path":[4,59,2,3,1],"span":[1065,17,29]},{"path":[4,59,2,3,3],"span":[1065,32,33]},{"path":[4,59,2,4],"span":[1066,2,30],"trailingComments":" parsed from e.g. \"64 kB\"\n"},{"path":[4,59,2,4,4],"span":[1066,2,10]},{"path":[4,59,2,4,5],"span":[1066,11,16]},{"path":[4,59,2,4,1],"span":[1066,17,25]},{"path":[4,59,2,4,3],"span":[1066,28,29]},{"path":[4,59,2,5],"span":[1067,2,54]},{"path":[4,59,2,5,4],"span":[1067,2,10]},{"path":[4,59,2,5,6],"span":[1067,11,36]},{"path":[4,59,2,5,1],"span":[1067,37,49]},{"path":[4,59,2,5,3],"span":[1067,52,53]},{"path":[4,60],"span":[1073,0,1079,1],"leadingComments":"\n Computer Battery: Windows.WindowsBattery. Mac.Power battery messages.\n"},{"path":[4,60,1],"span":[1073,8,23]},{"path":[4,60,8,0],"span":[1074,2,1078,3]},{"path":[4,60,8,0,1],"span":[1074,8,12]},{"path":[4,60,2,0],"span":[1075,4,43]},{"path":[4,60,2,0,6],"span":[1075,4,26]},{"path":[4,60,2,0,1],"span":[1075,27,38]},{"path":[4,60,2,0,3],"span":[1075,41,42]},{"path":[4,60,2,1],"span":[1076,4,44]},{"path":[4,60,2,1,6],"span":[1076,4,26]},{"path":[4,60,2,1,1],"span":[1076,27,39]},{"path":[4,60,2,1,3],"span":[1076,42,43]},{"path":[4,60,2,2],"span":[1077,4,39]},{"path":[4,60,2,2,6],"span":[1077,4,22]},{"path":[4,60,2,2,1],"span":[1077,23,34]},{"path":[4,60,2,2,3],"span":[1077,37,38]},{"path":[4,61],"span":[1085,0,1096,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,61,1],"span":[1085,8,30]},{"path":[4,61,2,0],"span":[1086,2,40]},{"path":[4,61,2,0,4],"span":[1086,2,10]},{"path":[4,61,2,0,6],"span":[1086,11,22]},{"path":[4,61,2,0,1],"span":[1086,23,35]},{"path":[4,61,2,0,3],"span":[1086,38,39]},{"path":[4,61,2,1],"span":[1087,2,42]},{"path":[4,61,2,1,4],"span":[1087,2,10]},{"path":[4,61,2,1,6],"span":[1087,11,22]},{"path":[4,61,2,1,1],"span":[1087,23,37]},{"path":[4,61,2,1,3],"span":[1087,40,41]},{"path":[4,61,2,2],"span":[1088,2,37]},{"path":[4,61,2,2,4],"span":[1088,2,10]},{"path":[4,61,2,2,6],"span":[1088,11,22]},{"path":[4,61,2,2,1],"span":[1088,23,32]},{"path":[4,61,2,2,3],"span":[1088,35,36]},{"path":[4,61,2,3],"span":[1089,2,43]},{"path":[4,61,2,3,4],"span":[1089,2,10]},{"path":[4,61,2,3,6],"span":[1089,11,22]},{"path":[4,61,2,3,1],"span":[1089,23,38]},{"path":[4,61,2,3,3],"span":[1089,41,42]},{"path":[4,61,2,4],"span":[1090,2,32]},{"path":[4,61,2,4,4],"span":[1090,2,10]},{"path":[4,61,2,4,5],"span":[1090,11,17]},{"path":[4,61,2,4,1],"span":[1090,18,27]},{"path":[4,61,2,4,3],"span":[1090,30,31]},{"path":[4,61,2,5],"span":[1091,2,27]},{"path":[4,61,2,5,4],"span":[1091,2,10]},{"path":[4,61,2,5,5],"span":[1091,11,17]},{"path":[4,61,2,5,1],"span":[1091,18,22]},{"path":[4,61,2,5,3],"span":[1091,25,26]},{"path":[4,61,2,6],"span":[1092,2,57]},{"path":[4,61,2,6,4],"span":[1092,2,10]},{"path":[4,61,2,6,6],"span":[1092,11,22]},{"path":[4,61,2,6,1],"span":[1092,23,52]},{"path":[4,61,2,6,3],"span":[1092,55,56]},{"path":[4,61,2,7],"span":[1093,2,47]},{"path":[4,61,2,7,4],"span":[1093,2,10]},{"path":[4,61,2,7,5],"span":[1093,11,15]},{"path":[4,61,2,7,1],"span":[1093,16,42]},{"path":[4,61,2,7,3],"span":[1093,45,46]},{"path":[4,61,2,8],"span":[1094,2,44]},{"path":[4,61,2,8,4],"span":[1094,2,10]},{"path":[4,61,2,8,5],"span":[1094,11,17]},{"path":[4,61,2,8,1],"span":[1094,18,39]},{"path":[4,61,2,8,3],"span":[1094,42,43]},{"path":[4,61,2,9],"span":[1095,2,30]},{"path":[4,61,2,9,4],"span":[1095,2,10]},{"path":[4,61,2,9,5],"span":[1095,11,17]},{"path":[4,61,2,9,1],"span":[1095,18,24]},{"path":[4,61,2,9,3],"span":[1095,27,29]},{"path":[4,62],"span":[1102,0,1114,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,62,1],"span":[1102,8,30]},{"path":[4,62,2,0],"span":[1103,2,41]},{"path":[4,62,2,0,4],"span":[1103,2,10]},{"path":[4,62,2,0,5],"span":[1103,11,16]},{"path":[4,62,2,0,1],"span":[1103,17,36]},{"path":[4,62,2,0,3],"span":[1103,39,40]},{"path":[4,62,2,1],"span":[1104,2,37]},{"path":[4,62,2,1,4],"span":[1104,2,10]},{"path":[4,62,2,1,6],"span":[1104,11,22]},{"path":[4,62,2,1,1],"span":[1104,23,32]},{"path":[4,62,2,1,3],"span":[1104,35,36]},{"path":[4,62,2,2],"span":[1105,2,37]},{"path":[4,62,2,2,4],"span":[1105,2,10]},{"path":[4,62,2,2,5],"span":[1105,11,16]},{"path":[4,62,2,2,1],"span":[1105,17,32]},{"path":[4,62,2,2,3],"span":[1105,35,36]},{"path":[4,62,2,3],"span":[1106,2,36]},{"path":[4,62,2,3,4],"span":[1106,2,10]},{"path":[4,62,2,3,5],"span":[1106,11,16]},{"path":[4,62,2,3,1],"span":[1106,17,31]},{"path":[4,62,2,3,3],"span":[1106,34,35]},{"path":[4,62,2,4],"span":[1107,2,32]},{"path":[4,62,2,4,4],"span":[1107,2,10]},{"path":[4,62,2,4,5],"span":[1107,11,17]},{"path":[4,62,2,4,1],"span":[1107,18,27]},{"path":[4,62,2,4,3],"span":[1107,30,31]},{"path":[4,62,2,5],"span":[1108,2,31]},{"path":[4,62,2,5,4],"span":[1108,2,10]},{"path":[4,62,2,5,5],"span":[1108,11,17]},{"path":[4,62,2,5,1],"span":[1108,18,26]},{"path":[4,62,2,5,3],"span":[1108,29,30]},{"path":[4,62,2,6],"span":[1109,2,39]},{"path":[4,62,2,6,4],"span":[1109,2,10]},{"path":[4,62,2,6,5],"span":[1109,11,17]},{"path":[4,62,2,6,1],"span":[1109,18,34]},{"path":[4,62,2,6,3],"span":[1109,37,38]},{"path":[4,62,2,7],"span":[1110,2,35]},{"path":[4,62,2,7,4],"span":[1110,2,10]},{"path":[4,62,2,7,5],"span":[1110,11,17]},{"path":[4,62,2,7,1],"span":[1110,18,30]},{"path":[4,62,2,7,3],"span":[1110,33,34]},{"path":[4,62,2,8],"span":[1111,2,39]},{"path":[4,62,2,8,4],"span":[1111,2,10]},{"path":[4,62,2,8,5],"span":[1111,11,16]},{"path":[4,62,2,8,1],"span":[1111,17,34]},{"path":[4,62,2,8,3],"span":[1111,37,38]},{"path":[4,62,2,9],"span":[1112,2,28]},{"path":[4,62,2,9,4],"span":[1112,2,10]},{"path":[4,62,2,9,5],"span":[1112,11,17]},{"path":[4,62,2,9,1],"span":[1112,18,22]},{"path":[4,62,2,9,3],"span":[1112,25,27]},{"path":[4,62,2,10],"span":[1113,2,45]},{"path":[4,62,2,10,4],"span":[1113,2,10]},{"path":[4,62,2,10,5],"span":[1113,11,17]},{"path":[4,62,2,10,1],"span":[1113,18,39]},{"path":[4,62,2,10,3],"span":[1113,42,44]},{"path":[4,63],"span":[1119,0,1155,1],"leadingComments":"\n Computer Battery: Mac.Power battery messages.\n"},{"path":[4,63,1],"span":[1119,8,26]},{"path":[4,63,2,0],"span":[1121,2,38],"leadingComments":" from battery power\n"},{"path":[4,63,2,0,4],"span":[1121,2,10]},{"path":[4,63,2,0,5],"span":[1121,11,16]},{"path":[4,63,2,0,1],"span":[1121,17,33]},{"path":[4,63,2,0,3],"span":[1121,36,37]},{"path":[4,63,2,1],"span":[1122,2,41]},{"path":[4,63,2,1,4],"span":[1122,2,10]},{"path":[4,63,2,1,5],"span":[1122,11,16]},{"path":[4,63,2,1,1],"span":[1122,17,36]},{"path":[4,63,2,1,3],"span":[1122,39,40]},{"path":[4,63,2,2],"span":[1123,2,36]},{"path":[4,63,2,2,4],"span":[1123,2,10]},{"path":[4,63,2,2,5],"span":[1123,11,16]},{"path":[4,63,2,2,1],"span":[1123,17,31]},{"path":[4,63,2,2,3],"span":[1123,34,35]},{"path":[4,63,2,3],"span":[1124,2,64]},{"path":[4,63,2,3,4],"span":[1124,2,10]},{"path":[4,63,2,3,5],"span":[1124,11,16]},{"path":[4,63,2,3,1],"span":[1124,17,59]},{"path":[4,63,2,3,3],"span":[1124,62,63]},{"path":[4,63,2,4],"span":[1125,2,42],"trailingComments":" parse from: 'Yes'\n"},{"path":[4,63,2,4,4],"span":[1125,2,10]},{"path":[4,63,2,4,5],"span":[1125,11,15]},{"path":[4,63,2,4,1],"span":[1125,16,37]},{"path":[4,63,2,4,3],"span":[1125,40,41]},{"path":[4,63,2,5],"span":[1126,2,40]},{"path":[4,63,2,5,4],"span":[1126,2,10]},{"path":[4,63,2,5,5],"span":[1126,11,16]},{"path":[4,63,2,5,1],"span":[1126,17,35]},{"path":[4,63,2,5,3],"span":[1126,38,39]},{"path":[4,63,2,6],"span":[1127,2,32]},{"path":[4,63,2,6,4],"span":[1127,2,10]},{"path":[4,63,2,6,5],"span":[1127,11,15]},{"path":[4,63,2,6,1],"span":[1127,16,27]},{"path":[4,63,2,6,3],"span":[1127,30,31]},{"path":[4,63,2,7],"span":[1128,2,42]},{"path":[4,63,2,7,4],"span":[1128,2,10]},{"path":[4,63,2,7,5],"span":[1128,11,16]},{"path":[4,63,2,7,1],"span":[1128,17,37]},{"path":[4,63,2,7,3],"span":[1128,40,41]},{"path":[4,63,2,8],"span":[1129,2,37]},{"path":[4,63,2,8,4],"span":[1129,2,10]},{"path":[4,63,2,8,5],"span":[1129,11,16]},{"path":[4,63,2,8,1],"span":[1129,17,32]},{"path":[4,63,2,8,3],"span":[1129,35,36]},{"path":[4,63,2,9],"span":[1130,2,37]},{"path":[4,63,2,9,4],"span":[1130,2,10]},{"path":[4,63,2,9,5],"span":[1130,11,16]},{"path":[4,63,2,9,1],"span":[1130,17,31]},{"path":[4,63,2,9,3],"span":[1130,34,36]},{"path":[4,63,2,10],"span":[1131,2,39]},{"path":[4,63,2,10,4],"span":[1131,2,10]},{"path":[4,63,2,10,5],"span":[1131,11,15]},{"path":[4,63,2,10,1],"span":[1131,16,33]},{"path":[4,63,2,10,3],"span":[1131,36,38]},{"path":[4,63,2,11],"span":[1134,2,38],"leadingComments":" from battery charge (parse booleans)\n"},{"path":[4,63,2,11,4],"span":[1134,2,10]},{"path":[4,63,2,11,5],"span":[1134,11,15]},{"path":[4,63,2,11,1],"span":[1134,16,32]},{"path":[4,63,2,11,3],"span":[1134,35,37]},{"path":[4,63,2,12],"span":[1135,2,38]},{"path":[4,63,2,12,4],"span":[1135,2,10]},{"path":[4,63,2,12,5],"span":[1135,11,15]},{"path":[4,63,2,12,1],"span":[1135,16,32]},{"path":[4,63,2,12,3],"span":[1135,35,37]},{"path":[4,63,2,13],"span":[1136,2,33]},{"path":[4,63,2,13,4],"span":[1136,2,10]},{"path":[4,63,2,13,5],"span":[1136,11,15]},{"path":[4,63,2,13,1],"span":[1136,16,27]},{"path":[4,63,2,13,3],"span":[1136,30,32]},{"path":[4,63,2,14],"span":[1137,2,39]},{"path":[4,63,2,14,4],"span":[1137,2,10]},{"path":[4,63,2,14,5],"span":[1137,11,16]},{"path":[4,63,2,14,1],"span":[1137,18,33]},{"path":[4,63,2,14,3],"span":[1137,36,38]},{"path":[4,63,2,15],"span":[1140,2,34],"leadingComments":" from battery_health_info\n"},{"path":[4,63,2,15,4],"span":[1140,2,10]},{"path":[4,63,2,15,5],"span":[1140,11,16]},{"path":[4,63,2,15,1],"span":[1140,17,28]},{"path":[4,63,2,15,3],"span":[1140,31,33]},{"path":[4,63,2,16],"span":[1141,2,37]},{"path":[4,63,2,16,4],"span":[1141,2,10]},{"path":[4,63,2,16,5],"span":[1141,11,17]},{"path":[4,63,2,16,1],"span":[1141,18,31]},{"path":[4,63,2,16,3],"span":[1141,34,36]},{"path":[4,63,2,17],"span":[1142,2,54]},{"path":[4,63,2,17,4],"span":[1142,2,10]},{"path":[4,63,2,17,5],"span":[1142,11,17]},{"path":[4,63,2,17,1],"span":[1142,18,48]},{"path":[4,63,2,17,3],"span":[1142,51,53]},{"path":[4,63,2,18],"span":[1145,2,36],"leadingComments":" from battery_model_info\n"},{"path":[4,63,2,18,4],"span":[1145,2,10]},{"path":[4,63,2,18,5],"span":[1145,11,17]},{"path":[4,63,2,18,1],"span":[1145,18,30]},{"path":[4,63,2,18,3],"span":[1145,33,35]},{"path":[4,63,2,19],"span":[1146,2,37]},{"path":[4,63,2,19,4],"span":[1146,2,10]},{"path":[4,63,2,19,5],"span":[1146,11,17]},{"path":[4,63,2,19,1],"span":[1146,18,31]},{"path":[4,63,2,19,3],"span":[1146,34,36]},{"path":[4,63,2,20],"span":[1147,2,37]},{"path":[4,63,2,20,4],"span":[1147,2,10]},{"path":[4,63,2,20,5],"span":[1147,11,17]},{"path":[4,63,2,20,1],"span":[1147,18,31]},{"path":[4,63,2,20,3],"span":[1147,34,36]},{"path":[4,63,2,21],"span":[1148,2,35]},{"path":[4,63,2,21,4],"span":[1148,2,10]},{"path":[4,63,2,21,5],"span":[1148,11,17]},{"path":[4,63,2,21,1],"span":[1148,18,29]},{"path":[4,63,2,21,3],"span":[1148,32,34]},{"path":[4,63,2,22],"span":[1149,2,40]},{"path":[4,63,2,22,4],"span":[1149,2,10]},{"path":[4,63,2,22,5],"span":[1149,11,17]},{"path":[4,63,2,22,1],"span":[1149,18,34]},{"path":[4,63,2,22,3],"span":[1149,37,39]},{"path":[4,63,2,23],"span":[1150,2,41]},{"path":[4,63,2,23,4],"span":[1150,2,10]},{"path":[4,63,2,23,5],"span":[1150,11,17]},{"path":[4,63,2,23,1],"span":[1150,18,35]},{"path":[4,63,2,23,3],"span":[1150,38,40]},{"path":[4,63,2,24],"span":[1151,2,37]},{"path":[4,63,2,24,4],"span":[1151,2,10]},{"path":[4,63,2,24,5],"span":[1151,11,17]},{"path":[4,63,2,24,1],"span":[1151,18,31]},{"path":[4,63,2,24,3],"span":[1151,34,36]},{"path":[4,63,2,25],"span":[1153,2,47]},{"path":[4,63,2,25,4],"span":[1153,2,10]},{"path":[4,63,2,25,5],"span":[1153,11,15]},{"path":[4,63,2,25,1],"span":[1153,16,41]},{"path":[4,63,2,25,3],"span":[1153,44,46]},{"path":[4,63,2,26],"span":[1154,2,41]},{"path":[4,63,2,26,4],"span":[1154,2,10]},{"path":[4,63,2,26,5],"span":[1154,11,15]},{"path":[4,63,2,26,1],"span":[1154,16,35]},{"path":[4,63,2,26,3],"span":[1154,38,40]},{"path":[4,64],"span":[1160,0,1182,1],"leadingComments":"\n Optical disc drive for computers.\n"},{"path":[4,64,1],"span":[1160,8,20]},{"path":[4,64,2,0],"span":[1161,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,64,2,0,4],"span":[1161,2,10]},{"path":[4,64,2,0,5],"span":[1161,16,22]},{"path":[4,64,2,0,1],"span":[1161,24,28]},{"path":[4,64,2,0,3],"span":[1161,34,35]},{"path":[4,64,2,1],"span":[1162,2,36],"trailingComments":" \t\"OK\",\"Error\",\"Degraded\"\tWindows\n"},{"path":[4,64,2,1,4],"span":[1162,2,10]},{"path":[4,64,2,1,5],"span":[1162,16,22]},{"path":[4,64,2,1,1],"span":[1162,24,30]},{"path":[4,64,2,1,3],"span":[1162,34,35]},{"path":[4,64,2,2],"span":[1163,2,36],"trailingComments":" \t\"2:0:0:0\"\tLinux\n"},{"path":[4,64,2,2,4],"span":[1163,2,10]},{"path":[4,64,2,2,5],"span":[1163,16,22]},{"path":[4,64,2,2,1],"span":[1163,24,27]},{"path":[4,64,2,2,3],"span":[1163,34,35]},{"path":[4,64,2,3],"span":[1164,2,52],"trailingComments":" \t\"Supports writing, Random Access, Supports Removable Media\" \tWindows\n"},{"path":[4,64,2,3,4],"span":[1164,2,10]},{"path":[4,64,2,3,6],"span":[1164,16,27]},{"path":[4,64,2,3,1],"span":[1164,32,44]},{"path":[4,64,2,3,3],"span":[1164,50,51]},{"path":[4,64,2,4],"span":[1165,2,44],"trailingComments":" \t\"32 KB\", \"2048 KB\"\tMac\n"},{"path":[4,64,2,4,4],"span":[1165,2,10]},{"path":[4,64,2,4,5],"span":[1165,16,22]},{"path":[4,64,2,4,1],"span":[1165,24,34]},{"path":[4,64,2,4,3],"span":[1165,42,43]},{"path":[4,64,2,5],"span":[1166,2,44],"trailingComments":" \t\"DRDeviceSupportLevelUnsupported\",\"Yes (Apple Shipping Drive)\",\"Yes (Generic Drive Support)\"\tMac\n"},{"path":[4,64,2,5,4],"span":[1166,2,10]},{"path":[4,64,2,5,5],"span":[1166,16,22]},{"path":[4,64,2,5,1],"span":[1166,24,36]},{"path":[4,64,2,5,3],"span":[1166,42,43]},{"path":[4,64,2,6],"span":[1167,2,44],"trailingComments":" \t\"-R, -RW\"\tMac\n"},{"path":[4,64,2,6,4],"span":[1167,2,10]},{"path":[4,64,2,6,5],"span":[1167,16,22]},{"path":[4,64,2,6,1],"span":[1167,24,32]},{"path":[4,64,2,6,3],"span":[1167,42,43]},{"path":[4,64,2,7],"span":[1168,2,44],"trailingComments":" \t\"-R, -RAM, -RW\"\tMac\n"},{"path":[4,64,2,7,4],"span":[1168,2,10]},{"path":[4,64,2,7,5],"span":[1168,16,22]},{"path":[4,64,2,7,1],"span":[1168,24,33]},{"path":[4,64,2,7,3],"span":[1168,42,43]},{"path":[4,64,2,8],"span":[1169,2,44],"trailingComments":" \t\"yes\"\tMac\n"},{"path":[4,64,2,8,4],"span":[1169,2,10]},{"path":[4,64,2,8,5],"span":[1169,16,22]},{"path":[4,64,2,8,1],"span":[1169,24,32]},{"path":[4,64,2,8,3],"span":[1169,42,43]},{"path":[4,64,2,9],"span":[1170,2,45],"trailingComments":" \tWindows: \"H:\" Linux: \"/dev/sr0 (/dev/sg0)\"\tWindows, Linux\n"},{"path":[4,64,2,9,4],"span":[1170,2,10]},{"path":[4,64,2,9,5],"span":[1170,16,22]},{"path":[4,64,2,9,1],"span":[1170,24,34]},{"path":[4,64,2,9,3],"span":[1170,42,44]},{"path":[4,64,2,10],"span":[1171,2,53],"trailingComments":" \t\"RQ00\",\"1.00\"\tMac\n"},{"path":[4,64,2,10,4],"span":[1171,2,10]},{"path":[4,64,2,10,5],"span":[1171,16,22]},{"path":[4,64,2,10,1],"span":[1171,24,40]},{"path":[4,64,2,10,3],"span":[1171,50,52]},{"path":[4,64,2,11],"span":[1172,2,45],"trailingComments":" \t\"ATAPI\",\"USB\"\tMac\n"},{"path":[4,64,2,11,4],"span":[1172,2,10]},{"path":[4,64,2,11,5],"span":[1172,16,22]},{"path":[4,64,2,11,1],"span":[1172,24,34]},{"path":[4,64,2,11,3],"span":[1172,42,44]},{"path":[4,64,2,12],"span":[1173,2,61],"trailingComments":" \t\"yes\"\tMac\n"},{"path":[4,64,2,12,4],"span":[1173,2,10]},{"path":[4,64,2,12,5],"span":[1173,16,22]},{"path":[4,64,2,12,1],"span":[1173,24,54]},{"path":[4,64,2,12,3],"span":[1173,58,60]},{"path":[4,64,2,13],"span":[1174,2,45],"trailingComments":" \tWindows:\"(Standard CD-ROM drives)\",Linux:\"NECVMWar\"\tWindows, Linux\n"},{"path":[4,64,2,13,4],"span":[1174,2,10]},{"path":[4,64,2,13,5],"span":[1174,16,22]},{"path":[4,64,2,13,1],"span":[1174,24,36]},{"path":[4,64,2,13,3],"span":[1174,42,44]},{"path":[4,64,2,14],"span":[1175,2,45],"trailingComments":" \t\tLinux\n"},{"path":[4,64,2,14,4],"span":[1175,2,10]},{"path":[4,64,2,14,5],"span":[1175,16,22]},{"path":[4,64,2,14,1],"span":[1175,24,35]},{"path":[4,64,2,14,3],"span":[1175,42,44]},{"path":[4,64,2,15],"span":[1176,2,53],"trailingComments":" \t\"CD-TAO, CD-SAO, CD-Raw, DVD-DAO\"\tMac\n"},{"path":[4,64,2,15,4],"span":[1176,2,10]},{"path":[4,64,2,15,5],"span":[1176,16,22]},{"path":[4,64,2,15,1],"span":[1176,24,40]},{"path":[4,64,2,15,3],"span":[1176,50,52]},{"path":[4,64,2,16],"span":[1177,2,45],"trailingComments":" \t7\tWindows\n"},{"path":[4,64,2,16,4],"span":[1177,2,10]},{"path":[4,64,2,16,5],"span":[1177,16,21]},{"path":[4,64,2,16,1],"span":[1177,24,32]},{"path":[4,64,2,16,3],"span":[1177,42,44]},{"path":[4,64,2,17],"span":[1178,2,53],"trailingComments":" \t0\tWindows\n"},{"path":[4,64,2,17,4],"span":[1178,2,10]},{"path":[4,64,2,17,5],"span":[1178,16,21]},{"path":[4,64,2,17,1],"span":[1178,24,41]},{"path":[4,64,2,17,3],"span":[1178,50,52]},{"path":[4,64,2,18],"span":[1179,2,45],"trailingComments":" \t0\tWindows\n"},{"path":[4,64,2,18,4],"span":[1179,2,10]},{"path":[4,64,2,18,5],"span":[1179,16,21]},{"path":[4,64,2,18,1],"span":[1179,24,33]},{"path":[4,64,2,18,3],"span":[1179,42,44]},{"path":[4,64,2,19],"span":[1180,2,45],"trailingComments":" \t0\tWindows\n"},{"path":[4,64,2,19,4],"span":[1180,2,10]},{"path":[4,64,2,19,5],"span":[1180,16,21]},{"path":[4,64,2,19,1],"span":[1180,24,38]},{"path":[4,64,2,19,3],"span":[1180,42,44]},{"path":[4,64,2,20],"span":[1181,2,52],"trailingComments":" \tMac\n"},{"path":[4,64,2,20,4],"span":[1181,2,10]},{"path":[4,64,2,20,5],"span":[1181,16,22]},{"path":[4,64,2,20,1],"span":[1181,24,46]},{"path":[4,64,2,20,3],"span":[1181,49,51]},{"path":[4,65],"span":[1187,0,1200,1],"leadingComments":"\n Motherboard for computers.\n"},{"path":[4,65,1],"span":[1187,8,19]},{"path":[4,65,2,0],"span":[1188,2,18],"trailingComments":" Windows, Linux\n"},{"path":[4,65,2,0,5],"span":[1188,2,8]},{"path":[4,65,2,0,1],"span":[1188,9,13]},{"path":[4,65,2,0,3],"span":[1188,16,17]},{"path":[4,65,2,1],"span":[1189,2,43],"trailingComments":" Windows\n"},{"path":[4,65,2,1,4],"span":[1189,2,10]},{"path":[4,65,2,1,5],"span":[1189,11,17]},{"path":[4,65,2,1,1],"span":[1189,24,38]},{"path":[4,65,2,1,3],"span":[1189,41,42]},{"path":[4,65,2,2],"span":[1190,2,37],"trailingComments":" Windows\n"},{"path":[4,65,2,2,4],"span":[1190,2,10]},{"path":[4,65,2,2,5],"span":[1190,11,15]},{"path":[4,65,2,2,1],"span":[1190,16,32]},{"path":[4,65,2,2,3],"span":[1190,35,36]},{"path":[4,65,2,3],"span":[1191,2,34],"trailingComments":" Windows\n"},{"path":[4,65,2,3,4],"span":[1191,2,10]},{"path":[4,65,2,3,5],"span":[1191,11,15]},{"path":[4,65,2,3,1],"span":[1191,16,29]},{"path":[4,65,2,3,3],"span":[1191,32,33]},{"path":[4,65,2,4],"span":[1192,2,37],"trailingComments":" Linux\n"},{"path":[4,65,2,4,4],"span":[1192,2,10]},{"path":[4,65,2,4,5],"span":[1192,11,17]},{"path":[4,65,2,4,1],"span":[1192,24,32]},{"path":[4,65,2,4,3],"span":[1192,35,36]},{"path":[4,65,2,5],"span":[1193,2,41],"trailingComments":" Windows, Linux\n"},{"path":[4,65,2,5,4],"span":[1193,2,10]},{"path":[4,65,2,5,5],"span":[1193,11,17]},{"path":[4,65,2,5,1],"span":[1193,24,36]},{"path":[4,65,2,5,3],"span":[1193,39,40]},{"path":[4,65,2,6],"span":[1194,2,42],"trailingComments":" Windows, Linux\n"},{"path":[4,65,2,6,4],"span":[1194,2,10]},{"path":[4,65,2,6,5],"span":[1194,11,17]},{"path":[4,65,2,6,1],"span":[1194,24,37]},{"path":[4,65,2,6,3],"span":[1194,40,41]},{"path":[4,65,2,7],"span":[1195,2,32],"trailingComments":" Windows\n"},{"path":[4,65,2,7,4],"span":[1195,2,10]},{"path":[4,65,2,7,5],"span":[1195,11,17]},{"path":[4,65,2,7,1],"span":[1195,24,27]},{"path":[4,65,2,7,3],"span":[1195,30,31]},{"path":[4,65,2,8],"span":[1196,2,33],"trailingComments":" Linux\n"},{"path":[4,65,2,8,4],"span":[1196,2,10]},{"path":[4,65,2,8,5],"span":[1196,11,17]},{"path":[4,65,2,8,1],"span":[1196,24,28]},{"path":[4,65,2,8,3],"span":[1196,31,32]},{"path":[4,65,2,9],"span":[1197,2,37],"trailingComments":" Windows, Linux\n"},{"path":[4,65,2,9,4],"span":[1197,2,10]},{"path":[4,65,2,9,5],"span":[1197,11,17]},{"path":[4,65,2,9,1],"span":[1197,24,31]},{"path":[4,65,2,9,3],"span":[1197,34,36]},{"path":[4,65,2,10],"span":[1199,2,41]},{"path":[4,65,2,10,4],"span":[1199,2,10]},{"path":[4,65,2,10,6],"span":[1199,11,28]},{"path":[4,65,2,10,1],"span":[1199,29,35]},{"path":[4,65,2,10,3],"span":[1199,38,40]},{"path":[4,66],"span":[1205,0,1210,1],"leadingComments":"\n Motherboard device, available only on Windows atm.\n"},{"path":[4,66,1],"span":[1205,8,25]},{"path":[4,66,2,0],"span":[1206,2,40]},{"path":[4,66,2,0,4],"span":[1206,2,10]},{"path":[4,66,2,0,5],"span":[1206,11,17]},{"path":[4,66,2,0,1],"span":[1206,24,35]},{"path":[4,66,2,0,3],"span":[1206,38,39]},{"path":[4,66,2,1],"span":[1207,2,28]},{"path":[4,66,2,1,4],"span":[1207,2,10]},{"path":[4,66,2,1,5],"span":[1207,11,15]},{"path":[4,66,2,1,1],"span":[1207,16,23]},{"path":[4,66,2,1,3],"span":[1207,26,27]},{"path":[4,66,2,2],"span":[1208,2,32]},{"path":[4,66,2,2,4],"span":[1208,2,10]},{"path":[4,66,2,2,5],"span":[1208,11,17]},{"path":[4,66,2,2,1],"span":[1208,24,27]},{"path":[4,66,2,2,3],"span":[1208,30,31]},{"path":[4,66,2,3],"span":[1209,2,32]},{"path":[4,66,2,3,4],"span":[1209,2,10]},{"path":[4,66,2,3,6],"span":[1209,11,22]},{"path":[4,66,2,3,1],"span":[1209,23,27]},{"path":[4,66,2,3,3],"span":[1209,30,31]},{"path":[4,67],"span":[1215,0,1219,1],"leadingComments":"\n Memory with summary fields and repeated entries.\n"},{"path":[4,67,1],"span":[1215,8,14]},{"path":[4,67,2,0],"span":[1216,4,29]},{"path":[4,67,2,0,5],"span":[1216,4,9]},{"path":[4,67,2,0,1],"span":[1216,10,24]},{"path":[4,67,2,0,3],"span":[1216,27,28]},{"path":[4,67,2,1],"span":[1217,4,48]},{"path":[4,67,2,1,4],"span":[1217,4,12]},{"path":[4,67,2,1,6],"span":[1217,13,27]},{"path":[4,67,2,1,1],"span":[1217,28,43]},{"path":[4,67,2,1,3],"span":[1217,46,47]},{"path":[4,67,2,2],"span":[1218,4,42]},{"path":[4,67,2,2,4],"span":[1218,4,12]},{"path":[4,67,2,2,6],"span":[1218,13,24]},{"path":[4,67,2,2,1],"span":[1218,25,37]},{"path":[4,67,2,2,3],"span":[1218,40,41]},{"path":[4,68],"span":[1222,0,1245,1],"leadingComments":" MemoryEntry *"},{"path":[4,68,1],"span":[1222,8,22]},{"path":[4,68,2,0],"span":[1224,4,30],"trailingComments":" memory capacity/size\n"},{"path":[4,68,2,0,4],"span":[1224,4,12]},{"path":[4,68,2,0,5],"span":[1224,14,19]},{"path":[4,68,2,0,1],"span":[1224,20,24]},{"path":[4,68,2,0,3],"span":[1224,27,29]},{"path":[4,68,2,1],"span":[1225,4,40],"trailingComments":"\tLinux\n"},{"path":[4,68,2,1,4],"span":[1225,4,12]},{"path":[4,68,2,1,5],"span":[1225,13,19]},{"path":[4,68,2,1,1],"span":[1225,24,36]},{"path":[4,68,2,1,3],"span":[1225,38,39]},{"path":[4,68,2,2],"span":[1226,4,51],"trailingComments":"\tWindows\n"},{"path":[4,68,2,2,4],"span":[1226,4,12]},{"path":[4,68,2,2,5],"span":[1226,13,18]},{"path":[4,68,2,2,1],"span":[1226,24,46]},{"path":[4,68,2,2,3],"span":[1226,49,50]},{"path":[4,68,2,3],"span":[1227,4,46],"trailingComments":"\tWindows\n"},{"path":[4,68,2,3,4],"span":[1227,4,12]},{"path":[4,68,2,3,5],"span":[1227,13,18]},{"path":[4,68,2,3,1],"span":[1227,24,42]},{"path":[4,68,2,3,3],"span":[1227,44,45]},{"path":[4,68,2,4],"span":[1228,4,38],"trailingComments":"\tWindows, Linux\n"},{"path":[4,68,2,4,4],"span":[1228,4,12]},{"path":[4,68,2,4,5],"span":[1228,13,18]},{"path":[4,68,2,4,1],"span":[1228,24,34]},{"path":[4,68,2,4,3],"span":[1228,36,37]},{"path":[4,68,2,5],"span":[1229,4,42],"trailingComments":"\tWindows, Linux\n"},{"path":[4,68,2,5,4],"span":[1229,4,12]},{"path":[4,68,2,5,5],"span":[1229,13,19]},{"path":[4,68,2,5,1],"span":[1229,24,38]},{"path":[4,68,2,5,3],"span":[1229,40,41]},{"path":[4,68,2,6],"span":[1230,4,47],"trailingComments":"\tWindows, Linux\n"},{"path":[4,68,2,6,4],"span":[1230,4,12]},{"path":[4,68,2,6,6],"span":[1230,13,24]},{"path":[4,68,2,6,1],"span":[1230,32,43]},{"path":[4,68,2,6,3],"span":[1230,45,46]},{"path":[4,68,2,7],"span":[1231,4,49],"trailingComments":"\tWindows\n"},{"path":[4,68,2,7,4],"span":[1231,4,12]},{"path":[4,68,2,7,5],"span":[1231,13,18]},{"path":[4,68,2,7,1],"span":[1231,24,45]},{"path":[4,68,2,7,3],"span":[1231,47,48]},{"path":[4,68,2,8],"span":[1232,4,55],"trailingComments":"\tWindows\n"},{"path":[4,68,2,8,4],"span":[1232,4,12]},{"path":[4,68,2,8,6],"span":[1232,13,24]},{"path":[4,68,2,8,1],"span":[1232,32,51]},{"path":[4,68,2,8,3],"span":[1232,53,54]},{"path":[4,68,2,9],"span":[1233,4,40],"trailingComments":"\tWindows, Linux\n"},{"path":[4,68,2,9,4],"span":[1233,4,12]},{"path":[4,68,2,9,5],"span":[1233,13,19]},{"path":[4,68,2,9,1],"span":[1233,24,36]},{"path":[4,68,2,9,3],"span":[1233,38,39]},{"path":[4,68,2,10],"span":[1234,4,33],"trailingComments":"\tMac\n"},{"path":[4,68,2,10,4],"span":[1234,4,12]},{"path":[4,68,2,10,5],"span":[1234,13,19]},{"path":[4,68,2,10,1],"span":[1234,24,28]},{"path":[4,68,2,10,3],"span":[1234,30,32]},{"path":[4,68,2,11],"span":[1235,4,40],"trailingComments":"\tWindows\n"},{"path":[4,68,2,11,4],"span":[1235,4,12]},{"path":[4,68,2,11,5],"span":[1235,13,19]},{"path":[4,68,2,11,1],"span":[1235,24,35]},{"path":[4,68,2,11,3],"span":[1235,37,39]},{"path":[4,68,2,12],"span":[1236,4,44],"trailingComments":"\tWindows\n"},{"path":[4,68,2,12,4],"span":[1236,4,12]},{"path":[4,68,2,12,5],"span":[1236,13,18]},{"path":[4,68,2,12,1],"span":[1236,24,39]},{"path":[4,68,2,12,3],"span":[1236,41,43]},{"path":[4,68,2,13],"span":[1237,4,42],"trailingComments":"\tWindows, Linux\n"},{"path":[4,68,2,13,4],"span":[1237,4,12]},{"path":[4,68,2,13,5],"span":[1237,13,19]},{"path":[4,68,2,13,1],"span":[1237,24,37]},{"path":[4,68,2,13,3],"span":[1237,39,41]},{"path":[4,68,2,14],"span":[1238,4,32],"trailingComments":"\tLinux\n"},{"path":[4,68,2,14,4],"span":[1238,4,12]},{"path":[4,68,2,14,5],"span":[1238,13,19]},{"path":[4,68,2,14,1],"span":[1238,24,27]},{"path":[4,68,2,14,3],"span":[1238,29,31]},{"path":[4,68,2,15],"span":[1239,4,32],"trailingComments":"\tWindows\n"},{"path":[4,68,2,15,4],"span":[1239,4,12]},{"path":[4,68,2,15,5],"span":[1239,13,19]},{"path":[4,68,2,15,1],"span":[1239,24,27]},{"path":[4,68,2,15,3],"span":[1239,29,31]},{"path":[4,68,2,16],"span":[1240,4,34],"trailingComments":"\tWindows, Linux, Mac\n"},{"path":[4,68,2,16,4],"span":[1240,4,12]},{"path":[4,68,2,16,5],"span":[1240,13,18]},{"path":[4,68,2,16,1],"span":[1240,24,29]},{"path":[4,68,2,16,3],"span":[1240,31,33]},{"path":[4,68,2,17],"span":[1241,4,34],"trailingComments":"\tMac\n"},{"path":[4,68,2,17,4],"span":[1241,4,12]},{"path":[4,68,2,17,5],"span":[1241,13,19]},{"path":[4,68,2,17,1],"span":[1241,24,29]},{"path":[4,68,2,17,3],"span":[1241,31,33]},{"path":[4,68,2,18],"span":[1242,4,40],"trailingComments":"\tWindows, Linux\n"},{"path":[4,68,2,18,4],"span":[1242,4,12]},{"path":[4,68,2,18,5],"span":[1242,13,18]},{"path":[4,68,2,18,1],"span":[1242,24,35]},{"path":[4,68,2,18,3],"span":[1242,37,39]},{"path":[4,68,2,19],"span":[1243,4,41],"trailingComments":"\tWindows, Linux, Mac\n"},{"path":[4,68,2,19,4],"span":[1243,4,12]},{"path":[4,68,2,19,6],"span":[1243,13,24]},{"path":[4,68,2,19,1],"span":[1243,32,36]},{"path":[4,68,2,19,3],"span":[1243,38,40]},{"path":[4,68,2,20],"span":[1244,4,48],"trailingComments":"\tWindows, Linux\n"},{"path":[4,68,2,20,4],"span":[1244,4,12]},{"path":[4,68,2,20,6],"span":[1244,13,24]},{"path":[4,68,2,20,1],"span":[1244,32,43]},{"path":[4,68,2,20,3],"span":[1244,45,47]},{"path":[4,69],"span":[1249,0,1256,1],"leadingComments":" MemoryArray, only Windows *"},{"path":[4,69,1],"span":[1249,8,19]},{"path":[4,69,2,0],"span":[1250,2,40],"trailingComments":"\tWindows\n"},{"path":[4,69,2,0,4],"span":[1250,2,10]},{"path":[4,69,2,0,5],"span":[1250,11,16]},{"path":[4,69,2,0,1],"span":[1250,24,36]},{"path":[4,69,2,0,3],"span":[1250,38,39]},{"path":[4,69,2,1],"span":[1251,2,36],"trailingComments":"\tWindows\n"},{"path":[4,69,2,1,4],"span":[1251,2,10]},{"path":[4,69,2,1,6],"span":[1251,11,22]},{"path":[4,69,2,1,1],"span":[1251,24,32]},{"path":[4,69,2,1,3],"span":[1251,34,35]},{"path":[4,69,2,2],"span":[1252,2,42],"trailingComments":"\tWindows\n"},{"path":[4,69,2,2,4],"span":[1252,2,10]},{"path":[4,69,2,2,5],"span":[1252,11,16]},{"path":[4,69,2,2,1],"span":[1252,24,38]},{"path":[4,69,2,2,3],"span":[1252,40,41]},{"path":[4,69,2,3],"span":[1253,2,51],"trailingComments":"\tWindows\n"},{"path":[4,69,2,3,4],"span":[1253,2,10]},{"path":[4,69,2,3,6],"span":[1253,11,22]},{"path":[4,69,2,3,1],"span":[1253,24,47]},{"path":[4,69,2,3,3],"span":[1253,49,50]},{"path":[4,69,2,4],"span":[1254,2,31],"trailingComments":"\tWindows\n"},{"path":[4,69,2,4,4],"span":[1254,2,10]},{"path":[4,69,2,4,5],"span":[1254,11,17]},{"path":[4,69,2,4,1],"span":[1254,24,27]},{"path":[4,69,2,4,3],"span":[1254,29,30]},{"path":[4,69,2,5],"span":[1255,2,31],"trailingComments":"\tWindows\n"},{"path":[4,69,2,5,4],"span":[1255,2,10]},{"path":[4,69,2,5,6],"span":[1255,11,22]},{"path":[4,69,2,5,1],"span":[1255,24,27]},{"path":[4,69,2,5,3],"span":[1255,29,30]},{"path":[4,70],"span":[1262,0,1271,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,70,1],"span":[1262,8,20]},{"path":[4,70,2,0],"span":[1263,2,30]},{"path":[4,70,2,0,4],"span":[1263,2,10]},{"path":[4,70,2,0,5],"span":[1263,11,17]},{"path":[4,70,2,0,1],"span":[1263,18,25]},{"path":[4,70,2,0,3],"span":[1263,28,29]},{"path":[4,70,2,1],"span":[1264,2,40]},{"path":[4,70,2,1,4],"span":[1264,2,10]},{"path":[4,70,2,1,6],"span":[1264,11,22]},{"path":[4,70,2,1,1],"span":[1264,23,35]},{"path":[4,70,2,1,3],"span":[1264,38,39]},{"path":[4,70,2,2],"span":[1265,2,46]},{"path":[4,70,2,2,4],"span":[1265,2,10]},{"path":[4,70,2,2,6],"span":[1265,11,22]},{"path":[4,70,2,2,1],"span":[1265,23,41]},{"path":[4,70,2,2,3],"span":[1265,44,45]},{"path":[4,70,2,3],"span":[1266,2,53]},{"path":[4,70,2,3,4],"span":[1266,2,10]},{"path":[4,70,2,3,6],"span":[1266,11,22]},{"path":[4,70,2,3,1],"span":[1266,23,48]},{"path":[4,70,2,3,3],"span":[1266,51,52]},{"path":[4,70,2,4],"span":[1267,2,36]},{"path":[4,70,2,4,4],"span":[1267,2,10]},{"path":[4,70,2,4,5],"span":[1267,11,17]},{"path":[4,70,2,4,1],"span":[1267,18,31]},{"path":[4,70,2,4,3],"span":[1267,34,35]},{"path":[4,70,2,5],"span":[1268,2,47]},{"path":[4,70,2,5,4],"span":[1268,2,10]},{"path":[4,70,2,5,5],"span":[1268,11,15]},{"path":[4,70,2,5,1],"span":[1268,16,42]},{"path":[4,70,2,5,3],"span":[1268,45,46]},{"path":[4,70,2,6],"span":[1269,2,39]},{"path":[4,70,2,6,4],"span":[1269,2,10]},{"path":[4,70,2,6,5],"span":[1269,11,15]},{"path":[4,70,2,6,1],"span":[1269,16,34]},{"path":[4,70,2,6,3],"span":[1269,37,38]},{"path":[4,70,2,7],"span":[1270,2,47]},{"path":[4,70,2,7,4],"span":[1270,2,10]},{"path":[4,70,2,7,5],"span":[1270,11,15]},{"path":[4,70,2,7,1],"span":[1270,16,42]},{"path":[4,70,2,7,3],"span":[1270,45,46]},{"path":[4,71],"span":[1277,0,1288,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,71,1],"span":[1277,8,18]},{"path":[4,71,2,0],"span":[1278,2,40]},{"path":[4,71,2,0,4],"span":[1278,2,10]},{"path":[4,71,2,0,6],"span":[1278,11,22]},{"path":[4,71,2,0,1],"span":[1278,23,35]},{"path":[4,71,2,0,3],"span":[1278,38,39]},{"path":[4,71,2,1],"span":[1279,2,27]},{"path":[4,71,2,1,4],"span":[1279,2,10]},{"path":[4,71,2,1,5],"span":[1279,11,15]},{"path":[4,71,2,1,1],"span":[1279,16,22]},{"path":[4,71,2,1,3],"span":[1279,25,26]},{"path":[4,71,2,2],"span":[1280,2,30]},{"path":[4,71,2,2,4],"span":[1280,2,10]},{"path":[4,71,2,2,5],"span":[1280,11,17]},{"path":[4,71,2,2,1],"span":[1280,18,25]},{"path":[4,71,2,2,3],"span":[1280,28,29]},{"path":[4,71,2,3],"span":[1281,2,32]},{"path":[4,71,2,3,4],"span":[1281,2,10]},{"path":[4,71,2,3,5],"span":[1281,11,17]},{"path":[4,71,2,3,1],"span":[1281,18,27]},{"path":[4,71,2,3,3],"span":[1281,30,31]},{"path":[4,71,2,4],"span":[1282,2,35]},{"path":[4,71,2,4,4],"span":[1282,2,10]},{"path":[4,71,2,4,5],"span":[1282,11,16]},{"path":[4,71,2,4,1],"span":[1282,17,30]},{"path":[4,71,2,4,3],"span":[1282,33,34]},{"path":[4,71,2,5],"span":[1283,2,47]},{"path":[4,71,2,5,4],"span":[1283,2,10]},{"path":[4,71,2,5,5],"span":[1283,11,16]},{"path":[4,71,2,5,1],"span":[1283,17,42]},{"path":[4,71,2,5,3],"span":[1283,45,46]},{"path":[4,71,2,6],"span":[1284,2,48]},{"path":[4,71,2,6,4],"span":[1284,2,10]},{"path":[4,71,2,6,5],"span":[1284,11,16]},{"path":[4,71,2,6,1],"span":[1284,17,43]},{"path":[4,71,2,6,3],"span":[1284,46,47]},{"path":[4,71,2,7],"span":[1285,2,39]},{"path":[4,71,2,7,4],"span":[1285,2,10]},{"path":[4,71,2,7,5],"span":[1285,11,15]},{"path":[4,71,2,7,1],"span":[1285,16,34]},{"path":[4,71,2,7,3],"span":[1285,37,38]},{"path":[4,71,2,8],"span":[1286,2,36]},{"path":[4,71,2,8,4],"span":[1286,2,10]},{"path":[4,71,2,8,5],"span":[1286,11,17]},{"path":[4,71,2,8,1],"span":[1286,18,31]},{"path":[4,71,2,8,3],"span":[1286,34,35]},{"path":[4,71,2,9],"span":[1287,2,37]},{"path":[4,71,2,9,4],"span":[1287,2,10]},{"path":[4,71,2,9,5],"span":[1287,11,17]},{"path":[4,71,2,9,1],"span":[1287,18,31]},{"path":[4,71,2,9,3],"span":[1287,34,36]},{"path":[4,72],"span":[1294,0,1301,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,72,1],"span":[1294,8,24]},{"path":[4,72,2,0],"span":[1295,2,30]},{"path":[4,72,2,0,4],"span":[1295,2,10]},{"path":[4,72,2,0,5],"span":[1295,11,17]},{"path":[4,72,2,0,1],"span":[1295,18,25]},{"path":[4,72,2,0,3],"span":[1295,28,29]},{"path":[4,72,2,1],"span":[1296,2,46]},{"path":[4,72,2,1,4],"span":[1296,2,10]},{"path":[4,72,2,1,6],"span":[1296,11,22]},{"path":[4,72,2,1,1],"span":[1296,23,41]},{"path":[4,72,2,1,3],"span":[1296,44,45]},{"path":[4,72,2,2],"span":[1297,2,53]},{"path":[4,72,2,2,4],"span":[1297,2,10]},{"path":[4,72,2,2,6],"span":[1297,11,22]},{"path":[4,72,2,2,1],"span":[1297,23,48]},{"path":[4,72,2,2,3],"span":[1297,51,52]},{"path":[4,72,2,3],"span":[1298,2,47]},{"path":[4,72,2,3,4],"span":[1298,2,10]},{"path":[4,72,2,3,5],"span":[1298,11,15]},{"path":[4,72,2,3,1],"span":[1298,16,42]},{"path":[4,72,2,3,3],"span":[1298,45,46]},{"path":[4,72,2,4],"span":[1299,2,32]},{"path":[4,72,2,4,4],"span":[1299,2,10]},{"path":[4,72,2,4,5],"span":[1299,11,17]},{"path":[4,72,2,4,1],"span":[1299,18,27]},{"path":[4,72,2,4,3],"span":[1299,30,31]},{"path":[4,72,2,5],"span":[1300,2,35]},{"path":[4,72,2,5,4],"span":[1300,2,10]},{"path":[4,72,2,5,5],"span":[1300,11,17]},{"path":[4,72,2,5,1],"span":[1300,18,30]},{"path":[4,72,2,5,3],"span":[1300,33,34]},{"path":[4,73],"span":[1307,0,1313,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,73,1],"span":[1307,8,21]},{"path":[4,73,2,0],"span":[1308,2,42]},{"path":[4,73,2,0,4],"span":[1308,2,10]},{"path":[4,73,2,0,6],"span":[1308,11,22]},{"path":[4,73,2,0,1],"span":[1308,23,37]},{"path":[4,73,2,0,3],"span":[1308,40,41]},{"path":[4,73,2,1],"span":[1309,2,52]},{"path":[4,73,2,1,4],"span":[1309,2,10]},{"path":[4,73,2,1,5],"span":[1309,11,17]},{"path":[4,73,2,1,1],"span":[1309,18,47]},{"path":[4,73,2,1,3],"span":[1309,50,51]},{"path":[4,73,2,2],"span":[1310,2,52]},{"path":[4,73,2,2,4],"span":[1310,2,10]},{"path":[4,73,2,2,5],"span":[1310,11,17]},{"path":[4,73,2,2,1],"span":[1310,18,47]},{"path":[4,73,2,2,3],"span":[1310,50,51]},{"path":[4,73,2,3],"span":[1311,2,37]},{"path":[4,73,2,3,4],"span":[1311,2,10]},{"path":[4,73,2,3,6],"span":[1311,11,22]},{"path":[4,73,2,3,1],"span":[1311,23,32]},{"path":[4,73,2,3,3],"span":[1311,35,36]},{"path":[4,73,2,4],"span":[1312,2,26]},{"path":[4,73,2,4,4],"span":[1312,2,10]},{"path":[4,73,2,4,5],"span":[1312,11,17]},{"path":[4,73,2,4,1],"span":[1312,18,21]},{"path":[4,73,2,4,3],"span":[1312,24,25]},{"path":[4,74],"span":[1319,0,1326,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,74,1],"span":[1319,8,22]},{"path":[4,74,2,0],"span":[1320,2,40]},{"path":[4,74,2,0,4],"span":[1320,2,10]},{"path":[4,74,2,0,6],"span":[1320,11,22]},{"path":[4,74,2,0,1],"span":[1320,23,35]},{"path":[4,74,2,0,3],"span":[1320,38,39]},{"path":[4,74,2,1],"span":[1321,2,30]},{"path":[4,74,2,1,4],"span":[1321,2,10]},{"path":[4,74,2,1,5],"span":[1321,11,17]},{"path":[4,74,2,1,1],"span":[1321,18,25]},{"path":[4,74,2,1,3],"span":[1321,28,29]},{"path":[4,74,2,2],"span":[1322,2,32]},{"path":[4,74,2,2,4],"span":[1322,2,10]},{"path":[4,74,2,2,5],"span":[1322,11,17]},{"path":[4,74,2,2,1],"span":[1322,18,27]},{"path":[4,74,2,2,3],"span":[1322,30,31]},{"path":[4,74,2,3],"span":[1323,2,34]},{"path":[4,74,2,3,4],"span":[1323,2,10]},{"path":[4,74,2,3,5],"span":[1323,11,17]},{"path":[4,74,2,3,1],"span":[1323,18,29]},{"path":[4,74,2,3,3],"span":[1323,32,33]},{"path":[4,74,2,4],"span":[1324,2,35]},{"path":[4,74,2,4,4],"span":[1324,2,10]},{"path":[4,74,2,4,5],"span":[1324,11,17]},{"path":[4,74,2,4,1],"span":[1324,18,30]},{"path":[4,74,2,4,3],"span":[1324,33,34]},{"path":[4,74,2,5],"span":[1325,2,46]},{"path":[4,74,2,5,4],"span":[1325,2,10]},{"path":[4,74,2,5,6],"span":[1325,11,22]},{"path":[4,74,2,5,1],"span":[1325,23,41]},{"path":[4,74,2,5,3],"span":[1325,44,45]},{"path":[4,75],"span":[1332,0,1338,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,75,1],"span":[1332,8,29]},{"path":[4,75,2,0],"span":[1333,2,41]},{"path":[4,75,2,0,4],"span":[1333,2,10]},{"path":[4,75,2,0,5],"span":[1333,11,17]},{"path":[4,75,2,0,1],"span":[1333,18,36]},{"path":[4,75,2,0,3],"span":[1333,39,40]},{"path":[4,75,2,1],"span":[1334,2,27]},{"path":[4,75,2,1,4],"span":[1334,2,10]},{"path":[4,75,2,1,5],"span":[1334,11,17]},{"path":[4,75,2,1,1],"span":[1334,18,22]},{"path":[4,75,2,1,3],"span":[1334,25,26]},{"path":[4,75,2,2],"span":[1335,2,27]},{"path":[4,75,2,2,4],"span":[1335,2,10]},{"path":[4,75,2,2,5],"span":[1335,11,17]},{"path":[4,75,2,2,1],"span":[1335,18,22]},{"path":[4,75,2,2,3],"span":[1335,25,26]},{"path":[4,75,2,3],"span":[1336,2,29]},{"path":[4,75,2,3,4],"span":[1336,2,10]},{"path":[4,75,2,3,5],"span":[1336,11,17]},{"path":[4,75,2,3,1],"span":[1336,18,24]},{"path":[4,75,2,3,3],"span":[1336,27,28]},{"path":[4,75,2,4],"span":[1337,2,30]},{"path":[4,75,2,4,4],"span":[1337,2,10]},{"path":[4,75,2,4,5],"span":[1337,11,17]},{"path":[4,75,2,4,1],"span":[1337,18,25]},{"path":[4,75,2,4,3],"span":[1337,28,29]},{"path":[4,76],"span":[1344,0,1362,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,76,1],"span":[1344,8,29]},{"path":[4,76,2,0],"span":[1345,2,47]},{"path":[4,76,2,0,4],"span":[1345,2,10]},{"path":[4,76,2,0,5],"span":[1345,11,15]},{"path":[4,76,2,0,1],"span":[1345,16,42]},{"path":[4,76,2,0,3],"span":[1345,45,46]},{"path":[4,76,2,1],"span":[1346,2,45]},{"path":[4,76,2,1,4],"span":[1346,2,10]},{"path":[4,76,2,1,5],"span":[1346,11,15]},{"path":[4,76,2,1,1],"span":[1346,16,40]},{"path":[4,76,2,1,3],"span":[1346,43,44]},{"path":[4,76,2,2],"span":[1347,2,43]},{"path":[4,76,2,2,4],"span":[1347,2,10]},{"path":[4,76,2,2,5],"span":[1347,11,15]},{"path":[4,76,2,2,1],"span":[1347,16,38]},{"path":[4,76,2,2,3],"span":[1347,41,42]},{"path":[4,76,2,3],"span":[1348,2,35]},{"path":[4,76,2,3,4],"span":[1348,2,10]},{"path":[4,76,2,3,5],"span":[1348,11,17]},{"path":[4,76,2,3,1],"span":[1348,18,30]},{"path":[4,76,2,3,3],"span":[1348,33,34]},{"path":[4,76,2,4],"span":[1349,2,43]},{"path":[4,76,2,4,4],"span":[1349,2,10]},{"path":[4,76,2,4,5],"span":[1349,11,17]},{"path":[4,76,2,4,1],"span":[1349,18,38]},{"path":[4,76,2,4,3],"span":[1349,41,42]},{"path":[4,76,2,5],"span":[1350,2,48]},{"path":[4,76,2,5,4],"span":[1350,2,10]},{"path":[4,76,2,5,5],"span":[1350,11,17]},{"path":[4,76,2,5,1],"span":[1350,18,43]},{"path":[4,76,2,5,3],"span":[1350,46,47]},{"path":[4,76,2,6],"span":[1357,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,76,2,6,4],"span":[1357,2,10]},{"path":[4,76,2,6,5],"span":[1357,11,17]},{"path":[4,76,2,6,1],"span":[1357,18,33]},{"path":[4,76,2,6,3],"span":[1357,36,37]},{"path":[4,76,2,7],"span":[1359,2,50]},{"path":[4,76,2,7,4],"span":[1359,2,10]},{"path":[4,76,2,7,5],"span":[1359,11,17]},{"path":[4,76,2,7,1],"span":[1359,18,45]},{"path":[4,76,2,7,3],"span":[1359,48,49]},{"path":[4,76,2,8],"span":[1360,2,42]},{"path":[4,76,2,8,4],"span":[1360,2,10]},{"path":[4,76,2,8,5],"span":[1360,11,17]},{"path":[4,76,2,8,1],"span":[1360,18,37]},{"path":[4,76,2,8,3],"span":[1360,40,41]},{"path":[4,76,2,9],"span":[1361,2,54]},{"path":[4,76,2,9,4],"span":[1361,2,10]},{"path":[4,76,2,9,5],"span":[1361,11,17]},{"path":[4,76,2,9,1],"span":[1361,18,48]},{"path":[4,76,2,9,3],"span":[1361,51,53]},{"path":[4,77],"span":[1368,0,1373,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,77,1],"span":[1368,8,38]},{"path":[4,77,2,0],"span":[1369,2,30]},{"path":[4,77,2,0,4],"span":[1369,2,10]},{"path":[4,77,2,0,5],"span":[1369,11,17]},{"path":[4,77,2,0,1],"span":[1369,18,25]},{"path":[4,77,2,0,3],"span":[1369,28,29]},{"path":[4,77,2,1],"span":[1370,2,32]},{"path":[4,77,2,1,4],"span":[1370,2,10]},{"path":[4,77,2,1,5],"span":[1370,11,17]},{"path":[4,77,2,1,1],"span":[1370,18,27]},{"path":[4,77,2,1,3],"span":[1370,30,31]},{"path":[4,77,2,2],"span":[1371,2,35]},{"path":[4,77,2,2,4],"span":[1371,2,10]},{"path":[4,77,2,2,5],"span":[1371,11,17]},{"path":[4,77,2,2,1],"span":[1371,18,30]},{"path":[4,77,2,2,3],"span":[1371,33,34]},{"path":[4,77,2,3],"span":[1372,2,46]},{"path":[4,77,2,3,4],"span":[1372,2,10]},{"path":[4,77,2,3,6],"span":[1372,11,22]},{"path":[4,77,2,3,1],"span":[1372,23,41]},{"path":[4,77,2,3,3],"span":[1372,44,45]},{"path":[4,78],"span":[1378,0,1382,1],"leadingComments":"\n Windows only atm.\n"},{"path":[4,78,1],"span":[1378,8,38]},{"path":[4,78,2,0],"span":[1379,2,24]},{"path":[4,78,2,0,5],"span":[1379,2,8]},{"path":[4,78,2,0,1],"span":[1379,9,19]},{"path":[4,78,2,0,3],"span":[1379,22,23]},{"path":[4,78,2,1],"span":[1380,2,26]},{"path":[4,78,2,1,5],"span":[1380,2,8]},{"path":[4,78,2,1,1],"span":[1380,9,21]},{"path":[4,78,2,1,3],"span":[1380,24,25]},{"path":[4,78,2,2],"span":[1381,2,26]},{"path":[4,78,2,2,5],"span":[1381,2,8]},{"path":[4,78,2,2,1],"span":[1381,9,21]},{"path":[4,78,2,2,3],"span":[1381,24,25]},{"path":[4,79],"span":[1387,0,1403,1],"leadingComments":"\n Modem on computers: windows and mac.\n"},{"path":[4,79,1],"span":[1387,8,30]},{"path":[4,79,2,0],"span":[1388,2,34]},{"path":[4,79,2,0,4],"span":[1388,2,10]},{"path":[4,79,2,0,5],"span":[1388,11,17]},{"path":[4,79,2,0,1],"span":[1388,18,29]},{"path":[4,79,2,0,3],"span":[1388,32,33]},{"path":[4,79,2,1],"span":[1389,2,30],"trailingComments":" mac: name\n"},{"path":[4,79,2,1,4],"span":[1389,2,10]},{"path":[4,79,2,1,5],"span":[1389,11,17]},{"path":[4,79,2,1,1],"span":[1389,18,25]},{"path":[4,79,2,1,3],"span":[1389,28,29]},{"path":[4,79,2,2],"span":[1390,2,35],"trailingComments":" windows: country_selected, mac: country_info \n"},{"path":[4,79,2,2,4],"span":[1390,2,10]},{"path":[4,79,2,2,5],"span":[1390,11,17]},{"path":[4,79,2,2,1],"span":[1390,18,30]},{"path":[4,79,2,2,3],"span":[1390,33,34]},{"path":[4,79,2,3],"span":[1391,2,32]},{"path":[4,79,2,3,4],"span":[1391,2,10]},{"path":[4,79,2,3,5],"span":[1391,11,17]},{"path":[4,79,2,3,1],"span":[1391,18,27]},{"path":[4,79,2,3,3],"span":[1391,30,31]},{"path":[4,79,2,4],"span":[1392,2,34],"trailingComments":" mac: interface_type\n"},{"path":[4,79,2,4,4],"span":[1392,2,10]},{"path":[4,79,2,4,5],"span":[1392,11,17]},{"path":[4,79,2,4,1],"span":[1392,18,29]},{"path":[4,79,2,4,3],"span":[1392,32,33]},{"path":[4,79,2,5],"span":[1393,2,44]},{"path":[4,79,2,5,4],"span":[1393,2,10]},{"path":[4,79,2,5,5],"span":[1393,11,16]},{"path":[4,79,2,5,1],"span":[1393,17,39]},{"path":[4,79,2,5,3],"span":[1393,42,43]},{"path":[4,79,2,6],"span":[1394,2,50]},{"path":[4,79,2,6,4],"span":[1394,2,10]},{"path":[4,79,2,6,5],"span":[1394,11,16]},{"path":[4,79,2,6,1],"span":[1394,17,45]},{"path":[4,79,2,6,3],"span":[1394,48,49]},{"path":[4,79,2,7],"span":[1395,2,37]},{"path":[4,79,2,7,4],"span":[1395,2,10]},{"path":[4,79,2,7,5],"span":[1395,11,17]},{"path":[4,79,2,7,1],"span":[1395,18,32]},{"path":[4,79,2,7,3],"span":[1395,35,36]},{"path":[4,79,2,8],"span":[1396,2,40]},{"path":[4,79,2,8,4],"span":[1396,2,10]},{"path":[4,79,2,8,5],"span":[1396,11,17]},{"path":[4,79,2,8,1],"span":[1396,18,35]},{"path":[4,79,2,8,3],"span":[1396,38,39]},{"path":[4,79,2,9],"span":[1397,2,37]},{"path":[4,79,2,9,4],"span":[1397,2,10]},{"path":[4,79,2,9,5],"span":[1397,11,17]},{"path":[4,79,2,9,1],"span":[1397,18,31]},{"path":[4,79,2,9,3],"span":[1397,34,36]},{"path":[4,79,2,10],"span":[1399,2,34],"trailingComments":" mac only\n"},{"path":[4,79,2,10,4],"span":[1399,2,10]},{"path":[4,79,2,10,5],"span":[1399,11,17]},{"path":[4,79,2,10,1],"span":[1399,18,28]},{"path":[4,79,2,10,3],"span":[1399,31,33]},{"path":[4,79,2,11],"span":[1400,2,38],"trailingComments":" mac only\n"},{"path":[4,79,2,11,4],"span":[1400,2,10]},{"path":[4,79,2,11,5],"span":[1400,11,17]},{"path":[4,79,2,11,1],"span":[1400,18,32]},{"path":[4,79,2,11,3],"span":[1400,35,37]},{"path":[4,79,2,12],"span":[1401,2,29],"trailingComments":" mac only\n"},{"path":[4,79,2,12,4],"span":[1401,2,10]},{"path":[4,79,2,12,5],"span":[1401,11,17]},{"path":[4,79,2,12,1],"span":[1401,18,23]},{"path":[4,79,2,12,3],"span":[1401,26,28]},{"path":[4,79,2,13],"span":[1402,2,34],"trailingComments":" mac only\n"},{"path":[4,79,2,13,4],"span":[1402,2,10]},{"path":[4,79,2,13,5],"span":[1402,11,17]},{"path":[4,79,2,13,1],"span":[1402,18,28]},{"path":[4,79,2,13,3],"span":[1402,31,33]},{"path":[4,80],"span":[1408,0,1426,1],"leadingComments":"\n Windows computer: a Printer connected to the computer.\n"},{"path":[4,80,1],"span":[1408,8,32]},{"path":[4,80,2,0],"span":[1409,2,46]},{"path":[4,80,2,0,4],"span":[1409,2,10]},{"path":[4,80,2,0,5],"span":[1409,11,17]},{"path":[4,80,2,0,1],"span":[1409,18,41]},{"path":[4,80,2,0,3],"span":[1409,44,45]},{"path":[4,80,2,1],"span":[1410,2,30]},{"path":[4,80,2,1,4],"span":[1410,2,10]},{"path":[4,80,2,1,5],"span":[1410,11,17]},{"path":[4,80,2,1,1],"span":[1410,18,25]},{"path":[4,80,2,1,3],"span":[1410,28,29]},{"path":[4,80,2,2],"span":[1411,2,32]},{"path":[4,80,2,2,4],"span":[1411,2,10]},{"path":[4,80,2,2,5],"span":[1411,11,17]},{"path":[4,80,2,2,1],"span":[1411,18,27]},{"path":[4,80,2,2,3],"span":[1411,30,31]},{"path":[4,80,2,3],"span":[1412,2,31]},{"path":[4,80,2,3,4],"span":[1412,2,10]},{"path":[4,80,2,3,5],"span":[1412,11,17]},{"path":[4,80,2,3,1],"span":[1412,18,26]},{"path":[4,80,2,3,3],"span":[1412,29,30]},{"path":[4,80,2,4],"span":[1413,2,32]},{"path":[4,80,2,4,4],"span":[1413,2,10]},{"path":[4,80,2,4,5],"span":[1413,11,17]},{"path":[4,80,2,4,1],"span":[1413,18,27]},{"path":[4,80,2,4,3],"span":[1413,30,31]},{"path":[4,80,2,5],"span":[1414,2,42]},{"path":[4,80,2,5,4],"span":[1414,2,10]},{"path":[4,80,2,5,5],"span":[1414,11,17]},{"path":[4,80,2,5,1],"span":[1414,18,37]},{"path":[4,80,2,5,3],"span":[1414,40,41]},{"path":[4,80,2,6],"span":[1415,2,38]},{"path":[4,80,2,6,4],"span":[1415,2,10]},{"path":[4,80,2,6,5],"span":[1415,11,17]},{"path":[4,80,2,6,1],"span":[1415,18,33]},{"path":[4,80,2,6,3],"span":[1415,36,37]},{"path":[4,80,2,7],"span":[1416,2,34]},{"path":[4,80,2,7,4],"span":[1416,2,10]},{"path":[4,80,2,7,5],"span":[1416,11,17]},{"path":[4,80,2,7,1],"span":[1416,18,28]},{"path":[4,80,2,7,3],"span":[1416,31,33]},{"path":[4,80,2,8],"span":[1417,2,30]},{"path":[4,80,2,8,4],"span":[1417,2,10]},{"path":[4,80,2,8,5],"span":[1417,11,17]},{"path":[4,80,2,8,1],"span":[1417,18,24]},{"path":[4,80,2,8,3],"span":[1417,27,29]},{"path":[4,80,2,9],"span":[1418,2,31]},{"path":[4,80,2,9,4],"span":[1418,2,10]},{"path":[4,80,2,9,5],"span":[1418,11,17]},{"path":[4,80,2,9,1],"span":[1418,18,25]},{"path":[4,80,2,9,3],"span":[1418,28,30]},{"path":[4,80,2,10],"span":[1420,2,43]},{"path":[4,80,2,10,4],"span":[1420,2,10]},{"path":[4,80,2,10,5],"span":[1420,11,16]},{"path":[4,80,2,10,1],"span":[1420,17,38]},{"path":[4,80,2,10,3],"span":[1420,41,42]},{"path":[4,80,2,11],"span":[1421,2,42]},{"path":[4,80,2,11,4],"span":[1421,2,10]},{"path":[4,80,2,11,5],"span":[1421,11,16]},{"path":[4,80,2,11,1],"span":[1421,17,36]},{"path":[4,80,2,11,3],"span":[1421,39,41]},{"path":[4,80,2,12],"span":[1423,2,33]},{"path":[4,80,2,12,4],"span":[1423,2,10]},{"path":[4,80,2,12,5],"span":[1423,11,15]},{"path":[4,80,2,12,1],"span":[1423,16,27]},{"path":[4,80,2,12,3],"span":[1423,30,32]},{"path":[4,80,2,13],"span":[1424,2,27]},{"path":[4,80,2,13,4],"span":[1424,2,10]},{"path":[4,80,2,13,5],"span":[1424,11,15]},{"path":[4,80,2,13,1],"span":[1424,16,21]},{"path":[4,80,2,13,3],"span":[1424,24,26]},{"path":[4,80,2,14],"span":[1425,2,29]},{"path":[4,80,2,14,4],"span":[1425,2,10]},{"path":[4,80,2,14,5],"span":[1425,11,15]},{"path":[4,80,2,14,1],"span":[1425,16,23]},{"path":[4,80,2,14,3],"span":[1425,26,28]},{"path":[4,81],"span":[1431,0,1447,1],"leadingComments":"\n Windows computer: a Tape connected to the computer.\n"},{"path":[4,81,1],"span":[1431,8,34]},{"path":[4,81,2,0],"span":[1432,2,40]},{"path":[4,81,2,0,4],"span":[1432,2,10]},{"path":[4,81,2,0,6],"span":[1432,11,22]},{"path":[4,81,2,0,1],"span":[1432,23,35]},{"path":[4,81,2,0,3],"span":[1432,38,39]},{"path":[4,81,2,1],"span":[1433,2,40]},{"path":[4,81,2,1,4],"span":[1433,2,10]},{"path":[4,81,2,1,6],"span":[1433,11,22]},{"path":[4,81,2,1,1],"span":[1433,23,35]},{"path":[4,81,2,1,3],"span":[1433,38,39]},{"path":[4,81,2,2],"span":[1434,2,30]},{"path":[4,81,2,2,4],"span":[1434,2,10]},{"path":[4,81,2,2,5],"span":[1434,11,17]},{"path":[4,81,2,2,1],"span":[1434,18,25]},{"path":[4,81,2,2,3],"span":[1434,28,29]},{"path":[4,81,2,3],"span":[1435,2,32]},{"path":[4,81,2,3,4],"span":[1435,2,10]},{"path":[4,81,2,3,5],"span":[1435,11,15]},{"path":[4,81,2,3,1],"span":[1435,16,27]},{"path":[4,81,2,3,3],"span":[1435,30,31]},{"path":[4,81,2,4],"span":[1436,2,40]},{"path":[4,81,2,4,4],"span":[1436,2,10]},{"path":[4,81,2,4,5],"span":[1436,11,16]},{"path":[4,81,2,4,1],"span":[1436,17,35]},{"path":[4,81,2,4,3],"span":[1436,38,39]},{"path":[4,81,2,5],"span":[1437,2,32]},{"path":[4,81,2,5,4],"span":[1437,2,10]},{"path":[4,81,2,5,5],"span":[1437,11,17]},{"path":[4,81,2,5,1],"span":[1437,18,27]},{"path":[4,81,2,5,3],"span":[1437,30,31]},{"path":[4,81,2,6],"span":[1438,2,35]},{"path":[4,81,2,6,4],"span":[1438,2,10]},{"path":[4,81,2,6,5],"span":[1438,11,17]},{"path":[4,81,2,6,1],"span":[1438,18,30]},{"path":[4,81,2,6,3],"span":[1438,33,34]},{"path":[4,81,2,7],"span":[1439,2,36]},{"path":[4,81,2,7,4],"span":[1439,2,10]},{"path":[4,81,2,7,5],"span":[1439,11,16]},{"path":[4,81,2,7,1],"span":[1439,17,31]},{"path":[4,81,2,7,3],"span":[1439,34,35]},{"path":[4,81,2,8],"span":[1440,2,36]},{"path":[4,81,2,8,4],"span":[1440,2,10]},{"path":[4,81,2,8,5],"span":[1440,11,16]},{"path":[4,81,2,8,1],"span":[1440,17,31]},{"path":[4,81,2,8,3],"span":[1440,34,35]},{"path":[4,81,2,9],"span":[1441,2,42]},{"path":[4,81,2,9,4],"span":[1441,2,10]},{"path":[4,81,2,9,5],"span":[1441,11,16]},{"path":[4,81,2,9,1],"span":[1441,17,36]},{"path":[4,81,2,9,3],"span":[1441,39,41]},{"path":[4,81,2,10],"span":[1442,2,34]},{"path":[4,81,2,10,4],"span":[1442,2,10]},{"path":[4,81,2,10,5],"span":[1442,11,17]},{"path":[4,81,2,10,1],"span":[1442,18,28]},{"path":[4,81,2,10,3],"span":[1442,31,33]},{"path":[4,81,2,11],"span":[1443,2,37]},{"path":[4,81,2,11,4],"span":[1443,2,10]},{"path":[4,81,2,11,5],"span":[1443,11,16]},{"path":[4,81,2,11,1],"span":[1443,17,31]},{"path":[4,81,2,11,3],"span":[1443,34,36]},{"path":[4,81,2,12],"span":[1444,2,36]},{"path":[4,81,2,12,4],"span":[1444,2,10]},{"path":[4,81,2,12,5],"span":[1444,11,15]},{"path":[4,81,2,12,1],"span":[1444,16,30]},{"path":[4,81,2,12,3],"span":[1444,33,35]},{"path":[4,81,2,13],"span":[1445,2,48]},{"path":[4,81,2,13,4],"span":[1445,2,10]},{"path":[4,81,2,13,5],"span":[1445,11,16]},{"path":[4,81,2,13,1],"span":[1445,17,42]},{"path":[4,81,2,13,3],"span":[1445,45,47]},{"path":[4,81,2,14],"span":[1446,2,30]},{"path":[4,81,2,14,4],"span":[1446,2,10]},{"path":[4,81,2,14,5],"span":[1446,11,16]},{"path":[4,81,2,14,1],"span":[1446,17,24]},{"path":[4,81,2,14,3],"span":[1446,27,29]},{"path":[4,82],"span":[1452,0,1471,1],"leadingComments":"\n Computer, Windows only.\n"},{"path":[4,82,1],"span":[1452,8,30]},{"path":[4,82,2,0],"span":[1453,2,34]},{"path":[4,82,2,0,4],"span":[1453,2,10]},{"path":[4,82,2,0,5],"span":[1453,11,16]},{"path":[4,82,2,0,1],"span":[1453,17,29]},{"path":[4,82,2,0,3],"span":[1453,32,33]},{"path":[4,82,2,1],"span":[1454,2,32]},{"path":[4,82,2,1,4],"span":[1454,2,10]},{"path":[4,82,2,1,5],"span":[1454,11,15]},{"path":[4,82,2,1,1],"span":[1454,16,27]},{"path":[4,82,2,1,3],"span":[1454,30,31]},{"path":[4,82,2,2],"span":[1455,2,39]},{"path":[4,82,2,2,4],"span":[1455,2,10]},{"path":[4,82,2,2,5],"span":[1455,11,16]},{"path":[4,82,2,2,1],"span":[1455,17,34]},{"path":[4,82,2,2,3],"span":[1455,37,38]},{"path":[4,82,2,3],"span":[1456,2,38]},{"path":[4,82,2,3,4],"span":[1456,2,10]},{"path":[4,82,2,3,5],"span":[1456,11,15]},{"path":[4,82,2,3,1],"span":[1456,16,33]},{"path":[4,82,2,3,3],"span":[1456,36,37]},{"path":[4,82,2,4],"span":[1457,2,38]},{"path":[4,82,2,4,4],"span":[1457,2,10]},{"path":[4,82,2,4,5],"span":[1457,11,16]},{"path":[4,82,2,4,1],"span":[1457,17,33]},{"path":[4,82,2,4,3],"span":[1457,36,37]},{"path":[4,82,2,5],"span":[1458,2,34]},{"path":[4,82,2,5,4],"span":[1458,2,10]},{"path":[4,82,2,5,5],"span":[1458,11,16]},{"path":[4,82,2,5,1],"span":[1458,17,29]},{"path":[4,82,2,5,3],"span":[1458,32,33]},{"path":[4,82,2,6],"span":[1459,2,42]},{"path":[4,82,2,6,4],"span":[1459,2,10]},{"path":[4,82,2,6,5],"span":[1459,11,17]},{"path":[4,82,2,6,1],"span":[1459,18,37]},{"path":[4,82,2,6,3],"span":[1459,40,41]},{"path":[4,82,2,7],"span":[1460,2,37]},{"path":[4,82,2,7,4],"span":[1460,2,10]},{"path":[4,82,2,7,5],"span":[1460,11,16]},{"path":[4,82,2,7,1],"span":[1460,17,32]},{"path":[4,82,2,7,3],"span":[1460,35,36]},{"path":[4,82,2,8],"span":[1461,2,36]},{"path":[4,82,2,8,4],"span":[1461,2,10]},{"path":[4,82,2,8,5],"span":[1461,11,15]},{"path":[4,82,2,8,1],"span":[1461,16,31]},{"path":[4,82,2,8,3],"span":[1461,34,35]},{"path":[4,82,2,9],"span":[1462,2,28]},{"path":[4,82,2,9,4],"span":[1462,2,10]},{"path":[4,82,2,9,5],"span":[1462,11,17]},{"path":[4,82,2,9,1],"span":[1462,18,22]},{"path":[4,82,2,9,3],"span":[1462,25,27]},{"path":[4,82,2,10],"span":[1463,2,31]},{"path":[4,82,2,10,4],"span":[1463,2,10]},{"path":[4,82,2,10,5],"span":[1463,11,17]},{"path":[4,82,2,10,1],"span":[1463,18,25]},{"path":[4,82,2,10,3],"span":[1463,28,30]},{"path":[4,82,2,11],"span":[1464,2,40]},{"path":[4,82,2,11,4],"span":[1464,2,10]},{"path":[4,82,2,11,5],"span":[1464,11,15]},{"path":[4,82,2,11,1],"span":[1464,16,34]},{"path":[4,82,2,11,3],"span":[1464,37,39]},{"path":[4,82,2,12],"span":[1465,2,46]},{"path":[4,82,2,12,4],"span":[1465,2,10]},{"path":[4,82,2,12,5],"span":[1465,11,17]},{"path":[4,82,2,12,1],"span":[1465,18,40]},{"path":[4,82,2,12,3],"span":[1465,43,45]},{"path":[4,82,2,13],"span":[1466,2,40]},{"path":[4,82,2,13,4],"span":[1466,2,10]},{"path":[4,82,2,13,5],"span":[1466,11,15]},{"path":[4,82,2,13,1],"span":[1466,16,34]},{"path":[4,82,2,13,3],"span":[1466,37,39]},{"path":[4,82,2,14],"span":[1467,2,41]},{"path":[4,82,2,14,4],"span":[1467,2,10]},{"path":[4,82,2,14,5],"span":[1467,11,16]},{"path":[4,82,2,14,1],"span":[1467,17,35]},{"path":[4,82,2,14,3],"span":[1467,38,40]},{"path":[4,82,2,15],"span":[1468,2,33]},{"path":[4,82,2,15,4],"span":[1468,2,10]},{"path":[4,82,2,15,5],"span":[1468,11,17]},{"path":[4,82,2,15,1],"span":[1468,18,27]},{"path":[4,82,2,15,3],"span":[1468,30,32]},{"path":[4,82,2,16],"span":[1469,2,41]},{"path":[4,82,2,16,4],"span":[1469,2,10]},{"path":[4,82,2,16,5],"span":[1469,11,15]},{"path":[4,82,2,16,1],"span":[1469,16,35]},{"path":[4,82,2,16,3],"span":[1469,38,40]},{"path":[4,82,2,17],"span":[1470,2,37]},{"path":[4,82,2,17,4],"span":[1470,2,10]},{"path":[4,82,2,17,5],"span":[1470,11,15]},{"path":[4,82,2,17,1],"span":[1470,16,31]},{"path":[4,82,2,17,3],"span":[1470,34,36]},{"path":[4,83],"span":[1476,0,1487,1],"leadingComments":"\n Computer, Windows only: from WindowsDisplayConfig.\n"},{"path":[4,83,1],"span":[1476,8,30]},{"path":[4,83,2,0],"span":[1477,2,34]},{"path":[4,83,2,0,4],"span":[1477,2,10]},{"path":[4,83,2,0,5],"span":[1477,11,16]},{"path":[4,83,2,0,1],"span":[1477,17,29]},{"path":[4,83,2,0,3],"span":[1477,32,33]},{"path":[4,83,2,1],"span":[1478,2,30]},{"path":[4,83,2,1,4],"span":[1478,2,10]},{"path":[4,83,2,1,5],"span":[1478,11,17]},{"path":[4,83,2,1,1],"span":[1478,18,25]},{"path":[4,83,2,1,3],"span":[1478,28,29]},{"path":[4,83,2,2],"span":[1479,2,34]},{"path":[4,83,2,2,4],"span":[1479,2,10]},{"path":[4,83,2,2,5],"span":[1479,11,17]},{"path":[4,83,2,2,1],"span":[1479,18,29]},{"path":[4,83,2,2,3],"span":[1479,32,33]},{"path":[4,83,2,3],"span":[1480,2,35]},{"path":[4,83,2,3,4],"span":[1480,2,10]},{"path":[4,83,2,3,5],"span":[1480,11,16]},{"path":[4,83,2,3,1],"span":[1480,17,30]},{"path":[4,83,2,3,3],"span":[1480,33,34]},{"path":[4,83,2,4],"span":[1481,2,39]},{"path":[4,83,2,4,4],"span":[1481,2,10]},{"path":[4,83,2,4,5],"span":[1481,11,16]},{"path":[4,83,2,4,1],"span":[1481,17,34]},{"path":[4,83,2,4,3],"span":[1481,37,38]},{"path":[4,83,2,5],"span":[1482,2,37]},{"path":[4,83,2,5,4],"span":[1482,2,10]},{"path":[4,83,2,5,5],"span":[1482,11,17]},{"path":[4,83,2,5,1],"span":[1482,18,32]},{"path":[4,83,2,5,3],"span":[1482,35,36]},{"path":[4,83,2,6],"span":[1483,2,32]},{"path":[4,83,2,6,4],"span":[1483,2,10]},{"path":[4,83,2,6,5],"span":[1483,11,16]},{"path":[4,83,2,6,1],"span":[1483,17,27]},{"path":[4,83,2,6,3],"span":[1483,30,31]},{"path":[4,83,2,7],"span":[1484,2,33]},{"path":[4,83,2,7,4],"span":[1484,2,10]},{"path":[4,83,2,7,5],"span":[1484,11,16]},{"path":[4,83,2,7,1],"span":[1484,17,28]},{"path":[4,83,2,7,3],"span":[1484,31,32]},{"path":[4,83,2,8],"span":[1485,2,32]},{"path":[4,83,2,8,4],"span":[1485,2,10]},{"path":[4,83,2,8,5],"span":[1485,11,16]},{"path":[4,83,2,8,1],"span":[1485,17,27]},{"path":[4,83,2,8,3],"span":[1485,30,31]},{"path":[4,83,2,9],"span":[1486,2,44]},{"path":[4,83,2,9,4],"span":[1486,2,10]},{"path":[4,83,2,9,5],"span":[1486,11,16]},{"path":[4,83,2,9,1],"span":[1486,17,38]},{"path":[4,83,2,9,3],"span":[1486,41,43]},{"path":[4,84],"span":[1493,0,1504,1],"leadingComments":"\n Computer, Windows only: from WindowsDisplayControllerConfig.\n"},{"path":[4,84,1],"span":[1493,8,40]},{"path":[4,84,2,0],"span":[1494,2,36]},{"path":[4,84,2,0,4],"span":[1494,2,10]},{"path":[4,84,2,0,5],"span":[1494,11,16]},{"path":[4,84,2,0,1],"span":[1494,17,31]},{"path":[4,84,2,0,3],"span":[1494,34,35]},{"path":[4,84,2,1],"span":[1495,2,30]},{"path":[4,84,2,1,4],"span":[1495,2,10]},{"path":[4,84,2,1,5],"span":[1495,11,17]},{"path":[4,84,2,1,1],"span":[1495,18,25]},{"path":[4,84,2,1,3],"span":[1495,28,29]},{"path":[4,84,2,2],"span":[1496,2,34]},{"path":[4,84,2,2,4],"span":[1496,2,10]},{"path":[4,84,2,2,5],"span":[1496,11,16]},{"path":[4,84,2,2,1],"span":[1496,17,29]},{"path":[4,84,2,2,3],"span":[1496,32,33]},{"path":[4,84,2,3],"span":[1497,2,53]},{"path":[4,84,2,3,4],"span":[1497,2,10]},{"path":[4,84,2,3,5],"span":[1497,11,16]},{"path":[4,84,2,3,1],"span":[1497,17,48]},{"path":[4,84,2,3,3],"span":[1497,51,52]},{"path":[4,84,2,4],"span":[1498,2,42]},{"path":[4,84,2,4,4],"span":[1498,2,10]},{"path":[4,84,2,4,5],"span":[1498,11,16]},{"path":[4,84,2,4,1],"span":[1498,17,37]},{"path":[4,84,2,4,3],"span":[1498,40,41]},{"path":[4,84,2,5],"span":[1499,2,43]},{"path":[4,84,2,5,4],"span":[1499,2,10]},{"path":[4,84,2,5,5],"span":[1499,11,16]},{"path":[4,84,2,5,1],"span":[1499,17,38]},{"path":[4,84,2,5,3],"span":[1499,41,42]},{"path":[4,84,2,6],"span":[1500,2,27]},{"path":[4,84,2,6,4],"span":[1500,2,10]},{"path":[4,84,2,6,5],"span":[1500,11,17]},{"path":[4,84,2,6,1],"span":[1500,18,22]},{"path":[4,84,2,6,3],"span":[1500,25,26]},{"path":[4,84,2,7],"span":[1501,2,34]},{"path":[4,84,2,7,4],"span":[1501,2,10]},{"path":[4,84,2,7,5],"span":[1501,11,16]},{"path":[4,84,2,7,1],"span":[1501,17,29]},{"path":[4,84,2,7,3],"span":[1501,32,33]},{"path":[4,84,2,8],"span":[1502,2,41]},{"path":[4,84,2,8,4],"span":[1502,2,10]},{"path":[4,84,2,8,5],"span":[1502,11,16]},{"path":[4,84,2,8,1],"span":[1502,17,36]},{"path":[4,84,2,8,3],"span":[1502,39,40]},{"path":[4,84,2,9],"span":[1503,2,34]},{"path":[4,84,2,9,4],"span":[1503,2,10]},{"path":[4,84,2,9,5],"span":[1503,11,17]},{"path":[4,84,2,9,1],"span":[1503,18,28]},{"path":[4,84,2,9,3],"span":[1503,31,33]},{"path":[4,85],"span":[1509,0,1514,1],"leadingComments":"\n Computer Windows only: from WindowsNetworkClient.\n"},{"path":[4,85,1],"span":[1509,8,36]},{"path":[4,85,2,0],"span":[1510,2,30]},{"path":[4,85,2,0,4],"span":[1510,2,10]},{"path":[4,85,2,0,5],"span":[1510,11,17]},{"path":[4,85,2,0,1],"span":[1510,18,25]},{"path":[4,85,2,0,3],"span":[1510,28,29]},{"path":[4,85,2,1],"span":[1511,2,34]},{"path":[4,85,2,1,4],"span":[1511,2,10]},{"path":[4,85,2,1,5],"span":[1511,11,17]},{"path":[4,85,2,1,1],"span":[1511,18,29]},{"path":[4,85,2,1,3],"span":[1511,32,33]},{"path":[4,85,2,2],"span":[1512,2,35]},{"path":[4,85,2,2,4],"span":[1512,2,10]},{"path":[4,85,2,2,5],"span":[1512,11,17]},{"path":[4,85,2,2,1],"span":[1512,18,30]},{"path":[4,85,2,2,3],"span":[1512,33,34]},{"path":[4,85,2,3],"span":[1513,2,27]},{"path":[4,85,2,3,4],"span":[1513,2,10]},{"path":[4,85,2,3,5],"span":[1513,11,17]},{"path":[4,85,2,3,1],"span":[1513,18,22]},{"path":[4,85,2,3,3],"span":[1513,25,26]},{"path":[4,86],"span":[1521,0,1526,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,86,1],"span":[1521,8,36]},{"path":[4,86,2,0],"span":[1522,2,30]},{"path":[4,86,2,0,4],"span":[1522,2,10]},{"path":[4,86,2,0,5],"span":[1522,11,17]},{"path":[4,86,2,0,1],"span":[1522,18,25]},{"path":[4,86,2,0,3],"span":[1522,28,29]},{"path":[4,86,2,1],"span":[1523,2,32]},{"path":[4,86,2,1,4],"span":[1523,2,10]},{"path":[4,86,2,1,5],"span":[1523,11,17]},{"path":[4,86,2,1,1],"span":[1523,18,27]},{"path":[4,86,2,1,3],"span":[1523,30,31]},{"path":[4,86,2,2],"span":[1524,2,35]},{"path":[4,86,2,2,4],"span":[1524,2,10]},{"path":[4,86,2,2,5],"span":[1524,11,17]},{"path":[4,86,2,2,1],"span":[1524,18,30]},{"path":[4,86,2,2,3],"span":[1524,33,34]},{"path":[4,86,2,3],"span":[1525,2,46]},{"path":[4,86,2,3,4],"span":[1525,2,10]},{"path":[4,86,2,3,6],"span":[1525,11,22]},{"path":[4,86,2,3,1],"span":[1525,23,41]},{"path":[4,86,2,3,3],"span":[1525,44,45]},{"path":[4,87],"span":[1532,0,1544,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,87,1],"span":[1532,8,36]},{"path":[4,87,2,0],"span":[1533,2,32]},{"path":[4,87,2,0,4],"span":[1533,2,10]},{"path":[4,87,2,0,5],"span":[1533,11,16]},{"path":[4,87,2,0,1],"span":[1533,17,27]},{"path":[4,87,2,0,3],"span":[1533,30,31]},{"path":[4,87,2,1],"span":[1534,2,29]},{"path":[4,87,2,1,4],"span":[1534,2,10]},{"path":[4,87,2,1,5],"span":[1534,11,15]},{"path":[4,87,2,1,1],"span":[1534,16,24]},{"path":[4,87,2,1,3],"span":[1534,27,28]},{"path":[4,87,2,2],"span":[1535,2,35]},{"path":[4,87,2,2,4],"span":[1535,2,10]},{"path":[4,87,2,2,5],"span":[1535,11,15]},{"path":[4,87,2,2,1],"span":[1535,16,30]},{"path":[4,87,2,2,3],"span":[1535,33,34]},{"path":[4,87,2,3],"span":[1536,2,32]},{"path":[4,87,2,3,4],"span":[1536,2,10]},{"path":[4,87,2,3,5],"span":[1536,11,17]},{"path":[4,87,2,3,1],"span":[1536,18,27]},{"path":[4,87,2,3,3],"span":[1536,30,31]},{"path":[4,87,2,4],"span":[1537,2,32]},{"path":[4,87,2,4,4],"span":[1537,2,10]},{"path":[4,87,2,4,5],"span":[1537,11,16]},{"path":[4,87,2,4,1],"span":[1537,17,27]},{"path":[4,87,2,4,3],"span":[1537,30,31]},{"path":[4,87,2,5],"span":[1538,2,27]},{"path":[4,87,2,5,4],"span":[1538,2,10]},{"path":[4,87,2,5,5],"span":[1538,11,16]},{"path":[4,87,2,5,1],"span":[1538,17,22]},{"path":[4,87,2,5,3],"span":[1538,25,26]},{"path":[4,87,2,6],"span":[1539,2,38]},{"path":[4,87,2,6,4],"span":[1539,2,10]},{"path":[4,87,2,6,5],"span":[1539,11,16]},{"path":[4,87,2,6,1],"span":[1539,17,33]},{"path":[4,87,2,6,3],"span":[1539,36,37]},{"path":[4,87,2,7],"span":[1540,2,38]},{"path":[4,87,2,7,4],"span":[1540,2,10]},{"path":[4,87,2,7,5],"span":[1540,11,15]},{"path":[4,87,2,7,1],"span":[1540,16,33]},{"path":[4,87,2,7,3],"span":[1540,36,37]},{"path":[4,87,2,8],"span":[1541,2,26]},{"path":[4,87,2,8,4],"span":[1541,2,10]},{"path":[4,87,2,8,5],"span":[1541,11,16]},{"path":[4,87,2,8,1],"span":[1541,17,21]},{"path":[4,87,2,8,3],"span":[1541,24,25]},{"path":[4,87,2,9],"span":[1542,2,38]},{"path":[4,87,2,9,4],"span":[1542,2,10]},{"path":[4,87,2,9,5],"span":[1542,11,16]},{"path":[4,87,2,9,1],"span":[1542,17,32]},{"path":[4,87,2,9,3],"span":[1542,35,37]},{"path":[4,87,2,10],"span":[1543,2,28]},{"path":[4,87,2,10,4],"span":[1543,2,10]},{"path":[4,87,2,10,5],"span":[1543,11,17]},{"path":[4,87,2,10,1],"span":[1543,18,22]},{"path":[4,87,2,10,3],"span":[1543,25,27]},{"path":[4,88],"span":[1551,0,1563,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,88,1],"span":[1551,8,23]},{"path":[4,88,2,0],"span":[1552,2,41]},{"path":[4,88,2,0,4],"span":[1552,2,10]},{"path":[4,88,2,0,5],"span":[1552,11,16]},{"path":[4,88,2,0,1],"span":[1552,17,36]},{"path":[4,88,2,0,3],"span":[1552,39,40]},{"path":[4,88,2,1],"span":[1553,2,37]},{"path":[4,88,2,1,4],"span":[1553,2,10]},{"path":[4,88,2,1,6],"span":[1553,11,22]},{"path":[4,88,2,1,1],"span":[1553,23,32]},{"path":[4,88,2,1,3],"span":[1553,35,36]},{"path":[4,88,2,2],"span":[1554,2,37]},{"path":[4,88,2,2,4],"span":[1554,2,10]},{"path":[4,88,2,2,5],"span":[1554,11,16]},{"path":[4,88,2,2,1],"span":[1554,17,32]},{"path":[4,88,2,2,3],"span":[1554,35,36]},{"path":[4,88,2,3],"span":[1555,2,36]},{"path":[4,88,2,3,4],"span":[1555,2,10]},{"path":[4,88,2,3,5],"span":[1555,11,16]},{"path":[4,88,2,3,1],"span":[1555,17,31]},{"path":[4,88,2,3,3],"span":[1555,34,35]},{"path":[4,88,2,4],"span":[1556,2,32]},{"path":[4,88,2,4,4],"span":[1556,2,10]},{"path":[4,88,2,4,5],"span":[1556,11,17]},{"path":[4,88,2,4,1],"span":[1556,18,27]},{"path":[4,88,2,4,3],"span":[1556,30,31]},{"path":[4,88,2,5],"span":[1557,2,31]},{"path":[4,88,2,5,4],"span":[1557,2,10]},{"path":[4,88,2,5,5],"span":[1557,11,17]},{"path":[4,88,2,5,1],"span":[1557,18,26]},{"path":[4,88,2,5,3],"span":[1557,29,30]},{"path":[4,88,2,6],"span":[1558,2,39]},{"path":[4,88,2,6,4],"span":[1558,2,10]},{"path":[4,88,2,6,5],"span":[1558,11,17]},{"path":[4,88,2,6,1],"span":[1558,18,34]},{"path":[4,88,2,6,3],"span":[1558,37,38]},{"path":[4,88,2,7],"span":[1559,2,35]},{"path":[4,88,2,7,4],"span":[1559,2,10]},{"path":[4,88,2,7,5],"span":[1559,11,17]},{"path":[4,88,2,7,1],"span":[1559,18,30]},{"path":[4,88,2,7,3],"span":[1559,33,34]},{"path":[4,88,2,8],"span":[1560,2,39]},{"path":[4,88,2,8,4],"span":[1560,2,10]},{"path":[4,88,2,8,5],"span":[1560,11,16]},{"path":[4,88,2,8,1],"span":[1560,17,34]},{"path":[4,88,2,8,3],"span":[1560,37,38]},{"path":[4,88,2,9],"span":[1561,2,28]},{"path":[4,88,2,9,4],"span":[1561,2,10]},{"path":[4,88,2,9,5],"span":[1561,11,17]},{"path":[4,88,2,9,1],"span":[1561,18,22]},{"path":[4,88,2,9,3],"span":[1561,25,27]},{"path":[4,88,2,10],"span":[1562,2,45]},{"path":[4,88,2,10,4],"span":[1562,2,10]},{"path":[4,88,2,10,5],"span":[1562,11,17]},{"path":[4,88,2,10,1],"span":[1562,18,39]},{"path":[4,88,2,10,3],"span":[1562,42,44]},{"path":[4,89],"span":[1572,0,1575,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,89,1],"span":[1572,8,19]},{"path":[4,89,2,0],"span":[1573,2,18]},{"path":[4,89,2,0,5],"span":[1573,2,7]},{"path":[4,89,2,0,1],"span":[1573,8,13]},{"path":[4,89,2,0,3],"span":[1573,16,17]},{"path":[4,89,2,1],"span":[1574,2,27]},{"path":[4,89,2,1,4],"span":[1574,2,10]},{"path":[4,89,2,1,5],"span":[1574,11,17]},{"path":[4,89,2,1,1],"span":[1574,18,22]},{"path":[4,89,2,1,3],"span":[1574,25,26]},{"path":[4,90],"span":[1578,0,1581,1],"leadingComments":" Monitor Inventory with list of connected monitors "},{"path":[4,90,1],"span":[1578,8,24]},{"path":[4,90,2,0],"span":[1579,2,42]},{"path":[4,90,2,0,6],"span":[1579,2,27]},{"path":[4,90,2,0,1],"span":[1579,28,37]},{"path":[4,90,2,0,3],"span":[1579,40,41]},{"path":[4,90,2,1],"span":[1580,2,31]},{"path":[4,90,2,1,4],"span":[1580,2,10]},{"path":[4,90,2,1,6],"span":[1580,11,18]},{"path":[4,90,2,1,1],"span":[1580,19,26]},{"path":[4,90,2,1,3],"span":[1580,29,30]},{"path":[4,91],"span":[1585,0,1606,1],"leadingComments":" Monitor definition: normalized and with link to raw "},{"path":[4,91,1],"span":[1585,8,15]},{"path":[4,91,2,0],"span":[1587,2,24],"leadingComments":" catalog id of: CatalogMonitor\n"},{"path":[4,91,2,0,4],"span":[1587,2,10]},{"path":[4,91,2,0,5],"span":[1587,11,16]},{"path":[4,91,2,0,1],"span":[1587,17,19]},{"path":[4,91,2,0,3],"span":[1587,22,23]},{"path":[4,91,2,1],"span":[1590,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,91,2,1,4],"span":[1590,2,10]},{"path":[4,91,2,1,5],"span":[1590,11,16]},{"path":[4,91,2,1,1],"span":[1590,17,24]},{"path":[4,91,2,1,3],"span":[1590,27,28]},{"path":[4,91,2,2],"span":[1592,2,23]},{"path":[4,91,2,2,5],"span":[1592,2,8]},{"path":[4,91,2,2,1],"span":[1592,9,18]},{"path":[4,91,2,2,3],"span":[1592,21,22]},{"path":[4,91,2,3],"span":[1593,2,24]},{"path":[4,91,2,3,5],"span":[1593,2,8]},{"path":[4,91,2,3,1],"span":[1593,9,19]},{"path":[4,91,2,3,3],"span":[1593,22,23]},{"path":[4,91,2,4],"span":[1595,2,36]},{"path":[4,91,2,4,4],"span":[1595,2,10]},{"path":[4,91,2,4,5],"span":[1595,11,17]},{"path":[4,91,2,4,1],"span":[1595,18,31]},{"path":[4,91,2,4,3],"span":[1595,34,35]},{"path":[4,91,2,5],"span":[1596,2,50]},{"path":[4,91,2,5,6],"span":[1596,2,27]},{"path":[4,91,2,5,1],"span":[1596,28,45]},{"path":[4,91,2,5,3],"span":[1596,48,49]},{"path":[4,91,8,0],"span":[1598,2,1600,3]},{"path":[4,91,8,0,1],"span":[1598,8,12]},{"path":[4,91,2,6],"span":[1599,4,36]},{"path":[4,91,2,6,6],"span":[1599,4,22]},{"path":[4,91,2,6,1],"span":[1599,23,30]},{"path":[4,91,2,6,3],"span":[1599,33,35]},{"path":[4,91,2,7],"span":[1603,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,91,2,7,4],"span":[1603,2,10]},{"path":[4,91,2,7,6],"span":[1603,11,23]},{"path":[4,91,2,7,1],"span":[1603,24,37]},{"path":[4,91,2,7,3],"span":[1603,40,42]},{"path":[4,91,2,8],"span":[1605,2,47],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,91,2,8,4],"span":[1605,2,10]},{"path":[4,91,2,8,6],"span":[1605,11,25]},{"path":[4,91,2,8,1],"span":[1605,26,41]},{"path":[4,91,2,8,3],"span":[1605,44,46]},{"path":[4,92],"span":[1608,0,1617,1]},{"path":[4,92,1],"span":[1608,8,26]},{"path":[4,92,2,0],"span":[1609,2,19]},{"path":[4,92,2,0,5],"span":[1609,2,8]},{"path":[4,92,2,0,1],"span":[1609,9,14]},{"path":[4,92,2,0,3],"span":[1609,17,18]},{"path":[4,92,2,1],"span":[1610,2,36]},{"path":[4,92,2,1,4],"span":[1610,2,10]},{"path":[4,92,2,1,5],"span":[1610,11,17]},{"path":[4,92,2,1,1],"span":[1610,18,31]},{"path":[4,92,2,1,3],"span":[1610,34,35]},{"path":[4,92,2,2],"span":[1611,2,36]},{"path":[4,92,2,2,4],"span":[1611,2,10]},{"path":[4,92,2,2,5],"span":[1611,11,17]},{"path":[4,92,2,2,1],"span":[1611,18,31]},{"path":[4,92,2,2,3],"span":[1611,34,35]},{"path":[4,92,2,3],"span":[1612,2,33]},{"path":[4,92,2,3,4],"span":[1612,2,10]},{"path":[4,92,2,3,5],"span":[1612,11,17]},{"path":[4,92,2,3,1],"span":[1612,18,28]},{"path":[4,92,2,3,3],"span":[1612,31,32]},{"path":[4,92,2,4],"span":[1613,2,40]},{"path":[4,92,2,4,4],"span":[1613,2,10]},{"path":[4,92,2,4,5],"span":[1613,11,17]},{"path":[4,92,2,4,1],"span":[1613,18,35]},{"path":[4,92,2,4,3],"span":[1613,38,39]},{"path":[4,92,2,5],"span":[1614,2,39]},{"path":[4,92,2,5,4],"span":[1614,2,10]},{"path":[4,92,2,5,5],"span":[1614,11,17]},{"path":[4,92,2,5,1],"span":[1614,18,34]},{"path":[4,92,2,5,3],"span":[1614,37,38]},{"path":[4,92,2,6],"span":[1615,2,59]},{"path":[4,92,2,6,4],"span":[1615,2,10]},{"path":[4,92,2,6,6],"span":[1615,11,36]},{"path":[4,92,2,6,1],"span":[1615,37,54]},{"path":[4,92,2,6,3],"span":[1615,57,58]},{"path":[4,92,2,7],"span":[1616,2,32]},{"path":[4,92,2,7,4],"span":[1616,2,10]},{"path":[4,92,2,7,5],"span":[1616,11,17]},{"path":[4,92,2,7,1],"span":[1616,18,27]},{"path":[4,92,2,7,3],"span":[1616,30,31]},{"path":[4,93],"span":[1622,0,1628,1],"leadingComments":"\n Antivirus software (that could be even missing from scanned SW list.\n"},{"path":[4,93,1],"span":[1622,8,25]},{"path":[4,93,2,0],"span":[1623,2,27]},{"path":[4,93,2,0,4],"span":[1623,2,10]},{"path":[4,93,2,0,5],"span":[1623,11,17]},{"path":[4,93,2,0,1],"span":[1623,18,22]},{"path":[4,93,2,0,3],"span":[1623,25,26]},{"path":[4,93,2,1],"span":[1624,2,27]},{"path":[4,93,2,1,4],"span":[1624,2,10]},{"path":[4,93,2,1,5],"span":[1624,11,17]},{"path":[4,93,2,1,1],"span":[1624,18,22]},{"path":[4,93,2,1,3],"span":[1624,25,26]},{"path":[4,93,2,2],"span":[1625,2,28]},{"path":[4,93,2,2,4],"span":[1625,2,10]},{"path":[4,93,2,2,5],"span":[1625,11,15]},{"path":[4,93,2,2,1],"span":[1625,16,23]},{"path":[4,93,2,2,3],"span":[1625,26,27]},{"path":[4,93,2,3],"span":[1626,2,31]},{"path":[4,93,2,3,4],"span":[1626,2,10]},{"path":[4,93,2,3,5],"span":[1626,11,15]},{"path":[4,93,2,3,1],"span":[1626,16,26]},{"path":[4,93,2,3,3],"span":[1626,29,30]},{"path":[4,93,2,4],"span":[1627,2,33],"trailingComments":" filled only in case it was scanned sw (not windows registry)\n"},{"path":[4,93,2,4,4],"span":[1627,2,10]},{"path":[4,93,2,4,6],"span":[1627,11,19]},{"path":[4,93,2,4,1],"span":[1627,20,28]},{"path":[4,93,2,4,3],"span":[1627,31,32]},{"path":[4,94],"span":[1633,0,1643,1],"leadingComments":"\n Internet IP info, if external_ip is present and valid.\n"},{"path":[4,94,1],"span":[1633,8,14]},{"path":[4,94,2,0],"span":[1634,2,21]},{"path":[4,94,2,0,5],"span":[1634,2,8]},{"path":[4,94,2,0,1],"span":[1634,9,16]},{"path":[4,94,2,0,3],"span":[1634,19,20]},{"path":[4,94,2,1],"span":[1635,2,31]},{"path":[4,94,2,1,4],"span":[1635,2,10]},{"path":[4,94,2,1,5],"span":[1635,11,17]},{"path":[4,94,2,1,1],"span":[1635,18,26]},{"path":[4,94,2,1,3],"span":[1635,29,30]},{"path":[4,94,2,2],"span":[1636,2,31]},{"path":[4,94,2,2,4],"span":[1636,2,10]},{"path":[4,94,2,2,5],"span":[1636,11,17]},{"path":[4,94,2,2,1],"span":[1636,18,26]},{"path":[4,94,2,2,3],"span":[1636,29,30]},{"path":[4,94,2,3],"span":[1637,2,37]},{"path":[4,94,2,3,4],"span":[1637,2,10]},{"path":[4,94,2,3,5],"span":[1637,11,17]},{"path":[4,94,2,3,1],"span":[1637,18,32]},{"path":[4,94,2,3,3],"span":[1637,35,36]},{"path":[4,94,2,4],"span":[1638,2,35]},{"path":[4,94,2,4,4],"span":[1638,2,10]},{"path":[4,94,2,4,5],"span":[1638,11,17]},{"path":[4,94,2,4,1],"span":[1638,18,30]},{"path":[4,94,2,4,3],"span":[1638,33,34]},{"path":[4,94,2,5],"span":[1639,2,34]},{"path":[4,94,2,5,4],"span":[1639,2,10]},{"path":[4,94,2,5,5],"span":[1639,11,17]},{"path":[4,94,2,5,1],"span":[1639,18,29]},{"path":[4,94,2,5,3],"span":[1639,32,33]},{"path":[4,94,2,6],"span":[1640,2,35]},{"path":[4,94,2,6,4],"span":[1640,2,10]},{"path":[4,94,2,6,5],"span":[1640,11,17]},{"path":[4,94,2,6,1],"span":[1640,18,30]},{"path":[4,94,2,6,3],"span":[1640,33,34]},{"path":[4,94,2,7],"span":[1641,2,26]},{"path":[4,94,2,7,4],"span":[1641,2,10]},{"path":[4,94,2,7,5],"span":[1641,11,17]},{"path":[4,94,2,7,1],"span":[1641,18,21]},{"path":[4,94,2,7,3],"span":[1641,24,25]},{"path":[4,94,2,8],"span":[1642,2,35]},{"path":[4,94,2,8,4],"span":[1642,2,10]},{"path":[4,94,2,8,5],"span":[1642,11,17]},{"path":[4,94,2,8,1],"span":[1642,18,30]},{"path":[4,94,2,8,3],"span":[1642,33,34]},{"path":[4,95],"span":[1652,0,1655,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,95,1],"span":[1652,8,25]},{"path":[4,95,2,0],"span":[1653,2,42]},{"path":[4,95,2,0,6],"span":[1653,2,27]},{"path":[4,95,2,0,1],"span":[1653,28,37]},{"path":[4,95,2,0,3],"span":[1653,40,41]},{"path":[4,95,2,1],"span":[1654,2,33]},{"path":[4,95,2,1,4],"span":[1654,2,10]},{"path":[4,95,2,1,6],"span":[1654,11,19]},{"path":[4,95,2,1,1],"span":[1654,20,28]},{"path":[4,95,2,1,3],"span":[1654,31,32]},{"path":[4,96],"span":[1664,0,1702,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,96,1],"span":[1664,8,16]},{"path":[4,96,2,0],"span":[1666,2,26]},{"path":[4,96,2,0,4],"span":[1666,2,10]},{"path":[4,96,2,0,5],"span":[1666,11,16]},{"path":[4,96,2,0,1],"span":[1666,17,21]},{"path":[4,96,2,0,3],"span":[1666,24,25]},{"path":[4,96,2,1],"span":[1667,2,29]},{"path":[4,96,2,1,4],"span":[1667,2,10]},{"path":[4,96,2,1,5],"span":[1667,11,16]},{"path":[4,96,2,1,1],"span":[1667,17,24]},{"path":[4,96,2,1,3],"span":[1667,27,28]},{"path":[4,96,2,2],"span":[1668,2,28]},{"path":[4,96,2,2,4],"span":[1668,2,10]},{"path":[4,96,2,2,5],"span":[1668,11,16]},{"path":[4,96,2,2,1],"span":[1668,17,23]},{"path":[4,96,2,2,3],"span":[1668,26,27]},{"path":[4,96,2,3],"span":[1671,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,96,2,3,4],"span":[1671,2,10]},{"path":[4,96,2,3,5],"span":[1671,11,16]},{"path":[4,96,2,3,1],"span":[1671,17,24]},{"path":[4,96,2,3,3],"span":[1671,27,28]},{"path":[4,96,2,4],"span":[1674,2,27],"leadingComments":" catalog id of: CatalogSoftware\n"},{"path":[4,96,2,4,4],"span":[1674,2,10]},{"path":[4,96,2,4,5],"span":[1674,11,16]},{"path":[4,96,2,4,1],"span":[1674,17,22]},{"path":[4,96,2,4,3],"span":[1674,25,26]},{"path":[4,96,2,5],"span":[1677,2,31],"leadingComments":" catalog id of: CatalogSoftware\n"},{"path":[4,96,2,5,4],"span":[1677,2,10]},{"path":[4,96,2,5,5],"span":[1677,11,16]},{"path":[4,96,2,5,1],"span":[1677,17,26]},{"path":[4,96,2,5,3],"span":[1677,29,30]},{"path":[4,96,2,6],"span":[1679,2,32]},{"path":[4,96,2,6,4],"span":[1679,2,10]},{"path":[4,96,2,6,5],"span":[1679,11,17]},{"path":[4,96,2,6,1],"span":[1679,18,27]},{"path":[4,96,2,6,3],"span":[1679,30,31]},{"path":[4,96,2,7],"span":[1680,2,31]},{"path":[4,96,2,7,4],"span":[1680,2,10]},{"path":[4,96,2,7,5],"span":[1680,11,17]},{"path":[4,96,2,7,1],"span":[1680,18,26]},{"path":[4,96,2,7,3],"span":[1680,29,30]},{"path":[4,96,2,8],"span":[1681,2,32]},{"path":[4,96,2,8,4],"span":[1681,2,10]},{"path":[4,96,2,8,5],"span":[1681,11,17]},{"path":[4,96,2,8,1],"span":[1681,18,27]},{"path":[4,96,2,8,3],"span":[1681,30,31]},{"path":[4,96,2,9],"span":[1682,2,28]},{"path":[4,96,2,9,4],"span":[1682,2,10]},{"path":[4,96,2,9,5],"span":[1682,11,17]},{"path":[4,96,2,9,1],"span":[1682,18,22]},{"path":[4,96,2,9,3],"span":[1682,25,27]},{"path":[4,96,2,10],"span":[1683,2,31]},{"path":[4,96,2,10,4],"span":[1683,2,10]},{"path":[4,96,2,10,5],"span":[1683,11,17]},{"path":[4,96,2,10,1],"span":[1683,18,25]},{"path":[4,96,2,10,3],"span":[1683,28,30]},{"path":[4,96,2,11],"span":[1684,2,34]},{"path":[4,96,2,11,4],"span":[1684,2,10]},{"path":[4,96,2,11,5],"span":[1684,11,17]},{"path":[4,96,2,11,1],"span":[1684,18,28]},{"path":[4,96,2,11,3],"span":[1684,31,33]},{"path":[4,96,2,12],"span":[1685,2,31]},{"path":[4,96,2,12,4],"span":[1685,2,10]},{"path":[4,96,2,12,5],"span":[1685,11,17]},{"path":[4,96,2,12,1],"span":[1685,18,25]},{"path":[4,96,2,12,3],"span":[1685,28,30]},{"path":[4,96,2,13],"span":[1686,2,29]},{"path":[4,96,2,13,4],"span":[1686,2,10]},{"path":[4,96,2,13,5],"span":[1686,11,17]},{"path":[4,96,2,13,1],"span":[1686,18,23]},{"path":[4,96,2,13,3],"span":[1686,26,28]},{"path":[4,96,2,14],"span":[1687,2,28]},{"path":[4,96,2,14,4],"span":[1687,2,10]},{"path":[4,96,2,14,5],"span":[1687,11,17]},{"path":[4,96,2,14,1],"span":[1687,18,22]},{"path":[4,96,2,14,3],"span":[1687,25,27]},{"path":[4,96,2,15],"span":[1688,2,28]},{"path":[4,96,2,15,4],"span":[1688,2,10]},{"path":[4,96,2,15,5],"span":[1688,11,17]},{"path":[4,96,2,15,1],"span":[1688,18,22]},{"path":[4,96,2,15,3],"span":[1688,25,27]},{"path":[4,96,2,16],"span":[1690,2,27]},{"path":[4,96,2,16,4],"span":[1690,2,10]},{"path":[4,96,2,16,5],"span":[1690,11,17]},{"path":[4,96,2,16,1],"span":[1690,18,21]},{"path":[4,96,2,16,3],"span":[1690,24,26]},{"path":[4,96,2,17],"span":[1692,2,23]},{"path":[4,96,2,17,6],"span":[1692,2,13]},{"path":[4,96,2,17,1],"span":[1692,14,17]},{"path":[4,96,2,17,3],"span":[1692,20,22]},{"path":[4,96,2,18],"span":[1693,2,32],"trailingComments":" optional raw hash of SW\n"},{"path":[4,96,2,18,4],"span":[1693,2,10]},{"path":[4,96,2,18,5],"span":[1693,11,17]},{"path":[4,96,2,18,1],"span":[1693,18,26]},{"path":[4,96,2,18,3],"span":[1693,29,31]},{"path":[4,96,2,19],"span":[1694,2,32],"trailingComments":" optional NRE hash of SW\n"},{"path":[4,96,2,19,4],"span":[1694,2,10]},{"path":[4,96,2,19,5],"span":[1694,11,17]},{"path":[4,96,2,19,1],"span":[1694,18,26]},{"path":[4,96,2,19,3],"span":[1694,29,31]},{"path":[4,96,2,20],"span":[1697,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,96,2,20,4],"span":[1697,2,10]},{"path":[4,96,2,20,6],"span":[1697,11,23]},{"path":[4,96,2,20,1],"span":[1697,24,37]},{"path":[4,96,2,20,3],"span":[1697,40,42]},{"path":[4,96,2,21],"span":[1699,2,49],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,96,2,21,4],"span":[1699,2,10]},{"path":[4,96,2,21,6],"span":[1699,11,26]},{"path":[4,96,2,21,1],"span":[1699,27,43]},{"path":[4,96,2,21,3],"span":[1699,46,48]},{"path":[4,96,2,22],"span":[1701,2,47],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,96,2,22,4],"span":[1701,2,10]},{"path":[4,96,2,22,6],"span":[1701,11,26]},{"path":[4,96,2,22,1],"span":[1701,27,41]},{"path":[4,96,2,22,3],"span":[1701,44,46]},{"path":[4,97],"span":[1707,0,1721,1],"leadingComments":"\n Raw Software definition, as mapped from Windows, Mac, Linux.\n"},{"path":[4,97,1],"span":[1707,8,19]},{"path":[4,97,2,0],"span":[1708,2,18]},{"path":[4,97,2,0,5],"span":[1708,2,8]},{"path":[4,97,2,0,1],"span":[1708,9,13]},{"path":[4,97,2,0,3],"span":[1708,16,17]},{"path":[4,97,2,1],"span":[1710,2,29]},{"path":[4,97,2,1,4],"span":[1710,2,10]},{"path":[4,97,2,1,5],"span":[1710,11,17]},{"path":[4,97,2,1,1],"span":[1710,18,24]},{"path":[4,97,2,1,3],"span":[1710,27,28]},{"path":[4,97,2,2],"span":[1711,2,30]},{"path":[4,97,2,2,4],"span":[1711,2,10]},{"path":[4,97,2,2,5],"span":[1711,11,17]},{"path":[4,97,2,2,1],"span":[1711,18,25]},{"path":[4,97,2,2,3],"span":[1711,28,29]},{"path":[4,97,2,3],"span":[1712,2,27]},{"path":[4,97,2,3,4],"span":[1712,2,10]},{"path":[4,97,2,3,5],"span":[1712,11,17]},{"path":[4,97,2,3,1],"span":[1712,18,22]},{"path":[4,97,2,3,3],"span":[1712,25,26]},{"path":[4,97,2,4],"span":[1713,2,31]},{"path":[4,97,2,4,4],"span":[1713,2,10]},{"path":[4,97,2,4,5],"span":[1713,11,17]},{"path":[4,97,2,4,1],"span":[1713,18,26]},{"path":[4,97,2,4,3],"span":[1713,29,30]},{"path":[4,97,2,5],"span":[1714,2,27],"trailingComments":" when available the specific sw arch\n"},{"path":[4,97,2,5,4],"span":[1714,2,10]},{"path":[4,97,2,5,5],"span":[1714,11,17]},{"path":[4,97,2,5,1],"span":[1714,18,22]},{"path":[4,97,2,5,3],"span":[1714,25,26]},{"path":[4,97,2,6],"span":[1715,2,54]},{"path":[4,97,2,6,4],"span":[1715,2,10]},{"path":[4,97,2,6,6],"span":[1715,11,36]},{"path":[4,97,2,6,1],"span":[1715,37,49]},{"path":[4,97,2,6,3],"span":[1715,52,53]},{"path":[4,97,2,7],"span":[1716,2,34],"trailingComments":" Registry | System | MsStore | Package | Custom | etc\n"},{"path":[4,97,2,7,4],"span":[1716,2,10]},{"path":[4,97,2,7,5],"span":[1716,11,17]},{"path":[4,97,2,7,1],"span":[1716,18,29]},{"path":[4,97,2,7,3],"span":[1716,32,33]},{"path":[4,97,2,8],"span":[1718,2,28],"trailingComments":" optional SW id on the client side\n"},{"path":[4,97,2,8,4],"span":[1718,2,10]},{"path":[4,97,2,8,5],"span":[1718,11,17]},{"path":[4,97,2,8,1],"span":[1718,18,23]},{"path":[4,97,2,8,3],"span":[1718,26,27]},{"path":[4,97,2,9],"span":[1720,2,37]},{"path":[4,97,2,9,4],"span":[1720,2,10]},{"path":[4,97,2,9,5],"span":[1720,11,15]},{"path":[4,97,2,9,1],"span":[1720,16,31]},{"path":[4,97,2,9,3],"span":[1720,34,36]},{"path":[4,98],"span":[1725,0,1759,1],"leadingDetachedComments":[" <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< CATALOG ENTITIES >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n"]},{"path":[4,98,1],"span":[1725,8,20]},{"path":[4,98,2,0],"span":[1726,2,16]},{"path":[4,98,2,0,5],"span":[1726,2,7]},{"path":[4,98,2,0,1],"span":[1726,9,11]},{"path":[4,98,2,0,3],"span":[1726,14,15]},{"path":[4,98,2,1],"span":[1727,2,23]},{"path":[4,98,2,1,5],"span":[1727,2,8]},{"path":[4,98,2,1,1],"span":[1727,9,18]},{"path":[4,98,2,1,3],"span":[1727,21,22]},{"path":[4,98,2,2],"span":[1729,2,32]},{"path":[4,98,2,2,4],"span":[1729,2,10]},{"path":[4,98,2,2,5],"span":[1729,11,16]},{"path":[4,98,2,2,1],"span":[1729,17,26]},{"path":[4,98,2,2,3],"span":[1729,29,31]},{"path":[4,98,2,3],"span":[1730,2,58]},{"path":[4,98,2,3,4],"span":[1730,2,10]},{"path":[4,98,2,3,6],"span":[1730,11,36]},{"path":[4,98,2,3,1],"span":[1730,37,53]},{"path":[4,98,2,3,3],"span":[1730,56,57]},{"path":[4,98,2,4],"span":[1732,2,35]},{"path":[4,98,2,4,4],"span":[1732,2,10]},{"path":[4,98,2,4,5],"span":[1732,11,17]},{"path":[4,98,2,4,1],"span":[1732,18,30]},{"path":[4,98,2,4,3],"span":[1732,33,34]},{"path":[4,98,2,5],"span":[1733,2,37]},{"path":[4,98,2,5,4],"span":[1733,2,10]},{"path":[4,98,2,5,5],"span":[1733,11,17]},{"path":[4,98,2,5,1],"span":[1733,18,32]},{"path":[4,98,2,5,3],"span":[1733,35,36]},{"path":[4,98,2,6],"span":[1734,2,39]},{"path":[4,98,2,6,4],"span":[1734,2,10]},{"path":[4,98,2,6,5],"span":[1734,11,17]},{"path":[4,98,2,6,1],"span":[1734,18,34]},{"path":[4,98,2,6,3],"span":[1734,37,38]},{"path":[4,98,2,7],"span":[1735,2,35]},{"path":[4,98,2,7,4],"span":[1735,2,10]},{"path":[4,98,2,7,5],"span":[1735,11,17]},{"path":[4,98,2,7,1],"span":[1735,18,30]},{"path":[4,98,2,7,3],"span":[1735,33,34]},{"path":[4,98,2,8],"span":[1736,2,43]},{"path":[4,98,2,8,4],"span":[1736,2,10]},{"path":[4,98,2,8,5],"span":[1736,11,17]},{"path":[4,98,2,8,1],"span":[1736,18,37]},{"path":[4,98,2,8,3],"span":[1736,40,42]},{"path":[4,98,2,9],"span":[1737,2,35]},{"path":[4,98,2,9,4],"span":[1737,2,10]},{"path":[4,98,2,9,5],"span":[1737,11,17]},{"path":[4,98,2,9,1],"span":[1737,18,29]},{"path":[4,98,2,9,3],"span":[1737,32,34]},{"path":[4,98,2,10],"span":[1738,2,35]},{"path":[4,98,2,10,4],"span":[1738,2,10]},{"path":[4,98,2,10,5],"span":[1738,11,17]},{"path":[4,98,2,10,1],"span":[1738,18,29]},{"path":[4,98,2,10,3],"span":[1738,32,34]},{"path":[4,98,2,11],"span":[1739,2,37]},{"path":[4,98,2,11,4],"span":[1739,2,10]},{"path":[4,98,2,11,5],"span":[1739,11,17]},{"path":[4,98,2,11,1],"span":[1739,18,31]},{"path":[4,98,2,11,3],"span":[1739,34,36]},{"path":[4,98,2,12],"span":[1740,2,40]},{"path":[4,98,2,12,4],"span":[1740,2,10]},{"path":[4,98,2,12,5],"span":[1740,11,17]},{"path":[4,98,2,12,1],"span":[1740,18,34]},{"path":[4,98,2,12,3],"span":[1740,37,39]},{"path":[4,98,2,13],"span":[1741,2,39]},{"path":[4,98,2,13,4],"span":[1741,2,10]},{"path":[4,98,2,13,5],"span":[1741,11,17]},{"path":[4,98,2,13,1],"span":[1741,18,33]},{"path":[4,98,2,13,3],"span":[1741,36,38]},{"path":[4,98,2,14],"span":[1742,2,36]},{"path":[4,98,2,14,4],"span":[1742,2,10]},{"path":[4,98,2,14,5],"span":[1742,11,17]},{"path":[4,98,2,14,1],"span":[1742,18,30]},{"path":[4,98,2,14,3],"span":[1742,33,35]},{"path":[4,98,2,15],"span":[1743,2,43]},{"path":[4,98,2,15,4],"span":[1743,2,10]},{"path":[4,98,2,15,5],"span":[1743,11,17]},{"path":[4,98,2,15,1],"span":[1743,18,37]},{"path":[4,98,2,15,3],"span":[1743,40,42]},{"path":[4,98,2,16],"span":[1744,2,37]},{"path":[4,98,2,16,4],"span":[1744,2,10]},{"path":[4,98,2,16,5],"span":[1744,11,17]},{"path":[4,98,2,16,1],"span":[1744,18,31]},{"path":[4,98,2,16,3],"span":[1744,34,36]},{"path":[4,98,2,17],"span":[1745,2,40]},{"path":[4,98,2,17,4],"span":[1745,2,10]},{"path":[4,98,2,17,5],"span":[1745,11,17]},{"path":[4,98,2,17,1],"span":[1745,18,34]},{"path":[4,98,2,17,3],"span":[1745,37,39]},{"path":[4,98,2,18],"span":[1746,2,41]},{"path":[4,98,2,18,4],"span":[1746,2,10]},{"path":[4,98,2,18,5],"span":[1746,11,17]},{"path":[4,98,2,18,1],"span":[1746,18,35]},{"path":[4,98,2,18,3],"span":[1746,38,40]},{"path":[4,98,2,19],"span":[1747,2,39]},{"path":[4,98,2,19,4],"span":[1747,2,10]},{"path":[4,98,2,19,5],"span":[1747,11,17]},{"path":[4,98,2,19,1],"span":[1747,18,33]},{"path":[4,98,2,19,3],"span":[1747,36,38]},{"path":[4,98,2,20],"span":[1748,2,41]},{"path":[4,98,2,20,4],"span":[1748,2,10]},{"path":[4,98,2,20,5],"span":[1748,11,17]},{"path":[4,98,2,20,1],"span":[1748,18,35]},{"path":[4,98,2,20,3],"span":[1748,38,40]},{"path":[4,98,2,21],"span":[1749,2,38]},{"path":[4,98,2,21,4],"span":[1749,2,10]},{"path":[4,98,2,21,5],"span":[1749,11,17]},{"path":[4,98,2,21,1],"span":[1749,18,32]},{"path":[4,98,2,21,3],"span":[1749,35,37]},{"path":[4,98,2,22],"span":[1751,2,36]},{"path":[4,98,2,22,4],"span":[1751,2,10]},{"path":[4,98,2,22,5],"span":[1751,11,15]},{"path":[4,98,2,22,1],"span":[1751,16,30]},{"path":[4,98,2,22,3],"span":[1751,33,35]},{"path":[4,98,2,23],"span":[1752,2,36]},{"path":[4,98,2,23,4],"span":[1752,2,10]},{"path":[4,98,2,23,5],"span":[1752,11,15]},{"path":[4,98,2,23,1],"span":[1752,16,30]},{"path":[4,98,2,23,3],"span":[1752,33,35]},{"path":[4,98,2,24],"span":[1753,2,36]},{"path":[4,98,2,24,4],"span":[1753,2,10]},{"path":[4,98,2,24,5],"span":[1753,11,15]},{"path":[4,98,2,24,1],"span":[1753,16,30]},{"path":[4,98,2,24,3],"span":[1753,33,35]},{"path":[4,98,2,25],"span":[1754,2,38]},{"path":[4,98,2,25,4],"span":[1754,2,10]},{"path":[4,98,2,25,5],"span":[1754,11,15]},{"path":[4,98,2,25,1],"span":[1754,16,32]},{"path":[4,98,2,25,3],"span":[1754,35,37]},{"path":[4,98,2,26],"span":[1755,2,38]},{"path":[4,98,2,26,4],"span":[1755,2,10]},{"path":[4,98,2,26,5],"span":[1755,11,15]},{"path":[4,98,2,26,1],"span":[1755,16,32]},{"path":[4,98,2,26,3],"span":[1755,35,37]},{"path":[4,98,2,27],"span":[1756,2,38]},{"path":[4,98,2,27,4],"span":[1756,2,10]},{"path":[4,98,2,27,5],"span":[1756,11,15]},{"path":[4,98,2,27,1],"span":[1756,16,32]},{"path":[4,98,2,27,3],"span":[1756,35,37]},{"path":[4,98,2,28],"span":[1758,2,34],"trailingComments":" relevant only in search result\n"},{"path":[4,98,2,28,4],"span":[1758,2,10]},{"path":[4,98,2,28,5],"span":[1758,11,16]},{"path":[4,98,2,28,1],"span":[1758,17,28]},{"path":[4,98,2,28,3],"span":[1758,31,33]},{"path":[4,99],"span":[1761,0,1796,1]},{"path":[4,99,1],"span":[1761,8,20]},{"path":[4,99,2,0],"span":[1762,2,15]},{"path":[4,99,2,0,5],"span":[1762,2,7]},{"path":[4,99,2,0,1],"span":[1762,8,10]},{"path":[4,99,2,0,3],"span":[1762,13,14]},{"path":[4,99,2,1],"span":[1764,2,20]},{"path":[4,99,2,1,5],"span":[1764,2,7]},{"path":[4,99,2,1,1],"span":[1764,8,15]},{"path":[4,99,2,1,3],"span":[1764,18,19]},{"path":[4,99,2,2],"span":[1765,2,26]},{"path":[4,99,2,2,5],"span":[1765,2,8]},{"path":[4,99,2,2,1],"span":[1765,9,21]},{"path":[4,99,2,2,3],"span":[1765,24,25]},{"path":[4,99,2,3],"span":[1767,2,36]},{"path":[4,99,2,3,4],"span":[1767,2,10]},{"path":[4,99,2,3,5],"span":[1767,11,16]},{"path":[4,99,2,3,1],"span":[1767,17,31]},{"path":[4,99,2,3,3],"span":[1767,34,35]},{"path":[4,99,2,4],"span":[1768,2,40]},{"path":[4,99,2,4,4],"span":[1768,2,10]},{"path":[4,99,2,4,5],"span":[1768,11,17]},{"path":[4,99,2,4,1],"span":[1768,18,35]},{"path":[4,99,2,4,3],"span":[1768,38,39]},{"path":[4,99,2,5],"span":[1770,2,32]},{"path":[4,99,2,5,4],"span":[1770,2,10]},{"path":[4,99,2,5,5],"span":[1770,11,16]},{"path":[4,99,2,5,1],"span":[1770,17,26]},{"path":[4,99,2,5,3],"span":[1770,29,31]},{"path":[4,99,2,6],"span":[1771,2,31]},{"path":[4,99,2,6,4],"span":[1771,2,10]},{"path":[4,99,2,6,5],"span":[1771,11,15]},{"path":[4,99,2,6,1],"span":[1771,16,25]},{"path":[4,99,2,6,3],"span":[1771,28,30]},{"path":[4,99,2,7],"span":[1772,2,34]},{"path":[4,99,2,7,4],"span":[1772,2,10]},{"path":[4,99,2,7,5],"span":[1772,11,17]},{"path":[4,99,2,7,1],"span":[1772,18,28]},{"path":[4,99,2,7,3],"span":[1772,31,33]},{"path":[4,99,2,8],"span":[1773,2,31]},{"path":[4,99,2,8,4],"span":[1773,2,10]},{"path":[4,99,2,8,5],"span":[1773,11,17]},{"path":[4,99,2,8,1],"span":[1773,18,25]},{"path":[4,99,2,8,3],"span":[1773,28,30]},{"path":[4,99,2,9],"span":[1774,2,55]},{"path":[4,99,2,9,4],"span":[1774,2,10]},{"path":[4,99,2,9,6],"span":[1774,11,36]},{"path":[4,99,2,9,1],"span":[1774,37,49]},{"path":[4,99,2,9,3],"span":[1774,52,54]},{"path":[4,99,2,10],"span":[1775,2,52]},{"path":[4,99,2,10,4],"span":[1775,2,10]},{"path":[4,99,2,10,6],"span":[1775,11,36]},{"path":[4,99,2,10,1],"span":[1775,37,46]},{"path":[4,99,2,10,3],"span":[1775,49,51]},{"path":[4,99,2,11],"span":[1776,2,51]},{"path":[4,99,2,11,4],"span":[1776,2,10]},{"path":[4,99,2,11,6],"span":[1776,11,36]},{"path":[4,99,2,11,1],"span":[1776,37,45]},{"path":[4,99,2,11,3],"span":[1776,48,50]},{"path":[4,99,2,12],"span":[1777,2,43]},{"path":[4,99,2,12,4],"span":[1777,2,10]},{"path":[4,99,2,12,5],"span":[1777,11,17]},{"path":[4,99,2,12,1],"span":[1777,18,37]},{"path":[4,99,2,12,3],"span":[1777,40,42]},{"path":[4,99,2,13],"span":[1779,2,35]},{"path":[4,99,2,13,4],"span":[1779,2,10]},{"path":[4,99,2,13,5],"span":[1779,11,17]},{"path":[4,99,2,13,1],"span":[1779,18,29]},{"path":[4,99,2,13,3],"span":[1779,32,34]},{"path":[4,99,2,14],"span":[1780,2,37]},{"path":[4,99,2,14,4],"span":[1780,2,10]},{"path":[4,99,2,14,5],"span":[1780,11,17]},{"path":[4,99,2,14,1],"span":[1780,18,31]},{"path":[4,99,2,14,3],"span":[1780,34,36]},{"path":[4,99,2,15],"span":[1782,2,39]},{"path":[4,99,2,15,4],"span":[1782,2,10]},{"path":[4,99,2,15,5],"span":[1782,11,17]},{"path":[4,99,2,15,1],"span":[1782,18,33]},{"path":[4,99,2,15,3],"span":[1782,36,38]},{"path":[4,99,2,16],"span":[1783,2,43]},{"path":[4,99,2,16,4],"span":[1783,2,10]},{"path":[4,99,2,16,5],"span":[1783,11,17]},{"path":[4,99,2,16,1],"span":[1783,18,37]},{"path":[4,99,2,16,3],"span":[1783,40,42]},{"path":[4,99,2,17],"span":[1784,2,38]},{"path":[4,99,2,17,4],"span":[1784,2,10]},{"path":[4,99,2,17,5],"span":[1784,11,17]},{"path":[4,99,2,17,1],"span":[1784,18,32]},{"path":[4,99,2,17,3],"span":[1784,35,37]},{"path":[4,99,2,18],"span":[1785,2,38]},{"path":[4,99,2,18,4],"span":[1785,2,10]},{"path":[4,99,2,18,5],"span":[1785,11,17]},{"path":[4,99,2,18,1],"span":[1785,18,32]},{"path":[4,99,2,18,3],"span":[1785,35,37]},{"path":[4,99,2,19],"span":[1786,2,41]},{"path":[4,99,2,19,4],"span":[1786,2,10]},{"path":[4,99,2,19,5],"span":[1786,11,15]},{"path":[4,99,2,19,1],"span":[1786,18,35]},{"path":[4,99,2,19,3],"span":[1786,38,40]},{"path":[4,99,2,20],"span":[1787,2,42]},{"path":[4,99,2,20,4],"span":[1787,2,10]},{"path":[4,99,2,20,5],"span":[1787,11,17]},{"path":[4,99,2,20,1],"span":[1787,18,36]},{"path":[4,99,2,20,3],"span":[1787,39,41]},{"path":[4,99,2,21],"span":[1789,2,32]},{"path":[4,99,2,21,4],"span":[1789,2,10]},{"path":[4,99,2,21,5],"span":[1789,11,17]},{"path":[4,99,2,21,1],"span":[1789,18,26]},{"path":[4,99,2,21,3],"span":[1789,29,31]},{"path":[4,99,2,22],"span":[1791,2,33]},{"path":[4,99,2,22,4],"span":[1791,2,10]},{"path":[4,99,2,22,5],"span":[1791,11,16]},{"path":[4,99,2,22,1],"span":[1791,17,27]},{"path":[4,99,2,22,3],"span":[1791,30,32]},{"path":[4,99,2,23],"span":[1793,2,59]},{"path":[4,99,2,23,4],"span":[1793,2,10]},{"path":[4,99,2,23,6],"span":[1793,11,36]},{"path":[4,99,2,23,1],"span":[1793,37,53]},{"path":[4,99,2,23,3],"span":[1793,56,58]},{"path":[4,99,2,24],"span":[1795,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,99,2,24,4],"span":[1795,2,10]},{"path":[4,99,2,24,5],"span":[1795,11,16]},{"path":[4,99,2,24,1],"span":[1795,17,28]},{"path":[4,99,2,24,3],"span":[1795,31,33]},{"path":[4,100],"span":[1798,0,1831,1]},{"path":[4,100,1],"span":[1798,8,17]},{"path":[4,100,2,0],"span":[1799,2,15]},{"path":[4,100,2,0,5],"span":[1799,2,7]},{"path":[4,100,2,0,1],"span":[1799,8,10]},{"path":[4,100,2,0,3],"span":[1799,13,14]},{"path":[4,100,2,1],"span":[1801,2,21]},{"path":[4,100,2,1,5],"span":[1801,2,8]},{"path":[4,100,2,1,1],"span":[1801,9,16]},{"path":[4,100,2,1,3],"span":[1801,19,20]},{"path":[4,100,2,2],"span":[1803,2,33]},{"path":[4,100,2,2,4],"span":[1803,2,10]},{"path":[4,100,2,2,5],"span":[1803,11,17]},{"path":[4,100,2,2,1],"span":[1803,18,28]},{"path":[4,100,2,2,3],"span":[1803,31,32]},{"path":[4,100,2,3],"span":[1804,2,32]},{"path":[4,100,2,3,4],"span":[1804,2,10]},{"path":[4,100,2,3,5],"span":[1804,11,17]},{"path":[4,100,2,3,1],"span":[1804,18,26]},{"path":[4,100,2,3,3],"span":[1804,29,31]},{"path":[4,100,2,4],"span":[1805,2,38]},{"path":[4,100,2,4,4],"span":[1805,2,10]},{"path":[4,100,2,4,5],"span":[1805,11,17]},{"path":[4,100,2,4,1],"span":[1805,18,33]},{"path":[4,100,2,4,3],"span":[1805,36,37]},{"path":[4,100,2,5],"span":[1807,2,33]},{"path":[4,100,2,5,4],"span":[1807,2,10]},{"path":[4,100,2,5,5],"span":[1807,11,16]},{"path":[4,100,2,5,1],"span":[1807,17,28]},{"path":[4,100,2,5,3],"span":[1807,31,32]},{"path":[4,100,2,6],"span":[1808,2,29]},{"path":[4,100,2,6,4],"span":[1808,2,10]},{"path":[4,100,2,6,5],"span":[1808,11,16]},{"path":[4,100,2,6,1],"span":[1808,17,24]},{"path":[4,100,2,6,3],"span":[1808,27,28]},{"path":[4,100,2,7],"span":[1809,2,31]},{"path":[4,100,2,7,4],"span":[1809,2,10]},{"path":[4,100,2,7,5],"span":[1809,11,16]},{"path":[4,100,2,7,1],"span":[1809,17,26]},{"path":[4,100,2,7,3],"span":[1809,29,30]},{"path":[4,100,2,8],"span":[1811,2,54]},{"path":[4,100,2,8,4],"span":[1811,2,10]},{"path":[4,100,2,8,6],"span":[1811,11,36]},{"path":[4,100,2,8,1],"span":[1811,37,49]},{"path":[4,100,2,8,3],"span":[1811,52,53]},{"path":[4,100,2,9],"span":[1812,2,51]},{"path":[4,100,2,9,4],"span":[1812,2,10]},{"path":[4,100,2,9,6],"span":[1812,11,36]},{"path":[4,100,2,9,1],"span":[1812,37,45]},{"path":[4,100,2,9,3],"span":[1812,48,50]},{"path":[4,100,2,10],"span":[1813,2,51]},{"path":[4,100,2,10,4],"span":[1813,2,10]},{"path":[4,100,2,10,6],"span":[1813,11,36]},{"path":[4,100,2,10,1],"span":[1813,37,45]},{"path":[4,100,2,10,3],"span":[1813,48,50]},{"path":[4,100,2,11],"span":[1814,2,52]},{"path":[4,100,2,11,4],"span":[1814,2,10]},{"path":[4,100,2,11,6],"span":[1814,11,36]},{"path":[4,100,2,11,1],"span":[1814,37,46]},{"path":[4,100,2,11,3],"span":[1814,49,51]},{"path":[4,100,2,12],"span":[1815,2,43]},{"path":[4,100,2,12,4],"span":[1815,2,10]},{"path":[4,100,2,12,5],"span":[1815,11,17]},{"path":[4,100,2,12,1],"span":[1815,18,37]},{"path":[4,100,2,12,3],"span":[1815,40,42]},{"path":[4,100,2,13],"span":[1816,2,38]},{"path":[4,100,2,13,4],"span":[1816,2,10]},{"path":[4,100,2,13,5],"span":[1816,11,17]},{"path":[4,100,2,13,1],"span":[1816,18,32]},{"path":[4,100,2,13,3],"span":[1816,35,37]},{"path":[4,100,2,14],"span":[1817,2,40]},{"path":[4,100,2,14,4],"span":[1817,2,10]},{"path":[4,100,2,14,5],"span":[1817,11,17]},{"path":[4,100,2,14,1],"span":[1817,18,34]},{"path":[4,100,2,14,3],"span":[1817,37,39]},{"path":[4,100,2,15],"span":[1818,2,36]},{"path":[4,100,2,15,4],"span":[1818,2,10]},{"path":[4,100,2,15,5],"span":[1818,11,17]},{"path":[4,100,2,15,1],"span":[1818,18,30]},{"path":[4,100,2,15,3],"span":[1818,33,35]},{"path":[4,100,2,16],"span":[1819,2,43]},{"path":[4,100,2,16,4],"span":[1819,2,10]},{"path":[4,100,2,16,5],"span":[1819,11,17]},{"path":[4,100,2,16,1],"span":[1819,18,37]},{"path":[4,100,2,16,3],"span":[1819,40,42]},{"path":[4,100,2,17],"span":[1820,2,35]},{"path":[4,100,2,17,4],"span":[1820,2,10]},{"path":[4,100,2,17,5],"span":[1820,11,17]},{"path":[4,100,2,17,1],"span":[1820,18,29]},{"path":[4,100,2,17,3],"span":[1820,32,34]},{"path":[4,100,2,18],"span":[1821,2,35]},{"path":[4,100,2,18,4],"span":[1821,2,10]},{"path":[4,100,2,18,5],"span":[1821,11,17]},{"path":[4,100,2,18,1],"span":[1821,18,29]},{"path":[4,100,2,18,3],"span":[1821,32,34]},{"path":[4,100,2,19],"span":[1822,2,37]},{"path":[4,100,2,19,4],"span":[1822,2,10]},{"path":[4,100,2,19,5],"span":[1822,11,17]},{"path":[4,100,2,19,1],"span":[1822,18,31]},{"path":[4,100,2,19,3],"span":[1822,34,36]},{"path":[4,100,2,20],"span":[1823,2,40]},{"path":[4,100,2,20,4],"span":[1823,2,10]},{"path":[4,100,2,20,5],"span":[1823,11,17]},{"path":[4,100,2,20,1],"span":[1823,18,34]},{"path":[4,100,2,20,3],"span":[1823,37,39]},{"path":[4,100,2,21],"span":[1824,2,39]},{"path":[4,100,2,21,4],"span":[1824,2,10]},{"path":[4,100,2,21,5],"span":[1824,11,17]},{"path":[4,100,2,21,1],"span":[1824,18,33]},{"path":[4,100,2,21,3],"span":[1824,36,38]},{"path":[4,100,2,22],"span":[1826,2,32]},{"path":[4,100,2,22,4],"span":[1826,2,10]},{"path":[4,100,2,22,5],"span":[1826,11,17]},{"path":[4,100,2,22,1],"span":[1826,18,26]},{"path":[4,100,2,22,3],"span":[1826,29,31]},{"path":[4,100,2,23],"span":[1828,2,59]},{"path":[4,100,2,23,4],"span":[1828,2,10]},{"path":[4,100,2,23,6],"span":[1828,11,36]},{"path":[4,100,2,23,1],"span":[1828,37,53]},{"path":[4,100,2,23,3],"span":[1828,56,58]},{"path":[4,100,2,24],"span":[1830,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,100,2,24,4],"span":[1830,2,10]},{"path":[4,100,2,24,5],"span":[1830,11,16]},{"path":[4,100,2,24,1],"span":[1830,17,28]},{"path":[4,100,2,24,3],"span":[1830,31,33]},{"path":[4,101],"span":[1833,0,1863,1]},{"path":[4,101,1],"span":[1833,8,23]},{"path":[4,101,2,0],"span":[1834,2,15]},{"path":[4,101,2,0,5],"span":[1834,2,7]},{"path":[4,101,2,0,1],"span":[1834,8,10]},{"path":[4,101,2,0,3],"span":[1834,13,14]},{"path":[4,101,2,1],"span":[1835,2,21]},{"path":[4,101,2,1,5],"span":[1835,2,8]},{"path":[4,101,2,1,1],"span":[1835,9,16]},{"path":[4,101,2,1,3],"span":[1835,19,20]},{"path":[4,101,2,2],"span":[1837,2,33]},{"path":[4,101,2,2,4],"span":[1837,2,10]},{"path":[4,101,2,2,5],"span":[1837,11,17]},{"path":[4,101,2,2,1],"span":[1837,18,28]},{"path":[4,101,2,2,3],"span":[1837,31,32]},{"path":[4,101,2,3],"span":[1838,2,36]},{"path":[4,101,2,3,4],"span":[1838,2,10]},{"path":[4,101,2,3,5],"span":[1838,11,17]},{"path":[4,101,2,3,1],"span":[1838,18,31]},{"path":[4,101,2,3,3],"span":[1838,34,35]},{"path":[4,101,2,4],"span":[1839,2,33]},{"path":[4,101,2,4,4],"span":[1839,2,10]},{"path":[4,101,2,4,5],"span":[1839,11,17]},{"path":[4,101,2,4,1],"span":[1839,18,28]},{"path":[4,101,2,4,3],"span":[1839,31,32]},{"path":[4,101,2,5],"span":[1840,2,30]},{"path":[4,101,2,5,4],"span":[1840,2,10]},{"path":[4,101,2,5,5],"span":[1840,11,17]},{"path":[4,101,2,5,1],"span":[1840,18,25]},{"path":[4,101,2,5,3],"span":[1840,28,29]},{"path":[4,101,2,6],"span":[1841,2,31]},{"path":[4,101,2,6,4],"span":[1841,2,10]},{"path":[4,101,2,6,5],"span":[1841,11,17]},{"path":[4,101,2,6,1],"span":[1841,18,26]},{"path":[4,101,2,6,3],"span":[1841,29,30]},{"path":[4,101,2,7],"span":[1843,2,29]},{"path":[4,101,2,7,4],"span":[1843,2,10]},{"path":[4,101,2,7,5],"span":[1843,11,16]},{"path":[4,101,2,7,1],"span":[1843,17,24]},{"path":[4,101,2,7,3],"span":[1843,27,28]},{"path":[4,101,2,8],"span":[1844,2,31]},{"path":[4,101,2,8,4],"span":[1844,2,10]},{"path":[4,101,2,8,5],"span":[1844,11,16]},{"path":[4,101,2,8,1],"span":[1844,17,26]},{"path":[4,101,2,8,3],"span":[1844,29,30]},{"path":[4,101,2,9],"span":[1845,2,32]},{"path":[4,101,2,9,4],"span":[1845,2,10]},{"path":[4,101,2,9,5],"span":[1845,11,16]},{"path":[4,101,2,9,1],"span":[1845,17,26]},{"path":[4,101,2,9,3],"span":[1845,29,31]},{"path":[4,101,2,10],"span":[1847,2,31]},{"path":[4,101,2,10,4],"span":[1847,2,10]},{"path":[4,101,2,10,5],"span":[1847,11,17]},{"path":[4,101,2,10,1],"span":[1847,18,25]},{"path":[4,101,2,10,3],"span":[1847,28,30]},{"path":[4,101,2,11],"span":[1848,2,35]},{"path":[4,101,2,11,4],"span":[1848,2,10]},{"path":[4,101,2,11,5],"span":[1848,11,17]},{"path":[4,101,2,11,1],"span":[1848,18,29]},{"path":[4,101,2,11,3],"span":[1848,32,34]},{"path":[4,101,2,12],"span":[1850,2,55]},{"path":[4,101,2,12,4],"span":[1850,2,10]},{"path":[4,101,2,12,6],"span":[1850,11,36]},{"path":[4,101,2,12,1],"span":[1850,37,49]},{"path":[4,101,2,12,3],"span":[1850,52,54]},{"path":[4,101,2,13],"span":[1851,2,51]},{"path":[4,101,2,13,4],"span":[1851,2,10]},{"path":[4,101,2,13,6],"span":[1851,11,36]},{"path":[4,101,2,13,1],"span":[1851,37,45]},{"path":[4,101,2,13,3],"span":[1851,48,50]},{"path":[4,101,2,14],"span":[1852,2,51]},{"path":[4,101,2,14,4],"span":[1852,2,10]},{"path":[4,101,2,14,6],"span":[1852,11,36]},{"path":[4,101,2,14,1],"span":[1852,37,45]},{"path":[4,101,2,14,3],"span":[1852,48,50]},{"path":[4,101,2,15],"span":[1853,2,52]},{"path":[4,101,2,15,4],"span":[1853,2,10]},{"path":[4,101,2,15,6],"span":[1853,11,36]},{"path":[4,101,2,15,1],"span":[1853,37,46]},{"path":[4,101,2,15,3],"span":[1853,49,51]},{"path":[4,101,2,16],"span":[1854,2,43]},{"path":[4,101,2,16,4],"span":[1854,2,10]},{"path":[4,101,2,16,5],"span":[1854,11,17]},{"path":[4,101,2,16,1],"span":[1854,18,37]},{"path":[4,101,2,16,3],"span":[1854,40,42]},{"path":[4,101,2,17],"span":[1856,2,33]},{"path":[4,101,2,17,4],"span":[1856,2,10]},{"path":[4,101,2,17,5],"span":[1856,11,15]},{"path":[4,101,2,17,1],"span":[1856,16,27]},{"path":[4,101,2,17,3],"span":[1856,30,32]},{"path":[4,101,2,18],"span":[1857,2,37]},{"path":[4,101,2,18,4],"span":[1857,2,10]},{"path":[4,101,2,18,5],"span":[1857,11,15]},{"path":[4,101,2,18,1],"span":[1857,16,31]},{"path":[4,101,2,18,3],"span":[1857,34,36]},{"path":[4,101,2,19],"span":[1858,2,37]},{"path":[4,101,2,19,4],"span":[1858,2,10]},{"path":[4,101,2,19,5],"span":[1858,11,15]},{"path":[4,101,2,19,1],"span":[1858,16,31]},{"path":[4,101,2,19,3],"span":[1858,34,36]},{"path":[4,101,2,20],"span":[1860,2,59]},{"path":[4,101,2,20,4],"span":[1860,2,10]},{"path":[4,101,2,20,6],"span":[1860,11,36]},{"path":[4,101,2,20,1],"span":[1860,37,53]},{"path":[4,101,2,20,3],"span":[1860,56,58]},{"path":[4,101,2,21],"span":[1862,2,35],"trailingComments":" filled only when a result of search\n"},{"path":[4,101,2,21,4],"span":[1862,2,10]},{"path":[4,101,2,21,5],"span":[1862,11,16]},{"path":[4,101,2,21,1],"span":[1862,17,28]},{"path":[4,101,2,21,3],"span":[1862,31,34]},{"path":[4,102],"span":[1865,0,1921,1]},{"path":[4,102,1],"span":[1865,8,22]},{"path":[4,102,2,0],"span":[1866,2,16]},{"path":[4,102,2,0,5],"span":[1866,2,7]},{"path":[4,102,2,0,1],"span":[1866,9,11]},{"path":[4,102,2,0,3],"span":[1866,14,15]},{"path":[4,102,2,1],"span":[1868,2,19]},{"path":[4,102,2,1,5],"span":[1868,2,8]},{"path":[4,102,2,1,1],"span":[1868,9,14]},{"path":[4,102,2,1,3],"span":[1868,17,18]},{"path":[4,102,2,2],"span":[1869,2,32]},{"path":[4,102,2,2,4],"span":[1869,2,10]},{"path":[4,102,2,2,5],"span":[1869,11,17]},{"path":[4,102,2,2,1],"span":[1869,18,27]},{"path":[4,102,2,2,3],"span":[1869,30,31]},{"path":[4,102,2,3],"span":[1870,2,29]},{"path":[4,102,2,3,4],"span":[1870,2,10]},{"path":[4,102,2,3,5],"span":[1870,11,16]},{"path":[4,102,2,3,1],"span":[1870,17,24]},{"path":[4,102,2,3,3],"span":[1870,27,28]},{"path":[4,102,2,4],"span":[1872,2,31]},{"path":[4,102,2,4,4],"span":[1872,2,10]},{"path":[4,102,2,4,5],"span":[1872,11,16]},{"path":[4,102,2,4,1],"span":[1872,17,26]},{"path":[4,102,2,4,3],"span":[1872,29,30]},{"path":[4,102,2,5],"span":[1873,2,30]},{"path":[4,102,2,5,4],"span":[1873,2,10]},{"path":[4,102,2,5,5],"span":[1873,11,15]},{"path":[4,102,2,5,1],"span":[1873,16,25]},{"path":[4,102,2,5,3],"span":[1873,28,29]},{"path":[4,102,2,6],"span":[1874,2,36]},{"path":[4,102,2,6,4],"span":[1874,2,10]},{"path":[4,102,2,6,5],"span":[1874,11,17]},{"path":[4,102,2,6,1],"span":[1874,18,31]},{"path":[4,102,2,6,3],"span":[1874,34,35]},{"path":[4,102,2,7],"span":[1875,2,35]},{"path":[4,102,2,7,4],"span":[1875,2,10]},{"path":[4,102,2,7,5],"span":[1875,11,17]},{"path":[4,102,2,7,1],"span":[1875,18,30]},{"path":[4,102,2,7,3],"span":[1875,33,34]},{"path":[4,102,2,8],"span":[1877,2,33]},{"path":[4,102,2,8,4],"span":[1877,2,10]},{"path":[4,102,2,8,5],"span":[1877,11,17]},{"path":[4,102,2,8,1],"span":[1877,18,27]},{"path":[4,102,2,8,3],"span":[1877,30,32]},{"path":[4,102,2,9],"span":[1878,2,38]},{"path":[4,102,2,9,4],"span":[1878,2,10]},{"path":[4,102,2,9,5],"span":[1878,11,17]},{"path":[4,102,2,9,1],"span":[1878,18,32]},{"path":[4,102,2,9,3],"span":[1878,35,37]},{"path":[4,102,2,10],"span":[1879,2,36]},{"path":[4,102,2,10,4],"span":[1879,2,10]},{"path":[4,102,2,10,5],"span":[1879,11,17]},{"path":[4,102,2,10,1],"span":[1879,18,30]},{"path":[4,102,2,10,3],"span":[1879,33,35]},{"path":[4,102,2,11],"span":[1880,2,40]},{"path":[4,102,2,11,4],"span":[1880,2,10]},{"path":[4,102,2,11,5],"span":[1880,11,17]},{"path":[4,102,2,11,1],"span":[1880,18,34]},{"path":[4,102,2,11,3],"span":[1880,37,39]},{"path":[4,102,2,12],"span":[1881,2,31]},{"path":[4,102,2,12,4],"span":[1881,2,10]},{"path":[4,102,2,12,5],"span":[1881,11,17]},{"path":[4,102,2,12,1],"span":[1881,18,25]},{"path":[4,102,2,12,3],"span":[1881,28,30]},{"path":[4,102,2,13],"span":[1882,2,36]},{"path":[4,102,2,13,4],"span":[1882,2,10]},{"path":[4,102,2,13,5],"span":[1882,11,17]},{"path":[4,102,2,13,1],"span":[1882,18,30]},{"path":[4,102,2,13,3],"span":[1882,33,35]},{"path":[4,102,2,14],"span":[1883,2,35]},{"path":[4,102,2,14,4],"span":[1883,2,10]},{"path":[4,102,2,14,5],"span":[1883,11,16]},{"path":[4,102,2,14,1],"span":[1883,17,29]},{"path":[4,102,2,14,3],"span":[1883,32,34]},{"path":[4,102,2,15],"span":[1884,2,29]},{"path":[4,102,2,15,4],"span":[1884,2,10]},{"path":[4,102,2,15,5],"span":[1884,11,17]},{"path":[4,102,2,15,1],"span":[1884,18,23]},{"path":[4,102,2,15,3],"span":[1884,26,28]},{"path":[4,102,2,16],"span":[1885,2,33]},{"path":[4,102,2,16,4],"span":[1885,2,10]},{"path":[4,102,2,16,5],"span":[1885,11,17]},{"path":[4,102,2,16,1],"span":[1885,18,27]},{"path":[4,102,2,16,3],"span":[1885,30,32]},{"path":[4,102,2,17],"span":[1886,2,32]},{"path":[4,102,2,17,4],"span":[1886,2,10]},{"path":[4,102,2,17,5],"span":[1886,11,17]},{"path":[4,102,2,17,1],"span":[1886,18,26]},{"path":[4,102,2,17,3],"span":[1886,29,31]},{"path":[4,102,2,18],"span":[1887,2,35]},{"path":[4,102,2,18,4],"span":[1887,2,10]},{"path":[4,102,2,18,5],"span":[1887,11,17]},{"path":[4,102,2,18,1],"span":[1887,18,29]},{"path":[4,102,2,18,3],"span":[1887,32,34]},{"path":[4,102,2,19],"span":[1889,2,36]},{"path":[4,102,2,19,4],"span":[1889,2,10]},{"path":[4,102,2,19,5],"span":[1889,11,17]},{"path":[4,102,2,19,1],"span":[1889,18,30]},{"path":[4,102,2,19,3],"span":[1889,33,35]},{"path":[4,102,2,20],"span":[1890,2,38]},{"path":[4,102,2,20,4],"span":[1890,2,10]},{"path":[4,102,2,20,5],"span":[1890,11,16]},{"path":[4,102,2,20,1],"span":[1890,17,32]},{"path":[4,102,2,20,3],"span":[1890,35,37]},{"path":[4,102,2,21],"span":[1891,2,47]},{"path":[4,102,2,21,4],"span":[1891,2,10]},{"path":[4,102,2,21,5],"span":[1891,11,16]},{"path":[4,102,2,21,1],"span":[1891,17,41]},{"path":[4,102,2,21,3],"span":[1891,44,46]},{"path":[4,102,2,22],"span":[1892,2,30]},{"path":[4,102,2,22,4],"span":[1892,2,10]},{"path":[4,102,2,22,5],"span":[1892,11,16]},{"path":[4,102,2,22,1],"span":[1892,17,24]},{"path":[4,102,2,22,3],"span":[1892,27,29]},{"path":[4,102,2,23],"span":[1893,2,29]},{"path":[4,102,2,23,4],"span":[1893,2,10]},{"path":[4,102,2,23,5],"span":[1893,11,16]},{"path":[4,102,2,23,1],"span":[1893,17,23]},{"path":[4,102,2,23,3],"span":[1893,26,28]},{"path":[4,102,2,24],"span":[1894,2,29]},{"path":[4,102,2,24,4],"span":[1894,2,10]},{"path":[4,102,2,24,5],"span":[1894,11,16]},{"path":[4,102,2,24,1],"span":[1894,17,23]},{"path":[4,102,2,24,3],"span":[1894,26,28]},{"path":[4,102,2,25],"span":[1895,2,36]},{"path":[4,102,2,25,4],"span":[1895,2,10]},{"path":[4,102,2,25,5],"span":[1895,11,17]},{"path":[4,102,2,25,1],"span":[1895,18,30]},{"path":[4,102,2,25,3],"span":[1895,33,35]},{"path":[4,102,2,26],"span":[1896,2,39]},{"path":[4,102,2,26,4],"span":[1896,2,10]},{"path":[4,102,2,26,5],"span":[1896,11,16]},{"path":[4,102,2,26,1],"span":[1896,17,33]},{"path":[4,102,2,26,3],"span":[1896,36,38]},{"path":[4,102,2,27],"span":[1897,2,44]},{"path":[4,102,2,27,4],"span":[1897,2,10]},{"path":[4,102,2,27,5],"span":[1897,11,17]},{"path":[4,102,2,27,1],"span":[1897,18,38]},{"path":[4,102,2,27,3],"span":[1897,41,43]},{"path":[4,102,2,28],"span":[1899,2,36]},{"path":[4,102,2,28,4],"span":[1899,2,10]},{"path":[4,102,2,28,5],"span":[1899,11,17]},{"path":[4,102,2,28,1],"span":[1899,18,30]},{"path":[4,102,2,28,3],"span":[1899,33,35]},{"path":[4,102,2,29],"span":[1900,2,37]},{"path":[4,102,2,29,4],"span":[1900,2,10]},{"path":[4,102,2,29,5],"span":[1900,11,16]},{"path":[4,102,2,29,1],"span":[1900,17,31]},{"path":[4,102,2,29,3],"span":[1900,34,36]},{"path":[4,102,2,30],"span":[1901,2,42]},{"path":[4,102,2,30,4],"span":[1901,2,10]},{"path":[4,102,2,30,5],"span":[1901,11,17]},{"path":[4,102,2,30,1],"span":[1901,18,36]},{"path":[4,102,2,30,3],"span":[1901,39,41]},{"path":[4,102,2,31],"span":[1902,2,38]},{"path":[4,102,2,31,4],"span":[1902,2,10]},{"path":[4,102,2,31,5],"span":[1902,11,17]},{"path":[4,102,2,31,1],"span":[1902,18,32]},{"path":[4,102,2,31,3],"span":[1902,35,37]},{"path":[4,102,2,32],"span":[1903,2,42]},{"path":[4,102,2,32,4],"span":[1903,2,10]},{"path":[4,102,2,32,5],"span":[1903,11,17]},{"path":[4,102,2,32,1],"span":[1903,18,36]},{"path":[4,102,2,32,3],"span":[1903,39,41]},{"path":[4,102,2,33],"span":[1904,2,39]},{"path":[4,102,2,33,4],"span":[1904,2,10]},{"path":[4,102,2,33,5],"span":[1904,11,17]},{"path":[4,102,2,33,1],"span":[1904,18,33]},{"path":[4,102,2,33,3],"span":[1904,36,38]},{"path":[4,102,2,34],"span":[1905,2,34]},{"path":[4,102,2,34,4],"span":[1905,2,10]},{"path":[4,102,2,34,5],"span":[1905,11,17]},{"path":[4,102,2,34,1],"span":[1905,18,28]},{"path":[4,102,2,34,3],"span":[1905,31,33]},{"path":[4,102,2,35],"span":[1906,2,34]},{"path":[4,102,2,35,4],"span":[1906,2,10]},{"path":[4,102,2,35,5],"span":[1906,11,17]},{"path":[4,102,2,35,1],"span":[1906,18,28]},{"path":[4,102,2,35,3],"span":[1906,31,33]},{"path":[4,102,2,36],"span":[1907,2,33]},{"path":[4,102,2,36,4],"span":[1907,2,10]},{"path":[4,102,2,36,5],"span":[1907,11,17]},{"path":[4,102,2,36,1],"span":[1907,18,27]},{"path":[4,102,2,36,3],"span":[1907,30,32]},{"path":[4,102,2,37],"span":[1909,2,33]},{"path":[4,102,2,37,4],"span":[1909,2,10]},{"path":[4,102,2,37,5],"span":[1909,11,15]},{"path":[4,102,2,37,1],"span":[1909,16,27]},{"path":[4,102,2,37,3],"span":[1909,30,32]},{"path":[4,102,2,38],"span":[1910,2,36]},{"path":[4,102,2,38,4],"span":[1910,2,10]},{"path":[4,102,2,38,5],"span":[1910,11,15]},{"path":[4,102,2,38,1],"span":[1910,16,30]},{"path":[4,102,2,38,3],"span":[1910,33,35]},{"path":[4,102,2,39],"span":[1911,2,38]},{"path":[4,102,2,39,4],"span":[1911,2,10]},{"path":[4,102,2,39,5],"span":[1911,11,15]},{"path":[4,102,2,39,1],"span":[1911,16,32]},{"path":[4,102,2,39,3],"span":[1911,35,37]},{"path":[4,102,2,40],"span":[1912,2,34]},{"path":[4,102,2,40,4],"span":[1912,2,10]},{"path":[4,102,2,40,5],"span":[1912,11,15]},{"path":[4,102,2,40,1],"span":[1912,16,28]},{"path":[4,102,2,40,3],"span":[1912,31,33]},{"path":[4,102,2,41],"span":[1913,2,33]},{"path":[4,102,2,41,4],"span":[1913,2,10]},{"path":[4,102,2,41,5],"span":[1913,11,15]},{"path":[4,102,2,41,1],"span":[1913,16,27]},{"path":[4,102,2,41,3],"span":[1913,30,32]},{"path":[4,102,2,42],"span":[1914,2,38]},{"path":[4,102,2,42,4],"span":[1914,2,10]},{"path":[4,102,2,42,5],"span":[1914,11,15]},{"path":[4,102,2,42,1],"span":[1914,16,32]},{"path":[4,102,2,42,3],"span":[1914,35,37]},{"path":[4,102,2,43],"span":[1915,2,36]},{"path":[4,102,2,43,4],"span":[1915,2,10]},{"path":[4,102,2,43,5],"span":[1915,11,15]},{"path":[4,102,2,43,1],"span":[1915,16,30]},{"path":[4,102,2,43,3],"span":[1915,33,35]},{"path":[4,102,2,44],"span":[1917,2,59]},{"path":[4,102,2,44,4],"span":[1917,2,10]},{"path":[4,102,2,44,6],"span":[1917,11,36]},{"path":[4,102,2,44,1],"span":[1917,37,53]},{"path":[4,102,2,44,3],"span":[1917,56,58]},{"path":[4,102,2,45],"span":[1919,2,35],"trailingComments":" filled only when a result of search\n"},{"path":[4,102,2,45,4],"span":[1919,2,10]},{"path":[4,102,2,45,5],"span":[1919,11,16]},{"path":[4,102,2,45,1],"span":[1919,17,28]},{"path":[4,102,2,45,3],"span":[1919,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":"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":"unique_key","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"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":"last_synced_source_agent","number":39,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":1,"jsonName":"lastSyncedSourceAgent","proto3Optional":true},{"name":"last_synced_source_name","number":49,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":2,"jsonName":"lastSyncedSourceName","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":"internet_ip","number":32,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.IpInfo","oneofIndex":3,"jsonName":"internetIp","proto3Optional":true},{"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":"software_inventory","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SoftwareInventory","oneofIndex":6,"jsonName":"softwareInventory","proto3Optional":true},{"name":"antivirus","number":26,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.AntivirusSoftware","jsonName":"antivirus"},{"name":"monitor_inventory","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MonitorInventory","oneofIndex":7,"jsonName":"monitorInventory","proto3Optional":true},{"name":"network_interfaces","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetworkInterfaces","oneofIndex":8,"jsonName":"networkInterfaces","proto3Optional":true},{"name":"os_patch","number":13,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemPatch","jsonName":"osPatch"},{"name":"os_feature","number":37,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemFeature","jsonName":"osFeature"},{"name":"os_recovery","number":42,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemRecovery","oneofIndex":9,"jsonName":"osRecovery","proto3Optional":true},{"name":"os_service","number":43,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OperatingSystemService","jsonName":"osService"},{"name":"processor","number":15,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Processor","jsonName":"processor"},{"name":"chassis","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Chassis","oneofIndex":10,"jsonName":"chassis","proto3Optional":true},{"name":"memory","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Memory","oneofIndex":11,"jsonName":"memory","proto3Optional":true},{"name":"motherboard","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Motherboard","oneofIndex":12,"jsonName":"motherboard","proto3Optional":true},{"name":"bios","number":46,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Bios","oneofIndex":13,"jsonName":"bios","proto3Optional":true},{"name":"computer_battery","number":45,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerBattery","jsonName":"computerBattery"},{"name":"portable_battery","number":53,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.PortableBattery","jsonName":"portableBattery"},{"name":"optical_drive","number":24,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OpticalDrive","jsonName":"opticalDrive"},{"name":"hard_drive","number":25,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.HardDrive","jsonName":"hardDrive"},{"name":"drive_volume","number":38,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.DriveVolume","jsonName":"driveVolume"},{"name":"network_volume","number":40,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.NetworkVolume","jsonName":"networkVolume"},{"name":"graphics_card","number":27,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.GraphicsCard","jsonName":"graphicsCard"},{"name":"sound_card","number":30,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SoundCard","jsonName":"soundCard"},{"name":"keyboard","number":28,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Keyboard","jsonName":"keyboard"},{"name":"pointing_device","number":29,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.PointingDevice","jsonName":"pointingDevice"},{"name":"computer_bus","number":47,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerBus","jsonName":"computerBus"},{"name":"computer_infrared","number":48,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerInfrared","jsonName":"computerInfrared"},{"name":"parallel_port","number":50,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ParallelPort","jsonName":"parallelPort"},{"name":"serial_port","number":51,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SerialPort","jsonName":"serialPort"},{"name":"pcmcia","number":52,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.PcmciaController","jsonName":"pcmcia"},{"name":"port_connector","number":54,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.PortConnector","jsonName":"portConnector"},{"name":"scsi_controller","number":55,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ScsiController","jsonName":"scsiController"},{"name":"computer_system_product","number":56,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerSystemProduct","oneofIndex":14,"jsonName":"computerSystemProduct","proto3Optional":true},{"name":"tpm","number":57,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.TrustedPlatformModule","jsonName":"tpm"},{"name":"usb_controller","number":58,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerConnectedUsbController","jsonName":"usbController"},{"name":"usb_device_info","number":59,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerConnectedUsbDeviceInfo","jsonName":"usbDeviceInfo"},{"name":"modem","number":60,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerConnectedModem","jsonName":"modem"},{"name":"printer","number":61,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerConnectedPrinter","jsonName":"printer"},{"name":"tape_drive","number":62,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerConnectedTapeDrive","jsonName":"tapeDrive"},{"name":"windows_desktop","number":63,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsDesktop","jsonName":"windowsDesktop"},{"name":"windows_display","number":64,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsDisplay","jsonName":"windowsDisplay"},{"name":"windows_display_controller","number":65,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsDisplayController","jsonName":"windowsDisplayController"},{"name":"windows_network_client","number":66,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsNetworkClient","jsonName":"windowsNetworkClient"},{"name":"windows_ide_controller","number":67,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsIdeController","jsonName":"windowsIdeController"},{"name":"windows_disk_partition","number":68,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.ComputerWindowsDiskPartition","jsonName":"windowsDiskPartition"},{"name":"auto_run_command","number":34,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.AutoRunCommand","jsonName":"autoRunCommand"},{"name":"boot_config","number":35,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.BootConfig","oneofIndex":15,"jsonName":"bootConfig","proto3Optional":true},{"name":"driver","number":36,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.Driver","jsonName":"driver"},{"name":"running_process","number":41,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.RunningProcess","jsonName":"runningProcess"},{"name":"shared_resource","number":44,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SharedResource","jsonName":"sharedResource"},{"name":"internet_explorer","number":72,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.InternetExplorer","oneofIndex":16,"jsonName":"internetExplorer","proto3Optional":true},{"name":"windows_sql_server","number":73,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.WindowsSqlServer","oneofIndex":17,"jsonName":"windowsSqlServer","proto3Optional":true},{"name":"last_user","number":31,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.LastUser","oneofIndex":18,"jsonName":"lastUser","proto3Optional":true},{"name":"user","number":69,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.UserAccount","jsonName":"user"},{"name":"user_group","number":70,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.UserGroup","jsonName":"userGroup"},{"name":"user_in_group","number":71,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.UserInGroup","jsonName":"userInGroup"},{"name":"ot_module","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OtModule","oneofIndex":19,"jsonName":"otModule","proto3Optional":true},{"name":"cloud","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CloudEntity","oneofIndex":20,"jsonName":"cloud","proto3Optional":true}],"oneofDecl":[{"name":"_unique_key"},{"name":"_last_synced_source_agent"},{"name":"_last_synced_source_name"},{"name":"_internet_ip"},{"name":"_hw"},{"name":"_os"},{"name":"_software_inventory"},{"name":"_monitor_inventory"},{"name":"_network_interfaces"},{"name":"_os_recovery"},{"name":"_chassis"},{"name":"_memory"},{"name":"_motherboard"},{"name":"_bios"},{"name":"_computer_system_product"},{"name":"_boot_config"},{"name":"_internet_explorer"},{"name":"_windows_sql_server"},{"name":"_last_user"},{"name":"_ot_module"},{"name":"_cloud"}]},{"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":"OtModule","field":[{"name":"component_type","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"componentType","proto3Optional":true},{"name":"rack","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.OtRack","oneofIndex":1,"jsonName":"rack","proto3Optional":true},{"name":"is_main_module","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isMainModule"},{"name":"is_network_node","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isNetworkNode"},{"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}],"oneofDecl":[{"name":"_component_type"},{"name":"_rack"},{"name":"_part_number"},{"name":"_route_path"}]},{"name":"OtRack","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":"slot_number","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"slotNumber","proto3Optional":true},{"name":"slot_width","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"slotWidth","proto3Optional":true}],"oneofDecl":[{"name":"_name"},{"name":"_type"},{"name":"_slot_number"},{"name":"_slot_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":"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":"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}],"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":"make_name","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":7,"jsonName":"makeName","proto3Optional":true},{"name":"model_name","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":8,"jsonName":"modelName","proto3Optional":true},{"name":"family_name","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":9,"jsonName":"familyName","proto3Optional":true},{"name":"cpe","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":10,"jsonName":"cpe","proto3Optional":true},{"name":"rank","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":11,"jsonName":"rank","proto3Optional":true},{"name":"spec","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.SpecHardwareInfo","oneofIndex":12,"jsonName":"spec","proto3Optional":true},{"name":"catalog_brand","number":50,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogBrand","oneofIndex":13,"jsonName":"catalogBrand","proto3Optional":true},{"name":"catalog_model","number":51,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogModel","oneofIndex":14,"jsonName":"catalogModel","proto3Optional":true},{"name":"catalog_family","number":52,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.CatalogModel","oneofIndex":15,"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":"_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}],"oneofDecl":[{"name":"_architecture"},{"name":"_model"},{"name":"_manufacturer"},{"name":"_serial_number"},{"name":"_system_sku"},{"name":"_uptime"}]},{"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}],"oneofDecl":[{"name":"_kernel_caption"}]},{"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":"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}],"oneofDecl":[{"name":"_caption"},{"name":"_name"},{"name":"_path"},{"name":"_type"}]},{"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":"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":"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_INT32","oneofIndex":2,"jsonName":"colorPlanes","proto3Optional":true},{"name":"device_entries_in_a_color_table","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":3,"jsonName":"deviceEntriesInAColorTable","proto3Optional":true},{"name":"device_specific_pens","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":4,"jsonName":"deviceSpecificPens","proto3Optional":true},{"name":"horizontal_resolution","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","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_INT32","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_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.dp.outbound.v1.MappedValue","jsonName":"protocolSupported"}],"oneofDecl":[{"name":"_caption"},{"name":"_device_id"},{"name":"_manufacturer"}]},{"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,2044,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,76,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,6],"span":[80,0,86,1],"leadingDetachedComments":[" ----- Data Part ------\n"]},{"path":[4,6,1],"span":[80,8,18]},{"path":[4,6,2,0],"span":[81,2,21]},{"path":[4,6,2,0,5],"span":[81,2,8]},{"path":[4,6,2,0,1],"span":[81,9,16]},{"path":[4,6,2,0,3],"span":[81,19,20]},{"path":[4,6,2,1],"span":[82,2,32]},{"path":[4,6,2,1,4],"span":[82,2,10]},{"path":[4,6,2,1,5],"span":[82,11,17]},{"path":[4,6,2,1,1],"span":[82,18,27]},{"path":[4,6,2,1,3],"span":[82,30,31]},{"path":[4,6,2,2],"span":[83,2,34],"trailingComments":" IT, OT, CDK, 3rdParty\n"},{"path":[4,6,2,2,4],"span":[83,2,10]},{"path":[4,6,2,2,5],"span":[83,11,17]},{"path":[4,6,2,2,1],"span":[83,18,29]},{"path":[4,6,2,2,3],"span":[83,32,33]},{"path":[4,6,2,3],"span":[84,2,34],"trailingComments":" \"asset\" \"user\" etc\n"},{"path":[4,6,2,3,4],"span":[84,2,10]},{"path":[4,6,2,3,5],"span":[84,11,17]},{"path":[4,6,2,3,1],"span":[84,18,29]},{"path":[4,6,2,3,3],"span":[84,32,33]},{"path":[4,6,2,4],"span":[85,2,32]},{"path":[4,6,2,4,4],"span":[85,2,10]},{"path":[4,6,2,4,5],"span":[85,11,17]},{"path":[4,6,2,4,1],"span":[85,18,27]},{"path":[4,6,2,4,3],"span":[85,30,31]},{"path":[4,7],"span":[89,0,95,1],"leadingComments":" Main Entity object: variant "},{"path":[4,7,1],"span":[89,8,14]},{"path":[4,7,8,0],"span":[90,2,94,3]},{"path":[4,7,8,0,1],"span":[90,8,14]},{"path":[4,7,2,0],"span":[91,4,20],"trailingComments":" User user = 2;\n Other ...\n"},{"path":[4,7,2,0,6],"span":[91,4,9]},{"path":[4,7,2,0,1],"span":[91,10,15]},{"path":[4,7,2,0,3],"span":[91,18,19]},{"path":[4,8],"span":[99,0,205,1],"leadingComments":" Asset object: IT/OT/CDR "},{"path":[4,8,1],"span":[99,8,13]},{"path":[4,8,2,0],"span":[101,2,20]},{"path":[4,8,2,0,6],"span":[101,2,12]},{"path":[4,8,2,0,1],"span":[101,13,15]},{"path":[4,8,2,0,3],"span":[101,18,19]},{"path":[4,8,2,1],"span":[103,2,44]},{"path":[4,8,2,1,6],"span":[103,2,27]},{"path":[4,8,2,1,1],"span":[103,28,39]},{"path":[4,8,2,1,3],"span":[103,42,43]},{"path":[4,8,2,2],"span":[104,2,43]},{"path":[4,8,2,2,6],"span":[104,2,27]},{"path":[4,8,2,2,1],"span":[104,28,38]},{"path":[4,8,2,2,3],"span":[104,41,42]},{"path":[4,8,2,3],"span":[105,2,45]},{"path":[4,8,2,3,6],"span":[105,2,27]},{"path":[4,8,2,3,1],"span":[105,28,40]},{"path":[4,8,2,3,3],"span":[105,43,44]},{"path":[4,8,2,4],"span":[106,2,46]},{"path":[4,8,2,4,6],"span":[106,2,27]},{"path":[4,8,2,4,1],"span":[106,28,41]},{"path":[4,8,2,4,3],"span":[106,44,45]},{"path":[4,8,2,5],"span":[115,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,5,4],"span":[115,2,10]},{"path":[4,8,2,5,5],"span":[115,11,17]},{"path":[4,8,2,5,1],"span":[115,18,28]},{"path":[4,8,2,5,3],"span":[115,31,33]},{"path":[4,8,2,6],"span":[117,2,37]},{"path":[4,8,2,6,4],"span":[117,2,10]},{"path":[4,8,2,6,6],"span":[117,11,20]},{"path":[4,8,2,6,1],"span":[117,21,31]},{"path":[4,8,2,6,3],"span":[117,34,36]},{"path":[4,8,2,7],"span":[119,2,48],"trailingComments":" last synced source agent name and version\n"},{"path":[4,8,2,7,4],"span":[119,2,10]},{"path":[4,8,2,7,5],"span":[119,11,17]},{"path":[4,8,2,7,1],"span":[119,18,42]},{"path":[4,8,2,7,3],"span":[119,45,47]},{"path":[4,8,2,8],"span":[120,2,47],"trailingComments":" last synced source name\n"},{"path":[4,8,2,8,4],"span":[120,2,10]},{"path":[4,8,2,8,5],"span":[120,11,17]},{"path":[4,8,2,8,1],"span":[120,18,41]},{"path":[4,8,2,8,3],"span":[120,44,46]},{"path":[4,8,2,9],"span":[122,2,24]},{"path":[4,8,2,9,4],"span":[122,2,10]},{"path":[4,8,2,9,6],"span":[122,11,14]},{"path":[4,8,2,9,1],"span":[122,15,18]},{"path":[4,8,2,9,3],"span":[122,21,23]},{"path":[4,8,2,10],"span":[123,2,34],"trailingComments":" e.g. relations to and from OT parent module to sub-modules\n"},{"path":[4,8,2,10,4],"span":[123,2,10]},{"path":[4,8,2,10,6],"span":[123,11,19]},{"path":[4,8,2,10,1],"span":[123,20,28]},{"path":[4,8,2,10,3],"span":[123,31,33]},{"path":[4,8,2,11],"span":[125,2,22]},{"path":[4,8,2,11,6],"span":[125,2,12]},{"path":[4,8,2,11,1],"span":[125,13,17]},{"path":[4,8,2,11,3],"span":[125,20,21]},{"path":[4,8,2,12],"span":[127,2,35],"trailingComments":" Internet IP and related geo-location info, when available\n"},{"path":[4,8,2,12,4],"span":[127,2,10]},{"path":[4,8,2,12,6],"span":[127,11,17]},{"path":[4,8,2,12,1],"span":[127,18,29]},{"path":[4,8,2,12,3],"span":[127,32,34]},{"path":[4,8,2,13],"span":[129,2,31]},{"path":[4,8,2,13,4],"span":[129,2,10]},{"path":[4,8,2,13,6],"span":[129,11,23]},{"path":[4,8,2,13,1],"span":[129,24,26]},{"path":[4,8,2,13,3],"span":[129,29,30]},{"path":[4,8,2,14],"span":[130,2,34]},{"path":[4,8,2,14,4],"span":[130,2,10]},{"path":[4,8,2,14,6],"span":[130,11,26]},{"path":[4,8,2,14,1],"span":[130,27,29]},{"path":[4,8,2,14,3],"span":[130,32,33]},{"path":[4,8,2,15],"span":[132,2,52]},{"path":[4,8,2,15,4],"span":[132,2,10]},{"path":[4,8,2,15,6],"span":[132,11,28]},{"path":[4,8,2,15,1],"span":[132,29,47]},{"path":[4,8,2,15,3],"span":[132,50,51]},{"path":[4,8,2,16],"span":[133,2,44]},{"path":[4,8,2,16,4],"span":[133,2,10]},{"path":[4,8,2,16,6],"span":[133,11,28]},{"path":[4,8,2,16,1],"span":[133,29,38]},{"path":[4,8,2,16,3],"span":[133,41,43]},{"path":[4,8,2,17],"span":[135,2,51]},{"path":[4,8,2,17,4],"span":[135,2,10]},{"path":[4,8,2,17,6],"span":[135,11,27]},{"path":[4,8,2,17,1],"span":[135,28,45]},{"path":[4,8,2,17,3],"span":[135,48,50]},{"path":[4,8,2,18],"span":[137,2,53]},{"path":[4,8,2,18,4],"span":[137,2,10]},{"path":[4,8,2,18,6],"span":[137,11,28]},{"path":[4,8,2,18,1],"span":[137,29,47]},{"path":[4,8,2,18,3],"span":[137,50,52]},{"path":[4,8,2,19],"span":[139,2,46]},{"path":[4,8,2,19,4],"span":[139,2,10]},{"path":[4,8,2,19,6],"span":[139,11,31]},{"path":[4,8,2,19,1],"span":[139,32,40]},{"path":[4,8,2,19,3],"span":[139,43,45]},{"path":[4,8,2,20],"span":[140,2,50]},{"path":[4,8,2,20,4],"span":[140,2,10]},{"path":[4,8,2,20,6],"span":[140,11,33]},{"path":[4,8,2,20,1],"span":[140,34,44]},{"path":[4,8,2,20,3],"span":[140,47,49]},{"path":[4,8,2,21],"span":[141,2,52]},{"path":[4,8,2,21,4],"span":[141,2,10]},{"path":[4,8,2,21,6],"span":[141,11,34]},{"path":[4,8,2,21,1],"span":[141,35,46]},{"path":[4,8,2,21,3],"span":[141,49,51]},{"path":[4,8,2,22],"span":[142,2,50]},{"path":[4,8,2,22,4],"span":[142,2,10]},{"path":[4,8,2,22,6],"span":[142,11,33]},{"path":[4,8,2,22,1],"span":[142,34,44]},{"path":[4,8,2,22,3],"span":[142,47,49]},{"path":[4,8,2,23],"span":[144,2,36]},{"path":[4,8,2,23,4],"span":[144,2,10]},{"path":[4,8,2,23,6],"span":[144,11,20]},{"path":[4,8,2,23,1],"span":[144,21,30]},{"path":[4,8,2,23,3],"span":[144,33,35]},{"path":[4,8,2,24],"span":[145,2,32]},{"path":[4,8,2,24,4],"span":[145,2,10]},{"path":[4,8,2,24,6],"span":[145,11,18]},{"path":[4,8,2,24,1],"span":[145,19,26]},{"path":[4,8,2,24,3],"span":[145,29,31]},{"path":[4,8,2,25],"span":[146,2,30]},{"path":[4,8,2,25,4],"span":[146,2,10]},{"path":[4,8,2,25,6],"span":[146,11,17]},{"path":[4,8,2,25,1],"span":[146,18,24]},{"path":[4,8,2,25,3],"span":[146,27,29]},{"path":[4,8,2,26],"span":[147,2,40]},{"path":[4,8,2,26,4],"span":[147,2,10]},{"path":[4,8,2,26,6],"span":[147,11,22]},{"path":[4,8,2,26,1],"span":[147,23,34]},{"path":[4,8,2,26,3],"span":[147,37,39]},{"path":[4,8,2,27],"span":[148,2,26]},{"path":[4,8,2,27,4],"span":[148,2,10]},{"path":[4,8,2,27,6],"span":[148,11,15]},{"path":[4,8,2,27,1],"span":[148,16,20]},{"path":[4,8,2,27,3],"span":[148,23,25]},{"path":[4,8,2,28],"span":[149,2,49]},{"path":[4,8,2,28,4],"span":[149,2,10]},{"path":[4,8,2,28,6],"span":[149,11,26]},{"path":[4,8,2,28,1],"span":[149,27,43]},{"path":[4,8,2,28,3],"span":[149,46,48]},{"path":[4,8,2,29],"span":[150,2,49]},{"path":[4,8,2,29,4],"span":[150,2,10]},{"path":[4,8,2,29,6],"span":[150,11,26]},{"path":[4,8,2,29,1],"span":[150,27,43]},{"path":[4,8,2,29,3],"span":[150,46,48]},{"path":[4,8,2,30],"span":[151,2,43]},{"path":[4,8,2,30,4],"span":[151,2,10]},{"path":[4,8,2,30,6],"span":[151,11,23]},{"path":[4,8,2,30,1],"span":[151,24,37]},{"path":[4,8,2,30,3],"span":[151,40,42]},{"path":[4,8,2,31],"span":[152,2,37]},{"path":[4,8,2,31,4],"span":[152,2,10]},{"path":[4,8,2,31,6],"span":[152,11,20]},{"path":[4,8,2,31,1],"span":[152,21,31]},{"path":[4,8,2,31,3],"span":[152,34,36]},{"path":[4,8,2,32],"span":[153,2,41]},{"path":[4,8,2,32,4],"span":[153,2,10]},{"path":[4,8,2,32,6],"span":[153,11,22]},{"path":[4,8,2,32,1],"span":[153,23,35]},{"path":[4,8,2,32,3],"span":[153,38,40]},{"path":[4,8,2,33],"span":[154,2,45]},{"path":[4,8,2,33,4],"span":[154,2,10]},{"path":[4,8,2,33,6],"span":[154,11,24]},{"path":[4,8,2,33,1],"span":[154,25,39]},{"path":[4,8,2,33,3],"span":[154,42,44]},{"path":[4,8,2,34],"span":[155,2,43]},{"path":[4,8,2,34,4],"span":[155,2,10]},{"path":[4,8,2,34,6],"span":[155,11,23]},{"path":[4,8,2,34,1],"span":[155,24,37]},{"path":[4,8,2,34,3],"span":[155,40,42]},{"path":[4,8,2,35],"span":[156,2,37]},{"path":[4,8,2,35,4],"span":[156,2,10]},{"path":[4,8,2,35,6],"span":[156,11,20]},{"path":[4,8,2,35,1],"span":[156,21,31]},{"path":[4,8,2,35,3],"span":[156,34,36]},{"path":[4,8,2,36],"span":[157,2,34]},{"path":[4,8,2,36,4],"span":[157,2,10]},{"path":[4,8,2,36,6],"span":[157,11,19]},{"path":[4,8,2,36,1],"span":[157,20,28]},{"path":[4,8,2,36,3],"span":[157,31,33]},{"path":[4,8,2,37],"span":[158,2,47]},{"path":[4,8,2,37,4],"span":[158,2,10]},{"path":[4,8,2,37,6],"span":[158,11,25]},{"path":[4,8,2,37,1],"span":[158,26,41]},{"path":[4,8,2,37,3],"span":[158,44,46]},{"path":[4,8,2,38],"span":[159,2,41]},{"path":[4,8,2,38,4],"span":[159,2,10]},{"path":[4,8,2,38,6],"span":[159,11,22]},{"path":[4,8,2,38,1],"span":[159,23,35]},{"path":[4,8,2,38,3],"span":[159,38,40]},{"path":[4,8,2,39],"span":[160,2,51]},{"path":[4,8,2,39,4],"span":[160,2,10]},{"path":[4,8,2,39,6],"span":[160,11,27]},{"path":[4,8,2,39,1],"span":[160,28,45]},{"path":[4,8,2,39,3],"span":[160,48,50]},{"path":[4,8,2,40],"span":[161,2,43]},{"path":[4,8,2,40,4],"span":[161,2,10]},{"path":[4,8,2,40,6],"span":[161,11,23]},{"path":[4,8,2,40,1],"span":[161,24,37]},{"path":[4,8,2,40,3],"span":[161,40,42]},{"path":[4,8,2,41],"span":[162,2,39]},{"path":[4,8,2,41,4],"span":[162,2,10]},{"path":[4,8,2,41,6],"span":[162,11,21]},{"path":[4,8,2,41,1],"span":[162,22,33]},{"path":[4,8,2,41,3],"span":[162,36,38]},{"path":[4,8,2,42],"span":[163,2,40]},{"path":[4,8,2,42,4],"span":[163,2,10]},{"path":[4,8,2,42,6],"span":[163,11,27]},{"path":[4,8,2,42,1],"span":[163,28,34]},{"path":[4,8,2,42,3],"span":[163,37,39]},{"path":[4,8,2,43],"span":[164,2,45]},{"path":[4,8,2,43,4],"span":[164,2,10]},{"path":[4,8,2,43,6],"span":[164,11,24]},{"path":[4,8,2,43,1],"span":[164,25,39]},{"path":[4,8,2,43,3],"span":[164,42,44]},{"path":[4,8,2,44],"span":[165,2,47]},{"path":[4,8,2,44,4],"span":[165,2,10]},{"path":[4,8,2,44,6],"span":[165,11,25]},{"path":[4,8,2,44,1],"span":[165,26,41]},{"path":[4,8,2,44,3],"span":[165,44,46]},{"path":[4,8,2,45],"span":[166,2,62]},{"path":[4,8,2,45,4],"span":[166,2,10]},{"path":[4,8,2,45,6],"span":[166,11,32]},{"path":[4,8,2,45,1],"span":[166,33,56]},{"path":[4,8,2,45,3],"span":[166,59,61]},{"path":[4,8,2,46],"span":[167,2,42]},{"path":[4,8,2,46,4],"span":[167,2,10]},{"path":[4,8,2,46,6],"span":[167,11,32]},{"path":[4,8,2,46,1],"span":[167,33,36]},{"path":[4,8,2,46,3],"span":[167,39,41]},{"path":[4,8,2,47],"span":[168,2,62]},{"path":[4,8,2,47,4],"span":[168,2,10]},{"path":[4,8,2,47,6],"span":[168,11,41]},{"path":[4,8,2,47,1],"span":[168,42,56]},{"path":[4,8,2,47,3],"span":[168,59,61]},{"path":[4,8,2,48],"span":[169,2,63]},{"path":[4,8,2,48,4],"span":[169,2,10]},{"path":[4,8,2,48,6],"span":[169,11,41]},{"path":[4,8,2,48,1],"span":[169,42,57]},{"path":[4,8,2,48,3],"span":[169,60,62]},{"path":[4,8,2,49],"span":[170,2,45]},{"path":[4,8,2,49,4],"span":[170,2,10]},{"path":[4,8,2,49,6],"span":[170,11,33]},{"path":[4,8,2,49,1],"span":[170,34,39]},{"path":[4,8,2,49,3],"span":[170,42,44]},{"path":[4,8,2,50],"span":[171,2,49]},{"path":[4,8,2,50,4],"span":[171,2,10]},{"path":[4,8,2,50,6],"span":[171,11,35]},{"path":[4,8,2,50,1],"span":[171,36,43]},{"path":[4,8,2,50,3],"span":[171,46,48]},{"path":[4,8,2,51],"span":[172,2,54]},{"path":[4,8,2,51,4],"span":[172,2,10]},{"path":[4,8,2,51,6],"span":[172,11,37]},{"path":[4,8,2,51,1],"span":[172,38,48]},{"path":[4,8,2,51,3],"span":[172,51,53]},{"path":[4,8,2,52],"span":[173,2,55]},{"path":[4,8,2,52,4],"span":[173,2,10]},{"path":[4,8,2,52,6],"span":[173,11,33]},{"path":[4,8,2,52,1],"span":[173,34,49]},{"path":[4,8,2,52,3],"span":[173,52,54]},{"path":[4,8,2,53],"span":[174,2,55]},{"path":[4,8,2,53,4],"span":[174,2,10]},{"path":[4,8,2,53,6],"span":[174,11,33]},{"path":[4,8,2,53,1],"span":[174,34,49]},{"path":[4,8,2,53,3],"span":[174,52,54]},{"path":[4,8,2,54],"span":[175,2,76]},{"path":[4,8,2,54,4],"span":[175,2,10]},{"path":[4,8,2,54,6],"span":[175,11,43]},{"path":[4,8,2,54,1],"span":[175,44,70]},{"path":[4,8,2,54,3],"span":[175,73,75]},{"path":[4,8,2,55],"span":[176,2,68]},{"path":[4,8,2,55,4],"span":[176,2,10]},{"path":[4,8,2,55,6],"span":[176,11,39]},{"path":[4,8,2,55,1],"span":[176,40,62]},{"path":[4,8,2,55,3],"span":[176,65,67]},{"path":[4,8,2,56],"span":[177,2,68]},{"path":[4,8,2,56,4],"span":[177,2,10]},{"path":[4,8,2,56,6],"span":[177,11,39]},{"path":[4,8,2,56,1],"span":[177,40,62]},{"path":[4,8,2,56,3],"span":[177,65,67]},{"path":[4,8,2,57],"span":[178,2,68]},{"path":[4,8,2,57,4],"span":[178,2,10]},{"path":[4,8,2,57,6],"span":[178,11,39]},{"path":[4,8,2,57,1],"span":[178,40,62]},{"path":[4,8,2,57,3],"span":[178,65,67]},{"path":[4,8,2,58],"span":[180,2,48]},{"path":[4,8,2,58,4],"span":[180,2,10]},{"path":[4,8,2,58,6],"span":[180,11,25]},{"path":[4,8,2,58,1],"span":[180,26,42]},{"path":[4,8,2,58,3],"span":[180,45,47]},{"path":[4,8,2,59],"span":[181,2,39]},{"path":[4,8,2,59,4],"span":[181,2,10]},{"path":[4,8,2,59,6],"span":[181,11,21]},{"path":[4,8,2,59,1],"span":[181,22,33]},{"path":[4,8,2,59,3],"span":[181,36,38]},{"path":[4,8,2,60],"span":[182,2,30]},{"path":[4,8,2,60,4],"span":[182,2,10]},{"path":[4,8,2,60,6],"span":[182,11,17]},{"path":[4,8,2,60,1],"span":[182,18,24]},{"path":[4,8,2,60,3],"span":[182,27,29]},{"path":[4,8,2,61],"span":[183,2,47]},{"path":[4,8,2,61,4],"span":[183,2,10]},{"path":[4,8,2,61,6],"span":[183,11,25]},{"path":[4,8,2,61,1],"span":[183,26,41]},{"path":[4,8,2,61,3],"span":[183,44,46]},{"path":[4,8,2,62],"span":[184,2,47]},{"path":[4,8,2,62,4],"span":[184,2,10]},{"path":[4,8,2,62,6],"span":[184,11,25]},{"path":[4,8,2,62,1],"span":[184,26,41]},{"path":[4,8,2,62,3],"span":[184,44,46]},{"path":[4,8,2,63],"span":[185,2,51],"trailingComments":" specific to IE on Windows\n"},{"path":[4,8,2,63,4],"span":[185,2,10]},{"path":[4,8,2,63,6],"span":[185,11,27]},{"path":[4,8,2,63,1],"span":[185,28,45]},{"path":[4,8,2,63,3],"span":[185,48,50]},{"path":[4,8,2,64],"span":[186,2,52],"trailingComments":" specific to SQL server on Windows\n"},{"path":[4,8,2,64,4],"span":[186,2,10]},{"path":[4,8,2,64,6],"span":[186,11,27]},{"path":[4,8,2,64,1],"span":[186,28,46]},{"path":[4,8,2,64,3],"span":[186,49,51]},{"path":[4,8,2,65],"span":[188,2,35],"trailingComments":" i.e. computer current user\n"},{"path":[4,8,2,65,4],"span":[188,2,10]},{"path":[4,8,2,65,6],"span":[188,11,19]},{"path":[4,8,2,65,1],"span":[188,20,29]},{"path":[4,8,2,65,3],"span":[188,32,34]},{"path":[4,8,2,66],"span":[189,2,33]},{"path":[4,8,2,66,4],"span":[189,2,10]},{"path":[4,8,2,66,6],"span":[189,11,22]},{"path":[4,8,2,66,1],"span":[189,23,27]},{"path":[4,8,2,66,3],"span":[189,30,32]},{"path":[4,8,2,67],"span":[190,2,37]},{"path":[4,8,2,67,4],"span":[190,2,10]},{"path":[4,8,2,67,6],"span":[190,11,20]},{"path":[4,8,2,67,1],"span":[190,21,31]},{"path":[4,8,2,67,3],"span":[190,34,36]},{"path":[4,8,2,68],"span":[191,2,42]},{"path":[4,8,2,68,4],"span":[191,2,10]},{"path":[4,8,2,68,6],"span":[191,11,22]},{"path":[4,8,2,68,1],"span":[191,23,36]},{"path":[4,8,2,68,3],"span":[191,39,41]},{"path":[4,8,2,69],"span":[194,2,35],"trailingComments":" OT specific module info when asset type is 'OT'\n"},{"path":[4,8,2,69,4],"span":[194,2,10]},{"path":[4,8,2,69,6],"span":[194,11,19]},{"path":[4,8,2,69,1],"span":[194,20,29]},{"path":[4,8,2,69,3],"span":[194,32,34]},{"path":[4,8,2,70],"span":[196,2,34]},{"path":[4,8,2,70,4],"span":[196,2,10]},{"path":[4,8,2,70,6],"span":[196,11,22]},{"path":[4,8,2,70,1],"span":[196,23,28]},{"path":[4,8,2,70,3],"span":[196,31,33]},{"path":[4,9],"span":[223,0,226,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,9,1],"span":[223,8,11]},{"path":[4,9,2,0],"span":[224,2,17]},{"path":[4,9,2,0,5],"span":[224,2,8]},{"path":[4,9,2,0,1],"span":[224,9,12]},{"path":[4,9,2,0,3],"span":[224,15,16]},{"path":[4,9,2,1],"span":[225,2,28]},{"path":[4,9,2,1,4],"span":[225,2,10]},{"path":[4,9,2,1,5],"span":[225,11,17]},{"path":[4,9,2,1,1],"span":[225,18,23]},{"path":[4,9,2,1,3],"span":[225,26,27]},{"path":[4,10],"span":[233,0,240,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,10,1],"span":[233,8,16]},{"path":[4,10,2,0],"span":[234,2,31],"trailingComments":" if missing, 'self' assumed\n"},{"path":[4,10,2,0,4],"span":[234,2,10]},{"path":[4,10,2,0,6],"span":[234,11,21]},{"path":[4,10,2,0,1],"span":[234,22,26]},{"path":[4,10,2,0,3],"span":[234,29,30]},{"path":[4,10,2,1],"span":[235,2,29],"trailingComments":" if missing, 'self' assumed\n"},{"path":[4,10,2,1,4],"span":[235,2,10]},{"path":[4,10,2,1,6],"span":[235,11,21]},{"path":[4,10,2,1,1],"span":[235,22,24]},{"path":[4,10,2,1,3],"span":[235,27,28]},{"path":[4,10,2,2],"span":[236,2,38]},{"path":[4,10,2,2,6],"span":[236,2,27]},{"path":[4,10,2,2,1],"span":[236,28,33]},{"path":[4,10,2,2,3],"span":[236,36,37]},{"path":[4,10,2,3],"span":[237,2,45],"trailingComments":" if end is marked, it's over\n"},{"path":[4,10,2,3,4],"span":[237,2,10]},{"path":[4,10,2,3,6],"span":[237,11,36]},{"path":[4,10,2,3,1],"span":[237,37,40]},{"path":[4,10,2,3,3],"span":[237,43,44]},{"path":[4,10,2,4],"span":[238,2,18]},{"path":[4,10,2,4,5],"span":[238,2,8]},{"path":[4,10,2,4,1],"span":[238,9,13]},{"path":[4,10,2,4,3],"span":[238,16,17]},{"path":[4,10,2,5],"span":[239,2,23]},{"path":[4,10,2,5,4],"span":[239,2,10]},{"path":[4,10,2,5,6],"span":[239,11,14]},{"path":[4,10,2,5,1],"span":[239,15,18]},{"path":[4,10,2,5,3],"span":[239,21,22]},{"path":[4,11],"span":[250,0,252,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,11,1],"span":[250,8,19]},{"path":[4,11,2,0],"span":[251,2,31]},{"path":[4,11,2,0,6],"span":[251,2,21]},{"path":[4,11,2,0,1],"span":[251,22,26]},{"path":[4,11,2,0,3],"span":[251,29,30]},{"path":[4,12],"span":[262,0,274,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,12,1],"span":[262,8,16]},{"path":[4,12,2,0],"span":[263,2,37]},{"path":[4,12,2,0,4],"span":[263,2,10]},{"path":[4,12,2,0,5],"span":[263,11,17]},{"path":[4,12,2,0,1],"span":[263,18,32]},{"path":[4,12,2,0,3],"span":[263,35,36]},{"path":[4,12,2,1],"span":[264,2,27]},{"path":[4,12,2,1,4],"span":[264,2,10]},{"path":[4,12,2,1,6],"span":[264,11,17]},{"path":[4,12,2,1,1],"span":[264,18,22]},{"path":[4,12,2,1,3],"span":[264,25,26]},{"path":[4,12,2,2],"span":[266,2,26]},{"path":[4,12,2,2,5],"span":[266,2,6]},{"path":[4,12,2,2,1],"span":[266,7,21]},{"path":[4,12,2,2,3],"span":[266,24,25]},{"path":[4,12,2,3],"span":[267,2,27]},{"path":[4,12,2,3,5],"span":[267,2,6]},{"path":[4,12,2,3,1],"span":[267,7,22]},{"path":[4,12,2,3,3],"span":[267,25,26]},{"path":[4,12,2,4],"span":[269,2,34]},{"path":[4,12,2,4,4],"span":[269,2,10]},{"path":[4,12,2,4,5],"span":[269,11,17]},{"path":[4,12,2,4,1],"span":[269,18,29]},{"path":[4,12,2,4,3],"span":[269,32,33]},{"path":[4,12,2,5],"span":[270,2,40]},{"path":[4,12,2,5,4],"span":[270,2,10]},{"path":[4,12,2,5,6],"span":[270,11,26]},{"path":[4,12,2,5,1],"span":[270,27,35]},{"path":[4,12,2,5,3],"span":[270,38,39]},{"path":[4,12,2,6],"span":[272,2,33]},{"path":[4,12,2,6,4],"span":[272,2,10]},{"path":[4,12,2,6,5],"span":[272,11,17]},{"path":[4,12,2,6,1],"span":[272,18,28]},{"path":[4,12,2,6,3],"span":[272,31,32]},{"path":[4,13],"span":[277,0,284,1],"leadingComments":" Information about the OT rack the module is plugged into\n"},{"path":[4,13,1],"span":[277,8,14]},{"path":[4,13,2,0],"span":[278,2,19]},{"path":[4,13,2,0,5],"span":[278,2,7]},{"path":[4,13,2,0,1],"span":[278,8,14]},{"path":[4,13,2,0,3],"span":[278,17,18]},{"path":[4,13,2,1],"span":[279,2,27]},{"path":[4,13,2,1,4],"span":[279,2,10]},{"path":[4,13,2,1,5],"span":[279,11,17]},{"path":[4,13,2,1,1],"span":[279,18,22]},{"path":[4,13,2,1,3],"span":[279,25,26]},{"path":[4,13,2,2],"span":[280,2,27]},{"path":[4,13,2,2,4],"span":[280,2,10]},{"path":[4,13,2,2,5],"span":[280,11,17]},{"path":[4,13,2,2,1],"span":[280,18,22]},{"path":[4,13,2,2,3],"span":[280,25,26]},{"path":[4,13,2,3],"span":[281,2,17]},{"path":[4,13,2,3,5],"span":[281,2,7]},{"path":[4,13,2,3,1],"span":[281,8,12]},{"path":[4,13,2,3,3],"span":[281,15,16]},{"path":[4,13,2,4],"span":[282,2,33],"trailingComments":" the specific slot number for this module in the rack\n"},{"path":[4,13,2,4,4],"span":[282,2,10]},{"path":[4,13,2,4,5],"span":[282,11,16]},{"path":[4,13,2,4,1],"span":[282,17,28]},{"path":[4,13,2,4,3],"span":[282,31,32]},{"path":[4,13,2,5],"span":[283,2,32],"trailingComments":" the specific slot width for this module in the rack\n"},{"path":[4,13,2,5,4],"span":[283,2,10]},{"path":[4,13,2,5,5],"span":[283,11,16]},{"path":[4,13,2,5,1],"span":[283,17,27]},{"path":[4,13,2,5,3],"span":[283,30,31]},{"path":[4,14],"span":[286,0,289,1]},{"path":[4,14,1],"span":[286,8,23]},{"path":[4,14,2,0],"span":[287,2,17]},{"path":[4,14,2,0,5],"span":[287,2,8]},{"path":[4,14,2,0,1],"span":[287,9,12]},{"path":[4,14,2,0,3],"span":[287,15,16]},{"path":[4,14,2,1],"span":[288,2,19]},{"path":[4,14,2,1,5],"span":[288,2,8]},{"path":[4,14,2,1,1],"span":[288,9,14]},{"path":[4,14,2,1,3],"span":[288,17,18]},{"path":[4,15],"span":[295,0,304,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,15,1],"span":[295,8,17]},{"path":[4,15,2,0],"span":[297,2,21],"leadingComments":" Lansweeper Asset Type. Full list available here: /lansweeperapis/packages/model/masterData/content/masterData.json\n"},{"path":[4,15,2,0,5],"span":[297,2,8]},{"path":[4,15,2,0,1],"span":[297,9,16]},{"path":[4,15,2,0,3],"span":[297,19,20]},{"path":[4,15,2,1],"span":[299,2,18],"leadingComments":" Lansweeper type ID\n"},{"path":[4,15,2,1,5],"span":[299,2,7]},{"path":[4,15,2,1,1],"span":[299,8,13]},{"path":[4,15,2,1,3],"span":[299,16,17]},{"path":[4,15,2,2],"span":[301,2,32],"leadingComments":" Fing Type\n"},{"path":[4,15,2,2,4],"span":[301,2,10]},{"path":[4,15,2,2,5],"span":[301,11,17]},{"path":[4,15,2,2,1],"span":[301,18,27]},{"path":[4,15,2,2,3],"span":[301,30,31]},{"path":[4,15,2,3],"span":[303,2,31],"trailingComments":" sub type for OT and CDK\n"},{"path":[4,15,2,3,4],"span":[303,2,10]},{"path":[4,15,2,3,5],"span":[303,11,17]},{"path":[4,15,2,3,1],"span":[303,18,26]},{"path":[4,15,2,3,3],"span":[303,29,30]},{"path":[4,16],"span":[309,0,315,1],"leadingComments":"\n Scan errors.\n"},{"path":[4,16,1],"span":[309,8,17]},{"path":[4,16,2,0],"span":[310,2,21],"trailingComments":" name of section\n"},{"path":[4,16,2,0,5],"span":[310,2,8]},{"path":[4,16,2,0,1],"span":[310,9,16]},{"path":[4,16,2,0,3],"span":[310,19,20]},{"path":[4,16,2,1],"span":[311,2,19],"trailingComments":" error descr\n"},{"path":[4,16,2,1,5],"span":[311,2,8]},{"path":[4,16,2,1,1],"span":[311,9,14]},{"path":[4,16,2,1,3],"span":[311,17,18]},{"path":[4,16,2,2],"span":[312,2,29],"trailingComments":" e.g. \"WMI\"\n"},{"path":[4,16,2,2,4],"span":[312,2,10]},{"path":[4,16,2,2,5],"span":[312,11,17]},{"path":[4,16,2,2,1],"span":[312,18,24]},{"path":[4,16,2,2,3],"span":[312,27,28]},{"path":[4,16,2,3],"span":[313,2,51]},{"path":[4,16,2,3,4],"span":[313,2,10]},{"path":[4,16,2,3,6],"span":[313,11,36]},{"path":[4,16,2,3,1],"span":[313,37,46]},{"path":[4,16,2,3,3],"span":[313,49,50]},{"path":[4,16,2,4],"span":[314,2,30]},{"path":[4,16,2,4,4],"span":[314,2,10]},{"path":[4,16,2,4,5],"span":[314,11,16]},{"path":[4,16,2,4,1],"span":[314,17,25]},{"path":[4,16,2,4,3],"span":[314,28,29]},{"path":[4,17],"span":[320,0,330,1],"leadingComments":"\n Core Fields for all Assets.\n"},{"path":[4,17,1],"span":[320,8,18]},{"path":[4,17,2,0],"span":[321,2,21]},{"path":[4,17,2,0,6],"span":[321,2,11]},{"path":[4,17,2,0,1],"span":[321,12,16]},{"path":[4,17,2,0,3],"span":[321,19,20]},{"path":[4,17,2,1],"span":[322,2,18]},{"path":[4,17,2,1,5],"span":[322,2,8]},{"path":[4,17,2,1,1],"span":[322,9,13]},{"path":[4,17,2,1,3],"span":[322,16,17]},{"path":[4,17,2,2],"span":[323,2,29]},{"path":[4,17,2,2,4],"span":[323,2,10]},{"path":[4,17,2,2,5],"span":[323,11,17]},{"path":[4,17,2,2,1],"span":[323,18,24]},{"path":[4,17,2,2,3],"span":[323,27,28]},{"path":[4,17,2,3],"span":[324,2,33]},{"path":[4,17,2,3,4],"span":[324,2,10]},{"path":[4,17,2,3,5],"span":[324,11,17]},{"path":[4,17,2,3,1],"span":[324,18,28]},{"path":[4,17,2,3,3],"span":[324,31,32]},{"path":[4,17,2,4],"span":[325,2,29]},{"path":[4,17,2,4,4],"span":[325,2,10]},{"path":[4,17,2,4,5],"span":[325,11,17]},{"path":[4,17,2,4,1],"span":[325,18,24]},{"path":[4,17,2,4,3],"span":[325,27,28]},{"path":[4,17,2,5],"span":[326,2,26]},{"path":[4,17,2,5,4],"span":[326,2,10]},{"path":[4,17,2,5,5],"span":[326,11,17]},{"path":[4,17,2,5,1],"span":[326,18,21]},{"path":[4,17,2,5,3],"span":[326,24,25]},{"path":[4,17,2,6],"span":[327,2,33]},{"path":[4,17,2,6,4],"span":[327,2,10]},{"path":[4,17,2,6,5],"span":[327,11,17]},{"path":[4,17,2,6,1],"span":[327,18,28]},{"path":[4,17,2,6,3],"span":[327,31,32]},{"path":[4,17,2,7],"span":[328,2,32]},{"path":[4,17,2,7,4],"span":[328,2,10]},{"path":[4,17,2,7,5],"span":[328,11,17]},{"path":[4,17,2,7,1],"span":[328,18,27]},{"path":[4,17,2,7,3],"span":[328,30,31]},{"path":[4,17,2,8],"span":[329,2,27]},{"path":[4,17,2,8,4],"span":[329,2,10]},{"path":[4,17,2,8,5],"span":[329,11,17]},{"path":[4,17,2,8,1],"span":[329,18,22]},{"path":[4,17,2,8,3],"span":[329,25,26]},{"path":[4,18],"span":[332,0,337,1]},{"path":[4,18,1],"span":[332,8,16]},{"path":[4,18,2,0],"span":[333,4,25]},{"path":[4,18,2,0,5],"span":[333,4,10]},{"path":[4,18,2,0,1],"span":[333,11,20]},{"path":[4,18,2,0,3],"span":[333,23,24]},{"path":[4,18,2,1],"span":[334,4,34]},{"path":[4,18,2,1,4],"span":[334,4,12]},{"path":[4,18,2,1,5],"span":[334,13,19]},{"path":[4,18,2,1,1],"span":[334,20,29]},{"path":[4,18,2,1,3],"span":[334,32,33]},{"path":[4,18,2,2],"span":[335,4,28]},{"path":[4,18,2,2,4],"span":[335,4,12]},{"path":[4,18,2,2,5],"span":[335,13,19]},{"path":[4,18,2,2,1],"span":[335,20,23]},{"path":[4,18,2,2,3],"span":[335,26,27]},{"path":[4,18,2,3],"span":[336,4,28]},{"path":[4,18,2,3,4],"span":[336,4,12]},{"path":[4,18,2,3,5],"span":[336,13,19]},{"path":[4,18,2,3,1],"span":[336,20,23]},{"path":[4,18,2,3,3],"span":[336,26,27]},{"path":[4,19],"span":[342,0,369,1],"leadingComments":"\n User account: from Windows.WindowsUser and Unix.Users.\n"},{"path":[4,19,1],"span":[342,8,19]},{"path":[4,19,2,0],"span":[343,2,27],"trailingComments":" unix:user_name\n"},{"path":[4,19,2,0,4],"span":[343,2,10]},{"path":[4,19,2,0,5],"span":[343,11,17]},{"path":[4,19,2,0,1],"span":[343,18,22]},{"path":[4,19,2,0,3],"span":[343,25,26]},{"path":[4,19,2,1],"span":[344,2,29]},{"path":[4,19,2,1,4],"span":[344,2,10]},{"path":[4,19,2,1,5],"span":[344,11,17]},{"path":[4,19,2,1,1],"span":[344,18,24]},{"path":[4,19,2,1,3],"span":[344,27,28]},{"path":[4,19,2,2],"span":[345,2,30]},{"path":[4,19,2,2,4],"span":[345,2,10]},{"path":[4,19,2,2,5],"span":[345,11,17]},{"path":[4,19,2,2,1],"span":[345,18,25]},{"path":[4,19,2,2,3],"span":[345,28,29]},{"path":[4,19,2,3],"span":[346,2,34],"trailingComments":" unix:comment\n"},{"path":[4,19,2,3,4],"span":[346,2,10]},{"path":[4,19,2,3,5],"span":[346,11,17]},{"path":[4,19,2,3,1],"span":[346,18,29]},{"path":[4,19,2,3,3],"span":[346,32,33]},{"path":[4,19,2,4],"span":[347,2,32]},{"path":[4,19,2,4,4],"span":[347,2,10]},{"path":[4,19,2,4,5],"span":[347,11,17]},{"path":[4,19,2,4,1],"span":[347,18,27]},{"path":[4,19,2,4,3],"span":[347,30,31]},{"path":[4,19,2,5],"span":[349,2,40],"trailingComments":" unix:type\n"},{"path":[4,19,2,5,4],"span":[349,2,10]},{"path":[4,19,2,5,6],"span":[349,11,22]},{"path":[4,19,2,5,1],"span":[349,23,35]},{"path":[4,19,2,5,3],"span":[349,38,39]},{"path":[4,19,2,6],"span":[351,2,26]},{"path":[4,19,2,6,4],"span":[351,2,10]},{"path":[4,19,2,6,5],"span":[351,11,17]},{"path":[4,19,2,6,1],"span":[351,18,21]},{"path":[4,19,2,6,3],"span":[351,24,25]},{"path":[4,19,2,7],"span":[352,2,36]},{"path":[4,19,2,7,4],"span":[352,2,10]},{"path":[4,19,2,7,6],"span":[352,11,22]},{"path":[4,19,2,7,1],"span":[352,23,31]},{"path":[4,19,2,7,3],"span":[352,34,35]},{"path":[4,19,2,8],"span":[354,2,34]},{"path":[4,19,2,8,4],"span":[354,2,10]},{"path":[4,19,2,8,5],"span":[354,11,15]},{"path":[4,19,2,8,1],"span":[354,16,29]},{"path":[4,19,2,8,3],"span":[354,32,33]},{"path":[4,19,2,9],"span":[355,2,30]},{"path":[4,19,2,9,4],"span":[355,2,10]},{"path":[4,19,2,9,5],"span":[355,11,15]},{"path":[4,19,2,9,1],"span":[355,16,24]},{"path":[4,19,2,9,3],"span":[355,27,29]},{"path":[4,19,2,10],"span":[356,2,29]},{"path":[4,19,2,10,4],"span":[356,2,10]},{"path":[4,19,2,10,5],"span":[356,11,15]},{"path":[4,19,2,10,1],"span":[356,16,23]},{"path":[4,19,2,10,3],"span":[356,26,28]},{"path":[4,19,2,11],"span":[357,2,41]},{"path":[4,19,2,11,4],"span":[357,2,10]},{"path":[4,19,2,11,5],"span":[357,11,15]},{"path":[4,19,2,11,1],"span":[357,16,35]},{"path":[4,19,2,11,3],"span":[357,38,40]},{"path":[4,19,2,12],"span":[358,2,38]},{"path":[4,19,2,12,4],"span":[358,2,10]},{"path":[4,19,2,12,5],"span":[358,11,15]},{"path":[4,19,2,12,1],"span":[358,16,32]},{"path":[4,19,2,12,3],"span":[358,35,37]},{"path":[4,19,2,13],"span":[359,2,39]},{"path":[4,19,2,13,4],"span":[359,2,10]},{"path":[4,19,2,13,5],"span":[359,11,15]},{"path":[4,19,2,13,1],"span":[359,16,33]},{"path":[4,19,2,13,3],"span":[359,36,38]},{"path":[4,19,2,14],"span":[361,2,30]},{"path":[4,19,2,14,4],"span":[361,2,10]},{"path":[4,19,2,14,5],"span":[361,11,17]},{"path":[4,19,2,14,1],"span":[361,18,24]},{"path":[4,19,2,14,3],"span":[361,27,29]},{"path":[4,19,2,15],"span":[364,2,30],"leadingComments":" unix specific\n"},{"path":[4,19,2,15,4],"span":[364,2,10]},{"path":[4,19,2,15,5],"span":[364,11,16]},{"path":[4,19,2,15,1],"span":[364,17,24]},{"path":[4,19,2,15,3],"span":[364,27,29]},{"path":[4,19,2,16],"span":[365,2,31]},{"path":[4,19,2,16,4],"span":[365,2,10]},{"path":[4,19,2,16,5],"span":[365,11,16]},{"path":[4,19,2,16,1],"span":[365,17,25]},{"path":[4,19,2,16,3],"span":[365,28,30]},{"path":[4,19,2,17],"span":[367,2,38]},{"path":[4,19,2,17,4],"span":[367,2,10]},{"path":[4,19,2,17,5],"span":[367,11,17]},{"path":[4,19,2,17,1],"span":[367,18,32]},{"path":[4,19,2,17,3],"span":[367,35,37]},{"path":[4,19,2,18],"span":[368,2,35]},{"path":[4,19,2,18,4],"span":[368,2,10]},{"path":[4,19,2,18,5],"span":[368,11,17]},{"path":[4,19,2,18,1],"span":[368,18,29]},{"path":[4,19,2,18,3],"span":[368,32,34]},{"path":[4,20],"span":[375,0,387,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,20,1],"span":[375,8,17]},{"path":[4,20,2,0],"span":[376,2,27]},{"path":[4,20,2,0,4],"span":[376,2,10]},{"path":[4,20,2,0,5],"span":[376,11,17]},{"path":[4,20,2,0,1],"span":[376,18,22]},{"path":[4,20,2,0,3],"span":[376,25,26]},{"path":[4,20,2,1],"span":[377,2,30]},{"path":[4,20,2,1,4],"span":[377,2,10]},{"path":[4,20,2,1,5],"span":[377,11,17]},{"path":[4,20,2,1,1],"span":[377,18,25]},{"path":[4,20,2,1,3],"span":[377,28,29]},{"path":[4,20,2,2],"span":[378,2,34]},{"path":[4,20,2,2,4],"span":[378,2,10]},{"path":[4,20,2,2,5],"span":[378,11,17]},{"path":[4,20,2,2,1],"span":[378,18,29]},{"path":[4,20,2,2,3],"span":[378,32,33]},{"path":[4,20,2,3],"span":[379,2,29]},{"path":[4,20,2,3,4],"span":[379,2,10]},{"path":[4,20,2,3,5],"span":[379,11,17]},{"path":[4,20,2,3,1],"span":[379,18,24]},{"path":[4,20,2,3,3],"span":[379,27,28]},{"path":[4,20,2,4],"span":[381,2,26]},{"path":[4,20,2,4,4],"span":[381,2,10]},{"path":[4,20,2,4,5],"span":[381,11,17]},{"path":[4,20,2,4,1],"span":[381,18,21]},{"path":[4,20,2,4,3],"span":[381,24,25]},{"path":[4,20,2,5],"span":[382,2,34]},{"path":[4,20,2,5,4],"span":[382,2,10]},{"path":[4,20,2,5,5],"span":[382,11,15]},{"path":[4,20,2,5,1],"span":[382,16,29]},{"path":[4,20,2,5,3],"span":[382,32,33]},{"path":[4,20,2,6],"span":[385,2,30],"leadingComments":" unix specific\n"},{"path":[4,20,2,6,4],"span":[385,2,10]},{"path":[4,20,2,6,5],"span":[385,11,16]},{"path":[4,20,2,6,1],"span":[385,17,25]},{"path":[4,20,2,6,3],"span":[385,28,29]},{"path":[4,20,2,7],"span":[386,2,27]},{"path":[4,20,2,7,4],"span":[386,2,10]},{"path":[4,20,2,7,5],"span":[386,11,17]},{"path":[4,20,2,7,1],"span":[386,18,22]},{"path":[4,20,2,7,3],"span":[386,25,26]},{"path":[4,21],"span":[394,0,401,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,21,1],"span":[394,8,19]},{"path":[4,21,2,0],"span":[395,2,33]},{"path":[4,21,2,0,4],"span":[395,2,10]},{"path":[4,21,2,0,5],"span":[395,11,17]},{"path":[4,21,2,0,1],"span":[395,18,28]},{"path":[4,21,2,0,3],"span":[395,31,32]},{"path":[4,21,2,1],"span":[396,2,32]},{"path":[4,21,2,1,4],"span":[396,2,10]},{"path":[4,21,2,1,5],"span":[396,11,17]},{"path":[4,21,2,1,1],"span":[396,18,27]},{"path":[4,21,2,1,3],"span":[396,30,31]},{"path":[4,21,2,2],"span":[397,2,39]},{"path":[4,21,2,2,4],"span":[397,2,10]},{"path":[4,21,2,2,5],"span":[397,11,17]},{"path":[4,21,2,2,1],"span":[397,18,34]},{"path":[4,21,2,2,3],"span":[397,37,38]},{"path":[4,21,2,3],"span":[398,2,35]},{"path":[4,21,2,3,4],"span":[398,2,10]},{"path":[4,21,2,3,5],"span":[398,11,17]},{"path":[4,21,2,3,1],"span":[398,18,30]},{"path":[4,21,2,3,3],"span":[398,33,34]},{"path":[4,21,2,4],"span":[400,2,35]},{"path":[4,21,2,4,4],"span":[400,2,10]},{"path":[4,21,2,4,5],"span":[400,11,15]},{"path":[4,21,2,4,1],"span":[400,16,30]},{"path":[4,21,2,4,3],"span":[400,33,34]},{"path":[4,22],"span":[408,0,445,1],"leadingComments":"\n IE on Windows. Very specific.\n From sections: WindowsActiveX, WindowsInternetExplorerBarInfo,\n WindowsInternetExplorerBrowserObjectInfo, WindowsInternetExplorerExtensionInfo.\n"},{"path":[4,22,1],"span":[408,8,24]},{"path":[4,22,3,0],"span":[410,4,415,5],"leadingComments":" from WindowsActiveX\n"},{"path":[4,22,3,0,1],"span":[410,12,19]},{"path":[4,22,3,0,2,0],"span":[411,6,34]},{"path":[4,22,3,0,2,0,4],"span":[411,6,14]},{"path":[4,22,3,0,2,0,5],"span":[411,15,21]},{"path":[4,22,3,0,2,0,1],"span":[411,22,29]},{"path":[4,22,3,0,2,0,3],"span":[411,32,33]},{"path":[4,22,3,0,2,1],"span":[412,6,36]},{"path":[4,22,3,0,2,1,4],"span":[412,6,14]},{"path":[4,22,3,0,2,1,5],"span":[412,15,21]},{"path":[4,22,3,0,2,1,1],"span":[412,22,31]},{"path":[4,22,3,0,2,1,3],"span":[412,34,35]},{"path":[4,22,3,0,2,2],"span":[413,6,31]},{"path":[4,22,3,0,2,2,4],"span":[413,6,14]},{"path":[4,22,3,0,2,2,5],"span":[413,15,21]},{"path":[4,22,3,0,2,2,1],"span":[413,22,26]},{"path":[4,22,3,0,2,2,3],"span":[413,29,30]},{"path":[4,22,3,0,2,3],"span":[414,6,30]},{"path":[4,22,3,0,2,3,4],"span":[414,6,14]},{"path":[4,22,3,0,2,3,5],"span":[414,15,21]},{"path":[4,22,3,0,2,3,1],"span":[414,22,25]},{"path":[4,22,3,0,2,3,3],"span":[414,28,29]},{"path":[4,22,3,1],"span":[418,4,428,5],"leadingComments":" InternetExplorerExtensionInfo\n"},{"path":[4,22,3,1,1],"span":[418,12,21]},{"path":[4,22,3,1,2,0],"span":[419,6,34]},{"path":[4,22,3,1,2,0,4],"span":[419,6,14]},{"path":[4,22,3,1,2,0,5],"span":[419,15,21]},{"path":[4,22,3,1,2,0,1],"span":[419,22,29]},{"path":[4,22,3,1,2,0,3],"span":[419,32,33]},{"path":[4,22,3,1,2,1],"span":[420,6,38]},{"path":[4,22,3,1,2,1,4],"span":[420,6,14]},{"path":[4,22,3,1,2,1,5],"span":[420,15,21]},{"path":[4,22,3,1,2,1,1],"span":[420,22,33]},{"path":[4,22,3,1,2,1,3],"span":[420,36,37]},{"path":[4,22,3,1,2,2],"span":[421,6,33]},{"path":[4,22,3,1,2,2,4],"span":[421,6,14]},{"path":[4,22,3,1,2,2,5],"span":[421,15,21]},{"path":[4,22,3,1,2,2,1],"span":[421,22,28]},{"path":[4,22,3,1,2,2,3],"span":[421,31,32]},{"path":[4,22,3,1,2,3],"span":[422,6,42]},{"path":[4,22,3,1,2,3,4],"span":[422,6,14]},{"path":[4,22,3,1,2,3,5],"span":[422,15,21]},{"path":[4,22,3,1,2,3,1],"span":[422,22,37]},{"path":[4,22,3,1,2,3,3],"span":[422,40,41]},{"path":[4,22,3,1,2,4],"span":[423,6,31]},{"path":[4,22,3,1,2,4,4],"span":[423,6,14]},{"path":[4,22,3,1,2,4,5],"span":[423,15,21]},{"path":[4,22,3,1,2,4,1],"span":[423,22,26]},{"path":[4,22,3,1,2,4,3],"span":[423,29,30]},{"path":[4,22,3,1,2,5],"span":[424,6,35]},{"path":[4,22,3,1,2,5,4],"span":[424,6,14]},{"path":[4,22,3,1,2,5,5],"span":[424,15,21]},{"path":[4,22,3,1,2,5,1],"span":[424,22,30]},{"path":[4,22,3,1,2,5,3],"span":[424,33,34]},{"path":[4,22,3,1,2,6],"span":[425,6,31]},{"path":[4,22,3,1,2,6,4],"span":[425,6,14]},{"path":[4,22,3,1,2,6,5],"span":[425,15,21]},{"path":[4,22,3,1,2,6,1],"span":[425,22,26]},{"path":[4,22,3,1,2,6,3],"span":[425,29,30]},{"path":[4,22,3,1,2,7],"span":[426,6,36]},{"path":[4,22,3,1,2,7,4],"span":[426,6,14]},{"path":[4,22,3,1,2,7,5],"span":[426,15,21]},{"path":[4,22,3,1,2,7,1],"span":[426,22,31]},{"path":[4,22,3,1,2,7,3],"span":[426,34,35]},{"path":[4,22,3,1,2,8],"span":[427,6,34]},{"path":[4,22,3,1,2,8,4],"span":[427,6,14]},{"path":[4,22,3,1,2,8,5],"span":[427,15,21]},{"path":[4,22,3,1,2,8,1],"span":[427,22,29]},{"path":[4,22,3,1,2,8,3],"span":[427,32,33]},{"path":[4,22,3,2],"span":[431,2,433,3],"leadingComments":" from InternetExplorerBrowserObjectInfo\n"},{"path":[4,22,3,2,1],"span":[431,10,23]},{"path":[4,22,3,2,2,0],"span":[432,4,23]},{"path":[4,22,3,2,2,0,5],"span":[432,4,10]},{"path":[4,22,3,2,2,0,1],"span":[432,11,18]},{"path":[4,22,3,2,2,0,3],"span":[432,21,22]},{"path":[4,22,3,3],"span":[436,2,438,3],"leadingComments":" from WindowsInternetExplorerBarInfo\n"},{"path":[4,22,3,3,1],"span":[436,10,17]},{"path":[4,22,3,3,2,0],"span":[437,4,23]},{"path":[4,22,3,3,2,0,5],"span":[437,4,10]},{"path":[4,22,3,3,2,0,1],"span":[437,11,18]},{"path":[4,22,3,3,2,0,3],"span":[437,21,22]},{"path":[4,22,2,0],"span":[441,2,32]},{"path":[4,22,2,0,4],"span":[441,2,10]},{"path":[4,22,2,0,6],"span":[441,11,18]},{"path":[4,22,2,0,1],"span":[441,19,27]},{"path":[4,22,2,0,3],"span":[441,30,31]},{"path":[4,22,2,1],"span":[442,2,33]},{"path":[4,22,2,1,4],"span":[442,2,10]},{"path":[4,22,2,1,6],"span":[442,11,24]},{"path":[4,22,2,1,1],"span":[442,25,28]},{"path":[4,22,2,1,3],"span":[442,31,32]},{"path":[4,22,2,2],"span":[443,2,44]},{"path":[4,22,2,2,4],"span":[443,2,10]},{"path":[4,22,2,2,6],"span":[443,11,24]},{"path":[4,22,2,2,1],"span":[443,25,39]},{"path":[4,22,2,2,3],"span":[443,42,43]},{"path":[4,22,2,3],"span":[444,2,35]},{"path":[4,22,2,3,4],"span":[444,2,10]},{"path":[4,22,2,3,6],"span":[444,11,20]},{"path":[4,22,2,3,1],"span":[444,21,30]},{"path":[4,22,2,3,3],"span":[444,33,34]},{"path":[4,23],"span":[450,0,474,1],"leadingComments":"\n SQL Server extended information on Windows Computers.\n"},{"path":[4,23,1],"span":[450,8,24]},{"path":[4,23,4,0],"span":[451,2,455,3]},{"path":[4,23,4,0,1],"span":[451,7,28]},{"path":[4,23,4,0,2,0],"span":[452,4,21]},{"path":[4,23,4,0,2,0,1],"span":[452,4,16]},{"path":[4,23,4,0,2,0,2],"span":[452,19,20]},{"path":[4,23,4,0,2,1],"span":[453,4,16]},{"path":[4,23,4,0,2,1,1],"span":[453,4,11]},{"path":[4,23,4,0,2,1,2],"span":[453,14,15]},{"path":[4,23,4,0,2,2],"span":[454,4,14]},{"path":[4,23,4,0,2,2,1],"span":[454,4,9]},{"path":[4,23,4,0,2,2,2],"span":[454,12,13]},{"path":[4,23,2,0],"span":[457,4,26]},{"path":[4,23,2,0,5],"span":[457,4,8]},{"path":[4,23,2,0,1],"span":[457,9,21]},{"path":[4,23,2,0,3],"span":[457,24,25]},{"path":[4,23,2,1],"span":[458,4,54]},{"path":[4,23,2,1,6],"span":[458,4,25]},{"path":[4,23,2,1,1],"span":[458,26,49]},{"path":[4,23,2,1,3],"span":[458,52,53]},{"path":[4,23,2,2],"span":[459,4,45]},{"path":[4,23,2,2,4],"span":[459,4,12]},{"path":[4,23,2,2,6],"span":[459,13,30]},{"path":[4,23,2,2,1],"span":[459,31,40]},{"path":[4,23,2,2,3],"span":[459,43,44]},{"path":[4,23,2,3],"span":[460,4,43]},{"path":[4,23,2,3,4],"span":[460,4,12]},{"path":[4,23,2,3,6],"span":[460,13,29]},{"path":[4,23,2,3,1],"span":[460,30,38]},{"path":[4,23,2,3,3],"span":[460,41,42]},{"path":[4,23,2,4],"span":[461,4,28]},{"path":[4,23,2,4,5],"span":[461,4,10]},{"path":[4,23,2,4,1],"span":[461,11,23]},{"path":[4,23,2,4,3],"span":[461,26,27]},{"path":[4,23,2,5],"span":[462,4,31]},{"path":[4,23,2,5,5],"span":[462,4,10]},{"path":[4,23,2,5,1],"span":[462,11,26]},{"path":[4,23,2,5,3],"span":[462,29,30]},{"path":[4,23,2,6],"span":[463,4,23]},{"path":[4,23,2,6,5],"span":[463,4,10]},{"path":[4,23,2,6,1],"span":[463,11,18]},{"path":[4,23,2,6,3],"span":[463,21,22]},{"path":[4,23,2,7],"span":[464,4,32]},{"path":[4,23,2,7,4],"span":[464,4,12]},{"path":[4,23,2,7,5],"span":[464,13,18]},{"path":[4,23,2,7,1],"span":[464,19,27]},{"path":[4,23,2,7,3],"span":[464,30,31]},{"path":[4,23,2,8],"span":[465,4,33]},{"path":[4,23,2,8,4],"span":[465,4,12]},{"path":[4,23,2,8,5],"span":[465,13,19]},{"path":[4,23,2,8,1],"span":[465,20,28]},{"path":[4,23,2,8,3],"span":[465,31,32]},{"path":[4,23,2,9],"span":[466,4,39]},{"path":[4,23,2,9,4],"span":[466,4,12]},{"path":[4,23,2,9,6],"span":[466,13,24]},{"path":[4,23,2,9,1],"span":[466,25,33]},{"path":[4,23,2,9,3],"span":[466,36,38]},{"path":[4,23,2,10],"span":[467,4,32]},{"path":[4,23,2,10,4],"span":[467,4,12]},{"path":[4,23,2,10,5],"span":[467,13,17]},{"path":[4,23,2,10,1],"span":[467,18,26]},{"path":[4,23,2,10,3],"span":[467,29,31]},{"path":[4,23,2,11],"span":[468,4,38]},{"path":[4,23,2,11,4],"span":[468,4,12]},{"path":[4,23,2,11,5],"span":[468,13,19]},{"path":[4,23,2,11,1],"span":[468,20,32]},{"path":[4,23,2,11,3],"span":[468,35,37]},{"path":[4,23,2,12],"span":[469,4,38]},{"path":[4,23,2,12,4],"span":[469,4,12]},{"path":[4,23,2,12,5],"span":[469,13,19]},{"path":[4,23,2,12,1],"span":[469,20,32]},{"path":[4,23,2,12,3],"span":[469,35,37]},{"path":[4,23,2,13],"span":[470,4,35]},{"path":[4,23,2,13,4],"span":[470,4,12]},{"path":[4,23,2,13,5],"span":[470,13,19]},{"path":[4,23,2,13,1],"span":[470,20,29]},{"path":[4,23,2,13,3],"span":[470,32,34]},{"path":[4,23,2,14],"span":[471,4,43]},{"path":[4,23,2,14,4],"span":[471,4,12]},{"path":[4,23,2,14,6],"span":[471,13,29]},{"path":[4,23,2,14,1],"span":[471,30,37]},{"path":[4,23,2,14,3],"span":[471,40,42]},{"path":[4,23,2,15],"span":[472,4,28]},{"path":[4,23,2,15,5],"span":[472,4,10]},{"path":[4,23,2,15,1],"span":[472,11,22]},{"path":[4,23,2,15,3],"span":[472,25,27]},{"path":[4,23,2,16],"span":[473,4,39]},{"path":[4,23,2,16,4],"span":[473,4,12]},{"path":[4,23,2,16,5],"span":[473,13,19]},{"path":[4,23,2,16,1],"span":[473,20,33]},{"path":[4,23,2,16,3],"span":[473,36,38]},{"path":[4,24],"span":[477,0,482,1]},{"path":[4,24,1],"span":[477,8,25]},{"path":[4,24,2,0],"span":[478,2,40]},{"path":[4,24,2,0,4],"span":[478,2,10]},{"path":[4,24,2,0,5],"span":[478,11,16]},{"path":[4,24,2,0,1],"span":[478,17,35]},{"path":[4,24,2,0,3],"span":[478,38,39]},{"path":[4,24,2,1],"span":[479,2,39]},{"path":[4,24,2,1,4],"span":[479,2,10]},{"path":[4,24,2,1,5],"span":[479,11,16]},{"path":[4,24,2,1,1],"span":[479,17,34]},{"path":[4,24,2,1,3],"span":[479,37,38]},{"path":[4,24,2,2],"span":[480,2,44]},{"path":[4,24,2,2,4],"span":[480,2,10]},{"path":[4,24,2,2,5],"span":[480,11,16]},{"path":[4,24,2,2,1],"span":[480,17,39]},{"path":[4,24,2,2,3],"span":[480,42,43]},{"path":[4,24,2,3],"span":[481,2,27]},{"path":[4,24,2,3,4],"span":[481,2,10]},{"path":[4,24,2,3,5],"span":[481,11,17]},{"path":[4,24,2,3,1],"span":[481,18,22]},{"path":[4,24,2,3,3],"span":[481,25,26]},{"path":[4,25],"span":[484,0,508,1]},{"path":[4,25,1],"span":[484,8,24]},{"path":[4,25,4,0],"span":[485,2,494,3]},{"path":[4,25,4,0,1],"span":[485,7,19]},{"path":[4,25,4,0,2,0],"span":[486,4,25]},{"path":[4,25,4,0,2,0,1],"span":[486,4,20]},{"path":[4,25,4,0,2,0,2],"span":[486,23,24]},{"path":[4,25,4,0,2,1],"span":[487,4,16]},{"path":[4,25,4,0,2,1,1],"span":[487,4,11]},{"path":[4,25,4,0,2,1,2],"span":[487,14,15]},{"path":[4,25,4,0,2,2],"span":[488,4,22]},{"path":[4,25,4,0,2,2,1],"span":[488,4,17]},{"path":[4,25,4,0,2,2,2],"span":[488,20,21]},{"path":[4,25,4,0,2,3],"span":[489,4,21]},{"path":[4,25,4,0,2,3,1],"span":[489,4,16]},{"path":[4,25,4,0,2,3,2],"span":[489,19,20]},{"path":[4,25,4,0,2,4],"span":[490,4,16]},{"path":[4,25,4,0,2,4,1],"span":[490,4,11]},{"path":[4,25,4,0,2,4,2],"span":[490,14,15]},{"path":[4,25,4,0,2,5],"span":[491,4,25]},{"path":[4,25,4,0,2,5,1],"span":[491,4,20]},{"path":[4,25,4,0,2,5,2],"span":[491,23,24]},{"path":[4,25,4,0,2,6],"span":[492,4,22]},{"path":[4,25,4,0,2,6,1],"span":[492,4,17]},{"path":[4,25,4,0,2,6,2],"span":[492,20,21]},{"path":[4,25,4,0,2,7],"span":[493,4,15]},{"path":[4,25,4,0,2,7,1],"span":[493,4,10]},{"path":[4,25,4,0,2,7,2],"span":[493,13,14]},{"path":[4,25,4,1],"span":[496,2,502,3]},{"path":[4,25,4,1,1],"span":[496,7,25]},{"path":[4,25,4,1,2,0],"span":[497,4,32]},{"path":[4,25,4,1,2,0,1],"span":[497,4,27]},{"path":[4,25,4,1,2,0,2],"span":[497,30,31]},{"path":[4,25,4,1,2,1],"span":[498,4,27]},{"path":[4,25,4,1,2,1,1],"span":[498,4,22]},{"path":[4,25,4,1,2,1,2],"span":[498,25,26]},{"path":[4,25,4,1,2,2],"span":[499,4,18]},{"path":[4,25,4,1,2,2,1],"span":[499,4,13]},{"path":[4,25,4,1,2,2,2],"span":[499,16,17]},{"path":[4,25,4,1,2,3],"span":[500,4,15]},{"path":[4,25,4,1,2,3,1],"span":[500,4,10]},{"path":[4,25,4,1,2,3,2],"span":[500,13,14]},{"path":[4,25,4,1,2,4],"span":[501,4,17]},{"path":[4,25,4,1,2,4,1],"span":[501,4,12]},{"path":[4,25,4,1,2,4,2],"span":[501,15,16]},{"path":[4,25,2,0],"span":[504,2,34]},{"path":[4,25,2,0,4],"span":[504,2,10]},{"path":[4,25,2,0,6],"span":[504,11,23]},{"path":[4,25,2,0,1],"span":[504,24,29]},{"path":[4,25,2,0,3],"span":[504,32,33]},{"path":[4,25,2,1],"span":[505,2,47]},{"path":[4,25,2,1,4],"span":[505,2,10]},{"path":[4,25,2,1,6],"span":[505,11,29]},{"path":[4,25,2,1,1],"span":[505,30,42]},{"path":[4,25,2,1,3],"span":[505,45,46]},{"path":[4,25,2,2],"span":[506,2,27]},{"path":[4,25,2,2,4],"span":[506,2,10]},{"path":[4,25,2,2,5],"span":[506,11,17]},{"path":[4,25,2,2,1],"span":[506,18,22]},{"path":[4,25,2,2,3],"span":[506,25,26]},{"path":[4,25,2,3],"span":[507,2,34]},{"path":[4,25,2,3,4],"span":[507,2,10]},{"path":[4,25,2,3,5],"span":[507,11,17]},{"path":[4,25,2,3,1],"span":[507,18,29]},{"path":[4,25,2,3,3],"span":[507,32,33]},{"path":[4,26],"span":[510,0,513,1]},{"path":[4,26,1],"span":[510,8,24]},{"path":[4,26,2,0],"span":[511,2,27]},{"path":[4,26,2,0,4],"span":[511,2,10]},{"path":[4,26,2,0,5],"span":[511,11,17]},{"path":[4,26,2,0,1],"span":[511,18,22]},{"path":[4,26,2,0,3],"span":[511,25,26]},{"path":[4,26,2,1],"span":[512,2,50]},{"path":[4,26,2,1,4],"span":[512,2,10]},{"path":[4,26,2,1,6],"span":[512,11,31]},{"path":[4,26,2,1,1],"span":[512,32,45]},{"path":[4,26,2,1,3],"span":[512,48,49]},{"path":[4,27],"span":[515,0,517,1]},{"path":[4,27,1],"span":[515,8,28]},{"path":[4,27,2,0],"span":[516,2,27]},{"path":[4,27,2,0,4],"span":[516,2,10]},{"path":[4,27,2,0,5],"span":[516,11,17]},{"path":[4,27,2,0,1],"span":[516,18,22]},{"path":[4,27,2,0,3],"span":[516,25,26]},{"path":[4,28],"span":[523,0,553,1],"leadingComments":"\n General section for any HW, normalized and with raw data.\n"},{"path":[4,28,1],"span":[523,8,20]},{"path":[4,28,2,0],"span":[524,2,29]},{"path":[4,28,2,0,4],"span":[524,2,10]},{"path":[4,28,2,0,5],"span":[524,11,16]},{"path":[4,28,2,0,1],"span":[524,17,24]},{"path":[4,28,2,0,3],"span":[524,27,28]},{"path":[4,28,2,1],"span":[527,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,28,2,1,4],"span":[527,2,10]},{"path":[4,28,2,1,5],"span":[527,11,16]},{"path":[4,28,2,1,1],"span":[527,17,24]},{"path":[4,28,2,1,3],"span":[527,27,28]},{"path":[4,28,2,2],"span":[530,2,30],"leadingComments":" catalog id of: CatalogModel\n"},{"path":[4,28,2,2,4],"span":[530,2,10]},{"path":[4,28,2,2,5],"span":[530,11,16]},{"path":[4,28,2,2,1],"span":[530,17,25]},{"path":[4,28,2,2,3],"span":[530,28,29]},{"path":[4,28,2,3],"span":[533,2,31],"leadingComments":" catalog id of: CatalogModel\n"},{"path":[4,28,2,3,4],"span":[533,2,10]},{"path":[4,28,2,3,5],"span":[533,11,16]},{"path":[4,28,2,3,1],"span":[533,17,26]},{"path":[4,28,2,3,3],"span":[533,29,30]},{"path":[4,28,2,4],"span":[535,2,30]},{"path":[4,28,2,4,4],"span":[535,2,10]},{"path":[4,28,2,4,5],"span":[535,11,15]},{"path":[4,28,2,4,1],"span":[535,16,25]},{"path":[4,28,2,4,3],"span":[535,28,29]},{"path":[4,28,2,5],"span":[536,2,29]},{"path":[4,28,2,5,4],"span":[536,2,10]},{"path":[4,28,2,5,5],"span":[536,11,17]},{"path":[4,28,2,5,1],"span":[536,18,24]},{"path":[4,28,2,5,3],"span":[536,27,28]},{"path":[4,28,2,6],"span":[537,2,33]},{"path":[4,28,2,6,4],"span":[537,2,10]},{"path":[4,28,2,6,5],"span":[537,11,17]},{"path":[4,28,2,6,1],"span":[537,18,27]},{"path":[4,28,2,6,3],"span":[537,30,32]},{"path":[4,28,2,7],"span":[538,2,33]},{"path":[4,28,2,7,4],"span":[538,2,10]},{"path":[4,28,2,7,5],"span":[538,11,17]},{"path":[4,28,2,7,1],"span":[538,18,27]},{"path":[4,28,2,7,3],"span":[538,30,32]},{"path":[4,28,2,8],"span":[539,2,34]},{"path":[4,28,2,8,4],"span":[539,2,10]},{"path":[4,28,2,8,5],"span":[539,11,17]},{"path":[4,28,2,8,1],"span":[539,18,28]},{"path":[4,28,2,8,3],"span":[539,31,33]},{"path":[4,28,2,9],"span":[540,2,35]},{"path":[4,28,2,9,4],"span":[540,2,10]},{"path":[4,28,2,9,5],"span":[540,11,17]},{"path":[4,28,2,9,1],"span":[540,18,29]},{"path":[4,28,2,9,3],"span":[540,32,34]},{"path":[4,28,2,10],"span":[542,2,27]},{"path":[4,28,2,10,4],"span":[542,2,10]},{"path":[4,28,2,10,5],"span":[542,11,17]},{"path":[4,28,2,10,1],"span":[542,18,21]},{"path":[4,28,2,10,3],"span":[542,24,26]},{"path":[4,28,2,11],"span":[543,2,27]},{"path":[4,28,2,11,4],"span":[543,2,10]},{"path":[4,28,2,11,5],"span":[543,11,16]},{"path":[4,28,2,11,1],"span":[543,17,21]},{"path":[4,28,2,11,3],"span":[543,24,26]},{"path":[4,28,2,12],"span":[545,2,38]},{"path":[4,28,2,12,4],"span":[545,2,10]},{"path":[4,28,2,12,6],"span":[545,11,27]},{"path":[4,28,2,12,1],"span":[545,28,32]},{"path":[4,28,2,12,3],"span":[545,35,37]},{"path":[4,28,2,13],"span":[548,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,28,2,13,4],"span":[548,2,10]},{"path":[4,28,2,13,6],"span":[548,11,23]},{"path":[4,28,2,13,1],"span":[548,24,37]},{"path":[4,28,2,13,3],"span":[548,40,42]},{"path":[4,28,2,14],"span":[550,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,28,2,14,4],"span":[550,2,10]},{"path":[4,28,2,14,6],"span":[550,11,23]},{"path":[4,28,2,14,1],"span":[550,24,37]},{"path":[4,28,2,14,3],"span":[550,40,42]},{"path":[4,28,2,15],"span":[552,2,44],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,28,2,15,4],"span":[552,2,10]},{"path":[4,28,2,15,6],"span":[552,11,23]},{"path":[4,28,2,15,1],"span":[552,24,38]},{"path":[4,28,2,15,3],"span":[552,41,43]},{"path":[4,29],"span":[555,0,562,1]},{"path":[4,29,1],"span":[555,8,24]},{"path":[4,29,2,0],"span":[556,2,35]},{"path":[4,29,2,0,4],"span":[556,2,10]},{"path":[4,29,2,0,5],"span":[556,11,17]},{"path":[4,29,2,0,1],"span":[556,18,30]},{"path":[4,29,2,0,3],"span":[556,33,34]},{"path":[4,29,2,1],"span":[557,2,28]},{"path":[4,29,2,1,4],"span":[557,2,10]},{"path":[4,29,2,1,5],"span":[557,11,17]},{"path":[4,29,2,1,1],"span":[557,18,23]},{"path":[4,29,2,1,3],"span":[557,26,27]},{"path":[4,29,2,2],"span":[558,2,35]},{"path":[4,29,2,2,4],"span":[558,2,10]},{"path":[4,29,2,2,5],"span":[558,11,17]},{"path":[4,29,2,2,1],"span":[558,18,30]},{"path":[4,29,2,2,3],"span":[558,33,34]},{"path":[4,29,2,3],"span":[559,2,36]},{"path":[4,29,2,3,4],"span":[559,2,10]},{"path":[4,29,2,3,5],"span":[559,11,17]},{"path":[4,29,2,3,1],"span":[559,18,31]},{"path":[4,29,2,3,3],"span":[559,34,35]},{"path":[4,29,2,4],"span":[560,2,33]},{"path":[4,29,2,4,4],"span":[560,2,10]},{"path":[4,29,2,4,5],"span":[560,11,17]},{"path":[4,29,2,4,1],"span":[560,18,28]},{"path":[4,29,2,4,3],"span":[560,31,32]},{"path":[4,29,2,5],"span":[561,2,29]},{"path":[4,29,2,5,4],"span":[561,2,10]},{"path":[4,29,2,5,5],"span":[561,11,16]},{"path":[4,29,2,5,1],"span":[561,18,24]},{"path":[4,29,2,5,3],"span":[561,27,28]},{"path":[4,30],"span":[566,0,589,1]},{"path":[4,30,1],"span":[566,8,23]},{"path":[4,30,2,0],"span":[568,2,24],"leadingComments":" catalog id of: CatalogOs\n"},{"path":[4,30,2,0,4],"span":[568,2,10]},{"path":[4,30,2,0,5],"span":[568,11,16]},{"path":[4,30,2,0,1],"span":[568,17,19]},{"path":[4,30,2,0,3],"span":[568,22,23]},{"path":[4,30,2,1],"span":[571,2,30],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,30,2,1,4],"span":[571,2,10]},{"path":[4,30,2,1,5],"span":[571,11,16]},{"path":[4,30,2,1,1],"span":[571,17,24]},{"path":[4,30,2,1,3],"span":[571,27,29]},{"path":[4,30,2,2],"span":[573,2,27]},{"path":[4,30,2,2,4],"span":[573,2,10]},{"path":[4,30,2,2,5],"span":[573,11,17]},{"path":[4,30,2,2,1],"span":[573,18,22]},{"path":[4,30,2,2,3],"span":[573,25,26]},{"path":[4,30,2,3],"span":[574,2,30]},{"path":[4,30,2,3,4],"span":[574,2,10]},{"path":[4,30,2,3,5],"span":[574,11,17]},{"path":[4,30,2,3,1],"span":[574,18,25]},{"path":[4,30,2,3,3],"span":[574,28,29]},{"path":[4,30,2,4],"span":[575,2,28]},{"path":[4,30,2,4,4],"span":[575,2,10]},{"path":[4,30,2,4,5],"span":[575,11,17]},{"path":[4,30,2,4,1],"span":[575,18,23]},{"path":[4,30,2,4,3],"span":[575,26,27]},{"path":[4,30,2,5],"span":[577,2,33]},{"path":[4,30,2,5,4],"span":[577,2,10]},{"path":[4,30,2,5,5],"span":[577,11,17]},{"path":[4,30,2,5,1],"span":[577,18,28]},{"path":[4,30,2,5,3],"span":[577,31,32]},{"path":[4,30,2,6],"span":[579,2,26]},{"path":[4,30,2,6,4],"span":[579,2,10]},{"path":[4,30,2,6,5],"span":[579,11,17]},{"path":[4,30,2,6,1],"span":[579,18,21]},{"path":[4,30,2,6,3],"span":[579,24,25]},{"path":[4,30,2,7],"span":[580,2,29]},{"path":[4,30,2,7,4],"span":[580,2,10]},{"path":[4,30,2,7,5],"span":[580,11,17]},{"path":[4,30,2,7,1],"span":[580,18,24]},{"path":[4,30,2,7,3],"span":[580,27,28]},{"path":[4,30,2,8],"span":[582,2,26]},{"path":[4,30,2,8,4],"span":[582,2,10]},{"path":[4,30,2,8,5],"span":[582,11,16]},{"path":[4,30,2,8,1],"span":[582,17,21]},{"path":[4,30,2,8,3],"span":[582,24,25]},{"path":[4,30,8,0],"span":[584,2,588,3]},{"path":[4,30,8,0,1],"span":[584,8,12]},{"path":[4,30,2,9],"span":[585,4,44]},{"path":[4,30,2,9,6],"span":[585,4,30]},{"path":[4,30,2,9,1],"span":[585,31,38]},{"path":[4,30,2,9,3],"span":[585,41,43]},{"path":[4,30,2,10],"span":[586,4,36]},{"path":[4,30,2,10,6],"span":[586,4,26]},{"path":[4,30,2,10,1],"span":[586,27,30]},{"path":[4,30,2,10,3],"span":[586,33,35]},{"path":[4,30,2,11],"span":[587,4,40]},{"path":[4,30,2,11,6],"span":[587,4,28]},{"path":[4,30,2,11,1],"span":[587,29,34]},{"path":[4,30,2,11,3],"span":[587,37,39]},{"path":[4,31],"span":[591,0,593,1]},{"path":[4,31,1],"span":[591,8,30]},{"path":[4,31,2,0],"span":[592,2,37]},{"path":[4,31,2,0,4],"span":[592,2,10]},{"path":[4,31,2,0,5],"span":[592,11,17]},{"path":[4,31,2,0,1],"span":[592,18,32]},{"path":[4,31,2,0,3],"span":[592,35,36]},{"path":[4,32],"span":[595,0,601,1]},{"path":[4,32,1],"span":[595,8,32]},{"path":[4,32,2,0],"span":[596,2,34]},{"path":[4,32,2,0,4],"span":[596,2,10]},{"path":[4,32,2,0,5],"span":[596,11,17]},{"path":[4,32,2,0,1],"span":[596,18,29]},{"path":[4,32,2,0,3],"span":[596,32,33]},{"path":[4,32,2,1],"span":[597,2,37]},{"path":[4,32,2,1,4],"span":[597,2,10]},{"path":[4,32,2,1,5],"span":[597,11,17]},{"path":[4,32,2,1,1],"span":[597,18,32]},{"path":[4,32,2,1,3],"span":[597,35,36]},{"path":[4,32,2,2],"span":[598,2,37]},{"path":[4,32,2,2,4],"span":[598,2,10]},{"path":[4,32,2,2,5],"span":[598,11,17]},{"path":[4,32,2,2,1],"span":[598,18,32]},{"path":[4,32,2,2,3],"span":[598,35,36]},{"path":[4,32,2,3],"span":[599,2,35]},{"path":[4,32,2,3,4],"span":[599,2,10]},{"path":[4,32,2,3,5],"span":[599,11,17]},{"path":[4,32,2,3,1],"span":[599,18,30]},{"path":[4,32,2,3,3],"span":[599,33,34]},{"path":[4,32,2,4],"span":[600,2,33]},{"path":[4,32,2,4,4],"span":[600,2,10]},{"path":[4,32,2,4,5],"span":[600,11,17]},{"path":[4,32,2,4,1],"span":[600,18,28]},{"path":[4,32,2,4,3],"span":[600,31,32]},{"path":[4,33],"span":[603,0,656,1]},{"path":[4,33,1],"span":[603,8,34]},{"path":[4,33,2,0],"span":[604,2,30]},{"path":[4,33,2,0,4],"span":[604,2,10]},{"path":[4,33,2,0,5],"span":[604,11,17]},{"path":[4,33,2,0,1],"span":[604,18,25]},{"path":[4,33,2,0,3],"span":[604,28,29]},{"path":[4,33,2,1],"span":[605,2,34]},{"path":[4,33,2,1,4],"span":[605,2,10]},{"path":[4,33,2,1,5],"span":[605,11,16]},{"path":[4,33,2,1,1],"span":[605,17,29]},{"path":[4,33,2,1,3],"span":[605,32,33]},{"path":[4,33,2,2],"span":[606,2,28],"trailingComments":" \"WindowsVersion\": \"10.0.19045\"\n"},{"path":[4,33,2,2,4],"span":[606,2,10]},{"path":[4,33,2,2,5],"span":[606,11,17]},{"path":[4,33,2,2,1],"span":[606,18,23]},{"path":[4,33,2,2,3],"span":[606,26,27]},{"path":[4,33,2,3],"span":[607,2,35],"trailingComments":" OsVersion\": \"22H2\",\n"},{"path":[4,33,2,3,4],"span":[607,2,10]},{"path":[4,33,2,3,5],"span":[607,11,17]},{"path":[4,33,2,3,1],"span":[607,18,30]},{"path":[4,33,2,3,3],"span":[607,33,34]},{"path":[4,33,2,4],"span":[608,2,41]},{"path":[4,33,2,4,4],"span":[608,2,10]},{"path":[4,33,2,4,5],"span":[608,11,15]},{"path":[4,33,2,4,1],"span":[608,16,36]},{"path":[4,33,2,4,3],"span":[608,39,40]},{"path":[4,33,2,5],"span":[609,2,35]},{"path":[4,33,2,5,4],"span":[609,2,10]},{"path":[4,33,2,5,5],"span":[609,11,15]},{"path":[4,33,2,5,1],"span":[609,16,30]},{"path":[4,33,2,5,3],"span":[609,33,34]},{"path":[4,33,2,6],"span":[610,2,39]},{"path":[4,33,2,6,4],"span":[610,2,10]},{"path":[4,33,2,6,5],"span":[610,11,15]},{"path":[4,33,2,6,1],"span":[610,16,34]},{"path":[4,33,2,6,3],"span":[610,37,38]},{"path":[4,33,2,7],"span":[612,2,31],"trailingComments":" \"OsCode\": \"10.0.19045\" - with S if server\n"},{"path":[4,33,2,7,4],"span":[612,2,10]},{"path":[4,33,2,7,5],"span":[612,11,17]},{"path":[4,33,2,7,1],"span":[612,18,25]},{"path":[4,33,2,7,3],"span":[612,28,30]},{"path":[4,33,2,8],"span":[614,2,35]},{"path":[4,33,2,8,4],"span":[614,2,10]},{"path":[4,33,2,8,5],"span":[614,11,17]},{"path":[4,33,2,8,1],"span":[614,18,29]},{"path":[4,33,2,8,3],"span":[614,32,34]},{"path":[4,33,2,9],"span":[615,2,36],"trailingComments":" \"OsBuildNumber\": \"2486\",\n"},{"path":[4,33,2,9,4],"span":[615,2,10]},{"path":[4,33,2,9,5],"span":[615,11,17]},{"path":[4,33,2,9,1],"span":[615,18,30]},{"path":[4,33,2,9,3],"span":[615,33,35]},{"path":[4,33,2,10],"span":[616,2,34]},{"path":[4,33,2,10,4],"span":[616,2,10]},{"path":[4,33,2,10,5],"span":[616,11,17]},{"path":[4,33,2,10,1],"span":[616,18,28]},{"path":[4,33,2,10,3],"span":[616,31,33]},{"path":[4,33,2,11],"span":[617,2,31]},{"path":[4,33,2,11,4],"span":[617,2,10]},{"path":[4,33,2,11,5],"span":[617,11,17]},{"path":[4,33,2,11,1],"span":[617,18,25]},{"path":[4,33,2,11,3],"span":[617,28,30]},{"path":[4,33,2,12],"span":[618,2,32]},{"path":[4,33,2,12,4],"span":[618,2,10]},{"path":[4,33,2,12,5],"span":[618,11,17]},{"path":[4,33,2,12,1],"span":[618,18,26]},{"path":[4,33,2,12,3],"span":[618,29,31]},{"path":[4,33,2,13],"span":[619,2,36]},{"path":[4,33,2,13,4],"span":[619,2,10]},{"path":[4,33,2,13,5],"span":[619,11,17]},{"path":[4,33,2,13,1],"span":[619,18,30]},{"path":[4,33,2,13,3],"span":[619,33,35]},{"path":[4,33,2,14],"span":[620,2,35]},{"path":[4,33,2,14,4],"span":[620,2,10]},{"path":[4,33,2,14,5],"span":[620,11,17]},{"path":[4,33,2,14,1],"span":[620,18,29]},{"path":[4,33,2,14,3],"span":[620,32,34]},{"path":[4,33,2,15],"span":[621,2,39]},{"path":[4,33,2,15,4],"span":[621,2,10]},{"path":[4,33,2,15,5],"span":[621,11,16]},{"path":[4,33,2,15,1],"span":[621,17,33]},{"path":[4,33,2,15,3],"span":[621,36,38]},{"path":[4,33,2,16],"span":[622,2,27]},{"path":[4,33,2,16,4],"span":[622,2,10]},{"path":[4,33,2,16,5],"span":[622,11,15]},{"path":[4,33,2,16,1],"span":[622,16,21]},{"path":[4,33,2,16,3],"span":[622,24,26]},{"path":[4,33,2,17],"span":[623,2,35]},{"path":[4,33,2,17,4],"span":[623,2,10]},{"path":[4,33,2,17,5],"span":[623,11,17]},{"path":[4,33,2,17,1],"span":[623,18,29]},{"path":[4,33,2,17,3],"span":[623,32,34]},{"path":[4,33,2,18],"span":[624,2,52]},{"path":[4,33,2,18,4],"span":[624,2,10]},{"path":[4,33,2,18,5],"span":[624,11,17]},{"path":[4,33,2,18,1],"span":[624,18,46]},{"path":[4,33,2,18,3],"span":[624,49,51]},{"path":[4,33,2,19],"span":[625,2,55]},{"path":[4,33,2,19,4],"span":[625,2,10]},{"path":[4,33,2,19,6],"span":[625,11,36]},{"path":[4,33,2,19,1],"span":[625,37,49]},{"path":[4,33,2,19,3],"span":[625,52,54]},{"path":[4,33,2,20],"span":[626,2,47]},{"path":[4,33,2,20,4],"span":[626,2,10]},{"path":[4,33,2,20,5],"span":[626,11,17]},{"path":[4,33,2,20,1],"span":[626,18,41]},{"path":[4,33,2,20,3],"span":[626,44,46]},{"path":[4,33,2,21],"span":[627,2,48]},{"path":[4,33,2,21,4],"span":[627,2,10]},{"path":[4,33,2,21,5],"span":[627,11,17]},{"path":[4,33,2,21,1],"span":[627,18,42]},{"path":[4,33,2,21,3],"span":[627,45,47]},{"path":[4,33,2,22],"span":[628,2,36]},{"path":[4,33,2,22,4],"span":[628,2,10]},{"path":[4,33,2,22,5],"span":[628,11,17]},{"path":[4,33,2,22,1],"span":[628,18,30]},{"path":[4,33,2,22,3],"span":[628,33,35]},{"path":[4,33,2,23],"span":[629,2,40]},{"path":[4,33,2,23,4],"span":[629,2,10]},{"path":[4,33,2,23,6],"span":[629,11,22]},{"path":[4,33,2,23,1],"span":[629,23,34]},{"path":[4,33,2,23,3],"span":[629,37,39]},{"path":[4,33,2,24],"span":[630,2,45]},{"path":[4,33,2,24,4],"span":[630,2,10]},{"path":[4,33,2,24,6],"span":[630,11,22]},{"path":[4,33,2,24,1],"span":[630,23,39]},{"path":[4,33,2,24,3],"span":[630,42,44]},{"path":[4,33,2,25],"span":[631,2,36]},{"path":[4,33,2,25,4],"span":[631,2,10]},{"path":[4,33,2,25,6],"span":[631,11,22]},{"path":[4,33,2,25,1],"span":[631,23,30]},{"path":[4,33,2,25,3],"span":[631,33,35]},{"path":[4,33,2,26],"span":[632,2,39]},{"path":[4,33,2,26,4],"span":[632,2,10]},{"path":[4,33,2,26,5],"span":[632,11,17]},{"path":[4,33,2,26,1],"span":[632,18,33]},{"path":[4,33,2,26,3],"span":[632,36,38]},{"path":[4,33,2,27],"span":[633,2,43]},{"path":[4,33,2,27,4],"span":[633,2,10]},{"path":[4,33,2,27,5],"span":[633,11,17]},{"path":[4,33,2,27,1],"span":[633,18,37]},{"path":[4,33,2,27,3],"span":[633,40,42]},{"path":[4,33,2,28],"span":[634,2,39]},{"path":[4,33,2,28,4],"span":[634,2,10]},{"path":[4,33,2,28,5],"span":[634,11,17]},{"path":[4,33,2,28,1],"span":[634,18,33]},{"path":[4,33,2,28,3],"span":[634,36,38]},{"path":[4,33,2,29],"span":[635,2,37]},{"path":[4,33,2,29,4],"span":[635,2,10]},{"path":[4,33,2,29,5],"span":[635,11,17]},{"path":[4,33,2,29,1],"span":[635,18,31]},{"path":[4,33,2,29,3],"span":[635,34,36]},{"path":[4,33,2,30],"span":[636,2,50]},{"path":[4,33,2,30,4],"span":[636,2,10]},{"path":[4,33,2,30,5],"span":[636,11,17]},{"path":[4,33,2,30,1],"span":[636,18,44]},{"path":[4,33,2,30,3],"span":[636,47,49]},{"path":[4,33,2,31],"span":[637,2,50]},{"path":[4,33,2,31,4],"span":[637,2,10]},{"path":[4,33,2,31,5],"span":[637,11,17]},{"path":[4,33,2,31,1],"span":[637,18,44]},{"path":[4,33,2,31,3],"span":[637,47,49]},{"path":[4,33,2,32],"span":[638,2,51]},{"path":[4,33,2,32,4],"span":[638,2,10]},{"path":[4,33,2,32,5],"span":[638,11,17]},{"path":[4,33,2,32,1],"span":[638,18,45]},{"path":[4,33,2,32,3],"span":[638,48,50]},{"path":[4,33,2,33],"span":[639,2,30]},{"path":[4,33,2,33,4],"span":[639,2,10]},{"path":[4,33,2,33,5],"span":[639,11,17]},{"path":[4,33,2,33,1],"span":[639,18,24]},{"path":[4,33,2,33,3],"span":[639,27,29]},{"path":[4,33,2,34],"span":[640,2,37]},{"path":[4,33,2,34,4],"span":[640,2,10]},{"path":[4,33,2,34,5],"span":[640,11,17]},{"path":[4,33,2,34,1],"span":[640,18,31]},{"path":[4,33,2,34,3],"span":[640,34,36]},{"path":[4,33,2,35],"span":[641,2,40]},{"path":[4,33,2,35,4],"span":[641,2,10]},{"path":[4,33,2,35,5],"span":[641,11,17]},{"path":[4,33,2,35,1],"span":[641,18,34]},{"path":[4,33,2,35,3],"span":[641,37,39]},{"path":[4,33,2,36],"span":[642,2,49]},{"path":[4,33,2,36,4],"span":[642,2,10]},{"path":[4,33,2,36,5],"span":[642,11,17]},{"path":[4,33,2,36,1],"span":[642,18,43]},{"path":[4,33,2,36,3],"span":[642,46,48]},{"path":[4,33,2,37],"span":[643,2,49]},{"path":[4,33,2,37,4],"span":[643,2,10]},{"path":[4,33,2,37,5],"span":[643,11,17]},{"path":[4,33,2,37,1],"span":[643,18,43]},{"path":[4,33,2,37,3],"span":[643,46,48]},{"path":[4,33,2,38],"span":[644,2,41]},{"path":[4,33,2,38,4],"span":[644,2,10]},{"path":[4,33,2,38,5],"span":[644,11,17]},{"path":[4,33,2,38,1],"span":[644,18,35]},{"path":[4,33,2,38,3],"span":[644,38,40]},{"path":[4,33,2,39],"span":[645,2,45]},{"path":[4,33,2,39,4],"span":[645,2,10]},{"path":[4,33,2,39,5],"span":[645,11,17]},{"path":[4,33,2,39,1],"span":[645,18,39]},{"path":[4,33,2,39,3],"span":[645,42,44]},{"path":[4,33,2,40],"span":[646,2,42]},{"path":[4,33,2,40,4],"span":[646,2,10]},{"path":[4,33,2,40,5],"span":[646,11,17]},{"path":[4,33,2,40,1],"span":[646,18,36]},{"path":[4,33,2,40,3],"span":[646,39,41]},{"path":[4,33,2,41],"span":[647,2,46]},{"path":[4,33,2,41,4],"span":[647,2,10]},{"path":[4,33,2,41,5],"span":[647,11,17]},{"path":[4,33,2,41,1],"span":[647,18,40]},{"path":[4,33,2,41,3],"span":[647,43,45]},{"path":[4,33,2,42],"span":[648,2,41]},{"path":[4,33,2,42,4],"span":[648,2,10]},{"path":[4,33,2,42,6],"span":[648,11,22]},{"path":[4,33,2,42,1],"span":[648,23,35]},{"path":[4,33,2,42,3],"span":[648,38,40]},{"path":[4,33,2,43],"span":[649,2,34]},{"path":[4,33,2,43,4],"span":[649,2,10]},{"path":[4,33,2,43,5],"span":[649,11,17]},{"path":[4,33,2,43,1],"span":[649,18,28]},{"path":[4,33,2,43,3],"span":[649,31,33]},{"path":[4,33,2,44],"span":[650,2,36]},{"path":[4,33,2,44,4],"span":[650,2,10]},{"path":[4,33,2,44,5],"span":[650,11,17]},{"path":[4,33,2,44,1],"span":[650,18,30]},{"path":[4,33,2,44,3],"span":[650,33,35]},{"path":[4,33,2,45],"span":[651,2,40]},{"path":[4,33,2,45,4],"span":[651,2,10]},{"path":[4,33,2,45,5],"span":[651,11,17]},{"path":[4,33,2,45,1],"span":[651,18,34]},{"path":[4,33,2,45,3],"span":[651,37,39]},{"path":[4,33,2,46],"span":[652,2,66]},{"path":[4,33,2,46,4],"span":[652,2,10]},{"path":[4,33,2,46,5],"span":[652,11,15]},{"path":[4,33,2,46,1],"span":[652,16,60]},{"path":[4,33,2,46,3],"span":[652,63,65]},{"path":[4,33,2,47],"span":[653,2,60]},{"path":[4,33,2,47,4],"span":[653,2,10]},{"path":[4,33,2,47,5],"span":[653,11,15]},{"path":[4,33,2,47,1],"span":[653,16,54]},{"path":[4,33,2,47,3],"span":[653,57,59]},{"path":[4,33,2,48],"span":[654,2,55]},{"path":[4,33,2,48,4],"span":[654,2,10]},{"path":[4,33,2,48,5],"span":[654,11,15]},{"path":[4,33,2,48,1],"span":[654,16,49]},{"path":[4,33,2,48,3],"span":[654,52,54]},{"path":[4,33,2,49],"span":[655,2,64]},{"path":[4,33,2,49,4],"span":[655,2,10]},{"path":[4,33,2,49,5],"span":[655,11,17]},{"path":[4,33,2,49,1],"span":[655,18,58]},{"path":[4,33,2,49,3],"span":[655,61,63]},{"path":[4,34],"span":[660,0,663,1],"leadingComments":" OS Feature, i.e. WindowsFeature "},{"path":[4,34,1],"span":[660,8,30]},{"path":[4,34,2,0],"span":[661,2,18]},{"path":[4,34,2,0,5],"span":[661,2,8]},{"path":[4,34,2,0,1],"span":[661,9,13]},{"path":[4,34,2,0,3],"span":[661,16,17]},{"path":[4,34,2,1],"span":[662,2,21]},{"path":[4,34,2,1,5],"span":[662,2,8]},{"path":[4,34,2,1,1],"span":[662,9,16]},{"path":[4,34,2,1,3],"span":[662,19,20]},{"path":[4,35],"span":[666,0,682,1],"leadingComments":" OS Patch, i.e. Windows KB's, aka Hotfix, aka QuickFixEngieering "},{"path":[4,35,1],"span":[666,8,28]},{"path":[4,35,2,0],"span":[668,2,16],"leadingComments":" from hot_fix_id, e.g.: \"KB4570334\"\n"},{"path":[4,35,2,0,5],"span":[668,2,8]},{"path":[4,35,2,0,1],"span":[668,9,11]},{"path":[4,35,2,0,3],"span":[668,14,15]},{"path":[4,35,2,1],"span":[671,2,27],"leadingComments":" from description, e.g.: Security Update\n"},{"path":[4,35,2,1,4],"span":[671,2,10]},{"path":[4,35,2,1,5],"span":[671,11,17]},{"path":[4,35,2,1,1],"span":[671,18,22]},{"path":[4,35,2,1,3],"span":[671,25,26]},{"path":[4,35,2,2],"span":[673,2,54]},{"path":[4,35,2,2,4],"span":[673,2,10]},{"path":[4,35,2,2,6],"span":[673,11,36]},{"path":[4,35,2,2,1],"span":[673,37,49]},{"path":[4,35,2,2,3],"span":[673,52,53]},{"path":[4,35,2,3],"span":[676,2,33],"leadingComments":" e.g.: \"NT AUTHORITY\\\\SYSTEM\"\n"},{"path":[4,35,2,3,4],"span":[676,2,10]},{"path":[4,35,2,3,5],"span":[676,11,17]},{"path":[4,35,2,3,1],"span":[676,18,28]},{"path":[4,35,2,3,3],"span":[676,31,32]},{"path":[4,35,2,4],"span":[678,2,31]},{"path":[4,35,2,4,4],"span":[678,2,10]},{"path":[4,35,2,4,5],"span":[678,11,17]},{"path":[4,35,2,4,1],"span":[678,18,26]},{"path":[4,35,2,4,3],"span":[678,29,30]},{"path":[4,35,2,5],"span":[680,2,43]},{"path":[4,35,2,5,4],"span":[680,2,10]},{"path":[4,35,2,5,5],"span":[680,11,17]},{"path":[4,35,2,5,1],"span":[680,18,38]},{"path":[4,35,2,5,3],"span":[680,41,42]},{"path":[4,36],"span":[685,0,688,1],"leadingComments":" Network Interface cards "},{"path":[4,36,1],"span":[685,8,25]},{"path":[4,36,2,0],"span":[686,2,42]},{"path":[4,36,2,0,6],"span":[686,2,27]},{"path":[4,36,2,0,1],"span":[686,28,37]},{"path":[4,36,2,0,3],"span":[686,40,41]},{"path":[4,36,2,1],"span":[687,2,42]},{"path":[4,36,2,1,4],"span":[687,2,10]},{"path":[4,36,2,1,6],"span":[687,11,27]},{"path":[4,36,2,1,1],"span":[687,28,37]},{"path":[4,36,2,1,3],"span":[687,40,41]},{"path":[4,37],"span":[690,0,713,1]},{"path":[4,37,1],"span":[690,8,24]},{"path":[4,37,2,0],"span":[691,2,18]},{"path":[4,37,2,0,5],"span":[691,2,8]},{"path":[4,37,2,0,1],"span":[691,9,13]},{"path":[4,37,2,0,3],"span":[691,16,17]},{"path":[4,37,2,1],"span":[692,2,18]},{"path":[4,37,2,1,5],"span":[692,2,8]},{"path":[4,37,2,1,1],"span":[692,9,13]},{"path":[4,37,2,1,3],"span":[692,16,17]},{"path":[4,37,2,2],"span":[693,2,22]},{"path":[4,37,2,2,5],"span":[693,2,8]},{"path":[4,37,2,2,1],"span":[693,9,17]},{"path":[4,37,2,2,3],"span":[693,20,21]},{"path":[4,37,2,3],"span":[695,2,25]},{"path":[4,37,2,3,4],"span":[695,2,10]},{"path":[4,37,2,3,5],"span":[695,11,17]},{"path":[4,37,2,3,1],"span":[695,18,20]},{"path":[4,37,2,3,3],"span":[695,23,24]},{"path":[4,37,2,4],"span":[697,2,26]},{"path":[4,37,2,4,4],"span":[697,2,10]},{"path":[4,37,2,4,5],"span":[697,11,17]},{"path":[4,37,2,4,1],"span":[697,18,21]},{"path":[4,37,2,4,3],"span":[697,24,25]},{"path":[4,37,2,5],"span":[699,2,33]},{"path":[4,37,2,5,4],"span":[699,2,10]},{"path":[4,37,2,5,5],"span":[699,11,15]},{"path":[4,37,2,5,1],"span":[699,16,28]},{"path":[4,37,2,5,3],"span":[699,31,32]},{"path":[4,37,2,6],"span":[700,2,37]},{"path":[4,37,2,6,4],"span":[700,2,10]},{"path":[4,37,2,6,5],"span":[700,11,17]},{"path":[4,37,2,6,1],"span":[700,18,32]},{"path":[4,37,2,6,3],"span":[700,35,36]},{"path":[4,37,2,7],"span":[702,2,31]},{"path":[4,37,2,7,4],"span":[702,2,10]},{"path":[4,37,2,7,6],"span":[702,11,23]},{"path":[4,37,2,7,1],"span":[702,24,26]},{"path":[4,37,2,7,3],"span":[702,29,30]},{"path":[4,37,2,8],"span":[704,2,33]},{"path":[4,37,2,8,4],"span":[704,2,10]},{"path":[4,37,2,8,5],"span":[704,11,17]},{"path":[4,37,2,8,1],"span":[704,18,28]},{"path":[4,37,2,8,3],"span":[704,31,32]},{"path":[4,37,2,9],"span":[705,2,35]},{"path":[4,37,2,9,4],"span":[705,2,10]},{"path":[4,37,2,9,5],"span":[705,11,17]},{"path":[4,37,2,9,1],"span":[705,18,29]},{"path":[4,37,2,9,3],"span":[705,32,34]},{"path":[4,37,2,10],"span":[707,2,34]},{"path":[4,37,2,10,4],"span":[707,2,10]},{"path":[4,37,2,10,5],"span":[707,11,17]},{"path":[4,37,2,10,1],"span":[707,18,28]},{"path":[4,37,2,10,3],"span":[707,31,33]},{"path":[4,37,2,11],"span":[708,2,37]},{"path":[4,37,2,11,4],"span":[708,2,10]},{"path":[4,37,2,11,5],"span":[708,11,17]},{"path":[4,37,2,11,1],"span":[708,18,31]},{"path":[4,37,2,11,3],"span":[708,34,36]},{"path":[4,37,2,12],"span":[709,2,54]},{"path":[4,37,2,12,4],"span":[709,2,10]},{"path":[4,37,2,12,5],"span":[709,11,17]},{"path":[4,37,2,12,1],"span":[709,18,48]},{"path":[4,37,2,12,3],"span":[709,51,53]},{"path":[4,37,2,13],"span":[711,2,36]},{"path":[4,37,2,13,4],"span":[711,2,10]},{"path":[4,37,2,13,5],"span":[711,11,17]},{"path":[4,37,2,13,1],"span":[711,18,30]},{"path":[4,37,2,13,3],"span":[711,33,35]},{"path":[4,37,2,14],"span":[712,2,37]},{"path":[4,37,2,14,4],"span":[712,2,10]},{"path":[4,37,2,14,5],"span":[712,11,17]},{"path":[4,37,2,14,1],"span":[712,18,31]},{"path":[4,37,2,14,3],"span":[712,34,36]},{"path":[4,38],"span":[716,0,719,1],"leadingComments":" Network IP address with IP and subnet "},{"path":[4,38,1],"span":[716,8,20]},{"path":[4,38,2,0],"span":[717,2,16]},{"path":[4,38,2,0,5],"span":[717,2,8]},{"path":[4,38,2,0,1],"span":[717,9,11]},{"path":[4,38,2,0,3],"span":[717,14,15]},{"path":[4,38,2,1],"span":[718,2,20]},{"path":[4,38,2,1,5],"span":[718,2,8]},{"path":[4,38,2,1,1],"span":[718,9,15]},{"path":[4,38,2,1,3],"span":[718,18,19]},{"path":[4,39],"span":[722,0,763,1],"leadingComments":" Processor *"},{"path":[4,39,1],"span":[722,8,17]},{"path":[4,39,2,0],"span":[723,2,21]},{"path":[4,39,2,0,5],"span":[723,2,8]},{"path":[4,39,2,0,1],"span":[723,10,14]},{"path":[4,39,2,0,3],"span":[723,17,18]},{"path":[4,39,2,1],"span":[724,2,36],"trailingComments":" Linux-only\n"},{"path":[4,39,2,1,4],"span":[724,2,10]},{"path":[4,39,2,1,5],"span":[724,11,17]},{"path":[4,39,2,1,1],"span":[724,18,31]},{"path":[4,39,2,1,3],"span":[724,34,35]},{"path":[4,39,2,2],"span":[725,2,35],"trailingComments":" Windows-only\n"},{"path":[4,39,2,2,4],"span":[725,2,10]},{"path":[4,39,2,2,5],"span":[725,11,16]},{"path":[4,39,2,2,1],"span":[725,17,30]},{"path":[4,39,2,2,3],"span":[725,33,34]},{"path":[4,39,2,3],"span":[726,2,40],"trailingComments":" Consolidate on-prem fields into single numeric list with translations\n"},{"path":[4,39,2,3,4],"span":[726,2,10]},{"path":[4,39,2,3,6],"span":[726,11,22]},{"path":[4,39,2,3,1],"span":[726,23,35]},{"path":[4,39,2,3,3],"span":[726,38,39]},{"path":[4,39,2,4],"span":[727,2,34],"trailingComments":" Windows-only\n"},{"path":[4,39,2,4,4],"span":[727,2,10]},{"path":[4,39,2,4,5],"span":[727,11,16]},{"path":[4,39,2,4,1],"span":[727,17,29]},{"path":[4,39,2,4,3],"span":[727,32,33]},{"path":[4,39,2,5],"span":[728,2,32],"trailingComments":" Standardize to numeric\n"},{"path":[4,39,2,5,4],"span":[728,2,10]},{"path":[4,39,2,5,5],"span":[728,11,17]},{"path":[4,39,2,5,1],"span":[728,18,27]},{"path":[4,39,2,5,3],"span":[728,30,31]},{"path":[4,39,2,6],"span":[729,2,33],"trailingComments":" Linux-only\n"},{"path":[4,39,2,6,4],"span":[729,2,10]},{"path":[4,39,2,6,5],"span":[729,11,17]},{"path":[4,39,2,6,1],"span":[729,18,28]},{"path":[4,39,2,6,3],"span":[729,31,32]},{"path":[4,39,2,7],"span":[730,2,30],"trailingComments":" Windows-only\n"},{"path":[4,39,2,7,4],"span":[730,2,10]},{"path":[4,39,2,7,5],"span":[730,11,17]},{"path":[4,39,2,7,1],"span":[730,18,25]},{"path":[4,39,2,7,3],"span":[730,28,29]},{"path":[4,39,2,8],"span":[731,2,41],"trailingComments":" Standardize values to numeric (MHz)\n"},{"path":[4,39,2,8,4],"span":[731,2,10]},{"path":[4,39,2,8,5],"span":[731,11,16]},{"path":[4,39,2,8,1],"span":[731,17,36]},{"path":[4,39,2,8,3],"span":[731,39,40]},{"path":[4,39,2,9],"span":[732,2,33],"trailingComments":" Windows-only\n"},{"path":[4,39,2,9,4],"span":[732,2,10]},{"path":[4,39,2,9,5],"span":[732,11,16]},{"path":[4,39,2,9,1],"span":[732,17,27]},{"path":[4,39,2,9,3],"span":[732,30,32]},{"path":[4,39,2,10],"span":[733,2,33],"trailingComments":" Windows-only\n"},{"path":[4,39,2,10,4],"span":[733,2,10]},{"path":[4,39,2,10,5],"span":[733,11,17]},{"path":[4,39,2,10,1],"span":[733,18,27]},{"path":[4,39,2,10,3],"span":[733,30,32]},{"path":[4,39,2,11],"span":[734,2,41],"trailingComments":" Windows-only\n"},{"path":[4,39,2,11,4],"span":[734,2,10]},{"path":[4,39,2,11,5],"span":[734,11,16]},{"path":[4,39,2,11,1],"span":[734,17,35]},{"path":[4,39,2,11,3],"span":[734,38,40]},{"path":[4,39,2,12],"span":[735,2,35],"trailingComments":" Consolidate on-prem fields into single numeric list with translations\n"},{"path":[4,39,2,12,4],"span":[735,2,10]},{"path":[4,39,2,12,6],"span":[735,11,22]},{"path":[4,39,2,12,1],"span":[735,23,29]},{"path":[4,39,2,12,3],"span":[735,32,34]},{"path":[4,39,2,13],"span":[736,2,41],"trailingComments":" Linux-only\n"},{"path":[4,39,2,13,4],"span":[736,2,10]},{"path":[4,39,2,13,5],"span":[736,11,17]},{"path":[4,39,2,13,1],"span":[736,18,35]},{"path":[4,39,2,13,3],"span":[736,38,40]},{"path":[4,39,2,14],"span":[737,2,40],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,39,2,14,4],"span":[737,2,10]},{"path":[4,39,2,14,5],"span":[737,11,16]},{"path":[4,39,2,14,1],"span":[737,17,34]},{"path":[4,39,2,14,3],"span":[737,37,39]},{"path":[4,39,2,15],"span":[738,2,40],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,39,2,15,4],"span":[738,2,10]},{"path":[4,39,2,15,5],"span":[738,11,16]},{"path":[4,39,2,15,1],"span":[738,17,34]},{"path":[4,39,2,15,3],"span":[738,37,39]},{"path":[4,39,2,16],"span":[739,2,39],"trailingComments":" Standardize values to int (kilobytes)\n"},{"path":[4,39,2,16,4],"span":[739,2,10]},{"path":[4,39,2,16,5],"span":[739,11,16]},{"path":[4,39,2,16,1],"span":[739,17,33]},{"path":[4,39,2,16,3],"span":[739,36,38]},{"path":[4,39,2,17],"span":[740,2,41],"trailingComments":" Windows-only\n"},{"path":[4,39,2,17,4],"span":[740,2,10]},{"path":[4,39,2,17,5],"span":[740,11,16]},{"path":[4,39,2,17,1],"span":[740,17,35]},{"path":[4,39,2,17,3],"span":[740,38,40]},{"path":[4,39,2,18],"span":[741,2,39],"trailingComments":" Linux-only, standardize to numeric (kilobytes)\n"},{"path":[4,39,2,18,4],"span":[741,2,10]},{"path":[4,39,2,18,5],"span":[741,11,16]},{"path":[4,39,2,18,1],"span":[741,17,33]},{"path":[4,39,2,18,3],"span":[741,36,38]},{"path":[4,39,2,19],"span":[742,2,28],"trailingComments":" Windows-only, unclear meaning\n"},{"path":[4,39,2,19,4],"span":[742,2,10]},{"path":[4,39,2,19,5],"span":[742,11,16]},{"path":[4,39,2,19,1],"span":[742,17,22]},{"path":[4,39,2,19,3],"span":[742,25,27]},{"path":[4,39,2,20],"span":[743,2,44]},{"path":[4,39,2,20,4],"span":[743,2,10]},{"path":[4,39,2,20,5],"span":[743,11,16]},{"path":[4,39,2,20,1],"span":[743,17,36]},{"path":[4,39,2,20,3],"span":[743,39,41]},{"path":[4,39,2,21],"span":[744,2,38]},{"path":[4,39,2,21,4],"span":[744,2,10]},{"path":[4,39,2,21,5],"span":[744,11,17]},{"path":[4,39,2,21,1],"span":[744,18,30]},{"path":[4,39,2,21,3],"span":[744,33,35]},{"path":[4,39,2,22],"span":[745,2,42],"trailingComments":" Standardize Linux values to int (MHz)\n"},{"path":[4,39,2,22,4],"span":[745,2,10]},{"path":[4,39,2,22,5],"span":[745,11,16]},{"path":[4,39,2,22,1],"span":[745,17,36]},{"path":[4,39,2,22,3],"span":[745,39,41]},{"path":[4,39,2,23],"span":[746,2,42],"trailingComments":" Linux-only, standardize to numeric (MHz)\n"},{"path":[4,39,2,23,4],"span":[746,2,10]},{"path":[4,39,2,23,5],"span":[746,11,16]},{"path":[4,39,2,23,1],"span":[746,17,36]},{"path":[4,39,2,23,3],"span":[746,39,41]},{"path":[4,39,2,24],"span":[747,2,35],"trailingComments":" Linux-only, standardize to numeric\n"},{"path":[4,39,2,24,4],"span":[747,2,10]},{"path":[4,39,2,24,5],"span":[747,11,16]},{"path":[4,39,2,24,1],"span":[747,17,29]},{"path":[4,39,2,24,3],"span":[747,32,34]},{"path":[4,39,2,25],"span":[748,2,32],"trailingComments":" Linux-only\n"},{"path":[4,39,2,25,4],"span":[748,2,10]},{"path":[4,39,2,25,5],"span":[748,11,17]},{"path":[4,39,2,25,1],"span":[748,18,26]},{"path":[4,39,2,25,3],"span":[748,29,31]},{"path":[4,39,2,26],"span":[749,2,45]},{"path":[4,39,2,26,4],"span":[749,2,10]},{"path":[4,39,2,26,5],"span":[749,11,16]},{"path":[4,39,2,26,1],"span":[749,17,37]},{"path":[4,39,2,26,3],"span":[749,40,42]},{"path":[4,39,2,27],"span":[750,2,36],"trailingComments":" Windows-only, probably not used much by customers due to its complexity\n"},{"path":[4,39,2,27,4],"span":[750,2,10]},{"path":[4,39,2,27,5],"span":[750,11,17]},{"path":[4,39,2,27,1],"span":[750,18,30]},{"path":[4,39,2,27,3],"span":[750,33,35]},{"path":[4,39,2,28],"span":[751,2,43],"trailingComments":" Windows-only\n"},{"path":[4,39,2,28,4],"span":[751,2,10]},{"path":[4,39,2,28,6],"span":[751,11,22]},{"path":[4,39,2,28,1],"span":[751,23,37]},{"path":[4,39,2,28,3],"span":[751,40,42]},{"path":[4,39,2,29],"span":[752,2,31],"trailingComments":" Windows-only\n"},{"path":[4,39,2,29,4],"span":[752,2,10]},{"path":[4,39,2,29,5],"span":[752,11,16]},{"path":[4,39,2,29,1],"span":[752,17,25]},{"path":[4,39,2,29,3],"span":[752,28,30]},{"path":[4,39,2,30],"span":[753,2,42],"trailingComments":" Windows-only\n"},{"path":[4,39,2,30,4],"span":[753,2,10]},{"path":[4,39,2,30,5],"span":[753,11,17]},{"path":[4,39,2,30,1],"span":[753,18,36]},{"path":[4,39,2,30,3],"span":[753,39,41]},{"path":[4,39,2,31],"span":[754,2,31],"trailingComments":" Linux-only\n"},{"path":[4,39,2,31,4],"span":[754,2,10]},{"path":[4,39,2,31,5],"span":[754,11,16]},{"path":[4,39,2,31,1],"span":[754,18,25]},{"path":[4,39,2,31,3],"span":[754,28,30]},{"path":[4,39,2,32],"span":[755,2,35],"trailingComments":" Windows-only\n"},{"path":[4,39,2,32,4],"span":[755,2,10]},{"path":[4,39,2,32,6],"span":[755,11,22]},{"path":[4,39,2,32,1],"span":[755,23,29]},{"path":[4,39,2,32,3],"span":[755,32,34]},{"path":[4,39,2,33],"span":[756,2,31],"trailingComments":" Consolidate on-prem fields into single numeric list\n"},{"path":[4,39,2,33,4],"span":[756,2,10]},{"path":[4,39,2,33,5],"span":[756,11,16]},{"path":[4,39,2,33,1],"span":[756,17,25]},{"path":[4,39,2,33,3],"span":[756,28,30]},{"path":[4,39,2,34],"span":[757,2,54],"trailingComments":" Linux-only\n"},{"path":[4,39,2,34,4],"span":[757,2,10]},{"path":[4,39,2,34,5],"span":[757,11,16]},{"path":[4,39,2,34,1],"span":[757,17,48]},{"path":[4,39,2,34,3],"span":[757,51,53]},{"path":[4,39,2,35],"span":[758,2,33],"trailingComments":" Windows-only\n"},{"path":[4,39,2,35,4],"span":[758,2,10]},{"path":[4,39,2,35,5],"span":[758,11,17]},{"path":[4,39,2,35,1],"span":[758,18,27]},{"path":[4,39,2,35,3],"span":[758,30,32]},{"path":[4,39,2,36],"span":[759,2,43],"trailingComments":" Windows-only\n"},{"path":[4,39,2,36,4],"span":[759,2,10]},{"path":[4,39,2,36,6],"span":[759,11,22]},{"path":[4,39,2,36,1],"span":[759,23,37]},{"path":[4,39,2,36,3],"span":[759,40,42]},{"path":[4,39,2,37],"span":[760,2,31],"trailingComments":" Windows-only\n"},{"path":[4,39,2,37,4],"span":[760,2,10]},{"path":[4,39,2,37,5],"span":[760,11,17]},{"path":[4,39,2,37,1],"span":[760,18,25]},{"path":[4,39,2,37,3],"span":[760,28,30]},{"path":[4,39,2,38],"span":[761,2,38],"trailingComments":" Linux-only\n"},{"path":[4,39,2,38,4],"span":[761,2,10]},{"path":[4,39,2,38,5],"span":[761,11,17]},{"path":[4,39,2,38,1],"span":[761,18,32]},{"path":[4,39,2,38,3],"span":[761,35,37]},{"path":[4,39,2,39],"span":[762,2,49],"trailingComments":" Windows-only\n"},{"path":[4,39,2,39,4],"span":[762,2,10]},{"path":[4,39,2,39,6],"span":[762,11,22]},{"path":[4,39,2,39,1],"span":[762,23,43]},{"path":[4,39,2,39,3],"span":[762,46,48]},{"path":[4,40],"span":[766,0,776,1],"leadingComments":" Chassis *"},{"path":[4,40,1],"span":[766,8,15]},{"path":[4,40,2,0],"span":[768,2,25]},{"path":[4,40,2,0,6],"span":[768,2,13]},{"path":[4,40,2,0,1],"span":[768,16,20]},{"path":[4,40,2,0,3],"span":[768,23,24]},{"path":[4,40,2,1],"span":[769,2,33]},{"path":[4,40,2,1,4],"span":[769,2,10]},{"path":[4,40,2,1,5],"span":[769,11,15]},{"path":[4,40,2,1,1],"span":[769,16,28]},{"path":[4,40,2,1,3],"span":[769,31,32]},{"path":[4,40,2,2],"span":[770,2,41]},{"path":[4,40,2,2,4],"span":[770,2,10]},{"path":[4,40,2,2,5],"span":[770,11,17]},{"path":[4,40,2,2,1],"span":[770,24,36]},{"path":[4,40,2,2,3],"span":[770,39,40]},{"path":[4,40,2,3],"span":[771,2,43]},{"path":[4,40,2,3,4],"span":[771,2,10]},{"path":[4,40,2,3,6],"span":[771,11,22]},{"path":[4,40,2,3,1],"span":[771,23,38]},{"path":[4,40,2,3,3],"span":[771,41,42]},{"path":[4,40,2,4],"span":[772,2,42]},{"path":[4,40,2,4,4],"span":[772,2,10]},{"path":[4,40,2,4,5],"span":[772,11,17]},{"path":[4,40,2,4,1],"span":[772,24,37]},{"path":[4,40,2,4,3],"span":[772,40,41]},{"path":[4,40,2,5],"span":[773,2,38]},{"path":[4,40,2,5,4],"span":[773,2,10]},{"path":[4,40,2,5,5],"span":[773,11,17]},{"path":[4,40,2,5,1],"span":[773,24,33]},{"path":[4,40,2,5,3],"span":[773,36,37]},{"path":[4,40,2,6],"span":[774,2,36]},{"path":[4,40,2,6,4],"span":[774,2,10]},{"path":[4,40,2,6,5],"span":[774,11,17]},{"path":[4,40,2,6,1],"span":[774,24,31]},{"path":[4,40,2,6,3],"span":[774,34,35]},{"path":[4,40,2,7],"span":[775,2,40]},{"path":[4,40,2,7,4],"span":[775,2,10]},{"path":[4,40,2,7,6],"span":[775,11,22]},{"path":[4,40,2,7,1],"span":[775,23,35]},{"path":[4,40,2,7,3],"span":[775,38,39]},{"path":[4,41],"span":[781,0,793,1],"leadingComments":"\n Hard drive for computers: Windows.WindowsHardDisk, Unix.HardDisks, Mac.MacHardDisk\n"},{"path":[4,41,1],"span":[781,8,17]},{"path":[4,41,2,0],"span":[782,2,30]},{"path":[4,41,2,0,4],"span":[782,2,10]},{"path":[4,41,2,0,5],"span":[782,11,17]},{"path":[4,41,2,0,1],"span":[782,18,25]},{"path":[4,41,2,0,3],"span":[782,28,29]},{"path":[4,41,2,1],"span":[783,2,31]},{"path":[4,41,2,1,4],"span":[783,2,10]},{"path":[4,41,2,1,5],"span":[783,11,15]},{"path":[4,41,2,1,1],"span":[783,16,26]},{"path":[4,41,2,1,3],"span":[783,29,30]},{"path":[4,41,2,2],"span":[784,2,34]},{"path":[4,41,2,2,4],"span":[784,2,10]},{"path":[4,41,2,2,5],"span":[784,11,17]},{"path":[4,41,2,2,1],"span":[784,18,29]},{"path":[4,41,2,2,3],"span":[784,32,33]},{"path":[4,41,2,3],"span":[785,2,32]},{"path":[4,41,2,3,4],"span":[785,2,10]},{"path":[4,41,2,3,5],"span":[785,11,17]},{"path":[4,41,2,3,1],"span":[785,18,27]},{"path":[4,41,2,3,3],"span":[785,30,31]},{"path":[4,41,2,4],"span":[786,2,38]},{"path":[4,41,2,4,4],"span":[786,2,10]},{"path":[4,41,2,4,6],"span":[786,11,22]},{"path":[4,41,2,4,1],"span":[786,23,33]},{"path":[4,41,2,4,3],"span":[786,36,37]},{"path":[4,41,2,5],"span":[787,2,34]},{"path":[4,41,2,5,4],"span":[787,2,10]},{"path":[4,41,2,5,5],"span":[787,11,17]},{"path":[4,41,2,5,1],"span":[787,18,29]},{"path":[4,41,2,5,3],"span":[787,32,33]},{"path":[4,41,2,6],"span":[788,2,32]},{"path":[4,41,2,6,4],"span":[788,2,10]},{"path":[4,41,2,6,5],"span":[788,11,16]},{"path":[4,41,2,6,1],"span":[788,17,27]},{"path":[4,41,2,6,3],"span":[788,30,31]},{"path":[4,41,2,7],"span":[789,2,26]},{"path":[4,41,2,7,4],"span":[789,2,10]},{"path":[4,41,2,7,5],"span":[789,11,16]},{"path":[4,41,2,7,1],"span":[789,17,21]},{"path":[4,41,2,7,3],"span":[789,24,25]},{"path":[4,41,2,8],"span":[790,2,34]},{"path":[4,41,2,8,4],"span":[790,2,10]},{"path":[4,41,2,8,5],"span":[790,11,17]},{"path":[4,41,2,8,1],"span":[790,18,29]},{"path":[4,41,2,8,3],"span":[790,32,33]},{"path":[4,41,2,9],"span":[791,2,37]},{"path":[4,41,2,9,4],"span":[791,2,10]},{"path":[4,41,2,9,5],"span":[791,11,17]},{"path":[4,41,2,9,1],"span":[791,18,31]},{"path":[4,41,2,9,3],"span":[791,34,36]},{"path":[4,41,2,10],"span":[792,2,34]},{"path":[4,41,2,10,4],"span":[792,2,10]},{"path":[4,41,2,10,5],"span":[792,11,17]},{"path":[4,41,2,10,1],"span":[792,18,28]},{"path":[4,41,2,10,3],"span":[792,31,33]},{"path":[4,42],"span":[798,0,828,1],"leadingComments":"\n Volumes for Computers: Windows.Volume+Windows.EncryptableVolumes and Unix.Volumes\n"},{"path":[4,42,1],"span":[798,8,19]},{"path":[4,42,2,0],"span":[799,2,32]},{"path":[4,42,2,0,4],"span":[799,2,10]},{"path":[4,42,2,0,5],"span":[799,11,17]},{"path":[4,42,2,0,1],"span":[799,18,27]},{"path":[4,42,2,0,3],"span":[799,30,31]},{"path":[4,42,2,1],"span":[800,2,27],"trailingComments":" unix path, windows drive_letter\n"},{"path":[4,42,2,1,4],"span":[800,2,10]},{"path":[4,42,2,1,5],"span":[800,11,17]},{"path":[4,42,2,1,1],"span":[800,18,22]},{"path":[4,42,2,1,3],"span":[800,25,26]},{"path":[4,42,2,2],"span":[801,2,28],"trailingComments":" win and linux\n"},{"path":[4,42,2,2,4],"span":[801,2,10]},{"path":[4,42,2,2,5],"span":[801,11,17]},{"path":[4,42,2,2,1],"span":[801,18,23]},{"path":[4,42,2,2,3],"span":[801,26,27]},{"path":[4,42,2,3],"span":[802,2,27]},{"path":[4,42,2,3,4],"span":[802,2,10]},{"path":[4,42,2,3,5],"span":[802,11,17]},{"path":[4,42,2,3,1],"span":[802,18,22]},{"path":[4,42,2,3,3],"span":[802,25,26]},{"path":[4,42,2,4],"span":[804,2,30],"trailingComments":" windows capacity, size in unix\n"},{"path":[4,42,2,4,4],"span":[804,2,10]},{"path":[4,42,2,4,5],"span":[804,11,16]},{"path":[4,42,2,4,1],"span":[804,17,25]},{"path":[4,42,2,4,3],"span":[804,28,29]},{"path":[4,42,2,5],"span":[805,2,32]},{"path":[4,42,2,5,4],"span":[805,2,10]},{"path":[4,42,2,5,5],"span":[805,11,16]},{"path":[4,42,2,5,1],"span":[805,17,27]},{"path":[4,42,2,5,3],"span":[805,30,31]},{"path":[4,42,2,6],"span":[806,2,32]},{"path":[4,42,2,6,4],"span":[806,2,10]},{"path":[4,42,2,6,5],"span":[806,11,16]},{"path":[4,42,2,6,1],"span":[806,17,27]},{"path":[4,42,2,6,3],"span":[806,30,31]},{"path":[4,42,2,7],"span":[808,2,38],"trailingComments":" Windows: WMI mapped, Unix: string\n"},{"path":[4,42,2,7,4],"span":[808,2,10]},{"path":[4,42,2,7,6],"span":[808,11,22]},{"path":[4,42,2,7,1],"span":[808,23,33]},{"path":[4,42,2,7,3],"span":[808,36,37]},{"path":[4,42,2,8],"span":[809,2,45],"trailingComments":" from Windows if encrypted: Windows.EncryptableVolumes\n"},{"path":[4,42,2,8,4],"span":[809,2,10]},{"path":[4,42,2,8,6],"span":[809,11,22]},{"path":[4,42,2,8,1],"span":[809,23,40]},{"path":[4,42,2,8,3],"span":[809,43,44]},{"path":[4,42,2,9],"span":[811,2,41]},{"path":[4,42,2,9,4],"span":[811,2,10]},{"path":[4,42,2,9,5],"span":[811,11,17]},{"path":[4,42,2,9,1],"span":[811,18,35]},{"path":[4,42,2,9,3],"span":[811,38,40]},{"path":[4,42,2,10],"span":[812,2,41]},{"path":[4,42,2,10,4],"span":[812,2,10]},{"path":[4,42,2,10,5],"span":[812,11,17]},{"path":[4,42,2,10,1],"span":[812,18,35]},{"path":[4,42,2,10,3],"span":[812,38,40]},{"path":[4,42,2,11],"span":[813,2,35]},{"path":[4,42,2,11,4],"span":[813,2,10]},{"path":[4,42,2,11,5],"span":[813,11,17]},{"path":[4,42,2,11,1],"span":[813,18,29]},{"path":[4,42,2,11,3],"span":[813,32,34]},{"path":[4,42,2,12],"span":[815,2,32]},{"path":[4,42,2,12,4],"span":[815,2,10]},{"path":[4,42,2,12,5],"span":[815,11,15]},{"path":[4,42,2,12,1],"span":[815,16,26]},{"path":[4,42,2,12,3],"span":[815,29,31]},{"path":[4,42,2,13],"span":[816,2,32]},{"path":[4,42,2,13,4],"span":[816,2,10]},{"path":[4,42,2,13,5],"span":[816,11,15]},{"path":[4,42,2,13,1],"span":[816,16,26]},{"path":[4,42,2,13,3],"span":[816,29,31]},{"path":[4,42,2,14],"span":[817,2,35]},{"path":[4,42,2,14,4],"span":[817,2,10]},{"path":[4,42,2,14,5],"span":[817,11,15]},{"path":[4,42,2,14,1],"span":[817,16,29]},{"path":[4,42,2,14,3],"span":[817,32,34]},{"path":[4,42,2,15],"span":[818,2,35]},{"path":[4,42,2,15,4],"span":[818,2,10]},{"path":[4,42,2,15,5],"span":[818,11,15]},{"path":[4,42,2,15,1],"span":[818,16,29]},{"path":[4,42,2,15,3],"span":[818,32,34]},{"path":[4,42,2,16],"span":[819,2,38]},{"path":[4,42,2,16,4],"span":[819,2,10]},{"path":[4,42,2,16,5],"span":[819,11,15]},{"path":[4,42,2,16,1],"span":[819,16,32]},{"path":[4,42,2,16,3],"span":[819,35,37]},{"path":[4,42,2,17],"span":[820,2,39]},{"path":[4,42,2,17,4],"span":[820,2,10]},{"path":[4,42,2,17,5],"span":[820,11,15]},{"path":[4,42,2,17,1],"span":[820,16,33]},{"path":[4,42,2,17,3],"span":[820,36,38]},{"path":[4,42,2,18],"span":[821,2,42]},{"path":[4,42,2,18,4],"span":[821,2,10]},{"path":[4,42,2,18,5],"span":[821,11,15]},{"path":[4,42,2,18,1],"span":[821,16,36]},{"path":[4,42,2,18,3],"span":[821,39,41]},{"path":[4,42,2,19],"span":[822,2,53]},{"path":[4,42,2,19,4],"span":[822,2,10]},{"path":[4,42,2,19,5],"span":[822,11,15]},{"path":[4,42,2,19,1],"span":[822,16,47]},{"path":[4,42,2,19,3],"span":[822,50,52]},{"path":[4,42,2,20],"span":[825,2,31],"leadingComments":" unix\n"},{"path":[4,42,2,20,4],"span":[825,2,10]},{"path":[4,42,2,20,5],"span":[825,11,17]},{"path":[4,42,2,20,1],"span":[825,18,25]},{"path":[4,42,2,20,3],"span":[825,28,30]},{"path":[4,42,2,21],"span":[826,2,35]},{"path":[4,42,2,21,4],"span":[826,2,10]},{"path":[4,42,2,21,5],"span":[826,11,17]},{"path":[4,42,2,21,1],"span":[826,18,29]},{"path":[4,42,2,21,3],"span":[826,32,34]},{"path":[4,43],"span":[833,0,840,1],"leadingComments":"\n Network drives/volumes for Computers: Windows.MappedDrive and Mac.NetworkVolume\n"},{"path":[4,43,1],"span":[833,8,21]},{"path":[4,43,8,0],"span":[834,2,837,5]},{"path":[4,43,8,0,1],"span":[834,8,14]},{"path":[4,43,2,0],"span":[835,4,44]},{"path":[4,43,2,0,6],"span":[835,4,22]},{"path":[4,43,2,0,1],"span":[835,23,39]},{"path":[4,43,2,0,3],"span":[835,42,43]},{"path":[4,43,2,1],"span":[836,4,36]},{"path":[4,43,2,1,6],"span":[836,4,20]},{"path":[4,43,2,1,1],"span":[836,21,31]},{"path":[4,43,2,1,3],"span":[836,34,35]},{"path":[4,43,2,2],"span":[839,2,29]},{"path":[4,43,2,2,4],"span":[839,2,10]},{"path":[4,43,2,2,5],"span":[839,11,17]},{"path":[4,43,2,2,1],"span":[839,18,22]},{"path":[4,43,2,2,3],"span":[839,25,28]},{"path":[4,44],"span":[843,0,848,1],"leadingComments":" Network drive for Windows: Mapped drive.\n"},{"path":[4,44,1],"span":[843,8,26]},{"path":[4,44,2,0],"span":[844,2,26]},{"path":[4,44,2,0,5],"span":[844,2,8]},{"path":[4,44,2,0,1],"span":[844,9,21]},{"path":[4,44,2,0,3],"span":[844,24,25]},{"path":[4,44,2,1],"span":[845,2,32]},{"path":[4,44,2,1,4],"span":[845,2,10]},{"path":[4,44,2,1,5],"span":[845,11,17]},{"path":[4,44,2,1,1],"span":[845,18,27]},{"path":[4,44,2,1,3],"span":[845,30,31]},{"path":[4,44,2,2],"span":[846,2,34]},{"path":[4,44,2,2,4],"span":[846,2,10]},{"path":[4,44,2,2,5],"span":[846,11,17]},{"path":[4,44,2,2,1],"span":[846,18,29]},{"path":[4,44,2,2,3],"span":[846,32,33]},{"path":[4,44,2,3],"span":[847,2,34]},{"path":[4,44,2,3,4],"span":[847,2,10]},{"path":[4,44,2,3,5],"span":[847,11,17]},{"path":[4,44,2,3,1],"span":[847,18,29]},{"path":[4,44,2,3,3],"span":[847,32,33]},{"path":[4,45],"span":[851,0,857,1],"leadingComments":" Network volume for Mac: NetworkVolume.\n"},{"path":[4,45,1],"span":[851,8,24]},{"path":[4,45,2,0],"span":[852,2,27]},{"path":[4,45,2,0,4],"span":[852,2,10]},{"path":[4,45,2,0,5],"span":[852,11,17]},{"path":[4,45,2,0,1],"span":[852,18,22]},{"path":[4,45,2,0,3],"span":[852,25,26]},{"path":[4,45,2,1],"span":[853,2,35]},{"path":[4,45,2,1,4],"span":[853,2,10]},{"path":[4,45,2,1,5],"span":[853,11,17]},{"path":[4,45,2,1,1],"span":[853,18,30]},{"path":[4,45,2,1,3],"span":[853,33,34]},{"path":[4,45,2,2],"span":[854,2,36]},{"path":[4,45,2,2,4],"span":[854,2,10]},{"path":[4,45,2,2,5],"span":[854,11,17]},{"path":[4,45,2,2,1],"span":[854,18,31]},{"path":[4,45,2,2,3],"span":[854,34,35]},{"path":[4,45,2,3],"span":[855,2,35]},{"path":[4,45,2,3,4],"span":[855,2,10]},{"path":[4,45,2,3,5],"span":[855,11,17]},{"path":[4,45,2,3,1],"span":[855,18,30]},{"path":[4,45,2,3,3],"span":[855,33,34]},{"path":[4,45,2,4],"span":[856,2,36]},{"path":[4,45,2,4,4],"span":[856,2,10]},{"path":[4,45,2,4,5],"span":[856,11,17]},{"path":[4,45,2,4,1],"span":[856,18,31]},{"path":[4,45,2,4,3],"span":[856,34,35]},{"path":[4,46],"span":[862,0,869,1],"leadingComments":"\n Keyboard for computers: Windows.Keyboards\n"},{"path":[4,46,1],"span":[862,8,16]},{"path":[4,46,2,0],"span":[863,2,53]},{"path":[4,46,2,0,4],"span":[863,2,10]},{"path":[4,46,2,0,6],"span":[863,11,22]},{"path":[4,46,2,0,1],"span":[863,23,48]},{"path":[4,46,2,0,3],"span":[863,51,52]},{"path":[4,46,2,1],"span":[864,2,47]},{"path":[4,46,2,1,4],"span":[864,2,10]},{"path":[4,46,2,1,5],"span":[864,11,15]},{"path":[4,46,2,1,1],"span":[864,16,42]},{"path":[4,46,2,1,3],"span":[864,45,46]},{"path":[4,46,2,2],"span":[865,2,34]},{"path":[4,46,2,2,4],"span":[865,2,10]},{"path":[4,46,2,2,5],"span":[865,11,17]},{"path":[4,46,2,2,1],"span":[865,18,29]},{"path":[4,46,2,2,3],"span":[865,32,33]},{"path":[4,46,2,3],"span":[866,2,32]},{"path":[4,46,2,3,4],"span":[866,2,10]},{"path":[4,46,2,3,5],"span":[866,11,17]},{"path":[4,46,2,3,1],"span":[866,18,27]},{"path":[4,46,2,3,3],"span":[866,30,31]},{"path":[4,46,2,4],"span":[867,2,29]},{"path":[4,46,2,4,4],"span":[867,2,10]},{"path":[4,46,2,4,5],"span":[867,11,17]},{"path":[4,46,2,4,1],"span":[867,18,24]},{"path":[4,46,2,4,3],"span":[867,27,28]},{"path":[4,46,2,5],"span":[868,2,45]},{"path":[4,46,2,5,4],"span":[868,2,10]},{"path":[4,46,2,5,5],"span":[868,11,16]},{"path":[4,46,2,5,1],"span":[868,17,40]},{"path":[4,46,2,5,3],"span":[868,43,44]},{"path":[4,47],"span":[875,0,880,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,47,1],"span":[875,8,19]},{"path":[4,47,2,0],"span":[876,2,29]},{"path":[4,47,2,0,4],"span":[876,2,10]},{"path":[4,47,2,0,5],"span":[876,11,16]},{"path":[4,47,2,0,1],"span":[876,17,24]},{"path":[4,47,2,0,3],"span":[876,27,28]},{"path":[4,47,2,1],"span":[877,2,36]},{"path":[4,47,2,1,4],"span":[877,2,10]},{"path":[4,47,2,1,6],"span":[877,11,22]},{"path":[4,47,2,1,1],"span":[877,23,31]},{"path":[4,47,2,1,3],"span":[877,34,35]},{"path":[4,47,2,2],"span":[878,2,32]},{"path":[4,47,2,2,4],"span":[878,2,10]},{"path":[4,47,2,2,5],"span":[878,11,17]},{"path":[4,47,2,2,1],"span":[878,18,27]},{"path":[4,47,2,2,3],"span":[878,30,31]},{"path":[4,47,2,3],"span":[879,2,36]},{"path":[4,47,2,3,4],"span":[879,2,10]},{"path":[4,47,2,3,5],"span":[879,11,17]},{"path":[4,47,2,3,1],"span":[879,18,31]},{"path":[4,47,2,3,3],"span":[879,34,35]},{"path":[4,48],"span":[886,0,894,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,48,1],"span":[886,8,24]},{"path":[4,48,2,0],"span":[887,2,40]},{"path":[4,48,2,0,4],"span":[887,2,10]},{"path":[4,48,2,0,6],"span":[887,11,22]},{"path":[4,48,2,0,1],"span":[887,23,35]},{"path":[4,48,2,0,3],"span":[887,38,39]},{"path":[4,48,2,1],"span":[888,2,30]},{"path":[4,48,2,1,4],"span":[888,2,10]},{"path":[4,48,2,1,5],"span":[888,11,17]},{"path":[4,48,2,1,1],"span":[888,18,25]},{"path":[4,48,2,1,3],"span":[888,28,29]},{"path":[4,48,2,2],"span":[889,2,53]},{"path":[4,48,2,2,4],"span":[889,2,10]},{"path":[4,48,2,2,6],"span":[889,11,22]},{"path":[4,48,2,2,1],"span":[889,23,48]},{"path":[4,48,2,2,3],"span":[889,51,52]},{"path":[4,48,2,3],"span":[890,2,47]},{"path":[4,48,2,3,4],"span":[890,2,10]},{"path":[4,48,2,3,5],"span":[890,11,15]},{"path":[4,48,2,3,1],"span":[890,16,42]},{"path":[4,48,2,3,3],"span":[890,45,46]},{"path":[4,48,2,4],"span":[891,2,32]},{"path":[4,48,2,4,4],"span":[891,2,10]},{"path":[4,48,2,4,5],"span":[891,11,17]},{"path":[4,48,2,4,1],"span":[891,18,27]},{"path":[4,48,2,4,3],"span":[891,30,31]},{"path":[4,48,2,5],"span":[892,2,35]},{"path":[4,48,2,5,4],"span":[892,2,10]},{"path":[4,48,2,5,5],"span":[892,11,17]},{"path":[4,48,2,5,1],"span":[892,18,30]},{"path":[4,48,2,5,3],"span":[892,33,34]},{"path":[4,48,2,6],"span":[893,2,46]},{"path":[4,48,2,6,4],"span":[893,2,10]},{"path":[4,48,2,6,6],"span":[893,11,22]},{"path":[4,48,2,6,1],"span":[893,23,41]},{"path":[4,48,2,6,3],"span":[893,44,45]},{"path":[4,49],"span":[900,0,912,1],"leadingComments":"\n Pointing Device for computers, like mouse or trackpad: Windows.PointingDevice\n"},{"path":[4,49,1],"span":[900,8,22]},{"path":[4,49,2,0],"span":[901,2,30]},{"path":[4,49,2,0,4],"span":[901,2,10]},{"path":[4,49,2,0,5],"span":[901,11,17]},{"path":[4,49,2,0,1],"span":[901,18,25]},{"path":[4,49,2,0,3],"span":[901,28,29]},{"path":[4,49,2,1],"span":[902,2,32]},{"path":[4,49,2,1,4],"span":[902,2,10]},{"path":[4,49,2,1,5],"span":[902,11,17]},{"path":[4,49,2,1,1],"span":[902,18,27]},{"path":[4,49,2,1,3],"span":[902,30,31]},{"path":[4,49,2,2],"span":[903,2,44]},{"path":[4,49,2,2,4],"span":[903,2,10]},{"path":[4,49,2,2,6],"span":[903,11,22]},{"path":[4,49,2,2,1],"span":[903,23,39]},{"path":[4,49,2,2,3],"span":[903,42,43]},{"path":[4,49,2,3],"span":[904,2,45]},{"path":[4,49,2,3,4],"span":[904,2,10]},{"path":[4,49,2,3,5],"span":[904,11,16]},{"path":[4,49,2,3,1],"span":[904,18,40]},{"path":[4,49,2,3,3],"span":[904,43,44]},{"path":[4,49,2,4],"span":[905,2,38]},{"path":[4,49,2,4,4],"span":[905,2,10]},{"path":[4,49,2,4,6],"span":[905,11,22]},{"path":[4,49,2,4,1],"span":[905,23,33]},{"path":[4,49,2,4,3],"span":[905,36,37]},{"path":[4,49,2,5],"span":[906,2,36]},{"path":[4,49,2,5,4],"span":[906,2,10]},{"path":[4,49,2,5,5],"span":[906,11,17]},{"path":[4,49,2,5,1],"span":[906,18,31]},{"path":[4,49,2,5,3],"span":[906,34,35]},{"path":[4,49,2,6],"span":[907,2,34]},{"path":[4,49,2,6,4],"span":[907,2,10]},{"path":[4,49,2,6,5],"span":[907,11,17]},{"path":[4,49,2,6,1],"span":[907,18,29]},{"path":[4,49,2,6,3],"span":[907,32,33]},{"path":[4,49,2,7],"span":[908,2,35]},{"path":[4,49,2,7,4],"span":[908,2,10]},{"path":[4,49,2,7,5],"span":[908,11,17]},{"path":[4,49,2,7,1],"span":[908,18,30]},{"path":[4,49,2,7,3],"span":[908,33,34]},{"path":[4,49,2,8],"span":[909,2,40]},{"path":[4,49,2,8,4],"span":[909,2,10]},{"path":[4,49,2,8,5],"span":[909,11,16]},{"path":[4,49,2,8,1],"span":[909,18,35]},{"path":[4,49,2,8,3],"span":[909,38,39]},{"path":[4,49,2,9],"span":[910,2,42]},{"path":[4,49,2,9,4],"span":[910,2,10]},{"path":[4,49,2,9,6],"span":[910,11,22]},{"path":[4,49,2,9,1],"span":[910,23,36]},{"path":[4,49,2,9,3],"span":[910,39,41]},{"path":[4,49,2,10],"span":[911,2,44]},{"path":[4,49,2,10,4],"span":[911,2,10]},{"path":[4,49,2,10,5],"span":[911,11,16]},{"path":[4,49,2,10,1],"span":[911,18,38]},{"path":[4,49,2,10,3],"span":[911,41,43]},{"path":[4,50],"span":[917,0,924,1],"leadingComments":"\n AutoRunCommand: Windows.Autorun\n"},{"path":[4,50,1],"span":[917,8,22]},{"path":[4,50,2,0],"span":[918,2,30]},{"path":[4,50,2,0,4],"span":[918,2,10]},{"path":[4,50,2,0,5],"span":[918,11,17]},{"path":[4,50,2,0,1],"span":[918,18,25]},{"path":[4,50,2,0,3],"span":[918,28,29]},{"path":[4,50,2,1],"span":[919,2,30]},{"path":[4,50,2,1,4],"span":[919,2,10]},{"path":[4,50,2,1,5],"span":[919,11,17]},{"path":[4,50,2,1,1],"span":[919,18,25]},{"path":[4,50,2,1,3],"span":[919,28,29]},{"path":[4,50,2,2],"span":[920,2,31]},{"path":[4,50,2,2,4],"span":[920,2,10]},{"path":[4,50,2,2,5],"span":[920,11,17]},{"path":[4,50,2,2,1],"span":[920,18,26]},{"path":[4,50,2,2,3],"span":[920,29,30]},{"path":[4,50,2,3],"span":[921,2,27]},{"path":[4,50,2,3,4],"span":[921,2,10]},{"path":[4,50,2,3,5],"span":[921,11,17]},{"path":[4,50,2,3,1],"span":[921,18,22]},{"path":[4,50,2,3,3],"span":[921,25,26]},{"path":[4,50,2,4],"span":[922,2,27]},{"path":[4,50,2,4,4],"span":[922,2,10]},{"path":[4,50,2,4,5],"span":[922,11,17]},{"path":[4,50,2,4,1],"span":[922,18,22]},{"path":[4,50,2,4,3],"span":[922,25,26]},{"path":[4,50,2,5],"span":[923,2,31]},{"path":[4,50,2,5,4],"span":[923,2,10]},{"path":[4,50,2,5,5],"span":[923,11,17]},{"path":[4,50,2,5,1],"span":[923,18,26]},{"path":[4,50,2,5,3],"span":[923,29,30]},{"path":[4,51],"span":[929,0,940,1],"leadingComments":"\n BootConfig: Windows.BootConfig \n"},{"path":[4,51,1],"span":[929,8,18]},{"path":[4,51,2,0],"span":[930,2,37]},{"path":[4,51,2,0,4],"span":[930,2,10]},{"path":[4,51,2,0,5],"span":[930,11,17]},{"path":[4,51,2,0,1],"span":[930,18,32]},{"path":[4,51,2,0,3],"span":[930,35,36]},{"path":[4,51,2,1],"span":[931,2,30]},{"path":[4,51,2,1,4],"span":[931,2,10]},{"path":[4,51,2,1,5],"span":[931,11,17]},{"path":[4,51,2,1,1],"span":[931,18,25]},{"path":[4,51,2,1,3],"span":[931,28,29]},{"path":[4,51,2,2],"span":[932,2,27]},{"path":[4,51,2,2,4],"span":[932,2,10]},{"path":[4,51,2,2,5],"span":[932,11,17]},{"path":[4,51,2,2,1],"span":[932,18,22]},{"path":[4,51,2,2,3],"span":[932,25,26]},{"path":[4,51,2,3],"span":[933,2,41]},{"path":[4,51,2,3,4],"span":[933,2,10]},{"path":[4,51,2,3,5],"span":[933,11,17]},{"path":[4,51,2,3,1],"span":[933,18,36]},{"path":[4,51,2,3,3],"span":[933,39,40]},{"path":[4,51,2,4],"span":[934,2,40]},{"path":[4,51,2,4,4],"span":[934,2,10]},{"path":[4,51,2,4,5],"span":[934,11,17]},{"path":[4,51,2,4,1],"span":[934,18,35]},{"path":[4,51,2,4,3],"span":[934,38,39]},{"path":[4,51,2,5],"span":[935,2,37]},{"path":[4,51,2,5,4],"span":[935,2,10]},{"path":[4,51,2,5,5],"span":[935,11,17]},{"path":[4,51,2,5,1],"span":[935,18,32]},{"path":[4,51,2,5,3],"span":[935,35,36]},{"path":[4,51,2,6],"span":[938,2,34],"leadingComments":" from mac\n"},{"path":[4,51,2,6,4],"span":[938,2,10]},{"path":[4,51,2,6,5],"span":[938,11,17]},{"path":[4,51,2,6,1],"span":[938,18,29]},{"path":[4,51,2,6,3],"span":[938,32,33]},{"path":[4,51,2,7],"span":[939,2,32]},{"path":[4,51,2,7,4],"span":[939,2,10]},{"path":[4,51,2,7,5],"span":[939,11,17]},{"path":[4,51,2,7,1],"span":[939,18,27]},{"path":[4,51,2,7,3],"span":[939,30,31]},{"path":[4,52],"span":[945,0,950,1],"leadingComments":"\n SharedResource: windows WindowsShare.\n"},{"path":[4,52,1],"span":[945,8,22]},{"path":[4,52,2,0],"span":[946,2,30]},{"path":[4,52,2,0,4],"span":[946,2,10]},{"path":[4,52,2,0,5],"span":[946,11,17]},{"path":[4,52,2,0,1],"span":[946,18,25]},{"path":[4,52,2,0,3],"span":[946,28,29]},{"path":[4,52,2,1],"span":[947,2,28]},{"path":[4,52,2,1,4],"span":[947,2,10]},{"path":[4,52,2,1,5],"span":[947,11,17]},{"path":[4,52,2,1,1],"span":[947,18,22]},{"path":[4,52,2,1,3],"span":[947,26,27]},{"path":[4,52,2,2],"span":[948,2,27]},{"path":[4,52,2,2,4],"span":[948,2,10]},{"path":[4,52,2,2,5],"span":[948,11,17]},{"path":[4,52,2,2,1],"span":[948,18,22]},{"path":[4,52,2,2,3],"span":[948,25,26]},{"path":[4,52,2,3],"span":[949,2,32]},{"path":[4,52,2,3,4],"span":[949,2,10]},{"path":[4,52,2,3,6],"span":[949,11,22]},{"path":[4,52,2,3,1],"span":[949,23,27]},{"path":[4,52,2,3,3],"span":[949,30,31]},{"path":[4,53],"span":[955,0,961,1],"leadingComments":"\n RunningProcess: computer running processes. Windows.WindowsProcess\n"},{"path":[4,53,1],"span":[955,8,22]},{"path":[4,53,2,0],"span":[956,2,27],"trailingComments":" caption\n"},{"path":[4,53,2,0,4],"span":[956,2,10]},{"path":[4,53,2,0,5],"span":[956,11,17]},{"path":[4,53,2,0,1],"span":[956,18,22]},{"path":[4,53,2,0,3],"span":[956,25,26]},{"path":[4,53,2,1],"span":[957,2,27],"trailingComments":" executable_path\n"},{"path":[4,53,2,1,4],"span":[957,2,10]},{"path":[4,53,2,1,5],"span":[957,11,17]},{"path":[4,53,2,1,1],"span":[957,18,22]},{"path":[4,53,2,1,3],"span":[957,25,26]},{"path":[4,53,2,2],"span":[958,2,29]},{"path":[4,53,2,2,4],"span":[958,2,10]},{"path":[4,53,2,2,5],"span":[958,11,16]},{"path":[4,53,2,2,1],"span":[958,17,24]},{"path":[4,53,2,2,3],"span":[958,27,28]},{"path":[4,53,2,3],"span":[959,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,53,2,3,4],"span":[959,2,10]},{"path":[4,53,2,3,5],"span":[959,11,16]},{"path":[4,53,2,3,1],"span":[959,17,25]},{"path":[4,53,2,3,3],"span":[959,28,29]},{"path":[4,53,2,4],"span":[960,2,29]},{"path":[4,53,2,4,4],"span":[960,2,10]},{"path":[4,53,2,4,5],"span":[960,11,17]},{"path":[4,53,2,4,1],"span":[960,18,24]},{"path":[4,53,2,4,3],"span":[960,27,28]},{"path":[4,54],"span":[966,0,977,1],"leadingComments":"\n Operating System Service: WindowsService.\n"},{"path":[4,54,1],"span":[966,8,30]},{"path":[4,54,2,0],"span":[967,2,27]},{"path":[4,54,2,0,4],"span":[967,2,10]},{"path":[4,54,2,0,5],"span":[967,11,17]},{"path":[4,54,2,0,1],"span":[967,18,22]},{"path":[4,54,2,0,3],"span":[967,25,26]},{"path":[4,54,2,1],"span":[968,2,30]},{"path":[4,54,2,1,4],"span":[968,2,10]},{"path":[4,54,2,1,5],"span":[968,11,17]},{"path":[4,54,2,1,1],"span":[968,18,25]},{"path":[4,54,2,1,3],"span":[968,28,29]},{"path":[4,54,2,2],"span":[969,2,31]},{"path":[4,54,2,2,4],"span":[969,2,10]},{"path":[4,54,2,2,5],"span":[969,11,17]},{"path":[4,54,2,2,1],"span":[969,18,26]},{"path":[4,54,2,2,3],"span":[969,29,30]},{"path":[4,54,2,3],"span":[970,2,33]},{"path":[4,54,2,3,4],"span":[970,2,10]},{"path":[4,54,2,3,5],"span":[970,11,17]},{"path":[4,54,2,3,1],"span":[970,18,28]},{"path":[4,54,2,3,3],"span":[970,31,32]},{"path":[4,54,2,4],"span":[971,2,33]},{"path":[4,54,2,4,4],"span":[971,2,10]},{"path":[4,54,2,4,5],"span":[971,11,17]},{"path":[4,54,2,4,1],"span":[971,18,28]},{"path":[4,54,2,4,3],"span":[971,31,32]},{"path":[4,54,2,5],"span":[972,2,28]},{"path":[4,54,2,5,4],"span":[972,2,10]},{"path":[4,54,2,5,5],"span":[972,11,17]},{"path":[4,54,2,5,1],"span":[972,18,23]},{"path":[4,54,2,5,3],"span":[972,26,27]},{"path":[4,54,2,6],"span":[973,2,28]},{"path":[4,54,2,6,4],"span":[973,2,10]},{"path":[4,54,2,6,5],"span":[973,11,15]},{"path":[4,54,2,6,1],"span":[973,16,23]},{"path":[4,54,2,6,3],"span":[973,26,27]},{"path":[4,54,2,7],"span":[974,2,33]},{"path":[4,54,2,7,4],"span":[974,2,10]},{"path":[4,54,2,7,5],"span":[974,11,15]},{"path":[4,54,2,7,1],"span":[974,16,28]},{"path":[4,54,2,7,3],"span":[974,31,32]},{"path":[4,54,2,8],"span":[975,2,32]},{"path":[4,54,2,8,4],"span":[975,2,10]},{"path":[4,54,2,8,5],"span":[975,11,15]},{"path":[4,54,2,8,1],"span":[975,16,27]},{"path":[4,54,2,8,3],"span":[975,30,31]},{"path":[4,54,2,9],"span":[976,2,38]},{"path":[4,54,2,9,4],"span":[976,2,10]},{"path":[4,54,2,9,5],"span":[976,11,15]},{"path":[4,54,2,9,1],"span":[976,16,32]},{"path":[4,54,2,9,3],"span":[976,35,37]},{"path":[4,55],"span":[982,0,986,1],"leadingComments":"\n Operating System Recovery: only windows atm.\n"},{"path":[4,55,1],"span":[982,8,31]},{"path":[4,55,8,0],"span":[983,2,985,3]},{"path":[4,55,8,0,1],"span":[983,8,10]},{"path":[4,55,2,0],"span":[984,6,32]},{"path":[4,55,2,0,6],"span":[984,6,23]},{"path":[4,55,2,0,1],"span":[984,24,27]},{"path":[4,55,2,0,3],"span":[984,30,31]},{"path":[4,56],"span":[991,0,1002,1],"leadingComments":"\n Windows WindowsOsRecovery.\n"},{"path":[4,56,1],"span":[991,8,25]},{"path":[4,56,2,0],"span":[992,2,32]},{"path":[4,56,2,0,4],"span":[992,2,10]},{"path":[4,56,2,0,5],"span":[992,11,15]},{"path":[4,56,2,0,1],"span":[992,16,27]},{"path":[4,56,2,0,3],"span":[992,30,31]},{"path":[4,56,2,1],"span":[993,2,38]},{"path":[4,56,2,1,4],"span":[993,2,10]},{"path":[4,56,2,1,5],"span":[993,11,17]},{"path":[4,56,2,1,1],"span":[993,18,33]},{"path":[4,56,2,1,3],"span":[993,36,37]},{"path":[4,56,2,2],"span":[994,2,37]},{"path":[4,56,2,2,4],"span":[994,2,10]},{"path":[4,56,2,2,5],"span":[994,11,15]},{"path":[4,56,2,2,1],"span":[994,16,32]},{"path":[4,56,2,2,3],"span":[994,35,36]},{"path":[4,56,2,3],"span":[995,2,27]},{"path":[4,56,2,3,4],"span":[995,2,10]},{"path":[4,56,2,3,5],"span":[995,11,17]},{"path":[4,56,2,3,1],"span":[995,18,22]},{"path":[4,56,2,3,3],"span":[995,25,26]},{"path":[4,56,2,4],"span":[996,2,50]},{"path":[4,56,2,4,4],"span":[996,2,10]},{"path":[4,56,2,4,5],"span":[996,11,15]},{"path":[4,56,2,4,1],"span":[996,16,45]},{"path":[4,56,2,4,3],"span":[996,48,49]},{"path":[4,56,2,5],"span":[997,2,37]},{"path":[4,56,2,5,4],"span":[997,2,10]},{"path":[4,56,2,5,5],"span":[997,11,15]},{"path":[4,56,2,5,1],"span":[997,16,32]},{"path":[4,56,2,5,3],"span":[997,35,36]},{"path":[4,56,2,6],"span":[998,2,37]},{"path":[4,56,2,6,4],"span":[998,2,10]},{"path":[4,56,2,6,5],"span":[998,11,15]},{"path":[4,56,2,6,1],"span":[998,16,32]},{"path":[4,56,2,6,3],"span":[998,35,36]},{"path":[4,56,2,7],"span":[999,2,40]},{"path":[4,56,2,7,4],"span":[999,2,10]},{"path":[4,56,2,7,5],"span":[999,11,15]},{"path":[4,56,2,7,1],"span":[999,16,35]},{"path":[4,56,2,7,3],"span":[999,38,39]},{"path":[4,56,2,8],"span":[1000,2,44]},{"path":[4,56,2,8,4],"span":[1000,2,10]},{"path":[4,56,2,8,6],"span":[1000,11,22]},{"path":[4,56,2,8,1],"span":[1000,23,38]},{"path":[4,56,2,8,3],"span":[1000,41,43]},{"path":[4,56,2,9],"span":[1001,2,43]},{"path":[4,56,2,9,4],"span":[1001,2,10]},{"path":[4,56,2,9,5],"span":[1001,11,17]},{"path":[4,56,2,9,1],"span":[1001,18,37]},{"path":[4,56,2,9,3],"span":[1001,40,42]},{"path":[4,57],"span":[1008,0,1017,1],"leadingComments":"\n Driver: computer drivers.\n"},{"path":[4,57,1],"span":[1008,8,14]},{"path":[4,57,8,0],"span":[1009,2,1013,3]},{"path":[4,57,8,0,1],"span":[1009,8,14]},{"path":[4,57,2,0],"span":[1010,4,36]},{"path":[4,57,2,0,6],"span":[1010,4,23]},{"path":[4,57,2,0,1],"span":[1010,24,31]},{"path":[4,57,2,0,3],"span":[1010,34,35]},{"path":[4,57,2,1],"span":[1011,4,39]},{"path":[4,57,2,1,6],"span":[1011,4,26]},{"path":[4,57,2,1,1],"span":[1011,27,34]},{"path":[4,57,2,1,3],"span":[1011,37,38]},{"path":[4,57,2,2],"span":[1012,4,41]},{"path":[4,57,2,2,6],"span":[1012,4,24]},{"path":[4,57,2,2,1],"span":[1012,25,36]},{"path":[4,57,2,2,3],"span":[1012,39,40]},{"path":[4,57,2,3],"span":[1015,2,29]},{"path":[4,57,2,3,4],"span":[1015,2,10]},{"path":[4,57,2,3,5],"span":[1015,11,17]},{"path":[4,57,2,3,1],"span":[1015,18,22]},{"path":[4,57,2,3,3],"span":[1015,25,28]},{"path":[4,57,2,4],"span":[1016,2,36]},{"path":[4,57,2,4,4],"span":[1016,2,10]},{"path":[4,57,2,4,5],"span":[1016,11,17]},{"path":[4,57,2,4,1],"span":[1016,18,29]},{"path":[4,57,2,4,3],"span":[1016,32,35]},{"path":[4,58],"span":[1022,0,1041,1],"leadingComments":"\n WindowsSystemDriver: Windows.SystemDriver\n"},{"path":[4,58,1],"span":[1022,8,27]},{"path":[4,58,2,0],"span":[1023,2,34]},{"path":[4,58,2,0,4],"span":[1023,2,10]},{"path":[4,58,2,0,5],"span":[1023,11,15]},{"path":[4,58,2,0,1],"span":[1023,17,29]},{"path":[4,58,2,0,3],"span":[1023,32,33]},{"path":[4,58,2,1],"span":[1024,2,33]},{"path":[4,58,2,1,4],"span":[1024,2,10]},{"path":[4,58,2,1,5],"span":[1024,11,15]},{"path":[4,58,2,1,1],"span":[1024,17,28]},{"path":[4,58,2,1,3],"span":[1024,31,32]},{"path":[4,58,2,2],"span":[1025,2,38]},{"path":[4,58,2,2,4],"span":[1025,2,10]},{"path":[4,58,2,2,5],"span":[1025,11,15]},{"path":[4,58,2,2,1],"span":[1025,17,33]},{"path":[4,58,2,2,3],"span":[1025,36,37]},{"path":[4,58,2,3],"span":[1026,2,36]},{"path":[4,58,2,3,4],"span":[1026,2,10]},{"path":[4,58,2,3,5],"span":[1026,11,17]},{"path":[4,58,2,3,1],"span":[1026,18,31]},{"path":[4,58,2,3,3],"span":[1026,34,35]},{"path":[4,58,2,4],"span":[1027,2,32]},{"path":[4,58,2,4,4],"span":[1027,2,10]},{"path":[4,58,2,4,5],"span":[1027,11,16]},{"path":[4,58,2,4,1],"span":[1027,18,27]},{"path":[4,58,2,4,3],"span":[1027,30,31]},{"path":[4,58,2,5],"span":[1028,2,32]},{"path":[4,58,2,5,4],"span":[1028,2,10]},{"path":[4,58,2,5,5],"span":[1028,11,17]},{"path":[4,58,2,5,1],"span":[1028,18,27]},{"path":[4,58,2,5,3],"span":[1028,30,31]},{"path":[4,58,2,6],"span":[1029,2,49]},{"path":[4,58,2,6,4],"span":[1029,2,10]},{"path":[4,58,2,6,5],"span":[1029,11,16]},{"path":[4,58,2,6,1],"span":[1029,18,44]},{"path":[4,58,2,6,3],"span":[1029,47,48]},{"path":[4,58,2,7],"span":[1030,2,34]},{"path":[4,58,2,7,4],"span":[1030,2,10]},{"path":[4,58,2,7,5],"span":[1030,11,17]},{"path":[4,58,2,7,1],"span":[1030,18,30]},{"path":[4,58,2,7,3],"span":[1030,32,33]},{"path":[4,58,2,8],"span":[1031,2,29]},{"path":[4,58,2,8,4],"span":[1031,2,10]},{"path":[4,58,2,8,5],"span":[1031,11,15]},{"path":[4,58,2,8,1],"span":[1031,17,24]},{"path":[4,58,2,8,3],"span":[1031,27,28]},{"path":[4,58,2,9],"span":[1032,2,34]},{"path":[4,58,2,9,4],"span":[1032,2,10]},{"path":[4,58,2,9,5],"span":[1032,11,17]},{"path":[4,58,2,9,1],"span":[1032,18,28]},{"path":[4,58,2,9,3],"span":[1032,31,33]},{"path":[4,58,2,10],"span":[1033,2,34]},{"path":[4,58,2,10,4],"span":[1033,2,10]},{"path":[4,58,2,10,5],"span":[1033,11,17]},{"path":[4,58,2,10,1],"span":[1033,18,28]},{"path":[4,58,2,10,3],"span":[1033,31,33]},{"path":[4,58,2,11],"span":[1034,2,29]},{"path":[4,58,2,11,4],"span":[1034,2,10]},{"path":[4,58,2,11,5],"span":[1034,11,17]},{"path":[4,58,2,11,1],"span":[1034,18,23]},{"path":[4,58,2,11,3],"span":[1034,26,28]},{"path":[4,58,2,12],"span":[1035,2,30]},{"path":[4,58,2,12,4],"span":[1035,2,10]},{"path":[4,58,2,12,5],"span":[1035,11,17]},{"path":[4,58,2,12,1],"span":[1035,18,24]},{"path":[4,58,2,12,3],"span":[1035,27,29]},{"path":[4,58,2,13],"span":[1036,2,30]},{"path":[4,58,2,13,4],"span":[1036,2,10]},{"path":[4,58,2,13,5],"span":[1036,11,16]},{"path":[4,58,2,13,1],"span":[1036,18,24]},{"path":[4,58,2,13,3],"span":[1036,27,29]},{"path":[4,58,2,14],"span":[1037,2,28]},{"path":[4,58,2,14,4],"span":[1037,2,10]},{"path":[4,58,2,14,5],"span":[1037,11,17]},{"path":[4,58,2,14,1],"span":[1037,18,22]},{"path":[4,58,2,14,3],"span":[1037,25,27]},{"path":[4,58,2,15],"span":[1038,2,35]},{"path":[4,58,2,15,4],"span":[1038,2,10]},{"path":[4,58,2,15,5],"span":[1038,11,17]},{"path":[4,58,2,15,1],"span":[1038,18,29]},{"path":[4,58,2,15,3],"span":[1038,32,34]},{"path":[4,58,2,16],"span":[1039,2,31]},{"path":[4,58,2,16,4],"span":[1039,2,10]},{"path":[4,58,2,16,5],"span":[1039,11,17]},{"path":[4,58,2,16,1],"span":[1039,18,25]},{"path":[4,58,2,16,3],"span":[1039,28,30]},{"path":[4,58,2,17],"span":[1040,2,36]},{"path":[4,58,2,17,4],"span":[1040,2,10]},{"path":[4,58,2,17,5],"span":[1040,11,17]},{"path":[4,58,2,17,1],"span":[1040,18,30]},{"path":[4,58,2,17,3],"span":[1040,33,35]},{"path":[4,59],"span":[1046,0,1065,1],"leadingComments":"\n WindowsPnpSignedDriver: Windows.PnpSignedDriver\n"},{"path":[4,59,1],"span":[1046,8,30]},{"path":[4,59,2,0],"span":[1047,2,32]},{"path":[4,59,2,0,4],"span":[1047,2,10]},{"path":[4,59,2,0,5],"span":[1047,11,17]},{"path":[4,59,2,0,1],"span":[1047,18,27]},{"path":[4,59,2,0,3],"span":[1047,30,31]},{"path":[4,59,2,1],"span":[1048,2,32]},{"path":[4,59,2,1,4],"span":[1048,2,10]},{"path":[4,59,2,1,5],"span":[1048,11,17]},{"path":[4,59,2,1,1],"span":[1048,18,27]},{"path":[4,59,2,1,3],"span":[1048,30,31]},{"path":[4,59,2,2],"span":[1049,2,33]},{"path":[4,59,2,2,4],"span":[1049,2,10]},{"path":[4,59,2,2,5],"span":[1049,11,17]},{"path":[4,59,2,2,1],"span":[1049,18,28]},{"path":[4,59,2,2,3],"span":[1049,31,32]},{"path":[4,59,2,3],"span":[1050,2,34]},{"path":[4,59,2,3,4],"span":[1050,2,10]},{"path":[4,59,2,3,5],"span":[1050,11,17]},{"path":[4,59,2,3,1],"span":[1050,18,29]},{"path":[4,59,2,3,3],"span":[1050,32,33]},{"path":[4,59,2,4],"span":[1051,2,36]},{"path":[4,59,2,4,4],"span":[1051,2,10]},{"path":[4,59,2,4,5],"span":[1051,11,17]},{"path":[4,59,2,4,1],"span":[1051,18,31]},{"path":[4,59,2,4,3],"span":[1051,34,35]},{"path":[4,59,2,5],"span":[1052,2,44]},{"path":[4,59,2,5,6],"span":[1052,2,27]},{"path":[4,59,2,5,1],"span":[1052,28,39]},{"path":[4,59,2,5,3],"span":[1052,42,43]},{"path":[4,59,2,6],"span":[1053,2,37]},{"path":[4,59,2,6,4],"span":[1053,2,10]},{"path":[4,59,2,6,5],"span":[1053,11,17]},{"path":[4,59,2,6,1],"span":[1053,18,32]},{"path":[4,59,2,6,3],"span":[1053,35,36]},{"path":[4,59,2,7],"span":[1054,2,34]},{"path":[4,59,2,7,4],"span":[1054,2,10]},{"path":[4,59,2,7,5],"span":[1054,11,17]},{"path":[4,59,2,7,1],"span":[1054,18,29]},{"path":[4,59,2,7,3],"span":[1054,32,33]},{"path":[4,59,2,8],"span":[1055,2,31]},{"path":[4,59,2,8,4],"span":[1055,2,10]},{"path":[4,59,2,8,5],"span":[1055,11,17]},{"path":[4,59,2,8,1],"span":[1055,18,26]},{"path":[4,59,2,8,3],"span":[1055,29,30]},{"path":[4,59,2,9],"span":[1056,2,32]},{"path":[4,59,2,9,4],"span":[1056,2,10]},{"path":[4,59,2,9,5],"span":[1056,11,15]},{"path":[4,59,2,9,1],"span":[1056,17,26]},{"path":[4,59,2,9,3],"span":[1056,29,31]},{"path":[4,59,2,10],"span":[1057,2,32]},{"path":[4,59,2,10,4],"span":[1057,2,10]},{"path":[4,59,2,10,5],"span":[1057,11,17]},{"path":[4,59,2,10,1],"span":[1057,18,26]},{"path":[4,59,2,10,3],"span":[1057,29,31]},{"path":[4,59,2,11],"span":[1058,2,27]},{"path":[4,59,2,11,4],"span":[1058,2,10]},{"path":[4,59,2,11,5],"span":[1058,11,17]},{"path":[4,59,2,11,1],"span":[1058,18,21]},{"path":[4,59,2,11,3],"span":[1058,24,26]},{"path":[4,59,2,12],"span":[1059,2,36]},{"path":[4,59,2,12,4],"span":[1059,2,10]},{"path":[4,59,2,12,5],"span":[1059,11,17]},{"path":[4,59,2,12,1],"span":[1059,18,30]},{"path":[4,59,2,12,3],"span":[1059,33,35]},{"path":[4,59,2,13],"span":[1060,2,35]},{"path":[4,59,2,13,4],"span":[1060,2,10]},{"path":[4,59,2,13,5],"span":[1060,11,17]},{"path":[4,59,2,13,1],"span":[1060,18,29]},{"path":[4,59,2,13,3],"span":[1060,32,34]},{"path":[4,59,2,14],"span":[1061,2,36]},{"path":[4,59,2,14,4],"span":[1061,2,10]},{"path":[4,59,2,14,5],"span":[1061,11,17]},{"path":[4,59,2,14,1],"span":[1061,18,30]},{"path":[4,59,2,14,3],"span":[1061,33,35]},{"path":[4,59,2,15],"span":[1062,2,35]},{"path":[4,59,2,15,4],"span":[1062,2,10]},{"path":[4,59,2,15,5],"span":[1062,11,17]},{"path":[4,59,2,15,1],"span":[1062,18,29]},{"path":[4,59,2,15,3],"span":[1062,32,34]},{"path":[4,59,2,16],"span":[1063,2,30]},{"path":[4,59,2,16,4],"span":[1063,2,10]},{"path":[4,59,2,16,5],"span":[1063,11,17]},{"path":[4,59,2,16,1],"span":[1063,18,24]},{"path":[4,59,2,16,3],"span":[1063,27,29]},{"path":[4,59,2,17],"span":[1064,2,44]},{"path":[4,59,2,17,4],"span":[1064,2,10]},{"path":[4,59,2,17,5],"span":[1064,11,17]},{"path":[4,59,2,17,1],"span":[1064,18,38]},{"path":[4,59,2,17,3],"span":[1064,41,43]},{"path":[4,60],"span":[1070,0,1090,1],"leadingComments":"\n WindowsPrinterDriver: Windows.PrinterDriver\n"},{"path":[4,60,1],"span":[1070,8,28]},{"path":[4,60,2,0],"span":[1071,2,34]},{"path":[4,60,2,0,4],"span":[1071,2,10]},{"path":[4,60,2,0,5],"span":[1071,11,17]},{"path":[4,60,2,0,1],"span":[1071,18,29]},{"path":[4,60,2,0,3],"span":[1071,32,33]},{"path":[4,60,2,1],"span":[1072,2,32]},{"path":[4,60,2,1,4],"span":[1072,2,10]},{"path":[4,60,2,1,5],"span":[1072,11,17]},{"path":[4,60,2,1,1],"span":[1072,18,27]},{"path":[4,60,2,1,3],"span":[1072,30,31]},{"path":[4,60,2,2],"span":[1073,2,40]},{"path":[4,60,2,2,4],"span":[1073,2,10]},{"path":[4,60,2,2,5],"span":[1073,11,17]},{"path":[4,60,2,2,1],"span":[1073,18,35]},{"path":[4,60,2,2,3],"span":[1073,38,39]},{"path":[4,60,2,3],"span":[1074,2,34]},{"path":[4,60,2,3,4],"span":[1074,2,10]},{"path":[4,60,2,3,5],"span":[1074,11,17]},{"path":[4,60,2,3,1],"span":[1074,18,29]},{"path":[4,60,2,3,3],"span":[1074,32,33]},{"path":[4,60,2,4],"span":[1075,2,32]},{"path":[4,60,2,4,4],"span":[1075,2,10]},{"path":[4,60,2,4,5],"span":[1075,11,17]},{"path":[4,60,2,4,1],"span":[1075,18,27]},{"path":[4,60,2,4,3],"span":[1075,30,31]},{"path":[4,60,2,5],"span":[1076,2,32]},{"path":[4,60,2,5,4],"span":[1076,2,10]},{"path":[4,60,2,5,5],"span":[1076,11,17]},{"path":[4,60,2,5,1],"span":[1076,18,27]},{"path":[4,60,2,5,3],"span":[1076,30,31]},{"path":[4,60,2,6],"span":[1077,2,35]},{"path":[4,60,2,6,4],"span":[1077,2,10]},{"path":[4,60,2,6,5],"span":[1077,11,17]},{"path":[4,60,2,6,1],"span":[1077,18,30]},{"path":[4,60,2,6,3],"span":[1077,33,34]},{"path":[4,60,2,7],"span":[1078,2,30]},{"path":[4,60,2,7,4],"span":[1078,2,10]},{"path":[4,60,2,7,5],"span":[1078,11,17]},{"path":[4,60,2,7,1],"span":[1078,18,25]},{"path":[4,60,2,7,3],"span":[1078,28,29]},{"path":[4,60,2,8],"span":[1079,2,30]},{"path":[4,60,2,8,4],"span":[1079,2,10]},{"path":[4,60,2,8,5],"span":[1079,11,16]},{"path":[4,60,2,8,1],"span":[1079,18,25]},{"path":[4,60,2,8,3],"span":[1079,28,29]},{"path":[4,60,2,9],"span":[1080,2,38]},{"path":[4,60,2,9,4],"span":[1080,2,10]},{"path":[4,60,2,9,5],"span":[1080,11,17]},{"path":[4,60,2,9,1],"span":[1080,18,32]},{"path":[4,60,2,9,3],"span":[1080,35,37]},{"path":[4,60,2,10],"span":[1081,2,35]},{"path":[4,60,2,10,4],"span":[1081,2,10]},{"path":[4,60,2,10,5],"span":[1081,11,17]},{"path":[4,60,2,10,1],"span":[1081,18,29]},{"path":[4,60,2,10,3],"span":[1081,32,34]},{"path":[4,60,2,11],"span":[1082,2,35]},{"path":[4,60,2,11,4],"span":[1082,2,10]},{"path":[4,60,2,11,5],"span":[1082,11,17]},{"path":[4,60,2,11,1],"span":[1082,18,29]},{"path":[4,60,2,11,3],"span":[1082,32,34]},{"path":[4,60,2,12],"span":[1083,2,32]},{"path":[4,60,2,12,4],"span":[1083,2,10]},{"path":[4,60,2,12,5],"span":[1083,11,17]},{"path":[4,60,2,12,1],"span":[1083,18,26]},{"path":[4,60,2,12,3],"span":[1083,29,31]},{"path":[4,60,2,13],"span":[1084,2,43]},{"path":[4,60,2,13,4],"span":[1084,2,10]},{"path":[4,60,2,13,5],"span":[1084,11,17]},{"path":[4,60,2,13,1],"span":[1084,18,37]},{"path":[4,60,2,13,3],"span":[1084,40,42]},{"path":[4,60,2,14],"span":[1085,2,39]},{"path":[4,60,2,14,4],"span":[1085,2,10]},{"path":[4,60,2,14,5],"span":[1085,11,17]},{"path":[4,60,2,14,1],"span":[1085,18,33]},{"path":[4,60,2,14,3],"span":[1085,36,38]},{"path":[4,60,2,15],"span":[1086,2,28]},{"path":[4,60,2,15,4],"span":[1086,2,10]},{"path":[4,60,2,15,5],"span":[1086,11,17]},{"path":[4,60,2,15,1],"span":[1086,18,22]},{"path":[4,60,2,15,3],"span":[1086,25,27]},{"path":[4,60,2,16],"span":[1087,2,32]},{"path":[4,60,2,16,4],"span":[1087,2,10]},{"path":[4,60,2,16,5],"span":[1087,11,17]},{"path":[4,60,2,16,1],"span":[1087,18,26]},{"path":[4,60,2,16,3],"span":[1087,29,31]},{"path":[4,60,2,17],"span":[1088,2,42]},{"path":[4,60,2,17,4],"span":[1088,2,10]},{"path":[4,60,2,17,5],"span":[1088,11,17]},{"path":[4,60,2,17,1],"span":[1088,18,36]},{"path":[4,60,2,17,3],"span":[1088,39,41]},{"path":[4,60,2,18],"span":[1089,2,36]},{"path":[4,60,2,18,4],"span":[1089,2,10]},{"path":[4,60,2,18,5],"span":[1089,11,17]},{"path":[4,60,2,18,1],"span":[1089,18,30]},{"path":[4,60,2,18,3],"span":[1089,33,35]},{"path":[4,61],"span":[1095,0,1104,1],"leadingComments":"\n Sound Card for computers: Windows.WindowsSound, Unix.SoundCards (=PciCards)\n"},{"path":[4,61,1],"span":[1095,8,17]},{"path":[4,61,2,0],"span":[1096,2,30],"trailingComments":" Windows, Linux(name)\n"},{"path":[4,61,2,0,4],"span":[1096,2,10]},{"path":[4,61,2,0,5],"span":[1096,11,17]},{"path":[4,61,2,0,1],"span":[1096,18,25]},{"path":[4,61,2,0,3],"span":[1096,28,29]},{"path":[4,61,2,1],"span":[1097,2,32],"trailingComments":" Windows, Linux\n"},{"path":[4,61,2,1,4],"span":[1097,2,10]},{"path":[4,61,2,1,5],"span":[1097,11,17]},{"path":[4,61,2,1,1],"span":[1097,18,27]},{"path":[4,61,2,1,3],"span":[1097,30,31]},{"path":[4,61,2,2],"span":[1098,2,35],"trailingComments":" Windows, Linux\n"},{"path":[4,61,2,2,4],"span":[1098,2,10]},{"path":[4,61,2,2,5],"span":[1098,11,17]},{"path":[4,61,2,2,1],"span":[1098,18,30]},{"path":[4,61,2,2,3],"span":[1098,33,34]},{"path":[4,61,2,3],"span":[1100,2,27],"trailingComments":" Linux\n"},{"path":[4,61,2,3,4],"span":[1100,2,10]},{"path":[4,61,2,3,5],"span":[1100,11,17]},{"path":[4,61,2,3,1],"span":[1100,18,22]},{"path":[4,61,2,3,3],"span":[1100,25,26]},{"path":[4,61,2,4],"span":[1101,2,37],"trailingComments":" Linux\n"},{"path":[4,61,2,4,4],"span":[1101,2,10]},{"path":[4,61,2,4,5],"span":[1101,11,17]},{"path":[4,61,2,4,1],"span":[1101,18,32]},{"path":[4,61,2,4,3],"span":[1101,35,36]},{"path":[4,61,2,5],"span":[1102,2,45],"trailingComments":" Linux\n"},{"path":[4,61,2,5,4],"span":[1102,2,10]},{"path":[4,61,2,5,5],"span":[1102,11,17]},{"path":[4,61,2,5,1],"span":[1102,18,40]},{"path":[4,61,2,5,3],"span":[1102,43,44]},{"path":[4,61,2,6],"span":[1103,2,29],"trailingComments":" Linux\n"},{"path":[4,61,2,6,4],"span":[1103,2,10]},{"path":[4,61,2,6,5],"span":[1103,11,17]},{"path":[4,61,2,6,1],"span":[1103,18,24]},{"path":[4,61,2,6,3],"span":[1103,27,28]},{"path":[4,62],"span":[1109,0,1138,1],"leadingComments":"\n Graphics Card for computers: Windows.VideoControllers, Unix.SoundCards (=PciCards)\n"},{"path":[4,62,1],"span":[1109,8,20]},{"path":[4,62,2,0],"span":[1110,2,33],"trailingComments":"\tWindows, Linux\n"},{"path":[4,62,2,0,4],"span":[1110,2,10]},{"path":[4,62,2,0,5],"span":[1110,16,22]},{"path":[4,62,2,0,1],"span":[1110,24,28]},{"path":[4,62,2,0,3],"span":[1110,31,32]},{"path":[4,62,2,1],"span":[1111,2,47],"trailingComments":"\t\tWindows\n"},{"path":[4,62,2,1,4],"span":[1111,2,10]},{"path":[4,62,2,1,5],"span":[1111,16,21]},{"path":[4,62,2,1,1],"span":[1111,24,42]},{"path":[4,62,2,1,3],"span":[1111,45,46]},{"path":[4,62,2,2],"span":[1112,2,51],"trailingComments":"\t\tWindows\n"},{"path":[4,62,2,2,4],"span":[1112,2,10]},{"path":[4,62,2,2,5],"span":[1112,16,21]},{"path":[4,62,2,2,1],"span":[1112,24,46]},{"path":[4,62,2,2,3],"span":[1112,49,50]},{"path":[4,62,2,3],"span":[1113,2,58],"trailingComments":"\t\tWindows\n"},{"path":[4,62,2,3,4],"span":[1113,2,10]},{"path":[4,62,2,3,5],"span":[1113,16,21]},{"path":[4,62,2,3,1],"span":[1113,24,53]},{"path":[4,62,2,3,3],"span":[1113,56,57]},{"path":[4,62,2,4],"span":[1114,2,53],"trailingComments":"\t\tWindows\n"},{"path":[4,62,2,4,4],"span":[1114,2,10]},{"path":[4,62,2,4,5],"span":[1114,16,21]},{"path":[4,62,2,4,1],"span":[1114,24,48]},{"path":[4,62,2,4,3],"span":[1114,51,52]},{"path":[4,62,2,5],"span":[1115,2,49],"trailingComments":"\t\tWindows\n"},{"path":[4,62,2,5,4],"span":[1115,2,10]},{"path":[4,62,2,5,5],"span":[1115,16,21]},{"path":[4,62,2,5,1],"span":[1115,24,44]},{"path":[4,62,2,5,3],"span":[1115,47,48]},{"path":[4,62,2,6],"span":[1116,2,54],"trailingComments":"\t\tWindows\n"},{"path":[4,62,2,6,4],"span":[1116,2,10]},{"path":[4,62,2,6,6],"span":[1116,16,27]},{"path":[4,62,2,6,1],"span":[1116,32,49]},{"path":[4,62,2,6,3],"span":[1116,52,53]},{"path":[4,62,2,7],"span":[1117,2,56],"trailingComments":"\t\tWindows\n"},{"path":[4,62,2,7,4],"span":[1117,2,10]},{"path":[4,62,2,7,5],"span":[1117,16,21]},{"path":[4,62,2,7,1],"span":[1117,24,51]},{"path":[4,62,2,7,3],"span":[1117,54,55]},{"path":[4,62,2,8],"span":[1118,2,38],"trailingComments":"\t\tWindows, Linux\n"},{"path":[4,62,2,8,4],"span":[1118,2,10]},{"path":[4,62,2,8,5],"span":[1118,16,22]},{"path":[4,62,2,8,1],"span":[1118,24,33]},{"path":[4,62,2,8,3],"span":[1118,36,37]},{"path":[4,62,2,9],"span":[1119,2,50],"trailingComments":"\t\tWindows\n"},{"path":[4,62,2,9,4],"span":[1119,2,10]},{"path":[4,62,2,9,5],"span":[1119,16,21]},{"path":[4,62,2,9,1],"span":[1119,24,44]},{"path":[4,62,2,9,3],"span":[1119,47,49]},{"path":[4,62,2,10],"span":[1120,2,44],"trailingComments":"\t\tWindows\n"},{"path":[4,62,2,10,4],"span":[1120,2,10]},{"path":[4,62,2,10,5],"span":[1120,16,22]},{"path":[4,62,2,10,1],"span":[1120,24,38]},{"path":[4,62,2,10,3],"span":[1120,41,43]},{"path":[4,62,2,11],"span":[1121,2,42],"trailingComments":"\t\tWindows\n"},{"path":[4,62,2,11,4],"span":[1121,2,10]},{"path":[4,62,2,11,5],"span":[1121,16,22]},{"path":[4,62,2,11,1],"span":[1121,24,36]},{"path":[4,62,2,11,3],"span":[1121,39,41]},{"path":[4,62,2,12],"span":[1122,2,41],"trailingComments":"\t\tWindows\n"},{"path":[4,62,2,12,4],"span":[1122,2,10]},{"path":[4,62,2,12,5],"span":[1122,16,22]},{"path":[4,62,2,12,1],"span":[1122,24,35]},{"path":[4,62,2,12,3],"span":[1122,38,40]},{"path":[4,62,2,13],"span":[1123,2,55],"trailingComments":"\t\tWindows\n"},{"path":[4,62,2,13,4],"span":[1123,2,10]},{"path":[4,62,2,13,5],"span":[1123,16,22]},{"path":[4,62,2,13,1],"span":[1123,24,49]},{"path":[4,62,2,13,3],"span":[1123,52,54]},{"path":[4,62,2,14],"span":[1124,2,43],"trailingComments":"\t\tWindows\n"},{"path":[4,62,2,14,4],"span":[1124,2,10]},{"path":[4,62,2,14,5],"span":[1124,16,20]},{"path":[4,62,2,14,1],"span":[1124,24,37]},{"path":[4,62,2,14,3],"span":[1124,40,42]},{"path":[4,62,2,15],"span":[1125,2,42],"trailingComments":"\t\tWindows, Linux\n"},{"path":[4,62,2,15,4],"span":[1125,2,10]},{"path":[4,62,2,15,5],"span":[1125,16,22]},{"path":[4,62,2,15,1],"span":[1125,24,36]},{"path":[4,62,2,15,3],"span":[1125,39,41]},{"path":[4,62,2,16],"span":[1126,2,46],"trailingComments":"\t\tWindows\n"},{"path":[4,62,2,16,4],"span":[1126,2,10]},{"path":[4,62,2,16,5],"span":[1126,16,21]},{"path":[4,62,2,16,1],"span":[1126,24,40]},{"path":[4,62,2,16,3],"span":[1126,43,45]},{"path":[4,62,2,17],"span":[1127,2,36],"trailingComments":"\t\tWindows\n"},{"path":[4,62,2,17,4],"span":[1127,2,10]},{"path":[4,62,2,17,5],"span":[1127,16,21]},{"path":[4,62,2,17,1],"span":[1127,24,30]},{"path":[4,62,2,17,3],"span":[1127,33,35]},{"path":[4,62,2,18],"span":[1128,2,49],"trailingComments":"\t\tWindows\n"},{"path":[4,62,2,18,4],"span":[1128,2,10]},{"path":[4,62,2,18,6],"span":[1128,16,27]},{"path":[4,62,2,18,1],"span":[1128,32,43]},{"path":[4,62,2,18,3],"span":[1128,46,48]},{"path":[4,62,2,19],"span":[1129,2,46],"trailingComments":"\t\tWindows\n"},{"path":[4,62,2,19,4],"span":[1129,2,10]},{"path":[4,62,2,19,5],"span":[1129,16,21]},{"path":[4,62,2,19,1],"span":[1129,24,40]},{"path":[4,62,2,19,3],"span":[1129,43,45]},{"path":[4,62,2,20],"span":[1130,2,38],"trailingComments":"\t\tLinux\n"},{"path":[4,62,2,20,4],"span":[1130,2,10]},{"path":[4,62,2,20,5],"span":[1130,16,22]},{"path":[4,62,2,20,1],"span":[1130,24,32]},{"path":[4,62,2,20,3],"span":[1130,35,37]},{"path":[4,62,2,21],"span":[1131,2,43],"trailingComments":"\t\tWindows\n"},{"path":[4,62,2,21,4],"span":[1131,2,10]},{"path":[4,62,2,21,5],"span":[1131,16,22]},{"path":[4,62,2,21,1],"span":[1131,24,37]},{"path":[4,62,2,21,3],"span":[1131,40,42]},{"path":[4,62,2,22],"span":[1132,2,43],"trailingComments":"\t\tWindows\n"},{"path":[4,62,2,22,4],"span":[1132,2,10]},{"path":[4,62,2,22,6],"span":[1132,16,27]},{"path":[4,62,2,22,1],"span":[1132,32,37]},{"path":[4,62,2,22,3],"span":[1132,40,42]},{"path":[4,62,2,23],"span":[1133,2,52],"trailingComments":"\t\tLinux\n"},{"path":[4,62,2,23,4],"span":[1133,2,10]},{"path":[4,62,2,23,5],"span":[1133,16,22]},{"path":[4,62,2,23,1],"span":[1133,24,46]},{"path":[4,62,2,23,3],"span":[1133,49,51]},{"path":[4,62,2,24],"span":[1134,2,44],"trailingComments":"\t\tLinux\n"},{"path":[4,62,2,24,4],"span":[1134,2,10]},{"path":[4,62,2,24,5],"span":[1134,16,22]},{"path":[4,62,2,24,1],"span":[1134,24,38]},{"path":[4,62,2,24,3],"span":[1134,41,43]},{"path":[4,62,2,25],"span":[1135,2,56],"trailingComments":"\t\tWindows\n"},{"path":[4,62,2,25,4],"span":[1135,2,10]},{"path":[4,62,2,25,6],"span":[1135,16,27]},{"path":[4,62,2,25,1],"span":[1135,32,50]},{"path":[4,62,2,25,3],"span":[1135,53,55]},{"path":[4,62,2,26],"span":[1136,2,40],"trailingComments":"\t\tWindows\n"},{"path":[4,62,2,26,4],"span":[1136,2,10]},{"path":[4,62,2,26,5],"span":[1136,16,22]},{"path":[4,62,2,26,1],"span":[1136,24,34]},{"path":[4,62,2,26,3],"span":[1136,37,39]},{"path":[4,62,2,27],"span":[1137,2,45],"trailingComments":"\t\tWindows\n"},{"path":[4,62,2,27,4],"span":[1137,2,10]},{"path":[4,62,2,27,5],"span":[1137,16,22]},{"path":[4,62,2,27,1],"span":[1137,24,39]},{"path":[4,62,2,27,3],"span":[1137,42,44]},{"path":[4,63],"span":[1143,0,1153,1],"leadingComments":"\n BIOS for computers.\n"},{"path":[4,63,1],"span":[1143,8,12]},{"path":[4,63,8,0],"span":[1144,2,1147,3]},{"path":[4,63,8,0,1],"span":[1144,8,12]},{"path":[4,63,2,0],"span":[1145,4,24]},{"path":[4,63,2,0,6],"span":[1145,4,15]},{"path":[4,63,2,0,1],"span":[1145,16,19]},{"path":[4,63,2,0,3],"span":[1145,22,23]},{"path":[4,63,2,1],"span":[1146,4,24]},{"path":[4,63,2,1,6],"span":[1146,4,13]},{"path":[4,63,2,1,1],"span":[1146,14,19]},{"path":[4,63,2,1,3],"span":[1146,22,23]},{"path":[4,63,2,2],"span":[1150,2,37],"leadingComments":" common fields summarized\n"},{"path":[4,63,2,2,4],"span":[1150,2,10]},{"path":[4,63,2,2,5],"span":[1150,11,17]},{"path":[4,63,2,2,1],"span":[1150,18,30]},{"path":[4,63,2,2,3],"span":[1150,33,36]},{"path":[4,63,2,3],"span":[1151,2,32]},{"path":[4,63,2,3,4],"span":[1151,2,10]},{"path":[4,63,2,3,5],"span":[1151,11,17]},{"path":[4,63,2,3,1],"span":[1151,18,25]},{"path":[4,63,2,3,3],"span":[1151,28,31]},{"path":[4,63,2,4],"span":[1152,2,56]},{"path":[4,63,2,4,4],"span":[1152,2,10]},{"path":[4,63,2,4,6],"span":[1152,11,36]},{"path":[4,63,2,4,1],"span":[1152,37,49]},{"path":[4,63,2,4,3],"span":[1152,52,55]},{"path":[4,64],"span":[1159,0,1179,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,64,1],"span":[1159,8,19]},{"path":[4,64,2,0],"span":[1160,2,48]},{"path":[4,64,2,0,4],"span":[1160,2,10]},{"path":[4,64,2,0,6],"span":[1160,11,22]},{"path":[4,64,2,0,1],"span":[1160,23,43]},{"path":[4,64,2,0,3],"span":[1160,46,47]},{"path":[4,64,2,1],"span":[1161,2,30]},{"path":[4,64,2,1,4],"span":[1161,2,10]},{"path":[4,64,2,1,5],"span":[1161,11,17]},{"path":[4,64,2,1,1],"span":[1161,18,25]},{"path":[4,64,2,1,3],"span":[1161,28,29]},{"path":[4,64,2,2],"span":[1162,2,39]},{"path":[4,64,2,2,4],"span":[1162,2,10]},{"path":[4,64,2,2,5],"span":[1162,11,17]},{"path":[4,64,2,2,1],"span":[1162,18,34]},{"path":[4,64,2,2,3],"span":[1162,37,38]},{"path":[4,64,2,3],"span":[1163,2,43]},{"path":[4,64,2,3,4],"span":[1163,2,10]},{"path":[4,64,2,3,5],"span":[1163,11,16]},{"path":[4,64,2,3,1],"span":[1163,17,38]},{"path":[4,64,2,3,3],"span":[1163,41,42]},{"path":[4,64,2,4],"span":[1164,2,35]},{"path":[4,64,2,4,4],"span":[1164,2,10]},{"path":[4,64,2,4,5],"span":[1164,11,17]},{"path":[4,64,2,4,1],"span":[1164,18,30]},{"path":[4,64,2,4,3],"span":[1164,33,34]},{"path":[4,64,2,5],"span":[1165,2,27]},{"path":[4,64,2,5,4],"span":[1165,2,10]},{"path":[4,64,2,5,5],"span":[1165,11,17]},{"path":[4,64,2,5,1],"span":[1165,18,22]},{"path":[4,64,2,5,3],"span":[1165,25,26]},{"path":[4,64,2,6],"span":[1166,2,33]},{"path":[4,64,2,6,4],"span":[1166,2,10]},{"path":[4,64,2,6,5],"span":[1166,11,15]},{"path":[4,64,2,6,1],"span":[1166,16,28]},{"path":[4,64,2,6,3],"span":[1166,31,32]},{"path":[4,64,2,7],"span":[1167,2,54]},{"path":[4,64,2,7,4],"span":[1167,2,10]},{"path":[4,64,2,7,6],"span":[1167,11,36]},{"path":[4,64,2,7,1],"span":[1167,37,49]},{"path":[4,64,2,7,3],"span":[1167,52,53]},{"path":[4,64,2,8],"span":[1168,2,37]},{"path":[4,64,2,8,4],"span":[1168,2,10]},{"path":[4,64,2,8,5],"span":[1168,11,17]},{"path":[4,64,2,8,1],"span":[1168,18,31]},{"path":[4,64,2,8,3],"span":[1168,34,36]},{"path":[4,64,2,9],"span":[1169,2,43]},{"path":[4,64,2,9,4],"span":[1169,2,10]},{"path":[4,64,2,9,5],"span":[1169,11,17]},{"path":[4,64,2,9,1],"span":[1169,18,37]},{"path":[4,64,2,9,3],"span":[1169,40,42]},{"path":[4,64,2,10],"span":[1170,2,43]},{"path":[4,64,2,10,4],"span":[1170,2,10]},{"path":[4,64,2,10,5],"span":[1170,11,16]},{"path":[4,64,2,10,1],"span":[1170,17,37]},{"path":[4,64,2,10,3],"span":[1170,40,42]},{"path":[4,64,2,11],"span":[1171,2,43]},{"path":[4,64,2,11,4],"span":[1171,2,10]},{"path":[4,64,2,11,5],"span":[1171,11,16]},{"path":[4,64,2,11,1],"span":[1171,17,37]},{"path":[4,64,2,11,3],"span":[1171,40,42]},{"path":[4,64,2,12],"span":[1172,2,36]},{"path":[4,64,2,12,4],"span":[1172,2,10]},{"path":[4,64,2,12,5],"span":[1172,11,15]},{"path":[4,64,2,12,1],"span":[1172,16,30]},{"path":[4,64,2,12,3],"span":[1172,33,35]},{"path":[4,64,2,13],"span":[1173,2,43]},{"path":[4,64,2,13,4],"span":[1173,2,10]},{"path":[4,64,2,13,5],"span":[1173,11,17]},{"path":[4,64,2,13,1],"span":[1173,18,37]},{"path":[4,64,2,13,3],"span":[1173,40,42]},{"path":[4,64,2,14],"span":[1174,2,51]},{"path":[4,64,2,14,4],"span":[1174,2,10]},{"path":[4,64,2,14,6],"span":[1174,11,22]},{"path":[4,64,2,14,1],"span":[1174,23,45]},{"path":[4,64,2,14,3],"span":[1174,48,50]},{"path":[4,64,2,15],"span":[1175,2,30]},{"path":[4,64,2,15,4],"span":[1175,2,10]},{"path":[4,64,2,15,5],"span":[1175,11,17]},{"path":[4,64,2,15,1],"span":[1175,18,24]},{"path":[4,64,2,15,3],"span":[1175,27,29]},{"path":[4,64,2,16],"span":[1176,2,52]},{"path":[4,64,2,16,4],"span":[1176,2,10]},{"path":[4,64,2,16,6],"span":[1176,11,22]},{"path":[4,64,2,16,1],"span":[1176,23,46]},{"path":[4,64,2,16,3],"span":[1176,49,51]},{"path":[4,64,2,17],"span":[1177,2,31]},{"path":[4,64,2,17,4],"span":[1177,2,10]},{"path":[4,64,2,17,5],"span":[1177,11,17]},{"path":[4,64,2,17,1],"span":[1177,18,25]},{"path":[4,64,2,17,3],"span":[1177,28,30]},{"path":[4,64,2,18],"span":[1178,2,36]},{"path":[4,64,2,18,4],"span":[1178,2,10]},{"path":[4,64,2,18,5],"span":[1178,11,17]},{"path":[4,64,2,18,1],"span":[1178,18,30]},{"path":[4,64,2,18,3],"span":[1178,33,35]},{"path":[4,65],"span":[1184,0,1191,1],"leadingComments":"\n Bios for Unix/Linux: Unix.Bios\n"},{"path":[4,65,1],"span":[1184,8,17]},{"path":[4,65,2,0],"span":[1185,2,30],"trailingComments":" e.g.: \"Hyper-V UEFI Release v4.1\"\n"},{"path":[4,65,2,0,4],"span":[1185,2,10]},{"path":[4,65,2,0,5],"span":[1185,11,17]},{"path":[4,65,2,0,1],"span":[1185,18,25]},{"path":[4,65,2,0,3],"span":[1185,28,29]},{"path":[4,65,2,1],"span":[1186,2,30]},{"path":[4,65,2,1,4],"span":[1186,2,10]},{"path":[4,65,2,1,5],"span":[1186,11,17]},{"path":[4,65,2,1,1],"span":[1186,18,25]},{"path":[4,65,2,1,3],"span":[1186,28,29]},{"path":[4,65,2,2],"span":[1187,2,29]},{"path":[4,65,2,2,4],"span":[1187,2,10]},{"path":[4,65,2,2,5],"span":[1187,11,17]},{"path":[4,65,2,2,1],"span":[1187,18,24]},{"path":[4,65,2,2,3],"span":[1187,27,28]},{"path":[4,65,2,3],"span":[1188,2,34],"trailingComments":" parsed from e.g. \"64 kB\"\n"},{"path":[4,65,2,3,4],"span":[1188,2,10]},{"path":[4,65,2,3,5],"span":[1188,11,16]},{"path":[4,65,2,3,1],"span":[1188,17,29]},{"path":[4,65,2,3,3],"span":[1188,32,33]},{"path":[4,65,2,4],"span":[1189,2,30],"trailingComments":" parsed from e.g. \"64 kB\"\n"},{"path":[4,65,2,4,4],"span":[1189,2,10]},{"path":[4,65,2,4,5],"span":[1189,11,16]},{"path":[4,65,2,4,1],"span":[1189,17,25]},{"path":[4,65,2,4,3],"span":[1189,28,29]},{"path":[4,65,2,5],"span":[1190,2,54]},{"path":[4,65,2,5,4],"span":[1190,2,10]},{"path":[4,65,2,5,6],"span":[1190,11,36]},{"path":[4,65,2,5,1],"span":[1190,37,49]},{"path":[4,65,2,5,3],"span":[1190,52,53]},{"path":[4,66],"span":[1196,0,1202,1],"leadingComments":"\n Computer Battery: Windows.WindowsBattery. Mac.Power battery messages.\n"},{"path":[4,66,1],"span":[1196,8,23]},{"path":[4,66,8,0],"span":[1197,2,1201,3]},{"path":[4,66,8,0,1],"span":[1197,8,12]},{"path":[4,66,2,0],"span":[1198,4,43]},{"path":[4,66,2,0,6],"span":[1198,4,26]},{"path":[4,66,2,0,1],"span":[1198,27,38]},{"path":[4,66,2,0,3],"span":[1198,41,42]},{"path":[4,66,2,1],"span":[1199,4,44]},{"path":[4,66,2,1,6],"span":[1199,4,26]},{"path":[4,66,2,1,1],"span":[1199,27,39]},{"path":[4,66,2,1,3],"span":[1199,42,43]},{"path":[4,66,2,2],"span":[1200,4,39]},{"path":[4,66,2,2,6],"span":[1200,4,22]},{"path":[4,66,2,2,1],"span":[1200,23,34]},{"path":[4,66,2,2,3],"span":[1200,37,38]},{"path":[4,67],"span":[1208,0,1219,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,67,1],"span":[1208,8,30]},{"path":[4,67,2,0],"span":[1209,2,40]},{"path":[4,67,2,0,4],"span":[1209,2,10]},{"path":[4,67,2,0,6],"span":[1209,11,22]},{"path":[4,67,2,0,1],"span":[1209,23,35]},{"path":[4,67,2,0,3],"span":[1209,38,39]},{"path":[4,67,2,1],"span":[1210,2,42]},{"path":[4,67,2,1,4],"span":[1210,2,10]},{"path":[4,67,2,1,6],"span":[1210,11,22]},{"path":[4,67,2,1,1],"span":[1210,23,37]},{"path":[4,67,2,1,3],"span":[1210,40,41]},{"path":[4,67,2,2],"span":[1211,2,37]},{"path":[4,67,2,2,4],"span":[1211,2,10]},{"path":[4,67,2,2,6],"span":[1211,11,22]},{"path":[4,67,2,2,1],"span":[1211,23,32]},{"path":[4,67,2,2,3],"span":[1211,35,36]},{"path":[4,67,2,3],"span":[1212,2,43]},{"path":[4,67,2,3,4],"span":[1212,2,10]},{"path":[4,67,2,3,6],"span":[1212,11,22]},{"path":[4,67,2,3,1],"span":[1212,23,38]},{"path":[4,67,2,3,3],"span":[1212,41,42]},{"path":[4,67,2,4],"span":[1213,2,32]},{"path":[4,67,2,4,4],"span":[1213,2,10]},{"path":[4,67,2,4,5],"span":[1213,11,17]},{"path":[4,67,2,4,1],"span":[1213,18,27]},{"path":[4,67,2,4,3],"span":[1213,30,31]},{"path":[4,67,2,5],"span":[1214,2,27]},{"path":[4,67,2,5,4],"span":[1214,2,10]},{"path":[4,67,2,5,5],"span":[1214,11,17]},{"path":[4,67,2,5,1],"span":[1214,18,22]},{"path":[4,67,2,5,3],"span":[1214,25,26]},{"path":[4,67,2,6],"span":[1215,2,57]},{"path":[4,67,2,6,4],"span":[1215,2,10]},{"path":[4,67,2,6,6],"span":[1215,11,22]},{"path":[4,67,2,6,1],"span":[1215,23,52]},{"path":[4,67,2,6,3],"span":[1215,55,56]},{"path":[4,67,2,7],"span":[1216,2,47]},{"path":[4,67,2,7,4],"span":[1216,2,10]},{"path":[4,67,2,7,5],"span":[1216,11,15]},{"path":[4,67,2,7,1],"span":[1216,16,42]},{"path":[4,67,2,7,3],"span":[1216,45,46]},{"path":[4,67,2,8],"span":[1217,2,44]},{"path":[4,67,2,8,4],"span":[1217,2,10]},{"path":[4,67,2,8,5],"span":[1217,11,17]},{"path":[4,67,2,8,1],"span":[1217,18,39]},{"path":[4,67,2,8,3],"span":[1217,42,43]},{"path":[4,67,2,9],"span":[1218,2,30]},{"path":[4,67,2,9,4],"span":[1218,2,10]},{"path":[4,67,2,9,5],"span":[1218,11,17]},{"path":[4,67,2,9,1],"span":[1218,18,24]},{"path":[4,67,2,9,3],"span":[1218,27,29]},{"path":[4,68],"span":[1225,0,1237,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,68,1],"span":[1225,8,30]},{"path":[4,68,2,0],"span":[1226,2,41]},{"path":[4,68,2,0,4],"span":[1226,2,10]},{"path":[4,68,2,0,5],"span":[1226,11,16]},{"path":[4,68,2,0,1],"span":[1226,17,36]},{"path":[4,68,2,0,3],"span":[1226,39,40]},{"path":[4,68,2,1],"span":[1227,2,37]},{"path":[4,68,2,1,4],"span":[1227,2,10]},{"path":[4,68,2,1,6],"span":[1227,11,22]},{"path":[4,68,2,1,1],"span":[1227,23,32]},{"path":[4,68,2,1,3],"span":[1227,35,36]},{"path":[4,68,2,2],"span":[1228,2,37]},{"path":[4,68,2,2,4],"span":[1228,2,10]},{"path":[4,68,2,2,5],"span":[1228,11,16]},{"path":[4,68,2,2,1],"span":[1228,17,32]},{"path":[4,68,2,2,3],"span":[1228,35,36]},{"path":[4,68,2,3],"span":[1229,2,36]},{"path":[4,68,2,3,4],"span":[1229,2,10]},{"path":[4,68,2,3,5],"span":[1229,11,16]},{"path":[4,68,2,3,1],"span":[1229,17,31]},{"path":[4,68,2,3,3],"span":[1229,34,35]},{"path":[4,68,2,4],"span":[1230,2,32]},{"path":[4,68,2,4,4],"span":[1230,2,10]},{"path":[4,68,2,4,5],"span":[1230,11,17]},{"path":[4,68,2,4,1],"span":[1230,18,27]},{"path":[4,68,2,4,3],"span":[1230,30,31]},{"path":[4,68,2,5],"span":[1231,2,31]},{"path":[4,68,2,5,4],"span":[1231,2,10]},{"path":[4,68,2,5,5],"span":[1231,11,17]},{"path":[4,68,2,5,1],"span":[1231,18,26]},{"path":[4,68,2,5,3],"span":[1231,29,30]},{"path":[4,68,2,6],"span":[1232,2,39]},{"path":[4,68,2,6,4],"span":[1232,2,10]},{"path":[4,68,2,6,5],"span":[1232,11,17]},{"path":[4,68,2,6,1],"span":[1232,18,34]},{"path":[4,68,2,6,3],"span":[1232,37,38]},{"path":[4,68,2,7],"span":[1233,2,35]},{"path":[4,68,2,7,4],"span":[1233,2,10]},{"path":[4,68,2,7,5],"span":[1233,11,17]},{"path":[4,68,2,7,1],"span":[1233,18,30]},{"path":[4,68,2,7,3],"span":[1233,33,34]},{"path":[4,68,2,8],"span":[1234,2,39]},{"path":[4,68,2,8,4],"span":[1234,2,10]},{"path":[4,68,2,8,5],"span":[1234,11,16]},{"path":[4,68,2,8,1],"span":[1234,17,34]},{"path":[4,68,2,8,3],"span":[1234,37,38]},{"path":[4,68,2,9],"span":[1235,2,28]},{"path":[4,68,2,9,4],"span":[1235,2,10]},{"path":[4,68,2,9,5],"span":[1235,11,17]},{"path":[4,68,2,9,1],"span":[1235,18,22]},{"path":[4,68,2,9,3],"span":[1235,25,27]},{"path":[4,68,2,10],"span":[1236,2,45]},{"path":[4,68,2,10,4],"span":[1236,2,10]},{"path":[4,68,2,10,5],"span":[1236,11,17]},{"path":[4,68,2,10,1],"span":[1236,18,39]},{"path":[4,68,2,10,3],"span":[1236,42,44]},{"path":[4,69],"span":[1242,0,1278,1],"leadingComments":"\n Computer Battery: Mac.Power battery messages.\n"},{"path":[4,69,1],"span":[1242,8,26]},{"path":[4,69,2,0],"span":[1244,2,38],"leadingComments":" from battery power\n"},{"path":[4,69,2,0,4],"span":[1244,2,10]},{"path":[4,69,2,0,5],"span":[1244,11,16]},{"path":[4,69,2,0,1],"span":[1244,17,33]},{"path":[4,69,2,0,3],"span":[1244,36,37]},{"path":[4,69,2,1],"span":[1245,2,41]},{"path":[4,69,2,1,4],"span":[1245,2,10]},{"path":[4,69,2,1,5],"span":[1245,11,16]},{"path":[4,69,2,1,1],"span":[1245,17,36]},{"path":[4,69,2,1,3],"span":[1245,39,40]},{"path":[4,69,2,2],"span":[1246,2,36]},{"path":[4,69,2,2,4],"span":[1246,2,10]},{"path":[4,69,2,2,5],"span":[1246,11,16]},{"path":[4,69,2,2,1],"span":[1246,17,31]},{"path":[4,69,2,2,3],"span":[1246,34,35]},{"path":[4,69,2,3],"span":[1247,2,64]},{"path":[4,69,2,3,4],"span":[1247,2,10]},{"path":[4,69,2,3,5],"span":[1247,11,16]},{"path":[4,69,2,3,1],"span":[1247,17,59]},{"path":[4,69,2,3,3],"span":[1247,62,63]},{"path":[4,69,2,4],"span":[1248,2,42],"trailingComments":" parse from: 'Yes'\n"},{"path":[4,69,2,4,4],"span":[1248,2,10]},{"path":[4,69,2,4,5],"span":[1248,11,15]},{"path":[4,69,2,4,1],"span":[1248,16,37]},{"path":[4,69,2,4,3],"span":[1248,40,41]},{"path":[4,69,2,5],"span":[1249,2,40]},{"path":[4,69,2,5,4],"span":[1249,2,10]},{"path":[4,69,2,5,5],"span":[1249,11,16]},{"path":[4,69,2,5,1],"span":[1249,17,35]},{"path":[4,69,2,5,3],"span":[1249,38,39]},{"path":[4,69,2,6],"span":[1250,2,32]},{"path":[4,69,2,6,4],"span":[1250,2,10]},{"path":[4,69,2,6,5],"span":[1250,11,15]},{"path":[4,69,2,6,1],"span":[1250,16,27]},{"path":[4,69,2,6,3],"span":[1250,30,31]},{"path":[4,69,2,7],"span":[1251,2,42]},{"path":[4,69,2,7,4],"span":[1251,2,10]},{"path":[4,69,2,7,5],"span":[1251,11,16]},{"path":[4,69,2,7,1],"span":[1251,17,37]},{"path":[4,69,2,7,3],"span":[1251,40,41]},{"path":[4,69,2,8],"span":[1252,2,37]},{"path":[4,69,2,8,4],"span":[1252,2,10]},{"path":[4,69,2,8,5],"span":[1252,11,16]},{"path":[4,69,2,8,1],"span":[1252,17,32]},{"path":[4,69,2,8,3],"span":[1252,35,36]},{"path":[4,69,2,9],"span":[1253,2,37]},{"path":[4,69,2,9,4],"span":[1253,2,10]},{"path":[4,69,2,9,5],"span":[1253,11,16]},{"path":[4,69,2,9,1],"span":[1253,17,31]},{"path":[4,69,2,9,3],"span":[1253,34,36]},{"path":[4,69,2,10],"span":[1254,2,39]},{"path":[4,69,2,10,4],"span":[1254,2,10]},{"path":[4,69,2,10,5],"span":[1254,11,15]},{"path":[4,69,2,10,1],"span":[1254,16,33]},{"path":[4,69,2,10,3],"span":[1254,36,38]},{"path":[4,69,2,11],"span":[1257,2,38],"leadingComments":" from battery charge (parse booleans)\n"},{"path":[4,69,2,11,4],"span":[1257,2,10]},{"path":[4,69,2,11,5],"span":[1257,11,15]},{"path":[4,69,2,11,1],"span":[1257,16,32]},{"path":[4,69,2,11,3],"span":[1257,35,37]},{"path":[4,69,2,12],"span":[1258,2,38]},{"path":[4,69,2,12,4],"span":[1258,2,10]},{"path":[4,69,2,12,5],"span":[1258,11,15]},{"path":[4,69,2,12,1],"span":[1258,16,32]},{"path":[4,69,2,12,3],"span":[1258,35,37]},{"path":[4,69,2,13],"span":[1259,2,33]},{"path":[4,69,2,13,4],"span":[1259,2,10]},{"path":[4,69,2,13,5],"span":[1259,11,15]},{"path":[4,69,2,13,1],"span":[1259,16,27]},{"path":[4,69,2,13,3],"span":[1259,30,32]},{"path":[4,69,2,14],"span":[1260,2,39]},{"path":[4,69,2,14,4],"span":[1260,2,10]},{"path":[4,69,2,14,5],"span":[1260,11,16]},{"path":[4,69,2,14,1],"span":[1260,18,33]},{"path":[4,69,2,14,3],"span":[1260,36,38]},{"path":[4,69,2,15],"span":[1263,2,34],"leadingComments":" from battery_health_info\n"},{"path":[4,69,2,15,4],"span":[1263,2,10]},{"path":[4,69,2,15,5],"span":[1263,11,16]},{"path":[4,69,2,15,1],"span":[1263,17,28]},{"path":[4,69,2,15,3],"span":[1263,31,33]},{"path":[4,69,2,16],"span":[1264,2,37]},{"path":[4,69,2,16,4],"span":[1264,2,10]},{"path":[4,69,2,16,5],"span":[1264,11,17]},{"path":[4,69,2,16,1],"span":[1264,18,31]},{"path":[4,69,2,16,3],"span":[1264,34,36]},{"path":[4,69,2,17],"span":[1265,2,54]},{"path":[4,69,2,17,4],"span":[1265,2,10]},{"path":[4,69,2,17,5],"span":[1265,11,17]},{"path":[4,69,2,17,1],"span":[1265,18,48]},{"path":[4,69,2,17,3],"span":[1265,51,53]},{"path":[4,69,2,18],"span":[1268,2,36],"leadingComments":" from battery_model_info\n"},{"path":[4,69,2,18,4],"span":[1268,2,10]},{"path":[4,69,2,18,5],"span":[1268,11,17]},{"path":[4,69,2,18,1],"span":[1268,18,30]},{"path":[4,69,2,18,3],"span":[1268,33,35]},{"path":[4,69,2,19],"span":[1269,2,37]},{"path":[4,69,2,19,4],"span":[1269,2,10]},{"path":[4,69,2,19,5],"span":[1269,11,17]},{"path":[4,69,2,19,1],"span":[1269,18,31]},{"path":[4,69,2,19,3],"span":[1269,34,36]},{"path":[4,69,2,20],"span":[1270,2,37]},{"path":[4,69,2,20,4],"span":[1270,2,10]},{"path":[4,69,2,20,5],"span":[1270,11,17]},{"path":[4,69,2,20,1],"span":[1270,18,31]},{"path":[4,69,2,20,3],"span":[1270,34,36]},{"path":[4,69,2,21],"span":[1271,2,35]},{"path":[4,69,2,21,4],"span":[1271,2,10]},{"path":[4,69,2,21,5],"span":[1271,11,17]},{"path":[4,69,2,21,1],"span":[1271,18,29]},{"path":[4,69,2,21,3],"span":[1271,32,34]},{"path":[4,69,2,22],"span":[1272,2,40]},{"path":[4,69,2,22,4],"span":[1272,2,10]},{"path":[4,69,2,22,5],"span":[1272,11,17]},{"path":[4,69,2,22,1],"span":[1272,18,34]},{"path":[4,69,2,22,3],"span":[1272,37,39]},{"path":[4,69,2,23],"span":[1273,2,41]},{"path":[4,69,2,23,4],"span":[1273,2,10]},{"path":[4,69,2,23,5],"span":[1273,11,17]},{"path":[4,69,2,23,1],"span":[1273,18,35]},{"path":[4,69,2,23,3],"span":[1273,38,40]},{"path":[4,69,2,24],"span":[1274,2,37]},{"path":[4,69,2,24,4],"span":[1274,2,10]},{"path":[4,69,2,24,5],"span":[1274,11,17]},{"path":[4,69,2,24,1],"span":[1274,18,31]},{"path":[4,69,2,24,3],"span":[1274,34,36]},{"path":[4,69,2,25],"span":[1276,2,47]},{"path":[4,69,2,25,4],"span":[1276,2,10]},{"path":[4,69,2,25,5],"span":[1276,11,15]},{"path":[4,69,2,25,1],"span":[1276,16,41]},{"path":[4,69,2,25,3],"span":[1276,44,46]},{"path":[4,69,2,26],"span":[1277,2,41]},{"path":[4,69,2,26,4],"span":[1277,2,10]},{"path":[4,69,2,26,5],"span":[1277,11,15]},{"path":[4,69,2,26,1],"span":[1277,16,35]},{"path":[4,69,2,26,3],"span":[1277,38,40]},{"path":[4,70],"span":[1283,0,1305,1],"leadingComments":"\n Optical disc drive for computers.\n"},{"path":[4,70,1],"span":[1283,8,20]},{"path":[4,70,2,0],"span":[1284,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,70,2,0,4],"span":[1284,2,10]},{"path":[4,70,2,0,5],"span":[1284,16,22]},{"path":[4,70,2,0,1],"span":[1284,24,28]},{"path":[4,70,2,0,3],"span":[1284,34,35]},{"path":[4,70,2,1],"span":[1285,2,36],"trailingComments":" \t\"OK\",\"Error\",\"Degraded\"\tWindows\n"},{"path":[4,70,2,1,4],"span":[1285,2,10]},{"path":[4,70,2,1,5],"span":[1285,16,22]},{"path":[4,70,2,1,1],"span":[1285,24,30]},{"path":[4,70,2,1,3],"span":[1285,34,35]},{"path":[4,70,2,2],"span":[1286,2,36],"trailingComments":" \t\"2:0:0:0\"\tLinux\n"},{"path":[4,70,2,2,4],"span":[1286,2,10]},{"path":[4,70,2,2,5],"span":[1286,16,22]},{"path":[4,70,2,2,1],"span":[1286,24,27]},{"path":[4,70,2,2,3],"span":[1286,34,35]},{"path":[4,70,2,3],"span":[1287,2,52],"trailingComments":" \t\"Supports writing, Random Access, Supports Removable Media\" \tWindows\n"},{"path":[4,70,2,3,4],"span":[1287,2,10]},{"path":[4,70,2,3,6],"span":[1287,16,27]},{"path":[4,70,2,3,1],"span":[1287,32,44]},{"path":[4,70,2,3,3],"span":[1287,50,51]},{"path":[4,70,2,4],"span":[1288,2,44],"trailingComments":" \t\"32 KB\", \"2048 KB\"\tMac\n"},{"path":[4,70,2,4,4],"span":[1288,2,10]},{"path":[4,70,2,4,5],"span":[1288,16,22]},{"path":[4,70,2,4,1],"span":[1288,24,34]},{"path":[4,70,2,4,3],"span":[1288,42,43]},{"path":[4,70,2,5],"span":[1289,2,44],"trailingComments":" \t\"DRDeviceSupportLevelUnsupported\",\"Yes (Apple Shipping Drive)\",\"Yes (Generic Drive Support)\"\tMac\n"},{"path":[4,70,2,5,4],"span":[1289,2,10]},{"path":[4,70,2,5,5],"span":[1289,16,22]},{"path":[4,70,2,5,1],"span":[1289,24,36]},{"path":[4,70,2,5,3],"span":[1289,42,43]},{"path":[4,70,2,6],"span":[1290,2,44],"trailingComments":" \t\"-R, -RW\"\tMac\n"},{"path":[4,70,2,6,4],"span":[1290,2,10]},{"path":[4,70,2,6,5],"span":[1290,16,22]},{"path":[4,70,2,6,1],"span":[1290,24,32]},{"path":[4,70,2,6,3],"span":[1290,42,43]},{"path":[4,70,2,7],"span":[1291,2,44],"trailingComments":" \t\"-R, -RAM, -RW\"\tMac\n"},{"path":[4,70,2,7,4],"span":[1291,2,10]},{"path":[4,70,2,7,5],"span":[1291,16,22]},{"path":[4,70,2,7,1],"span":[1291,24,33]},{"path":[4,70,2,7,3],"span":[1291,42,43]},{"path":[4,70,2,8],"span":[1292,2,44],"trailingComments":" \t\"yes\"\tMac\n"},{"path":[4,70,2,8,4],"span":[1292,2,10]},{"path":[4,70,2,8,5],"span":[1292,16,22]},{"path":[4,70,2,8,1],"span":[1292,24,32]},{"path":[4,70,2,8,3],"span":[1292,42,43]},{"path":[4,70,2,9],"span":[1293,2,45],"trailingComments":" \tWindows: \"H:\" Linux: \"/dev/sr0 (/dev/sg0)\"\tWindows, Linux\n"},{"path":[4,70,2,9,4],"span":[1293,2,10]},{"path":[4,70,2,9,5],"span":[1293,16,22]},{"path":[4,70,2,9,1],"span":[1293,24,34]},{"path":[4,70,2,9,3],"span":[1293,42,44]},{"path":[4,70,2,10],"span":[1294,2,53],"trailingComments":" \t\"RQ00\",\"1.00\"\tMac\n"},{"path":[4,70,2,10,4],"span":[1294,2,10]},{"path":[4,70,2,10,5],"span":[1294,16,22]},{"path":[4,70,2,10,1],"span":[1294,24,40]},{"path":[4,70,2,10,3],"span":[1294,50,52]},{"path":[4,70,2,11],"span":[1295,2,45],"trailingComments":" \t\"ATAPI\",\"USB\"\tMac\n"},{"path":[4,70,2,11,4],"span":[1295,2,10]},{"path":[4,70,2,11,5],"span":[1295,16,22]},{"path":[4,70,2,11,1],"span":[1295,24,34]},{"path":[4,70,2,11,3],"span":[1295,42,44]},{"path":[4,70,2,12],"span":[1296,2,61],"trailingComments":" \t\"yes\"\tMac\n"},{"path":[4,70,2,12,4],"span":[1296,2,10]},{"path":[4,70,2,12,5],"span":[1296,16,22]},{"path":[4,70,2,12,1],"span":[1296,24,54]},{"path":[4,70,2,12,3],"span":[1296,58,60]},{"path":[4,70,2,13],"span":[1297,2,45],"trailingComments":" \tWindows:\"(Standard CD-ROM drives)\",Linux:\"NECVMWar\"\tWindows, Linux\n"},{"path":[4,70,2,13,4],"span":[1297,2,10]},{"path":[4,70,2,13,5],"span":[1297,16,22]},{"path":[4,70,2,13,1],"span":[1297,24,36]},{"path":[4,70,2,13,3],"span":[1297,42,44]},{"path":[4,70,2,14],"span":[1298,2,45],"trailingComments":" \t\tLinux\n"},{"path":[4,70,2,14,4],"span":[1298,2,10]},{"path":[4,70,2,14,5],"span":[1298,16,22]},{"path":[4,70,2,14,1],"span":[1298,24,35]},{"path":[4,70,2,14,3],"span":[1298,42,44]},{"path":[4,70,2,15],"span":[1299,2,53],"trailingComments":" \t\"CD-TAO, CD-SAO, CD-Raw, DVD-DAO\"\tMac\n"},{"path":[4,70,2,15,4],"span":[1299,2,10]},{"path":[4,70,2,15,5],"span":[1299,16,22]},{"path":[4,70,2,15,1],"span":[1299,24,40]},{"path":[4,70,2,15,3],"span":[1299,50,52]},{"path":[4,70,2,16],"span":[1300,2,45],"trailingComments":" \t7\tWindows\n"},{"path":[4,70,2,16,4],"span":[1300,2,10]},{"path":[4,70,2,16,5],"span":[1300,16,21]},{"path":[4,70,2,16,1],"span":[1300,24,32]},{"path":[4,70,2,16,3],"span":[1300,42,44]},{"path":[4,70,2,17],"span":[1301,2,53],"trailingComments":" \t0\tWindows\n"},{"path":[4,70,2,17,4],"span":[1301,2,10]},{"path":[4,70,2,17,5],"span":[1301,16,21]},{"path":[4,70,2,17,1],"span":[1301,24,41]},{"path":[4,70,2,17,3],"span":[1301,50,52]},{"path":[4,70,2,18],"span":[1302,2,45],"trailingComments":" \t0\tWindows\n"},{"path":[4,70,2,18,4],"span":[1302,2,10]},{"path":[4,70,2,18,5],"span":[1302,16,21]},{"path":[4,70,2,18,1],"span":[1302,24,33]},{"path":[4,70,2,18,3],"span":[1302,42,44]},{"path":[4,70,2,19],"span":[1303,2,45],"trailingComments":" \t0\tWindows\n"},{"path":[4,70,2,19,4],"span":[1303,2,10]},{"path":[4,70,2,19,5],"span":[1303,16,21]},{"path":[4,70,2,19,1],"span":[1303,24,38]},{"path":[4,70,2,19,3],"span":[1303,42,44]},{"path":[4,70,2,20],"span":[1304,2,52],"trailingComments":" \tMac\n"},{"path":[4,70,2,20,4],"span":[1304,2,10]},{"path":[4,70,2,20,5],"span":[1304,16,22]},{"path":[4,70,2,20,1],"span":[1304,24,46]},{"path":[4,70,2,20,3],"span":[1304,49,51]},{"path":[4,71],"span":[1310,0,1323,1],"leadingComments":"\n Motherboard for computers.\n"},{"path":[4,71,1],"span":[1310,8,19]},{"path":[4,71,2,0],"span":[1311,2,18],"trailingComments":" Windows, Linux\n"},{"path":[4,71,2,0,5],"span":[1311,2,8]},{"path":[4,71,2,0,1],"span":[1311,9,13]},{"path":[4,71,2,0,3],"span":[1311,16,17]},{"path":[4,71,2,1],"span":[1312,2,43],"trailingComments":" Windows\n"},{"path":[4,71,2,1,4],"span":[1312,2,10]},{"path":[4,71,2,1,5],"span":[1312,11,17]},{"path":[4,71,2,1,1],"span":[1312,24,38]},{"path":[4,71,2,1,3],"span":[1312,41,42]},{"path":[4,71,2,2],"span":[1313,2,37],"trailingComments":" Windows\n"},{"path":[4,71,2,2,4],"span":[1313,2,10]},{"path":[4,71,2,2,5],"span":[1313,11,15]},{"path":[4,71,2,2,1],"span":[1313,16,32]},{"path":[4,71,2,2,3],"span":[1313,35,36]},{"path":[4,71,2,3],"span":[1314,2,34],"trailingComments":" Windows\n"},{"path":[4,71,2,3,4],"span":[1314,2,10]},{"path":[4,71,2,3,5],"span":[1314,11,15]},{"path":[4,71,2,3,1],"span":[1314,16,29]},{"path":[4,71,2,3,3],"span":[1314,32,33]},{"path":[4,71,2,4],"span":[1315,2,37],"trailingComments":" Linux\n"},{"path":[4,71,2,4,4],"span":[1315,2,10]},{"path":[4,71,2,4,5],"span":[1315,11,17]},{"path":[4,71,2,4,1],"span":[1315,24,32]},{"path":[4,71,2,4,3],"span":[1315,35,36]},{"path":[4,71,2,5],"span":[1316,2,41],"trailingComments":" Windows, Linux\n"},{"path":[4,71,2,5,4],"span":[1316,2,10]},{"path":[4,71,2,5,5],"span":[1316,11,17]},{"path":[4,71,2,5,1],"span":[1316,24,36]},{"path":[4,71,2,5,3],"span":[1316,39,40]},{"path":[4,71,2,6],"span":[1317,2,42],"trailingComments":" Windows, Linux\n"},{"path":[4,71,2,6,4],"span":[1317,2,10]},{"path":[4,71,2,6,5],"span":[1317,11,17]},{"path":[4,71,2,6,1],"span":[1317,24,37]},{"path":[4,71,2,6,3],"span":[1317,40,41]},{"path":[4,71,2,7],"span":[1318,2,32],"trailingComments":" Windows\n"},{"path":[4,71,2,7,4],"span":[1318,2,10]},{"path":[4,71,2,7,5],"span":[1318,11,17]},{"path":[4,71,2,7,1],"span":[1318,24,27]},{"path":[4,71,2,7,3],"span":[1318,30,31]},{"path":[4,71,2,8],"span":[1319,2,33],"trailingComments":" Linux\n"},{"path":[4,71,2,8,4],"span":[1319,2,10]},{"path":[4,71,2,8,5],"span":[1319,11,17]},{"path":[4,71,2,8,1],"span":[1319,24,28]},{"path":[4,71,2,8,3],"span":[1319,31,32]},{"path":[4,71,2,9],"span":[1320,2,37],"trailingComments":" Windows, Linux\n"},{"path":[4,71,2,9,4],"span":[1320,2,10]},{"path":[4,71,2,9,5],"span":[1320,11,17]},{"path":[4,71,2,9,1],"span":[1320,24,31]},{"path":[4,71,2,9,3],"span":[1320,34,36]},{"path":[4,71,2,10],"span":[1322,2,41]},{"path":[4,71,2,10,4],"span":[1322,2,10]},{"path":[4,71,2,10,6],"span":[1322,11,28]},{"path":[4,71,2,10,1],"span":[1322,29,35]},{"path":[4,71,2,10,3],"span":[1322,38,40]},{"path":[4,72],"span":[1328,0,1333,1],"leadingComments":"\n Motherboard device, available only on Windows atm.\n"},{"path":[4,72,1],"span":[1328,8,25]},{"path":[4,72,2,0],"span":[1329,2,40]},{"path":[4,72,2,0,4],"span":[1329,2,10]},{"path":[4,72,2,0,5],"span":[1329,11,17]},{"path":[4,72,2,0,1],"span":[1329,24,35]},{"path":[4,72,2,0,3],"span":[1329,38,39]},{"path":[4,72,2,1],"span":[1330,2,28]},{"path":[4,72,2,1,4],"span":[1330,2,10]},{"path":[4,72,2,1,5],"span":[1330,11,15]},{"path":[4,72,2,1,1],"span":[1330,16,23]},{"path":[4,72,2,1,3],"span":[1330,26,27]},{"path":[4,72,2,2],"span":[1331,2,32]},{"path":[4,72,2,2,4],"span":[1331,2,10]},{"path":[4,72,2,2,5],"span":[1331,11,17]},{"path":[4,72,2,2,1],"span":[1331,24,27]},{"path":[4,72,2,2,3],"span":[1331,30,31]},{"path":[4,72,2,3],"span":[1332,2,32]},{"path":[4,72,2,3,4],"span":[1332,2,10]},{"path":[4,72,2,3,6],"span":[1332,11,22]},{"path":[4,72,2,3,1],"span":[1332,23,27]},{"path":[4,72,2,3,3],"span":[1332,30,31]},{"path":[4,73],"span":[1338,0,1342,1],"leadingComments":"\n Memory with summary fields and repeated entries.\n"},{"path":[4,73,1],"span":[1338,8,14]},{"path":[4,73,2,0],"span":[1339,4,29]},{"path":[4,73,2,0,5],"span":[1339,4,9]},{"path":[4,73,2,0,1],"span":[1339,10,24]},{"path":[4,73,2,0,3],"span":[1339,27,28]},{"path":[4,73,2,1],"span":[1340,4,48]},{"path":[4,73,2,1,4],"span":[1340,4,12]},{"path":[4,73,2,1,6],"span":[1340,13,27]},{"path":[4,73,2,1,1],"span":[1340,28,43]},{"path":[4,73,2,1,3],"span":[1340,46,47]},{"path":[4,73,2,2],"span":[1341,4,42]},{"path":[4,73,2,2,4],"span":[1341,4,12]},{"path":[4,73,2,2,6],"span":[1341,13,24]},{"path":[4,73,2,2,1],"span":[1341,25,37]},{"path":[4,73,2,2,3],"span":[1341,40,41]},{"path":[4,74],"span":[1345,0,1368,1],"leadingComments":" MemoryEntry *"},{"path":[4,74,1],"span":[1345,8,22]},{"path":[4,74,2,0],"span":[1347,4,30],"trailingComments":" memory capacity/size\n"},{"path":[4,74,2,0,4],"span":[1347,4,12]},{"path":[4,74,2,0,5],"span":[1347,14,19]},{"path":[4,74,2,0,1],"span":[1347,20,24]},{"path":[4,74,2,0,3],"span":[1347,27,29]},{"path":[4,74,2,1],"span":[1348,4,40],"trailingComments":"\tLinux\n"},{"path":[4,74,2,1,4],"span":[1348,4,12]},{"path":[4,74,2,1,5],"span":[1348,13,19]},{"path":[4,74,2,1,1],"span":[1348,24,36]},{"path":[4,74,2,1,3],"span":[1348,38,39]},{"path":[4,74,2,2],"span":[1349,4,51],"trailingComments":"\tWindows\n"},{"path":[4,74,2,2,4],"span":[1349,4,12]},{"path":[4,74,2,2,5],"span":[1349,13,18]},{"path":[4,74,2,2,1],"span":[1349,24,46]},{"path":[4,74,2,2,3],"span":[1349,49,50]},{"path":[4,74,2,3],"span":[1350,4,46],"trailingComments":"\tWindows\n"},{"path":[4,74,2,3,4],"span":[1350,4,12]},{"path":[4,74,2,3,5],"span":[1350,13,18]},{"path":[4,74,2,3,1],"span":[1350,24,42]},{"path":[4,74,2,3,3],"span":[1350,44,45]},{"path":[4,74,2,4],"span":[1351,4,38],"trailingComments":"\tWindows, Linux\n"},{"path":[4,74,2,4,4],"span":[1351,4,12]},{"path":[4,74,2,4,5],"span":[1351,13,18]},{"path":[4,74,2,4,1],"span":[1351,24,34]},{"path":[4,74,2,4,3],"span":[1351,36,37]},{"path":[4,74,2,5],"span":[1352,4,42],"trailingComments":"\tWindows, Linux\n"},{"path":[4,74,2,5,4],"span":[1352,4,12]},{"path":[4,74,2,5,5],"span":[1352,13,19]},{"path":[4,74,2,5,1],"span":[1352,24,38]},{"path":[4,74,2,5,3],"span":[1352,40,41]},{"path":[4,74,2,6],"span":[1353,4,47],"trailingComments":"\tWindows, Linux\n"},{"path":[4,74,2,6,4],"span":[1353,4,12]},{"path":[4,74,2,6,6],"span":[1353,13,24]},{"path":[4,74,2,6,1],"span":[1353,32,43]},{"path":[4,74,2,6,3],"span":[1353,45,46]},{"path":[4,74,2,7],"span":[1354,4,49],"trailingComments":"\tWindows\n"},{"path":[4,74,2,7,4],"span":[1354,4,12]},{"path":[4,74,2,7,5],"span":[1354,13,18]},{"path":[4,74,2,7,1],"span":[1354,24,45]},{"path":[4,74,2,7,3],"span":[1354,47,48]},{"path":[4,74,2,8],"span":[1355,4,55],"trailingComments":"\tWindows\n"},{"path":[4,74,2,8,4],"span":[1355,4,12]},{"path":[4,74,2,8,6],"span":[1355,13,24]},{"path":[4,74,2,8,1],"span":[1355,32,51]},{"path":[4,74,2,8,3],"span":[1355,53,54]},{"path":[4,74,2,9],"span":[1356,4,40],"trailingComments":"\tWindows, Linux\n"},{"path":[4,74,2,9,4],"span":[1356,4,12]},{"path":[4,74,2,9,5],"span":[1356,13,19]},{"path":[4,74,2,9,1],"span":[1356,24,36]},{"path":[4,74,2,9,3],"span":[1356,38,39]},{"path":[4,74,2,10],"span":[1357,4,33],"trailingComments":"\tMac\n"},{"path":[4,74,2,10,4],"span":[1357,4,12]},{"path":[4,74,2,10,5],"span":[1357,13,19]},{"path":[4,74,2,10,1],"span":[1357,24,28]},{"path":[4,74,2,10,3],"span":[1357,30,32]},{"path":[4,74,2,11],"span":[1358,4,40],"trailingComments":"\tWindows\n"},{"path":[4,74,2,11,4],"span":[1358,4,12]},{"path":[4,74,2,11,5],"span":[1358,13,19]},{"path":[4,74,2,11,1],"span":[1358,24,35]},{"path":[4,74,2,11,3],"span":[1358,37,39]},{"path":[4,74,2,12],"span":[1359,4,44],"trailingComments":"\tWindows\n"},{"path":[4,74,2,12,4],"span":[1359,4,12]},{"path":[4,74,2,12,5],"span":[1359,13,18]},{"path":[4,74,2,12,1],"span":[1359,24,39]},{"path":[4,74,2,12,3],"span":[1359,41,43]},{"path":[4,74,2,13],"span":[1360,4,42],"trailingComments":"\tWindows, Linux\n"},{"path":[4,74,2,13,4],"span":[1360,4,12]},{"path":[4,74,2,13,5],"span":[1360,13,19]},{"path":[4,74,2,13,1],"span":[1360,24,37]},{"path":[4,74,2,13,3],"span":[1360,39,41]},{"path":[4,74,2,14],"span":[1361,4,32],"trailingComments":"\tLinux\n"},{"path":[4,74,2,14,4],"span":[1361,4,12]},{"path":[4,74,2,14,5],"span":[1361,13,19]},{"path":[4,74,2,14,1],"span":[1361,24,27]},{"path":[4,74,2,14,3],"span":[1361,29,31]},{"path":[4,74,2,15],"span":[1362,4,32],"trailingComments":"\tWindows\n"},{"path":[4,74,2,15,4],"span":[1362,4,12]},{"path":[4,74,2,15,5],"span":[1362,13,19]},{"path":[4,74,2,15,1],"span":[1362,24,27]},{"path":[4,74,2,15,3],"span":[1362,29,31]},{"path":[4,74,2,16],"span":[1363,4,34],"trailingComments":"\tWindows, Linux, Mac\n"},{"path":[4,74,2,16,4],"span":[1363,4,12]},{"path":[4,74,2,16,5],"span":[1363,13,18]},{"path":[4,74,2,16,1],"span":[1363,24,29]},{"path":[4,74,2,16,3],"span":[1363,31,33]},{"path":[4,74,2,17],"span":[1364,4,34],"trailingComments":"\tMac\n"},{"path":[4,74,2,17,4],"span":[1364,4,12]},{"path":[4,74,2,17,5],"span":[1364,13,19]},{"path":[4,74,2,17,1],"span":[1364,24,29]},{"path":[4,74,2,17,3],"span":[1364,31,33]},{"path":[4,74,2,18],"span":[1365,4,40],"trailingComments":"\tWindows, Linux\n"},{"path":[4,74,2,18,4],"span":[1365,4,12]},{"path":[4,74,2,18,5],"span":[1365,13,18]},{"path":[4,74,2,18,1],"span":[1365,24,35]},{"path":[4,74,2,18,3],"span":[1365,37,39]},{"path":[4,74,2,19],"span":[1366,4,41],"trailingComments":"\tWindows, Linux, Mac\n"},{"path":[4,74,2,19,4],"span":[1366,4,12]},{"path":[4,74,2,19,6],"span":[1366,13,24]},{"path":[4,74,2,19,1],"span":[1366,32,36]},{"path":[4,74,2,19,3],"span":[1366,38,40]},{"path":[4,74,2,20],"span":[1367,4,48],"trailingComments":"\tWindows, Linux\n"},{"path":[4,74,2,20,4],"span":[1367,4,12]},{"path":[4,74,2,20,6],"span":[1367,13,24]},{"path":[4,74,2,20,1],"span":[1367,32,43]},{"path":[4,74,2,20,3],"span":[1367,45,47]},{"path":[4,75],"span":[1372,0,1379,1],"leadingComments":" MemoryArray, only Windows *"},{"path":[4,75,1],"span":[1372,8,19]},{"path":[4,75,2,0],"span":[1373,2,40],"trailingComments":"\tWindows\n"},{"path":[4,75,2,0,4],"span":[1373,2,10]},{"path":[4,75,2,0,5],"span":[1373,11,16]},{"path":[4,75,2,0,1],"span":[1373,24,36]},{"path":[4,75,2,0,3],"span":[1373,38,39]},{"path":[4,75,2,1],"span":[1374,2,36],"trailingComments":"\tWindows\n"},{"path":[4,75,2,1,4],"span":[1374,2,10]},{"path":[4,75,2,1,6],"span":[1374,11,22]},{"path":[4,75,2,1,1],"span":[1374,24,32]},{"path":[4,75,2,1,3],"span":[1374,34,35]},{"path":[4,75,2,2],"span":[1375,2,42],"trailingComments":"\tWindows\n"},{"path":[4,75,2,2,4],"span":[1375,2,10]},{"path":[4,75,2,2,5],"span":[1375,11,16]},{"path":[4,75,2,2,1],"span":[1375,24,38]},{"path":[4,75,2,2,3],"span":[1375,40,41]},{"path":[4,75,2,3],"span":[1376,2,51],"trailingComments":"\tWindows\n"},{"path":[4,75,2,3,4],"span":[1376,2,10]},{"path":[4,75,2,3,6],"span":[1376,11,22]},{"path":[4,75,2,3,1],"span":[1376,24,47]},{"path":[4,75,2,3,3],"span":[1376,49,50]},{"path":[4,75,2,4],"span":[1377,2,31],"trailingComments":"\tWindows\n"},{"path":[4,75,2,4,4],"span":[1377,2,10]},{"path":[4,75,2,4,5],"span":[1377,11,17]},{"path":[4,75,2,4,1],"span":[1377,24,27]},{"path":[4,75,2,4,3],"span":[1377,29,30]},{"path":[4,75,2,5],"span":[1378,2,31],"trailingComments":"\tWindows\n"},{"path":[4,75,2,5,4],"span":[1378,2,10]},{"path":[4,75,2,5,6],"span":[1378,11,22]},{"path":[4,75,2,5,1],"span":[1378,24,27]},{"path":[4,75,2,5,3],"span":[1378,29,30]},{"path":[4,76],"span":[1385,0,1394,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,76,1],"span":[1385,8,20]},{"path":[4,76,2,0],"span":[1386,2,30]},{"path":[4,76,2,0,4],"span":[1386,2,10]},{"path":[4,76,2,0,5],"span":[1386,11,17]},{"path":[4,76,2,0,1],"span":[1386,18,25]},{"path":[4,76,2,0,3],"span":[1386,28,29]},{"path":[4,76,2,1],"span":[1387,2,40]},{"path":[4,76,2,1,4],"span":[1387,2,10]},{"path":[4,76,2,1,6],"span":[1387,11,22]},{"path":[4,76,2,1,1],"span":[1387,23,35]},{"path":[4,76,2,1,3],"span":[1387,38,39]},{"path":[4,76,2,2],"span":[1388,2,46]},{"path":[4,76,2,2,4],"span":[1388,2,10]},{"path":[4,76,2,2,6],"span":[1388,11,22]},{"path":[4,76,2,2,1],"span":[1388,23,41]},{"path":[4,76,2,2,3],"span":[1388,44,45]},{"path":[4,76,2,3],"span":[1389,2,53]},{"path":[4,76,2,3,4],"span":[1389,2,10]},{"path":[4,76,2,3,6],"span":[1389,11,22]},{"path":[4,76,2,3,1],"span":[1389,23,48]},{"path":[4,76,2,3,3],"span":[1389,51,52]},{"path":[4,76,2,4],"span":[1390,2,36]},{"path":[4,76,2,4,4],"span":[1390,2,10]},{"path":[4,76,2,4,5],"span":[1390,11,17]},{"path":[4,76,2,4,1],"span":[1390,18,31]},{"path":[4,76,2,4,3],"span":[1390,34,35]},{"path":[4,76,2,5],"span":[1391,2,47]},{"path":[4,76,2,5,4],"span":[1391,2,10]},{"path":[4,76,2,5,5],"span":[1391,11,15]},{"path":[4,76,2,5,1],"span":[1391,16,42]},{"path":[4,76,2,5,3],"span":[1391,45,46]},{"path":[4,76,2,6],"span":[1392,2,39]},{"path":[4,76,2,6,4],"span":[1392,2,10]},{"path":[4,76,2,6,5],"span":[1392,11,15]},{"path":[4,76,2,6,1],"span":[1392,16,34]},{"path":[4,76,2,6,3],"span":[1392,37,38]},{"path":[4,76,2,7],"span":[1393,2,47]},{"path":[4,76,2,7,4],"span":[1393,2,10]},{"path":[4,76,2,7,5],"span":[1393,11,15]},{"path":[4,76,2,7,1],"span":[1393,16,42]},{"path":[4,76,2,7,3],"span":[1393,45,46]},{"path":[4,77],"span":[1400,0,1411,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,77,1],"span":[1400,8,18]},{"path":[4,77,2,0],"span":[1401,2,40]},{"path":[4,77,2,0,4],"span":[1401,2,10]},{"path":[4,77,2,0,6],"span":[1401,11,22]},{"path":[4,77,2,0,1],"span":[1401,23,35]},{"path":[4,77,2,0,3],"span":[1401,38,39]},{"path":[4,77,2,1],"span":[1402,2,27]},{"path":[4,77,2,1,4],"span":[1402,2,10]},{"path":[4,77,2,1,5],"span":[1402,11,15]},{"path":[4,77,2,1,1],"span":[1402,16,22]},{"path":[4,77,2,1,3],"span":[1402,25,26]},{"path":[4,77,2,2],"span":[1403,2,30]},{"path":[4,77,2,2,4],"span":[1403,2,10]},{"path":[4,77,2,2,5],"span":[1403,11,17]},{"path":[4,77,2,2,1],"span":[1403,18,25]},{"path":[4,77,2,2,3],"span":[1403,28,29]},{"path":[4,77,2,3],"span":[1404,2,32]},{"path":[4,77,2,3,4],"span":[1404,2,10]},{"path":[4,77,2,3,5],"span":[1404,11,17]},{"path":[4,77,2,3,1],"span":[1404,18,27]},{"path":[4,77,2,3,3],"span":[1404,30,31]},{"path":[4,77,2,4],"span":[1405,2,35]},{"path":[4,77,2,4,4],"span":[1405,2,10]},{"path":[4,77,2,4,5],"span":[1405,11,16]},{"path":[4,77,2,4,1],"span":[1405,17,30]},{"path":[4,77,2,4,3],"span":[1405,33,34]},{"path":[4,77,2,5],"span":[1406,2,47]},{"path":[4,77,2,5,4],"span":[1406,2,10]},{"path":[4,77,2,5,5],"span":[1406,11,16]},{"path":[4,77,2,5,1],"span":[1406,17,42]},{"path":[4,77,2,5,3],"span":[1406,45,46]},{"path":[4,77,2,6],"span":[1407,2,48]},{"path":[4,77,2,6,4],"span":[1407,2,10]},{"path":[4,77,2,6,5],"span":[1407,11,16]},{"path":[4,77,2,6,1],"span":[1407,17,43]},{"path":[4,77,2,6,3],"span":[1407,46,47]},{"path":[4,77,2,7],"span":[1408,2,39]},{"path":[4,77,2,7,4],"span":[1408,2,10]},{"path":[4,77,2,7,5],"span":[1408,11,15]},{"path":[4,77,2,7,1],"span":[1408,16,34]},{"path":[4,77,2,7,3],"span":[1408,37,38]},{"path":[4,77,2,8],"span":[1409,2,36]},{"path":[4,77,2,8,4],"span":[1409,2,10]},{"path":[4,77,2,8,5],"span":[1409,11,17]},{"path":[4,77,2,8,1],"span":[1409,18,31]},{"path":[4,77,2,8,3],"span":[1409,34,35]},{"path":[4,77,2,9],"span":[1410,2,37]},{"path":[4,77,2,9,4],"span":[1410,2,10]},{"path":[4,77,2,9,5],"span":[1410,11,17]},{"path":[4,77,2,9,1],"span":[1410,18,31]},{"path":[4,77,2,9,3],"span":[1410,34,36]},{"path":[4,78],"span":[1417,0,1424,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,78,1],"span":[1417,8,24]},{"path":[4,78,2,0],"span":[1418,2,30]},{"path":[4,78,2,0,4],"span":[1418,2,10]},{"path":[4,78,2,0,5],"span":[1418,11,17]},{"path":[4,78,2,0,1],"span":[1418,18,25]},{"path":[4,78,2,0,3],"span":[1418,28,29]},{"path":[4,78,2,1],"span":[1419,2,46]},{"path":[4,78,2,1,4],"span":[1419,2,10]},{"path":[4,78,2,1,6],"span":[1419,11,22]},{"path":[4,78,2,1,1],"span":[1419,23,41]},{"path":[4,78,2,1,3],"span":[1419,44,45]},{"path":[4,78,2,2],"span":[1420,2,53]},{"path":[4,78,2,2,4],"span":[1420,2,10]},{"path":[4,78,2,2,6],"span":[1420,11,22]},{"path":[4,78,2,2,1],"span":[1420,23,48]},{"path":[4,78,2,2,3],"span":[1420,51,52]},{"path":[4,78,2,3],"span":[1421,2,47]},{"path":[4,78,2,3,4],"span":[1421,2,10]},{"path":[4,78,2,3,5],"span":[1421,11,15]},{"path":[4,78,2,3,1],"span":[1421,16,42]},{"path":[4,78,2,3,3],"span":[1421,45,46]},{"path":[4,78,2,4],"span":[1422,2,32]},{"path":[4,78,2,4,4],"span":[1422,2,10]},{"path":[4,78,2,4,5],"span":[1422,11,17]},{"path":[4,78,2,4,1],"span":[1422,18,27]},{"path":[4,78,2,4,3],"span":[1422,30,31]},{"path":[4,78,2,5],"span":[1423,2,35]},{"path":[4,78,2,5,4],"span":[1423,2,10]},{"path":[4,78,2,5,5],"span":[1423,11,17]},{"path":[4,78,2,5,1],"span":[1423,18,30]},{"path":[4,78,2,5,3],"span":[1423,33,34]},{"path":[4,79],"span":[1430,0,1436,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,79,1],"span":[1430,8,21]},{"path":[4,79,2,0],"span":[1431,2,42]},{"path":[4,79,2,0,4],"span":[1431,2,10]},{"path":[4,79,2,0,6],"span":[1431,11,22]},{"path":[4,79,2,0,1],"span":[1431,23,37]},{"path":[4,79,2,0,3],"span":[1431,40,41]},{"path":[4,79,2,1],"span":[1432,2,52]},{"path":[4,79,2,1,4],"span":[1432,2,10]},{"path":[4,79,2,1,5],"span":[1432,11,17]},{"path":[4,79,2,1,1],"span":[1432,18,47]},{"path":[4,79,2,1,3],"span":[1432,50,51]},{"path":[4,79,2,2],"span":[1433,2,52]},{"path":[4,79,2,2,4],"span":[1433,2,10]},{"path":[4,79,2,2,5],"span":[1433,11,17]},{"path":[4,79,2,2,1],"span":[1433,18,47]},{"path":[4,79,2,2,3],"span":[1433,50,51]},{"path":[4,79,2,3],"span":[1434,2,37]},{"path":[4,79,2,3,4],"span":[1434,2,10]},{"path":[4,79,2,3,6],"span":[1434,11,22]},{"path":[4,79,2,3,1],"span":[1434,23,32]},{"path":[4,79,2,3,3],"span":[1434,35,36]},{"path":[4,79,2,4],"span":[1435,2,26]},{"path":[4,79,2,4,4],"span":[1435,2,10]},{"path":[4,79,2,4,5],"span":[1435,11,17]},{"path":[4,79,2,4,1],"span":[1435,18,21]},{"path":[4,79,2,4,3],"span":[1435,24,25]},{"path":[4,80],"span":[1442,0,1449,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,80,1],"span":[1442,8,22]},{"path":[4,80,2,0],"span":[1443,2,40]},{"path":[4,80,2,0,4],"span":[1443,2,10]},{"path":[4,80,2,0,6],"span":[1443,11,22]},{"path":[4,80,2,0,1],"span":[1443,23,35]},{"path":[4,80,2,0,3],"span":[1443,38,39]},{"path":[4,80,2,1],"span":[1444,2,30]},{"path":[4,80,2,1,4],"span":[1444,2,10]},{"path":[4,80,2,1,5],"span":[1444,11,17]},{"path":[4,80,2,1,1],"span":[1444,18,25]},{"path":[4,80,2,1,3],"span":[1444,28,29]},{"path":[4,80,2,2],"span":[1445,2,32]},{"path":[4,80,2,2,4],"span":[1445,2,10]},{"path":[4,80,2,2,5],"span":[1445,11,17]},{"path":[4,80,2,2,1],"span":[1445,18,27]},{"path":[4,80,2,2,3],"span":[1445,30,31]},{"path":[4,80,2,3],"span":[1446,2,34]},{"path":[4,80,2,3,4],"span":[1446,2,10]},{"path":[4,80,2,3,5],"span":[1446,11,17]},{"path":[4,80,2,3,1],"span":[1446,18,29]},{"path":[4,80,2,3,3],"span":[1446,32,33]},{"path":[4,80,2,4],"span":[1447,2,35]},{"path":[4,80,2,4,4],"span":[1447,2,10]},{"path":[4,80,2,4,5],"span":[1447,11,17]},{"path":[4,80,2,4,1],"span":[1447,18,30]},{"path":[4,80,2,4,3],"span":[1447,33,34]},{"path":[4,80,2,5],"span":[1448,2,46]},{"path":[4,80,2,5,4],"span":[1448,2,10]},{"path":[4,80,2,5,6],"span":[1448,11,22]},{"path":[4,80,2,5,1],"span":[1448,23,41]},{"path":[4,80,2,5,3],"span":[1448,44,45]},{"path":[4,81],"span":[1455,0,1461,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,81,1],"span":[1455,8,29]},{"path":[4,81,2,0],"span":[1456,2,41]},{"path":[4,81,2,0,4],"span":[1456,2,10]},{"path":[4,81,2,0,5],"span":[1456,11,17]},{"path":[4,81,2,0,1],"span":[1456,18,36]},{"path":[4,81,2,0,3],"span":[1456,39,40]},{"path":[4,81,2,1],"span":[1457,2,27]},{"path":[4,81,2,1,4],"span":[1457,2,10]},{"path":[4,81,2,1,5],"span":[1457,11,17]},{"path":[4,81,2,1,1],"span":[1457,18,22]},{"path":[4,81,2,1,3],"span":[1457,25,26]},{"path":[4,81,2,2],"span":[1458,2,27]},{"path":[4,81,2,2,4],"span":[1458,2,10]},{"path":[4,81,2,2,5],"span":[1458,11,17]},{"path":[4,81,2,2,1],"span":[1458,18,22]},{"path":[4,81,2,2,3],"span":[1458,25,26]},{"path":[4,81,2,3],"span":[1459,2,29]},{"path":[4,81,2,3,4],"span":[1459,2,10]},{"path":[4,81,2,3,5],"span":[1459,11,17]},{"path":[4,81,2,3,1],"span":[1459,18,24]},{"path":[4,81,2,3,3],"span":[1459,27,28]},{"path":[4,81,2,4],"span":[1460,2,30]},{"path":[4,81,2,4,4],"span":[1460,2,10]},{"path":[4,81,2,4,5],"span":[1460,11,17]},{"path":[4,81,2,4,1],"span":[1460,18,25]},{"path":[4,81,2,4,3],"span":[1460,28,29]},{"path":[4,82],"span":[1467,0,1485,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,82,1],"span":[1467,8,29]},{"path":[4,82,2,0],"span":[1468,2,47]},{"path":[4,82,2,0,4],"span":[1468,2,10]},{"path":[4,82,2,0,5],"span":[1468,11,15]},{"path":[4,82,2,0,1],"span":[1468,16,42]},{"path":[4,82,2,0,3],"span":[1468,45,46]},{"path":[4,82,2,1],"span":[1469,2,45]},{"path":[4,82,2,1,4],"span":[1469,2,10]},{"path":[4,82,2,1,5],"span":[1469,11,15]},{"path":[4,82,2,1,1],"span":[1469,16,40]},{"path":[4,82,2,1,3],"span":[1469,43,44]},{"path":[4,82,2,2],"span":[1470,2,43]},{"path":[4,82,2,2,4],"span":[1470,2,10]},{"path":[4,82,2,2,5],"span":[1470,11,15]},{"path":[4,82,2,2,1],"span":[1470,16,38]},{"path":[4,82,2,2,3],"span":[1470,41,42]},{"path":[4,82,2,3],"span":[1471,2,35]},{"path":[4,82,2,3,4],"span":[1471,2,10]},{"path":[4,82,2,3,5],"span":[1471,11,17]},{"path":[4,82,2,3,1],"span":[1471,18,30]},{"path":[4,82,2,3,3],"span":[1471,33,34]},{"path":[4,82,2,4],"span":[1472,2,43]},{"path":[4,82,2,4,4],"span":[1472,2,10]},{"path":[4,82,2,4,5],"span":[1472,11,17]},{"path":[4,82,2,4,1],"span":[1472,18,38]},{"path":[4,82,2,4,3],"span":[1472,41,42]},{"path":[4,82,2,5],"span":[1473,2,48]},{"path":[4,82,2,5,4],"span":[1473,2,10]},{"path":[4,82,2,5,5],"span":[1473,11,17]},{"path":[4,82,2,5,1],"span":[1473,18,43]},{"path":[4,82,2,5,3],"span":[1473,46,47]},{"path":[4,82,2,6],"span":[1480,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,82,2,6,4],"span":[1480,2,10]},{"path":[4,82,2,6,5],"span":[1480,11,17]},{"path":[4,82,2,6,1],"span":[1480,18,33]},{"path":[4,82,2,6,3],"span":[1480,36,37]},{"path":[4,82,2,7],"span":[1482,2,50]},{"path":[4,82,2,7,4],"span":[1482,2,10]},{"path":[4,82,2,7,5],"span":[1482,11,17]},{"path":[4,82,2,7,1],"span":[1482,18,45]},{"path":[4,82,2,7,3],"span":[1482,48,49]},{"path":[4,82,2,8],"span":[1483,2,42]},{"path":[4,82,2,8,4],"span":[1483,2,10]},{"path":[4,82,2,8,5],"span":[1483,11,17]},{"path":[4,82,2,8,1],"span":[1483,18,37]},{"path":[4,82,2,8,3],"span":[1483,40,41]},{"path":[4,82,2,9],"span":[1484,2,54]},{"path":[4,82,2,9,4],"span":[1484,2,10]},{"path":[4,82,2,9,5],"span":[1484,11,17]},{"path":[4,82,2,9,1],"span":[1484,18,48]},{"path":[4,82,2,9,3],"span":[1484,51,53]},{"path":[4,83],"span":[1491,0,1496,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,83,1],"span":[1491,8,38]},{"path":[4,83,2,0],"span":[1492,2,30]},{"path":[4,83,2,0,4],"span":[1492,2,10]},{"path":[4,83,2,0,5],"span":[1492,11,17]},{"path":[4,83,2,0,1],"span":[1492,18,25]},{"path":[4,83,2,0,3],"span":[1492,28,29]},{"path":[4,83,2,1],"span":[1493,2,32]},{"path":[4,83,2,1,4],"span":[1493,2,10]},{"path":[4,83,2,1,5],"span":[1493,11,17]},{"path":[4,83,2,1,1],"span":[1493,18,27]},{"path":[4,83,2,1,3],"span":[1493,30,31]},{"path":[4,83,2,2],"span":[1494,2,35]},{"path":[4,83,2,2,4],"span":[1494,2,10]},{"path":[4,83,2,2,5],"span":[1494,11,17]},{"path":[4,83,2,2,1],"span":[1494,18,30]},{"path":[4,83,2,2,3],"span":[1494,33,34]},{"path":[4,83,2,3],"span":[1495,2,46]},{"path":[4,83,2,3,4],"span":[1495,2,10]},{"path":[4,83,2,3,6],"span":[1495,11,22]},{"path":[4,83,2,3,1],"span":[1495,23,41]},{"path":[4,83,2,3,3],"span":[1495,44,45]},{"path":[4,84],"span":[1501,0,1505,1],"leadingComments":"\n Windows only atm.\n"},{"path":[4,84,1],"span":[1501,8,38]},{"path":[4,84,2,0],"span":[1502,2,24]},{"path":[4,84,2,0,5],"span":[1502,2,8]},{"path":[4,84,2,0,1],"span":[1502,9,19]},{"path":[4,84,2,0,3],"span":[1502,22,23]},{"path":[4,84,2,1],"span":[1503,2,26]},{"path":[4,84,2,1,5],"span":[1503,2,8]},{"path":[4,84,2,1,1],"span":[1503,9,21]},{"path":[4,84,2,1,3],"span":[1503,24,25]},{"path":[4,84,2,2],"span":[1504,2,26]},{"path":[4,84,2,2,5],"span":[1504,2,8]},{"path":[4,84,2,2,1],"span":[1504,9,21]},{"path":[4,84,2,2,3],"span":[1504,24,25]},{"path":[4,85],"span":[1510,0,1526,1],"leadingComments":"\n Modem on computers: windows and mac.\n"},{"path":[4,85,1],"span":[1510,8,30]},{"path":[4,85,2,0],"span":[1511,2,34]},{"path":[4,85,2,0,4],"span":[1511,2,10]},{"path":[4,85,2,0,5],"span":[1511,11,17]},{"path":[4,85,2,0,1],"span":[1511,18,29]},{"path":[4,85,2,0,3],"span":[1511,32,33]},{"path":[4,85,2,1],"span":[1512,2,30],"trailingComments":" mac: name\n"},{"path":[4,85,2,1,4],"span":[1512,2,10]},{"path":[4,85,2,1,5],"span":[1512,11,17]},{"path":[4,85,2,1,1],"span":[1512,18,25]},{"path":[4,85,2,1,3],"span":[1512,28,29]},{"path":[4,85,2,2],"span":[1513,2,35],"trailingComments":" windows: country_selected, mac: country_info \n"},{"path":[4,85,2,2,4],"span":[1513,2,10]},{"path":[4,85,2,2,5],"span":[1513,11,17]},{"path":[4,85,2,2,1],"span":[1513,18,30]},{"path":[4,85,2,2,3],"span":[1513,33,34]},{"path":[4,85,2,3],"span":[1514,2,32]},{"path":[4,85,2,3,4],"span":[1514,2,10]},{"path":[4,85,2,3,5],"span":[1514,11,17]},{"path":[4,85,2,3,1],"span":[1514,18,27]},{"path":[4,85,2,3,3],"span":[1514,30,31]},{"path":[4,85,2,4],"span":[1515,2,34],"trailingComments":" mac: interface_type\n"},{"path":[4,85,2,4,4],"span":[1515,2,10]},{"path":[4,85,2,4,5],"span":[1515,11,17]},{"path":[4,85,2,4,1],"span":[1515,18,29]},{"path":[4,85,2,4,3],"span":[1515,32,33]},{"path":[4,85,2,5],"span":[1516,2,44]},{"path":[4,85,2,5,4],"span":[1516,2,10]},{"path":[4,85,2,5,5],"span":[1516,11,16]},{"path":[4,85,2,5,1],"span":[1516,17,39]},{"path":[4,85,2,5,3],"span":[1516,42,43]},{"path":[4,85,2,6],"span":[1517,2,50]},{"path":[4,85,2,6,4],"span":[1517,2,10]},{"path":[4,85,2,6,5],"span":[1517,11,16]},{"path":[4,85,2,6,1],"span":[1517,17,45]},{"path":[4,85,2,6,3],"span":[1517,48,49]},{"path":[4,85,2,7],"span":[1518,2,37]},{"path":[4,85,2,7,4],"span":[1518,2,10]},{"path":[4,85,2,7,5],"span":[1518,11,17]},{"path":[4,85,2,7,1],"span":[1518,18,32]},{"path":[4,85,2,7,3],"span":[1518,35,36]},{"path":[4,85,2,8],"span":[1519,2,40]},{"path":[4,85,2,8,4],"span":[1519,2,10]},{"path":[4,85,2,8,5],"span":[1519,11,17]},{"path":[4,85,2,8,1],"span":[1519,18,35]},{"path":[4,85,2,8,3],"span":[1519,38,39]},{"path":[4,85,2,9],"span":[1520,2,37]},{"path":[4,85,2,9,4],"span":[1520,2,10]},{"path":[4,85,2,9,5],"span":[1520,11,17]},{"path":[4,85,2,9,1],"span":[1520,18,31]},{"path":[4,85,2,9,3],"span":[1520,34,36]},{"path":[4,85,2,10],"span":[1522,2,34],"trailingComments":" mac only\n"},{"path":[4,85,2,10,4],"span":[1522,2,10]},{"path":[4,85,2,10,5],"span":[1522,11,17]},{"path":[4,85,2,10,1],"span":[1522,18,28]},{"path":[4,85,2,10,3],"span":[1522,31,33]},{"path":[4,85,2,11],"span":[1523,2,38],"trailingComments":" mac only\n"},{"path":[4,85,2,11,4],"span":[1523,2,10]},{"path":[4,85,2,11,5],"span":[1523,11,17]},{"path":[4,85,2,11,1],"span":[1523,18,32]},{"path":[4,85,2,11,3],"span":[1523,35,37]},{"path":[4,85,2,12],"span":[1524,2,29],"trailingComments":" mac only\n"},{"path":[4,85,2,12,4],"span":[1524,2,10]},{"path":[4,85,2,12,5],"span":[1524,11,17]},{"path":[4,85,2,12,1],"span":[1524,18,23]},{"path":[4,85,2,12,3],"span":[1524,26,28]},{"path":[4,85,2,13],"span":[1525,2,34],"trailingComments":" mac only\n"},{"path":[4,85,2,13,4],"span":[1525,2,10]},{"path":[4,85,2,13,5],"span":[1525,11,17]},{"path":[4,85,2,13,1],"span":[1525,18,28]},{"path":[4,85,2,13,3],"span":[1525,31,33]},{"path":[4,86],"span":[1531,0,1549,1],"leadingComments":"\n Windows computer: a Printer connected to the computer.\n"},{"path":[4,86,1],"span":[1531,8,32]},{"path":[4,86,2,0],"span":[1532,2,46]},{"path":[4,86,2,0,4],"span":[1532,2,10]},{"path":[4,86,2,0,5],"span":[1532,11,17]},{"path":[4,86,2,0,1],"span":[1532,18,41]},{"path":[4,86,2,0,3],"span":[1532,44,45]},{"path":[4,86,2,1],"span":[1533,2,30]},{"path":[4,86,2,1,4],"span":[1533,2,10]},{"path":[4,86,2,1,5],"span":[1533,11,17]},{"path":[4,86,2,1,1],"span":[1533,18,25]},{"path":[4,86,2,1,3],"span":[1533,28,29]},{"path":[4,86,2,2],"span":[1534,2,32]},{"path":[4,86,2,2,4],"span":[1534,2,10]},{"path":[4,86,2,2,5],"span":[1534,11,17]},{"path":[4,86,2,2,1],"span":[1534,18,27]},{"path":[4,86,2,2,3],"span":[1534,30,31]},{"path":[4,86,2,3],"span":[1535,2,31]},{"path":[4,86,2,3,4],"span":[1535,2,10]},{"path":[4,86,2,3,5],"span":[1535,11,17]},{"path":[4,86,2,3,1],"span":[1535,18,26]},{"path":[4,86,2,3,3],"span":[1535,29,30]},{"path":[4,86,2,4],"span":[1536,2,32]},{"path":[4,86,2,4,4],"span":[1536,2,10]},{"path":[4,86,2,4,5],"span":[1536,11,17]},{"path":[4,86,2,4,1],"span":[1536,18,27]},{"path":[4,86,2,4,3],"span":[1536,30,31]},{"path":[4,86,2,5],"span":[1537,2,42]},{"path":[4,86,2,5,4],"span":[1537,2,10]},{"path":[4,86,2,5,5],"span":[1537,11,17]},{"path":[4,86,2,5,1],"span":[1537,18,37]},{"path":[4,86,2,5,3],"span":[1537,40,41]},{"path":[4,86,2,6],"span":[1538,2,38]},{"path":[4,86,2,6,4],"span":[1538,2,10]},{"path":[4,86,2,6,5],"span":[1538,11,17]},{"path":[4,86,2,6,1],"span":[1538,18,33]},{"path":[4,86,2,6,3],"span":[1538,36,37]},{"path":[4,86,2,7],"span":[1539,2,34]},{"path":[4,86,2,7,4],"span":[1539,2,10]},{"path":[4,86,2,7,5],"span":[1539,11,17]},{"path":[4,86,2,7,1],"span":[1539,18,28]},{"path":[4,86,2,7,3],"span":[1539,31,33]},{"path":[4,86,2,8],"span":[1540,2,30]},{"path":[4,86,2,8,4],"span":[1540,2,10]},{"path":[4,86,2,8,5],"span":[1540,11,17]},{"path":[4,86,2,8,1],"span":[1540,18,24]},{"path":[4,86,2,8,3],"span":[1540,27,29]},{"path":[4,86,2,9],"span":[1541,2,31]},{"path":[4,86,2,9,4],"span":[1541,2,10]},{"path":[4,86,2,9,5],"span":[1541,11,17]},{"path":[4,86,2,9,1],"span":[1541,18,25]},{"path":[4,86,2,9,3],"span":[1541,28,30]},{"path":[4,86,2,10],"span":[1543,2,43]},{"path":[4,86,2,10,4],"span":[1543,2,10]},{"path":[4,86,2,10,5],"span":[1543,11,16]},{"path":[4,86,2,10,1],"span":[1543,17,38]},{"path":[4,86,2,10,3],"span":[1543,41,42]},{"path":[4,86,2,11],"span":[1544,2,42]},{"path":[4,86,2,11,4],"span":[1544,2,10]},{"path":[4,86,2,11,5],"span":[1544,11,16]},{"path":[4,86,2,11,1],"span":[1544,17,36]},{"path":[4,86,2,11,3],"span":[1544,39,41]},{"path":[4,86,2,12],"span":[1546,2,33]},{"path":[4,86,2,12,4],"span":[1546,2,10]},{"path":[4,86,2,12,5],"span":[1546,11,15]},{"path":[4,86,2,12,1],"span":[1546,16,27]},{"path":[4,86,2,12,3],"span":[1546,30,32]},{"path":[4,86,2,13],"span":[1547,2,27]},{"path":[4,86,2,13,4],"span":[1547,2,10]},{"path":[4,86,2,13,5],"span":[1547,11,15]},{"path":[4,86,2,13,1],"span":[1547,16,21]},{"path":[4,86,2,13,3],"span":[1547,24,26]},{"path":[4,86,2,14],"span":[1548,2,29]},{"path":[4,86,2,14,4],"span":[1548,2,10]},{"path":[4,86,2,14,5],"span":[1548,11,15]},{"path":[4,86,2,14,1],"span":[1548,16,23]},{"path":[4,86,2,14,3],"span":[1548,26,28]},{"path":[4,87],"span":[1554,0,1570,1],"leadingComments":"\n Windows computer: a Tape connected to the computer.\n"},{"path":[4,87,1],"span":[1554,8,34]},{"path":[4,87,2,0],"span":[1555,2,40]},{"path":[4,87,2,0,4],"span":[1555,2,10]},{"path":[4,87,2,0,6],"span":[1555,11,22]},{"path":[4,87,2,0,1],"span":[1555,23,35]},{"path":[4,87,2,0,3],"span":[1555,38,39]},{"path":[4,87,2,1],"span":[1556,2,40]},{"path":[4,87,2,1,4],"span":[1556,2,10]},{"path":[4,87,2,1,6],"span":[1556,11,22]},{"path":[4,87,2,1,1],"span":[1556,23,35]},{"path":[4,87,2,1,3],"span":[1556,38,39]},{"path":[4,87,2,2],"span":[1557,2,30]},{"path":[4,87,2,2,4],"span":[1557,2,10]},{"path":[4,87,2,2,5],"span":[1557,11,17]},{"path":[4,87,2,2,1],"span":[1557,18,25]},{"path":[4,87,2,2,3],"span":[1557,28,29]},{"path":[4,87,2,3],"span":[1558,2,32]},{"path":[4,87,2,3,4],"span":[1558,2,10]},{"path":[4,87,2,3,5],"span":[1558,11,15]},{"path":[4,87,2,3,1],"span":[1558,16,27]},{"path":[4,87,2,3,3],"span":[1558,30,31]},{"path":[4,87,2,4],"span":[1559,2,40]},{"path":[4,87,2,4,4],"span":[1559,2,10]},{"path":[4,87,2,4,5],"span":[1559,11,16]},{"path":[4,87,2,4,1],"span":[1559,17,35]},{"path":[4,87,2,4,3],"span":[1559,38,39]},{"path":[4,87,2,5],"span":[1560,2,32]},{"path":[4,87,2,5,4],"span":[1560,2,10]},{"path":[4,87,2,5,5],"span":[1560,11,17]},{"path":[4,87,2,5,1],"span":[1560,18,27]},{"path":[4,87,2,5,3],"span":[1560,30,31]},{"path":[4,87,2,6],"span":[1561,2,35]},{"path":[4,87,2,6,4],"span":[1561,2,10]},{"path":[4,87,2,6,5],"span":[1561,11,17]},{"path":[4,87,2,6,1],"span":[1561,18,30]},{"path":[4,87,2,6,3],"span":[1561,33,34]},{"path":[4,87,2,7],"span":[1562,2,36]},{"path":[4,87,2,7,4],"span":[1562,2,10]},{"path":[4,87,2,7,5],"span":[1562,11,16]},{"path":[4,87,2,7,1],"span":[1562,17,31]},{"path":[4,87,2,7,3],"span":[1562,34,35]},{"path":[4,87,2,8],"span":[1563,2,36]},{"path":[4,87,2,8,4],"span":[1563,2,10]},{"path":[4,87,2,8,5],"span":[1563,11,16]},{"path":[4,87,2,8,1],"span":[1563,17,31]},{"path":[4,87,2,8,3],"span":[1563,34,35]},{"path":[4,87,2,9],"span":[1564,2,42]},{"path":[4,87,2,9,4],"span":[1564,2,10]},{"path":[4,87,2,9,5],"span":[1564,11,16]},{"path":[4,87,2,9,1],"span":[1564,17,36]},{"path":[4,87,2,9,3],"span":[1564,39,41]},{"path":[4,87,2,10],"span":[1565,2,34]},{"path":[4,87,2,10,4],"span":[1565,2,10]},{"path":[4,87,2,10,5],"span":[1565,11,17]},{"path":[4,87,2,10,1],"span":[1565,18,28]},{"path":[4,87,2,10,3],"span":[1565,31,33]},{"path":[4,87,2,11],"span":[1566,2,37]},{"path":[4,87,2,11,4],"span":[1566,2,10]},{"path":[4,87,2,11,5],"span":[1566,11,16]},{"path":[4,87,2,11,1],"span":[1566,17,31]},{"path":[4,87,2,11,3],"span":[1566,34,36]},{"path":[4,87,2,12],"span":[1567,2,36]},{"path":[4,87,2,12,4],"span":[1567,2,10]},{"path":[4,87,2,12,5],"span":[1567,11,15]},{"path":[4,87,2,12,1],"span":[1567,16,30]},{"path":[4,87,2,12,3],"span":[1567,33,35]},{"path":[4,87,2,13],"span":[1568,2,48]},{"path":[4,87,2,13,4],"span":[1568,2,10]},{"path":[4,87,2,13,5],"span":[1568,11,16]},{"path":[4,87,2,13,1],"span":[1568,17,42]},{"path":[4,87,2,13,3],"span":[1568,45,47]},{"path":[4,87,2,14],"span":[1569,2,30]},{"path":[4,87,2,14,4],"span":[1569,2,10]},{"path":[4,87,2,14,5],"span":[1569,11,16]},{"path":[4,87,2,14,1],"span":[1569,17,24]},{"path":[4,87,2,14,3],"span":[1569,27,29]},{"path":[4,88],"span":[1575,0,1594,1],"leadingComments":"\n Computer, Windows only.\n"},{"path":[4,88,1],"span":[1575,8,30]},{"path":[4,88,2,0],"span":[1576,2,34]},{"path":[4,88,2,0,4],"span":[1576,2,10]},{"path":[4,88,2,0,5],"span":[1576,11,16]},{"path":[4,88,2,0,1],"span":[1576,17,29]},{"path":[4,88,2,0,3],"span":[1576,32,33]},{"path":[4,88,2,1],"span":[1577,2,32]},{"path":[4,88,2,1,4],"span":[1577,2,10]},{"path":[4,88,2,1,5],"span":[1577,11,15]},{"path":[4,88,2,1,1],"span":[1577,16,27]},{"path":[4,88,2,1,3],"span":[1577,30,31]},{"path":[4,88,2,2],"span":[1578,2,39]},{"path":[4,88,2,2,4],"span":[1578,2,10]},{"path":[4,88,2,2,5],"span":[1578,11,16]},{"path":[4,88,2,2,1],"span":[1578,17,34]},{"path":[4,88,2,2,3],"span":[1578,37,38]},{"path":[4,88,2,3],"span":[1579,2,38]},{"path":[4,88,2,3,4],"span":[1579,2,10]},{"path":[4,88,2,3,5],"span":[1579,11,15]},{"path":[4,88,2,3,1],"span":[1579,16,33]},{"path":[4,88,2,3,3],"span":[1579,36,37]},{"path":[4,88,2,4],"span":[1580,2,38]},{"path":[4,88,2,4,4],"span":[1580,2,10]},{"path":[4,88,2,4,5],"span":[1580,11,16]},{"path":[4,88,2,4,1],"span":[1580,17,33]},{"path":[4,88,2,4,3],"span":[1580,36,37]},{"path":[4,88,2,5],"span":[1581,2,34]},{"path":[4,88,2,5,4],"span":[1581,2,10]},{"path":[4,88,2,5,5],"span":[1581,11,16]},{"path":[4,88,2,5,1],"span":[1581,17,29]},{"path":[4,88,2,5,3],"span":[1581,32,33]},{"path":[4,88,2,6],"span":[1582,2,42]},{"path":[4,88,2,6,4],"span":[1582,2,10]},{"path":[4,88,2,6,5],"span":[1582,11,17]},{"path":[4,88,2,6,1],"span":[1582,18,37]},{"path":[4,88,2,6,3],"span":[1582,40,41]},{"path":[4,88,2,7],"span":[1583,2,37]},{"path":[4,88,2,7,4],"span":[1583,2,10]},{"path":[4,88,2,7,5],"span":[1583,11,16]},{"path":[4,88,2,7,1],"span":[1583,17,32]},{"path":[4,88,2,7,3],"span":[1583,35,36]},{"path":[4,88,2,8],"span":[1584,2,36]},{"path":[4,88,2,8,4],"span":[1584,2,10]},{"path":[4,88,2,8,5],"span":[1584,11,15]},{"path":[4,88,2,8,1],"span":[1584,16,31]},{"path":[4,88,2,8,3],"span":[1584,34,35]},{"path":[4,88,2,9],"span":[1585,2,28]},{"path":[4,88,2,9,4],"span":[1585,2,10]},{"path":[4,88,2,9,5],"span":[1585,11,17]},{"path":[4,88,2,9,1],"span":[1585,18,22]},{"path":[4,88,2,9,3],"span":[1585,25,27]},{"path":[4,88,2,10],"span":[1586,2,31]},{"path":[4,88,2,10,4],"span":[1586,2,10]},{"path":[4,88,2,10,5],"span":[1586,11,17]},{"path":[4,88,2,10,1],"span":[1586,18,25]},{"path":[4,88,2,10,3],"span":[1586,28,30]},{"path":[4,88,2,11],"span":[1587,2,40]},{"path":[4,88,2,11,4],"span":[1587,2,10]},{"path":[4,88,2,11,5],"span":[1587,11,15]},{"path":[4,88,2,11,1],"span":[1587,16,34]},{"path":[4,88,2,11,3],"span":[1587,37,39]},{"path":[4,88,2,12],"span":[1588,2,46]},{"path":[4,88,2,12,4],"span":[1588,2,10]},{"path":[4,88,2,12,5],"span":[1588,11,17]},{"path":[4,88,2,12,1],"span":[1588,18,40]},{"path":[4,88,2,12,3],"span":[1588,43,45]},{"path":[4,88,2,13],"span":[1589,2,40]},{"path":[4,88,2,13,4],"span":[1589,2,10]},{"path":[4,88,2,13,5],"span":[1589,11,15]},{"path":[4,88,2,13,1],"span":[1589,16,34]},{"path":[4,88,2,13,3],"span":[1589,37,39]},{"path":[4,88,2,14],"span":[1590,2,41]},{"path":[4,88,2,14,4],"span":[1590,2,10]},{"path":[4,88,2,14,5],"span":[1590,11,16]},{"path":[4,88,2,14,1],"span":[1590,17,35]},{"path":[4,88,2,14,3],"span":[1590,38,40]},{"path":[4,88,2,15],"span":[1591,2,33]},{"path":[4,88,2,15,4],"span":[1591,2,10]},{"path":[4,88,2,15,5],"span":[1591,11,17]},{"path":[4,88,2,15,1],"span":[1591,18,27]},{"path":[4,88,2,15,3],"span":[1591,30,32]},{"path":[4,88,2,16],"span":[1592,2,41]},{"path":[4,88,2,16,4],"span":[1592,2,10]},{"path":[4,88,2,16,5],"span":[1592,11,15]},{"path":[4,88,2,16,1],"span":[1592,16,35]},{"path":[4,88,2,16,3],"span":[1592,38,40]},{"path":[4,88,2,17],"span":[1593,2,37]},{"path":[4,88,2,17,4],"span":[1593,2,10]},{"path":[4,88,2,17,5],"span":[1593,11,15]},{"path":[4,88,2,17,1],"span":[1593,16,31]},{"path":[4,88,2,17,3],"span":[1593,34,36]},{"path":[4,89],"span":[1599,0,1610,1],"leadingComments":"\n Computer, Windows only: from WindowsDisplayConfig.\n"},{"path":[4,89,1],"span":[1599,8,30]},{"path":[4,89,2,0],"span":[1600,2,34]},{"path":[4,89,2,0,4],"span":[1600,2,10]},{"path":[4,89,2,0,5],"span":[1600,11,16]},{"path":[4,89,2,0,1],"span":[1600,17,29]},{"path":[4,89,2,0,3],"span":[1600,32,33]},{"path":[4,89,2,1],"span":[1601,2,30]},{"path":[4,89,2,1,4],"span":[1601,2,10]},{"path":[4,89,2,1,5],"span":[1601,11,17]},{"path":[4,89,2,1,1],"span":[1601,18,25]},{"path":[4,89,2,1,3],"span":[1601,28,29]},{"path":[4,89,2,2],"span":[1602,2,34]},{"path":[4,89,2,2,4],"span":[1602,2,10]},{"path":[4,89,2,2,5],"span":[1602,11,17]},{"path":[4,89,2,2,1],"span":[1602,18,29]},{"path":[4,89,2,2,3],"span":[1602,32,33]},{"path":[4,89,2,3],"span":[1603,2,35]},{"path":[4,89,2,3,4],"span":[1603,2,10]},{"path":[4,89,2,3,5],"span":[1603,11,16]},{"path":[4,89,2,3,1],"span":[1603,17,30]},{"path":[4,89,2,3,3],"span":[1603,33,34]},{"path":[4,89,2,4],"span":[1604,2,39]},{"path":[4,89,2,4,4],"span":[1604,2,10]},{"path":[4,89,2,4,5],"span":[1604,11,16]},{"path":[4,89,2,4,1],"span":[1604,17,34]},{"path":[4,89,2,4,3],"span":[1604,37,38]},{"path":[4,89,2,5],"span":[1605,2,37]},{"path":[4,89,2,5,4],"span":[1605,2,10]},{"path":[4,89,2,5,5],"span":[1605,11,17]},{"path":[4,89,2,5,1],"span":[1605,18,32]},{"path":[4,89,2,5,3],"span":[1605,35,36]},{"path":[4,89,2,6],"span":[1606,2,32]},{"path":[4,89,2,6,4],"span":[1606,2,10]},{"path":[4,89,2,6,5],"span":[1606,11,16]},{"path":[4,89,2,6,1],"span":[1606,17,27]},{"path":[4,89,2,6,3],"span":[1606,30,31]},{"path":[4,89,2,7],"span":[1607,2,33]},{"path":[4,89,2,7,4],"span":[1607,2,10]},{"path":[4,89,2,7,5],"span":[1607,11,16]},{"path":[4,89,2,7,1],"span":[1607,17,28]},{"path":[4,89,2,7,3],"span":[1607,31,32]},{"path":[4,89,2,8],"span":[1608,2,32]},{"path":[4,89,2,8,4],"span":[1608,2,10]},{"path":[4,89,2,8,5],"span":[1608,11,16]},{"path":[4,89,2,8,1],"span":[1608,17,27]},{"path":[4,89,2,8,3],"span":[1608,30,31]},{"path":[4,89,2,9],"span":[1609,2,44]},{"path":[4,89,2,9,4],"span":[1609,2,10]},{"path":[4,89,2,9,5],"span":[1609,11,16]},{"path":[4,89,2,9,1],"span":[1609,17,38]},{"path":[4,89,2,9,3],"span":[1609,41,43]},{"path":[4,90],"span":[1616,0,1627,1],"leadingComments":"\n Computer, Windows only: from WindowsDisplayControllerConfig.\n"},{"path":[4,90,1],"span":[1616,8,40]},{"path":[4,90,2,0],"span":[1617,2,36]},{"path":[4,90,2,0,4],"span":[1617,2,10]},{"path":[4,90,2,0,5],"span":[1617,11,16]},{"path":[4,90,2,0,1],"span":[1617,17,31]},{"path":[4,90,2,0,3],"span":[1617,34,35]},{"path":[4,90,2,1],"span":[1618,2,30]},{"path":[4,90,2,1,4],"span":[1618,2,10]},{"path":[4,90,2,1,5],"span":[1618,11,17]},{"path":[4,90,2,1,1],"span":[1618,18,25]},{"path":[4,90,2,1,3],"span":[1618,28,29]},{"path":[4,90,2,2],"span":[1619,2,34]},{"path":[4,90,2,2,4],"span":[1619,2,10]},{"path":[4,90,2,2,5],"span":[1619,11,16]},{"path":[4,90,2,2,1],"span":[1619,17,29]},{"path":[4,90,2,2,3],"span":[1619,32,33]},{"path":[4,90,2,3],"span":[1620,2,53]},{"path":[4,90,2,3,4],"span":[1620,2,10]},{"path":[4,90,2,3,5],"span":[1620,11,16]},{"path":[4,90,2,3,1],"span":[1620,17,48]},{"path":[4,90,2,3,3],"span":[1620,51,52]},{"path":[4,90,2,4],"span":[1621,2,42]},{"path":[4,90,2,4,4],"span":[1621,2,10]},{"path":[4,90,2,4,5],"span":[1621,11,16]},{"path":[4,90,2,4,1],"span":[1621,17,37]},{"path":[4,90,2,4,3],"span":[1621,40,41]},{"path":[4,90,2,5],"span":[1622,2,43]},{"path":[4,90,2,5,4],"span":[1622,2,10]},{"path":[4,90,2,5,5],"span":[1622,11,16]},{"path":[4,90,2,5,1],"span":[1622,17,38]},{"path":[4,90,2,5,3],"span":[1622,41,42]},{"path":[4,90,2,6],"span":[1623,2,27]},{"path":[4,90,2,6,4],"span":[1623,2,10]},{"path":[4,90,2,6,5],"span":[1623,11,17]},{"path":[4,90,2,6,1],"span":[1623,18,22]},{"path":[4,90,2,6,3],"span":[1623,25,26]},{"path":[4,90,2,7],"span":[1624,2,34]},{"path":[4,90,2,7,4],"span":[1624,2,10]},{"path":[4,90,2,7,5],"span":[1624,11,16]},{"path":[4,90,2,7,1],"span":[1624,17,29]},{"path":[4,90,2,7,3],"span":[1624,32,33]},{"path":[4,90,2,8],"span":[1625,2,41]},{"path":[4,90,2,8,4],"span":[1625,2,10]},{"path":[4,90,2,8,5],"span":[1625,11,16]},{"path":[4,90,2,8,1],"span":[1625,17,36]},{"path":[4,90,2,8,3],"span":[1625,39,40]},{"path":[4,90,2,9],"span":[1626,2,34]},{"path":[4,90,2,9,4],"span":[1626,2,10]},{"path":[4,90,2,9,5],"span":[1626,11,17]},{"path":[4,90,2,9,1],"span":[1626,18,28]},{"path":[4,90,2,9,3],"span":[1626,31,33]},{"path":[4,91],"span":[1632,0,1637,1],"leadingComments":"\n Computer Windows only: from WindowsNetworkClient.\n"},{"path":[4,91,1],"span":[1632,8,36]},{"path":[4,91,2,0],"span":[1633,2,30]},{"path":[4,91,2,0,4],"span":[1633,2,10]},{"path":[4,91,2,0,5],"span":[1633,11,17]},{"path":[4,91,2,0,1],"span":[1633,18,25]},{"path":[4,91,2,0,3],"span":[1633,28,29]},{"path":[4,91,2,1],"span":[1634,2,34]},{"path":[4,91,2,1,4],"span":[1634,2,10]},{"path":[4,91,2,1,5],"span":[1634,11,17]},{"path":[4,91,2,1,1],"span":[1634,18,29]},{"path":[4,91,2,1,3],"span":[1634,32,33]},{"path":[4,91,2,2],"span":[1635,2,35]},{"path":[4,91,2,2,4],"span":[1635,2,10]},{"path":[4,91,2,2,5],"span":[1635,11,17]},{"path":[4,91,2,2,1],"span":[1635,18,30]},{"path":[4,91,2,2,3],"span":[1635,33,34]},{"path":[4,91,2,3],"span":[1636,2,27]},{"path":[4,91,2,3,4],"span":[1636,2,10]},{"path":[4,91,2,3,5],"span":[1636,11,17]},{"path":[4,91,2,3,1],"span":[1636,18,22]},{"path":[4,91,2,3,3],"span":[1636,25,26]},{"path":[4,92],"span":[1644,0,1649,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,92,1],"span":[1644,8,36]},{"path":[4,92,2,0],"span":[1645,2,30]},{"path":[4,92,2,0,4],"span":[1645,2,10]},{"path":[4,92,2,0,5],"span":[1645,11,17]},{"path":[4,92,2,0,1],"span":[1645,18,25]},{"path":[4,92,2,0,3],"span":[1645,28,29]},{"path":[4,92,2,1],"span":[1646,2,32]},{"path":[4,92,2,1,4],"span":[1646,2,10]},{"path":[4,92,2,1,5],"span":[1646,11,17]},{"path":[4,92,2,1,1],"span":[1646,18,27]},{"path":[4,92,2,1,3],"span":[1646,30,31]},{"path":[4,92,2,2],"span":[1647,2,35]},{"path":[4,92,2,2,4],"span":[1647,2,10]},{"path":[4,92,2,2,5],"span":[1647,11,17]},{"path":[4,92,2,2,1],"span":[1647,18,30]},{"path":[4,92,2,2,3],"span":[1647,33,34]},{"path":[4,92,2,3],"span":[1648,2,46]},{"path":[4,92,2,3,4],"span":[1648,2,10]},{"path":[4,92,2,3,6],"span":[1648,11,22]},{"path":[4,92,2,3,1],"span":[1648,23,41]},{"path":[4,92,2,3,3],"span":[1648,44,45]},{"path":[4,93],"span":[1655,0,1667,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,93,1],"span":[1655,8,36]},{"path":[4,93,2,0],"span":[1656,2,32]},{"path":[4,93,2,0,4],"span":[1656,2,10]},{"path":[4,93,2,0,5],"span":[1656,11,16]},{"path":[4,93,2,0,1],"span":[1656,17,27]},{"path":[4,93,2,0,3],"span":[1656,30,31]},{"path":[4,93,2,1],"span":[1657,2,29]},{"path":[4,93,2,1,4],"span":[1657,2,10]},{"path":[4,93,2,1,5],"span":[1657,11,15]},{"path":[4,93,2,1,1],"span":[1657,16,24]},{"path":[4,93,2,1,3],"span":[1657,27,28]},{"path":[4,93,2,2],"span":[1658,2,35]},{"path":[4,93,2,2,4],"span":[1658,2,10]},{"path":[4,93,2,2,5],"span":[1658,11,15]},{"path":[4,93,2,2,1],"span":[1658,16,30]},{"path":[4,93,2,2,3],"span":[1658,33,34]},{"path":[4,93,2,3],"span":[1659,2,32]},{"path":[4,93,2,3,4],"span":[1659,2,10]},{"path":[4,93,2,3,5],"span":[1659,11,17]},{"path":[4,93,2,3,1],"span":[1659,18,27]},{"path":[4,93,2,3,3],"span":[1659,30,31]},{"path":[4,93,2,4],"span":[1660,2,32]},{"path":[4,93,2,4,4],"span":[1660,2,10]},{"path":[4,93,2,4,5],"span":[1660,11,16]},{"path":[4,93,2,4,1],"span":[1660,17,27]},{"path":[4,93,2,4,3],"span":[1660,30,31]},{"path":[4,93,2,5],"span":[1661,2,27]},{"path":[4,93,2,5,4],"span":[1661,2,10]},{"path":[4,93,2,5,5],"span":[1661,11,16]},{"path":[4,93,2,5,1],"span":[1661,17,22]},{"path":[4,93,2,5,3],"span":[1661,25,26]},{"path":[4,93,2,6],"span":[1662,2,38]},{"path":[4,93,2,6,4],"span":[1662,2,10]},{"path":[4,93,2,6,5],"span":[1662,11,16]},{"path":[4,93,2,6,1],"span":[1662,17,33]},{"path":[4,93,2,6,3],"span":[1662,36,37]},{"path":[4,93,2,7],"span":[1663,2,38]},{"path":[4,93,2,7,4],"span":[1663,2,10]},{"path":[4,93,2,7,5],"span":[1663,11,15]},{"path":[4,93,2,7,1],"span":[1663,16,33]},{"path":[4,93,2,7,3],"span":[1663,36,37]},{"path":[4,93,2,8],"span":[1664,2,26]},{"path":[4,93,2,8,4],"span":[1664,2,10]},{"path":[4,93,2,8,5],"span":[1664,11,16]},{"path":[4,93,2,8,1],"span":[1664,17,21]},{"path":[4,93,2,8,3],"span":[1664,24,25]},{"path":[4,93,2,9],"span":[1665,2,38]},{"path":[4,93,2,9,4],"span":[1665,2,10]},{"path":[4,93,2,9,5],"span":[1665,11,16]},{"path":[4,93,2,9,1],"span":[1665,17,32]},{"path":[4,93,2,9,3],"span":[1665,35,37]},{"path":[4,93,2,10],"span":[1666,2,28]},{"path":[4,93,2,10,4],"span":[1666,2,10]},{"path":[4,93,2,10,5],"span":[1666,11,17]},{"path":[4,93,2,10,1],"span":[1666,18,22]},{"path":[4,93,2,10,3],"span":[1666,25,27]},{"path":[4,94],"span":[1674,0,1686,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,94,1],"span":[1674,8,23]},{"path":[4,94,2,0],"span":[1675,2,41]},{"path":[4,94,2,0,4],"span":[1675,2,10]},{"path":[4,94,2,0,5],"span":[1675,11,16]},{"path":[4,94,2,0,1],"span":[1675,17,36]},{"path":[4,94,2,0,3],"span":[1675,39,40]},{"path":[4,94,2,1],"span":[1676,2,37]},{"path":[4,94,2,1,4],"span":[1676,2,10]},{"path":[4,94,2,1,6],"span":[1676,11,22]},{"path":[4,94,2,1,1],"span":[1676,23,32]},{"path":[4,94,2,1,3],"span":[1676,35,36]},{"path":[4,94,2,2],"span":[1677,2,37]},{"path":[4,94,2,2,4],"span":[1677,2,10]},{"path":[4,94,2,2,5],"span":[1677,11,16]},{"path":[4,94,2,2,1],"span":[1677,17,32]},{"path":[4,94,2,2,3],"span":[1677,35,36]},{"path":[4,94,2,3],"span":[1678,2,36]},{"path":[4,94,2,3,4],"span":[1678,2,10]},{"path":[4,94,2,3,5],"span":[1678,11,16]},{"path":[4,94,2,3,1],"span":[1678,17,31]},{"path":[4,94,2,3,3],"span":[1678,34,35]},{"path":[4,94,2,4],"span":[1679,2,32]},{"path":[4,94,2,4,4],"span":[1679,2,10]},{"path":[4,94,2,4,5],"span":[1679,11,17]},{"path":[4,94,2,4,1],"span":[1679,18,27]},{"path":[4,94,2,4,3],"span":[1679,30,31]},{"path":[4,94,2,5],"span":[1680,2,31]},{"path":[4,94,2,5,4],"span":[1680,2,10]},{"path":[4,94,2,5,5],"span":[1680,11,17]},{"path":[4,94,2,5,1],"span":[1680,18,26]},{"path":[4,94,2,5,3],"span":[1680,29,30]},{"path":[4,94,2,6],"span":[1681,2,39]},{"path":[4,94,2,6,4],"span":[1681,2,10]},{"path":[4,94,2,6,5],"span":[1681,11,17]},{"path":[4,94,2,6,1],"span":[1681,18,34]},{"path":[4,94,2,6,3],"span":[1681,37,38]},{"path":[4,94,2,7],"span":[1682,2,35]},{"path":[4,94,2,7,4],"span":[1682,2,10]},{"path":[4,94,2,7,5],"span":[1682,11,17]},{"path":[4,94,2,7,1],"span":[1682,18,30]},{"path":[4,94,2,7,3],"span":[1682,33,34]},{"path":[4,94,2,8],"span":[1683,2,39]},{"path":[4,94,2,8,4],"span":[1683,2,10]},{"path":[4,94,2,8,5],"span":[1683,11,16]},{"path":[4,94,2,8,1],"span":[1683,17,34]},{"path":[4,94,2,8,3],"span":[1683,37,38]},{"path":[4,94,2,9],"span":[1684,2,28]},{"path":[4,94,2,9,4],"span":[1684,2,10]},{"path":[4,94,2,9,5],"span":[1684,11,17]},{"path":[4,94,2,9,1],"span":[1684,18,22]},{"path":[4,94,2,9,3],"span":[1684,25,27]},{"path":[4,94,2,10],"span":[1685,2,45]},{"path":[4,94,2,10,4],"span":[1685,2,10]},{"path":[4,94,2,10,5],"span":[1685,11,17]},{"path":[4,94,2,10,1],"span":[1685,18,39]},{"path":[4,94,2,10,3],"span":[1685,42,44]},{"path":[4,95],"span":[1695,0,1698,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,95,1],"span":[1695,8,19]},{"path":[4,95,2,0],"span":[1696,2,18]},{"path":[4,95,2,0,5],"span":[1696,2,7]},{"path":[4,95,2,0,1],"span":[1696,8,13]},{"path":[4,95,2,0,3],"span":[1696,16,17]},{"path":[4,95,2,1],"span":[1697,2,27]},{"path":[4,95,2,1,4],"span":[1697,2,10]},{"path":[4,95,2,1,5],"span":[1697,11,17]},{"path":[4,95,2,1,1],"span":[1697,18,22]},{"path":[4,95,2,1,3],"span":[1697,25,26]},{"path":[4,96],"span":[1701,0,1704,1],"leadingComments":" Monitor Inventory with list of connected monitors "},{"path":[4,96,1],"span":[1701,8,24]},{"path":[4,96,2,0],"span":[1702,2,42]},{"path":[4,96,2,0,6],"span":[1702,2,27]},{"path":[4,96,2,0,1],"span":[1702,28,37]},{"path":[4,96,2,0,3],"span":[1702,40,41]},{"path":[4,96,2,1],"span":[1703,2,31]},{"path":[4,96,2,1,4],"span":[1703,2,10]},{"path":[4,96,2,1,6],"span":[1703,11,18]},{"path":[4,96,2,1,1],"span":[1703,19,26]},{"path":[4,96,2,1,3],"span":[1703,29,30]},{"path":[4,97],"span":[1708,0,1729,1],"leadingComments":" Monitor definition: normalized and with link to raw "},{"path":[4,97,1],"span":[1708,8,15]},{"path":[4,97,2,0],"span":[1710,2,24],"leadingComments":" catalog id of: CatalogMonitor\n"},{"path":[4,97,2,0,4],"span":[1710,2,10]},{"path":[4,97,2,0,5],"span":[1710,11,16]},{"path":[4,97,2,0,1],"span":[1710,17,19]},{"path":[4,97,2,0,3],"span":[1710,22,23]},{"path":[4,97,2,1],"span":[1713,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,97,2,1,4],"span":[1713,2,10]},{"path":[4,97,2,1,5],"span":[1713,11,16]},{"path":[4,97,2,1,1],"span":[1713,17,24]},{"path":[4,97,2,1,3],"span":[1713,27,28]},{"path":[4,97,2,2],"span":[1715,2,23]},{"path":[4,97,2,2,5],"span":[1715,2,8]},{"path":[4,97,2,2,1],"span":[1715,9,18]},{"path":[4,97,2,2,3],"span":[1715,21,22]},{"path":[4,97,2,3],"span":[1716,2,24]},{"path":[4,97,2,3,5],"span":[1716,2,8]},{"path":[4,97,2,3,1],"span":[1716,9,19]},{"path":[4,97,2,3,3],"span":[1716,22,23]},{"path":[4,97,2,4],"span":[1718,2,36]},{"path":[4,97,2,4,4],"span":[1718,2,10]},{"path":[4,97,2,4,5],"span":[1718,11,17]},{"path":[4,97,2,4,1],"span":[1718,18,31]},{"path":[4,97,2,4,3],"span":[1718,34,35]},{"path":[4,97,2,5],"span":[1719,2,50]},{"path":[4,97,2,5,6],"span":[1719,2,27]},{"path":[4,97,2,5,1],"span":[1719,28,45]},{"path":[4,97,2,5,3],"span":[1719,48,49]},{"path":[4,97,8,0],"span":[1721,2,1723,3]},{"path":[4,97,8,0,1],"span":[1721,8,12]},{"path":[4,97,2,6],"span":[1722,4,36]},{"path":[4,97,2,6,6],"span":[1722,4,22]},{"path":[4,97,2,6,1],"span":[1722,23,30]},{"path":[4,97,2,6,3],"span":[1722,33,35]},{"path":[4,97,2,7],"span":[1726,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,97,2,7,4],"span":[1726,2,10]},{"path":[4,97,2,7,6],"span":[1726,11,23]},{"path":[4,97,2,7,1],"span":[1726,24,37]},{"path":[4,97,2,7,3],"span":[1726,40,42]},{"path":[4,97,2,8],"span":[1728,2,47],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,97,2,8,4],"span":[1728,2,10]},{"path":[4,97,2,8,6],"span":[1728,11,25]},{"path":[4,97,2,8,1],"span":[1728,26,41]},{"path":[4,97,2,8,3],"span":[1728,44,46]},{"path":[4,98],"span":[1731,0,1740,1]},{"path":[4,98,1],"span":[1731,8,26]},{"path":[4,98,2,0],"span":[1732,2,19]},{"path":[4,98,2,0,5],"span":[1732,2,8]},{"path":[4,98,2,0,1],"span":[1732,9,14]},{"path":[4,98,2,0,3],"span":[1732,17,18]},{"path":[4,98,2,1],"span":[1733,2,36]},{"path":[4,98,2,1,4],"span":[1733,2,10]},{"path":[4,98,2,1,5],"span":[1733,11,17]},{"path":[4,98,2,1,1],"span":[1733,18,31]},{"path":[4,98,2,1,3],"span":[1733,34,35]},{"path":[4,98,2,2],"span":[1734,2,36]},{"path":[4,98,2,2,4],"span":[1734,2,10]},{"path":[4,98,2,2,5],"span":[1734,11,17]},{"path":[4,98,2,2,1],"span":[1734,18,31]},{"path":[4,98,2,2,3],"span":[1734,34,35]},{"path":[4,98,2,3],"span":[1735,2,33]},{"path":[4,98,2,3,4],"span":[1735,2,10]},{"path":[4,98,2,3,5],"span":[1735,11,17]},{"path":[4,98,2,3,1],"span":[1735,18,28]},{"path":[4,98,2,3,3],"span":[1735,31,32]},{"path":[4,98,2,4],"span":[1736,2,40]},{"path":[4,98,2,4,4],"span":[1736,2,10]},{"path":[4,98,2,4,5],"span":[1736,11,17]},{"path":[4,98,2,4,1],"span":[1736,18,35]},{"path":[4,98,2,4,3],"span":[1736,38,39]},{"path":[4,98,2,5],"span":[1737,2,39]},{"path":[4,98,2,5,4],"span":[1737,2,10]},{"path":[4,98,2,5,5],"span":[1737,11,17]},{"path":[4,98,2,5,1],"span":[1737,18,34]},{"path":[4,98,2,5,3],"span":[1737,37,38]},{"path":[4,98,2,6],"span":[1738,2,59]},{"path":[4,98,2,6,4],"span":[1738,2,10]},{"path":[4,98,2,6,6],"span":[1738,11,36]},{"path":[4,98,2,6,1],"span":[1738,37,54]},{"path":[4,98,2,6,3],"span":[1738,57,58]},{"path":[4,98,2,7],"span":[1739,2,32]},{"path":[4,98,2,7,4],"span":[1739,2,10]},{"path":[4,98,2,7,5],"span":[1739,11,17]},{"path":[4,98,2,7,1],"span":[1739,18,27]},{"path":[4,98,2,7,3],"span":[1739,30,31]},{"path":[4,99],"span":[1745,0,1751,1],"leadingComments":"\n Antivirus software (that could be even missing from scanned SW list.\n"},{"path":[4,99,1],"span":[1745,8,25]},{"path":[4,99,2,0],"span":[1746,2,27]},{"path":[4,99,2,0,4],"span":[1746,2,10]},{"path":[4,99,2,0,5],"span":[1746,11,17]},{"path":[4,99,2,0,1],"span":[1746,18,22]},{"path":[4,99,2,0,3],"span":[1746,25,26]},{"path":[4,99,2,1],"span":[1747,2,27]},{"path":[4,99,2,1,4],"span":[1747,2,10]},{"path":[4,99,2,1,5],"span":[1747,11,17]},{"path":[4,99,2,1,1],"span":[1747,18,22]},{"path":[4,99,2,1,3],"span":[1747,25,26]},{"path":[4,99,2,2],"span":[1748,2,28]},{"path":[4,99,2,2,4],"span":[1748,2,10]},{"path":[4,99,2,2,5],"span":[1748,11,15]},{"path":[4,99,2,2,1],"span":[1748,16,23]},{"path":[4,99,2,2,3],"span":[1748,26,27]},{"path":[4,99,2,3],"span":[1749,2,31]},{"path":[4,99,2,3,4],"span":[1749,2,10]},{"path":[4,99,2,3,5],"span":[1749,11,15]},{"path":[4,99,2,3,1],"span":[1749,16,26]},{"path":[4,99,2,3,3],"span":[1749,29,30]},{"path":[4,99,2,4],"span":[1750,2,33],"trailingComments":" filled only in case it was scanned sw (not windows registry)\n"},{"path":[4,99,2,4,4],"span":[1750,2,10]},{"path":[4,99,2,4,6],"span":[1750,11,19]},{"path":[4,99,2,4,1],"span":[1750,20,28]},{"path":[4,99,2,4,3],"span":[1750,31,32]},{"path":[4,100],"span":[1756,0,1766,1],"leadingComments":"\n Internet IP info, if external_ip is present and valid.\n"},{"path":[4,100,1],"span":[1756,8,14]},{"path":[4,100,2,0],"span":[1757,2,21]},{"path":[4,100,2,0,5],"span":[1757,2,8]},{"path":[4,100,2,0,1],"span":[1757,9,16]},{"path":[4,100,2,0,3],"span":[1757,19,20]},{"path":[4,100,2,1],"span":[1758,2,31]},{"path":[4,100,2,1,4],"span":[1758,2,10]},{"path":[4,100,2,1,5],"span":[1758,11,17]},{"path":[4,100,2,1,1],"span":[1758,18,26]},{"path":[4,100,2,1,3],"span":[1758,29,30]},{"path":[4,100,2,2],"span":[1759,2,31]},{"path":[4,100,2,2,4],"span":[1759,2,10]},{"path":[4,100,2,2,5],"span":[1759,11,17]},{"path":[4,100,2,2,1],"span":[1759,18,26]},{"path":[4,100,2,2,3],"span":[1759,29,30]},{"path":[4,100,2,3],"span":[1760,2,37]},{"path":[4,100,2,3,4],"span":[1760,2,10]},{"path":[4,100,2,3,5],"span":[1760,11,17]},{"path":[4,100,2,3,1],"span":[1760,18,32]},{"path":[4,100,2,3,3],"span":[1760,35,36]},{"path":[4,100,2,4],"span":[1761,2,35]},{"path":[4,100,2,4,4],"span":[1761,2,10]},{"path":[4,100,2,4,5],"span":[1761,11,17]},{"path":[4,100,2,4,1],"span":[1761,18,30]},{"path":[4,100,2,4,3],"span":[1761,33,34]},{"path":[4,100,2,5],"span":[1762,2,34]},{"path":[4,100,2,5,4],"span":[1762,2,10]},{"path":[4,100,2,5,5],"span":[1762,11,17]},{"path":[4,100,2,5,1],"span":[1762,18,29]},{"path":[4,100,2,5,3],"span":[1762,32,33]},{"path":[4,100,2,6],"span":[1763,2,35]},{"path":[4,100,2,6,4],"span":[1763,2,10]},{"path":[4,100,2,6,5],"span":[1763,11,17]},{"path":[4,100,2,6,1],"span":[1763,18,30]},{"path":[4,100,2,6,3],"span":[1763,33,34]},{"path":[4,100,2,7],"span":[1764,2,26]},{"path":[4,100,2,7,4],"span":[1764,2,10]},{"path":[4,100,2,7,5],"span":[1764,11,17]},{"path":[4,100,2,7,1],"span":[1764,18,21]},{"path":[4,100,2,7,3],"span":[1764,24,25]},{"path":[4,100,2,8],"span":[1765,2,35]},{"path":[4,100,2,8,4],"span":[1765,2,10]},{"path":[4,100,2,8,5],"span":[1765,11,17]},{"path":[4,100,2,8,1],"span":[1765,18,30]},{"path":[4,100,2,8,3],"span":[1765,33,34]},{"path":[4,101],"span":[1775,0,1778,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,101,1],"span":[1775,8,25]},{"path":[4,101,2,0],"span":[1776,2,42]},{"path":[4,101,2,0,6],"span":[1776,2,27]},{"path":[4,101,2,0,1],"span":[1776,28,37]},{"path":[4,101,2,0,3],"span":[1776,40,41]},{"path":[4,101,2,1],"span":[1777,2,33]},{"path":[4,101,2,1,4],"span":[1777,2,10]},{"path":[4,101,2,1,6],"span":[1777,11,19]},{"path":[4,101,2,1,1],"span":[1777,20,28]},{"path":[4,101,2,1,3],"span":[1777,31,32]},{"path":[4,102],"span":[1787,0,1825,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,102,1],"span":[1787,8,16]},{"path":[4,102,2,0],"span":[1789,2,26]},{"path":[4,102,2,0,4],"span":[1789,2,10]},{"path":[4,102,2,0,5],"span":[1789,11,16]},{"path":[4,102,2,0,1],"span":[1789,17,21]},{"path":[4,102,2,0,3],"span":[1789,24,25]},{"path":[4,102,2,1],"span":[1790,2,29]},{"path":[4,102,2,1,4],"span":[1790,2,10]},{"path":[4,102,2,1,5],"span":[1790,11,16]},{"path":[4,102,2,1,1],"span":[1790,17,24]},{"path":[4,102,2,1,3],"span":[1790,27,28]},{"path":[4,102,2,2],"span":[1791,2,28]},{"path":[4,102,2,2,4],"span":[1791,2,10]},{"path":[4,102,2,2,5],"span":[1791,11,16]},{"path":[4,102,2,2,1],"span":[1791,17,23]},{"path":[4,102,2,2,3],"span":[1791,26,27]},{"path":[4,102,2,3],"span":[1794,2,29],"leadingComments":" catalog id of: CatalogBrand\n"},{"path":[4,102,2,3,4],"span":[1794,2,10]},{"path":[4,102,2,3,5],"span":[1794,11,16]},{"path":[4,102,2,3,1],"span":[1794,17,24]},{"path":[4,102,2,3,3],"span":[1794,27,28]},{"path":[4,102,2,4],"span":[1797,2,27],"leadingComments":" catalog id of: CatalogSoftware\n"},{"path":[4,102,2,4,4],"span":[1797,2,10]},{"path":[4,102,2,4,5],"span":[1797,11,16]},{"path":[4,102,2,4,1],"span":[1797,17,22]},{"path":[4,102,2,4,3],"span":[1797,25,26]},{"path":[4,102,2,5],"span":[1800,2,31],"leadingComments":" catalog id of: CatalogSoftware\n"},{"path":[4,102,2,5,4],"span":[1800,2,10]},{"path":[4,102,2,5,5],"span":[1800,11,16]},{"path":[4,102,2,5,1],"span":[1800,17,26]},{"path":[4,102,2,5,3],"span":[1800,29,30]},{"path":[4,102,2,6],"span":[1802,2,32]},{"path":[4,102,2,6,4],"span":[1802,2,10]},{"path":[4,102,2,6,5],"span":[1802,11,17]},{"path":[4,102,2,6,1],"span":[1802,18,27]},{"path":[4,102,2,6,3],"span":[1802,30,31]},{"path":[4,102,2,7],"span":[1803,2,31]},{"path":[4,102,2,7,4],"span":[1803,2,10]},{"path":[4,102,2,7,5],"span":[1803,11,17]},{"path":[4,102,2,7,1],"span":[1803,18,26]},{"path":[4,102,2,7,3],"span":[1803,29,30]},{"path":[4,102,2,8],"span":[1804,2,32]},{"path":[4,102,2,8,4],"span":[1804,2,10]},{"path":[4,102,2,8,5],"span":[1804,11,17]},{"path":[4,102,2,8,1],"span":[1804,18,27]},{"path":[4,102,2,8,3],"span":[1804,30,31]},{"path":[4,102,2,9],"span":[1805,2,28]},{"path":[4,102,2,9,4],"span":[1805,2,10]},{"path":[4,102,2,9,5],"span":[1805,11,17]},{"path":[4,102,2,9,1],"span":[1805,18,22]},{"path":[4,102,2,9,3],"span":[1805,25,27]},{"path":[4,102,2,10],"span":[1806,2,31]},{"path":[4,102,2,10,4],"span":[1806,2,10]},{"path":[4,102,2,10,5],"span":[1806,11,17]},{"path":[4,102,2,10,1],"span":[1806,18,25]},{"path":[4,102,2,10,3],"span":[1806,28,30]},{"path":[4,102,2,11],"span":[1807,2,34]},{"path":[4,102,2,11,4],"span":[1807,2,10]},{"path":[4,102,2,11,5],"span":[1807,11,17]},{"path":[4,102,2,11,1],"span":[1807,18,28]},{"path":[4,102,2,11,3],"span":[1807,31,33]},{"path":[4,102,2,12],"span":[1808,2,31]},{"path":[4,102,2,12,4],"span":[1808,2,10]},{"path":[4,102,2,12,5],"span":[1808,11,17]},{"path":[4,102,2,12,1],"span":[1808,18,25]},{"path":[4,102,2,12,3],"span":[1808,28,30]},{"path":[4,102,2,13],"span":[1809,2,29]},{"path":[4,102,2,13,4],"span":[1809,2,10]},{"path":[4,102,2,13,5],"span":[1809,11,17]},{"path":[4,102,2,13,1],"span":[1809,18,23]},{"path":[4,102,2,13,3],"span":[1809,26,28]},{"path":[4,102,2,14],"span":[1810,2,28]},{"path":[4,102,2,14,4],"span":[1810,2,10]},{"path":[4,102,2,14,5],"span":[1810,11,17]},{"path":[4,102,2,14,1],"span":[1810,18,22]},{"path":[4,102,2,14,3],"span":[1810,25,27]},{"path":[4,102,2,15],"span":[1811,2,28]},{"path":[4,102,2,15,4],"span":[1811,2,10]},{"path":[4,102,2,15,5],"span":[1811,11,17]},{"path":[4,102,2,15,1],"span":[1811,18,22]},{"path":[4,102,2,15,3],"span":[1811,25,27]},{"path":[4,102,2,16],"span":[1813,2,27]},{"path":[4,102,2,16,4],"span":[1813,2,10]},{"path":[4,102,2,16,5],"span":[1813,11,17]},{"path":[4,102,2,16,1],"span":[1813,18,21]},{"path":[4,102,2,16,3],"span":[1813,24,26]},{"path":[4,102,2,17],"span":[1815,2,23]},{"path":[4,102,2,17,6],"span":[1815,2,13]},{"path":[4,102,2,17,1],"span":[1815,14,17]},{"path":[4,102,2,17,3],"span":[1815,20,22]},{"path":[4,102,2,18],"span":[1816,2,32],"trailingComments":" optional raw hash of SW\n"},{"path":[4,102,2,18,4],"span":[1816,2,10]},{"path":[4,102,2,18,5],"span":[1816,11,17]},{"path":[4,102,2,18,1],"span":[1816,18,26]},{"path":[4,102,2,18,3],"span":[1816,29,31]},{"path":[4,102,2,19],"span":[1817,2,32],"trailingComments":" optional NRE hash of SW\n"},{"path":[4,102,2,19,4],"span":[1817,2,10]},{"path":[4,102,2,19,5],"span":[1817,11,17]},{"path":[4,102,2,19,1],"span":[1817,18,26]},{"path":[4,102,2,19,3],"span":[1817,29,31]},{"path":[4,102,2,20],"span":[1820,2,43],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,102,2,20,4],"span":[1820,2,10]},{"path":[4,102,2,20,6],"span":[1820,11,23]},{"path":[4,102,2,20,1],"span":[1820,24,37]},{"path":[4,102,2,20,3],"span":[1820,40,42]},{"path":[4,102,2,21],"span":[1822,2,49],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,102,2,21,4],"span":[1822,2,10]},{"path":[4,102,2,21,6],"span":[1822,11,26]},{"path":[4,102,2,21,1],"span":[1822,27,43]},{"path":[4,102,2,21,3],"span":[1822,46,48]},{"path":[4,102,2,22],"span":[1824,2,47],"leadingComments":" placeholder to be able to inject the catalog meta-data if/when needed\n"},{"path":[4,102,2,22,4],"span":[1824,2,10]},{"path":[4,102,2,22,6],"span":[1824,11,26]},{"path":[4,102,2,22,1],"span":[1824,27,41]},{"path":[4,102,2,22,3],"span":[1824,44,46]},{"path":[4,103],"span":[1830,0,1844,1],"leadingComments":"\n Raw Software definition, as mapped from Windows, Mac, Linux.\n"},{"path":[4,103,1],"span":[1830,8,19]},{"path":[4,103,2,0],"span":[1831,2,18]},{"path":[4,103,2,0,5],"span":[1831,2,8]},{"path":[4,103,2,0,1],"span":[1831,9,13]},{"path":[4,103,2,0,3],"span":[1831,16,17]},{"path":[4,103,2,1],"span":[1833,2,29]},{"path":[4,103,2,1,4],"span":[1833,2,10]},{"path":[4,103,2,1,5],"span":[1833,11,17]},{"path":[4,103,2,1,1],"span":[1833,18,24]},{"path":[4,103,2,1,3],"span":[1833,27,28]},{"path":[4,103,2,2],"span":[1834,2,30]},{"path":[4,103,2,2,4],"span":[1834,2,10]},{"path":[4,103,2,2,5],"span":[1834,11,17]},{"path":[4,103,2,2,1],"span":[1834,18,25]},{"path":[4,103,2,2,3],"span":[1834,28,29]},{"path":[4,103,2,3],"span":[1835,2,27]},{"path":[4,103,2,3,4],"span":[1835,2,10]},{"path":[4,103,2,3,5],"span":[1835,11,17]},{"path":[4,103,2,3,1],"span":[1835,18,22]},{"path":[4,103,2,3,3],"span":[1835,25,26]},{"path":[4,103,2,4],"span":[1836,2,31]},{"path":[4,103,2,4,4],"span":[1836,2,10]},{"path":[4,103,2,4,5],"span":[1836,11,17]},{"path":[4,103,2,4,1],"span":[1836,18,26]},{"path":[4,103,2,4,3],"span":[1836,29,30]},{"path":[4,103,2,5],"span":[1837,2,27],"trailingComments":" when available the specific sw arch\n"},{"path":[4,103,2,5,4],"span":[1837,2,10]},{"path":[4,103,2,5,5],"span":[1837,11,17]},{"path":[4,103,2,5,1],"span":[1837,18,22]},{"path":[4,103,2,5,3],"span":[1837,25,26]},{"path":[4,103,2,6],"span":[1838,2,54]},{"path":[4,103,2,6,4],"span":[1838,2,10]},{"path":[4,103,2,6,6],"span":[1838,11,36]},{"path":[4,103,2,6,1],"span":[1838,37,49]},{"path":[4,103,2,6,3],"span":[1838,52,53]},{"path":[4,103,2,7],"span":[1839,2,34],"trailingComments":" Registry | System | MsStore | Package | Custom | etc\n"},{"path":[4,103,2,7,4],"span":[1839,2,10]},{"path":[4,103,2,7,5],"span":[1839,11,17]},{"path":[4,103,2,7,1],"span":[1839,18,29]},{"path":[4,103,2,7,3],"span":[1839,32,33]},{"path":[4,103,2,8],"span":[1841,2,28],"trailingComments":" optional SW id on the client side\n"},{"path":[4,103,2,8,4],"span":[1841,2,10]},{"path":[4,103,2,8,5],"span":[1841,11,17]},{"path":[4,103,2,8,1],"span":[1841,18,23]},{"path":[4,103,2,8,3],"span":[1841,26,27]},{"path":[4,103,2,9],"span":[1843,2,37]},{"path":[4,103,2,9,4],"span":[1843,2,10]},{"path":[4,103,2,9,5],"span":[1843,11,15]},{"path":[4,103,2,9,1],"span":[1843,16,31]},{"path":[4,103,2,9,3],"span":[1843,34,36]},{"path":[4,104],"span":[1848,0,1882,1],"leadingDetachedComments":[" <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< CATALOG ENTITIES >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n"]},{"path":[4,104,1],"span":[1848,8,20]},{"path":[4,104,2,0],"span":[1849,2,16]},{"path":[4,104,2,0,5],"span":[1849,2,7]},{"path":[4,104,2,0,1],"span":[1849,9,11]},{"path":[4,104,2,0,3],"span":[1849,14,15]},{"path":[4,104,2,1],"span":[1850,2,23]},{"path":[4,104,2,1,5],"span":[1850,2,8]},{"path":[4,104,2,1,1],"span":[1850,9,18]},{"path":[4,104,2,1,3],"span":[1850,21,22]},{"path":[4,104,2,2],"span":[1852,2,32]},{"path":[4,104,2,2,4],"span":[1852,2,10]},{"path":[4,104,2,2,5],"span":[1852,11,16]},{"path":[4,104,2,2,1],"span":[1852,17,26]},{"path":[4,104,2,2,3],"span":[1852,29,31]},{"path":[4,104,2,3],"span":[1853,2,58]},{"path":[4,104,2,3,4],"span":[1853,2,10]},{"path":[4,104,2,3,6],"span":[1853,11,36]},{"path":[4,104,2,3,1],"span":[1853,37,53]},{"path":[4,104,2,3,3],"span":[1853,56,57]},{"path":[4,104,2,4],"span":[1855,2,35]},{"path":[4,104,2,4,4],"span":[1855,2,10]},{"path":[4,104,2,4,5],"span":[1855,11,17]},{"path":[4,104,2,4,1],"span":[1855,18,30]},{"path":[4,104,2,4,3],"span":[1855,33,34]},{"path":[4,104,2,5],"span":[1856,2,37]},{"path":[4,104,2,5,4],"span":[1856,2,10]},{"path":[4,104,2,5,5],"span":[1856,11,17]},{"path":[4,104,2,5,1],"span":[1856,18,32]},{"path":[4,104,2,5,3],"span":[1856,35,36]},{"path":[4,104,2,6],"span":[1857,2,39]},{"path":[4,104,2,6,4],"span":[1857,2,10]},{"path":[4,104,2,6,5],"span":[1857,11,17]},{"path":[4,104,2,6,1],"span":[1857,18,34]},{"path":[4,104,2,6,3],"span":[1857,37,38]},{"path":[4,104,2,7],"span":[1858,2,35]},{"path":[4,104,2,7,4],"span":[1858,2,10]},{"path":[4,104,2,7,5],"span":[1858,11,17]},{"path":[4,104,2,7,1],"span":[1858,18,30]},{"path":[4,104,2,7,3],"span":[1858,33,34]},{"path":[4,104,2,8],"span":[1859,2,43]},{"path":[4,104,2,8,4],"span":[1859,2,10]},{"path":[4,104,2,8,5],"span":[1859,11,17]},{"path":[4,104,2,8,1],"span":[1859,18,37]},{"path":[4,104,2,8,3],"span":[1859,40,42]},{"path":[4,104,2,9],"span":[1860,2,35]},{"path":[4,104,2,9,4],"span":[1860,2,10]},{"path":[4,104,2,9,5],"span":[1860,11,17]},{"path":[4,104,2,9,1],"span":[1860,18,29]},{"path":[4,104,2,9,3],"span":[1860,32,34]},{"path":[4,104,2,10],"span":[1861,2,35]},{"path":[4,104,2,10,4],"span":[1861,2,10]},{"path":[4,104,2,10,5],"span":[1861,11,17]},{"path":[4,104,2,10,1],"span":[1861,18,29]},{"path":[4,104,2,10,3],"span":[1861,32,34]},{"path":[4,104,2,11],"span":[1862,2,37]},{"path":[4,104,2,11,4],"span":[1862,2,10]},{"path":[4,104,2,11,5],"span":[1862,11,17]},{"path":[4,104,2,11,1],"span":[1862,18,31]},{"path":[4,104,2,11,3],"span":[1862,34,36]},{"path":[4,104,2,12],"span":[1863,2,40]},{"path":[4,104,2,12,4],"span":[1863,2,10]},{"path":[4,104,2,12,5],"span":[1863,11,17]},{"path":[4,104,2,12,1],"span":[1863,18,34]},{"path":[4,104,2,12,3],"span":[1863,37,39]},{"path":[4,104,2,13],"span":[1864,2,39]},{"path":[4,104,2,13,4],"span":[1864,2,10]},{"path":[4,104,2,13,5],"span":[1864,11,17]},{"path":[4,104,2,13,1],"span":[1864,18,33]},{"path":[4,104,2,13,3],"span":[1864,36,38]},{"path":[4,104,2,14],"span":[1865,2,36]},{"path":[4,104,2,14,4],"span":[1865,2,10]},{"path":[4,104,2,14,5],"span":[1865,11,17]},{"path":[4,104,2,14,1],"span":[1865,18,30]},{"path":[4,104,2,14,3],"span":[1865,33,35]},{"path":[4,104,2,15],"span":[1866,2,43]},{"path":[4,104,2,15,4],"span":[1866,2,10]},{"path":[4,104,2,15,5],"span":[1866,11,17]},{"path":[4,104,2,15,1],"span":[1866,18,37]},{"path":[4,104,2,15,3],"span":[1866,40,42]},{"path":[4,104,2,16],"span":[1867,2,37]},{"path":[4,104,2,16,4],"span":[1867,2,10]},{"path":[4,104,2,16,5],"span":[1867,11,17]},{"path":[4,104,2,16,1],"span":[1867,18,31]},{"path":[4,104,2,16,3],"span":[1867,34,36]},{"path":[4,104,2,17],"span":[1868,2,40]},{"path":[4,104,2,17,4],"span":[1868,2,10]},{"path":[4,104,2,17,5],"span":[1868,11,17]},{"path":[4,104,2,17,1],"span":[1868,18,34]},{"path":[4,104,2,17,3],"span":[1868,37,39]},{"path":[4,104,2,18],"span":[1869,2,41]},{"path":[4,104,2,18,4],"span":[1869,2,10]},{"path":[4,104,2,18,5],"span":[1869,11,17]},{"path":[4,104,2,18,1],"span":[1869,18,35]},{"path":[4,104,2,18,3],"span":[1869,38,40]},{"path":[4,104,2,19],"span":[1870,2,39]},{"path":[4,104,2,19,4],"span":[1870,2,10]},{"path":[4,104,2,19,5],"span":[1870,11,17]},{"path":[4,104,2,19,1],"span":[1870,18,33]},{"path":[4,104,2,19,3],"span":[1870,36,38]},{"path":[4,104,2,20],"span":[1871,2,41]},{"path":[4,104,2,20,4],"span":[1871,2,10]},{"path":[4,104,2,20,5],"span":[1871,11,17]},{"path":[4,104,2,20,1],"span":[1871,18,35]},{"path":[4,104,2,20,3],"span":[1871,38,40]},{"path":[4,104,2,21],"span":[1872,2,38]},{"path":[4,104,2,21,4],"span":[1872,2,10]},{"path":[4,104,2,21,5],"span":[1872,11,17]},{"path":[4,104,2,21,1],"span":[1872,18,32]},{"path":[4,104,2,21,3],"span":[1872,35,37]},{"path":[4,104,2,22],"span":[1874,2,36]},{"path":[4,104,2,22,4],"span":[1874,2,10]},{"path":[4,104,2,22,5],"span":[1874,11,15]},{"path":[4,104,2,22,1],"span":[1874,16,30]},{"path":[4,104,2,22,3],"span":[1874,33,35]},{"path":[4,104,2,23],"span":[1875,2,36]},{"path":[4,104,2,23,4],"span":[1875,2,10]},{"path":[4,104,2,23,5],"span":[1875,11,15]},{"path":[4,104,2,23,1],"span":[1875,16,30]},{"path":[4,104,2,23,3],"span":[1875,33,35]},{"path":[4,104,2,24],"span":[1876,2,36]},{"path":[4,104,2,24,4],"span":[1876,2,10]},{"path":[4,104,2,24,5],"span":[1876,11,15]},{"path":[4,104,2,24,1],"span":[1876,16,30]},{"path":[4,104,2,24,3],"span":[1876,33,35]},{"path":[4,104,2,25],"span":[1877,2,38]},{"path":[4,104,2,25,4],"span":[1877,2,10]},{"path":[4,104,2,25,5],"span":[1877,11,15]},{"path":[4,104,2,25,1],"span":[1877,16,32]},{"path":[4,104,2,25,3],"span":[1877,35,37]},{"path":[4,104,2,26],"span":[1878,2,38]},{"path":[4,104,2,26,4],"span":[1878,2,10]},{"path":[4,104,2,26,5],"span":[1878,11,15]},{"path":[4,104,2,26,1],"span":[1878,16,32]},{"path":[4,104,2,26,3],"span":[1878,35,37]},{"path":[4,104,2,27],"span":[1879,2,38]},{"path":[4,104,2,27,4],"span":[1879,2,10]},{"path":[4,104,2,27,5],"span":[1879,11,15]},{"path":[4,104,2,27,1],"span":[1879,16,32]},{"path":[4,104,2,27,3],"span":[1879,35,37]},{"path":[4,104,2,28],"span":[1881,2,34],"trailingComments":" relevant only in search result\n"},{"path":[4,104,2,28,4],"span":[1881,2,10]},{"path":[4,104,2,28,5],"span":[1881,11,16]},{"path":[4,104,2,28,1],"span":[1881,17,28]},{"path":[4,104,2,28,3],"span":[1881,31,33]},{"path":[4,105],"span":[1884,0,1919,1]},{"path":[4,105,1],"span":[1884,8,20]},{"path":[4,105,2,0],"span":[1885,2,15]},{"path":[4,105,2,0,5],"span":[1885,2,7]},{"path":[4,105,2,0,1],"span":[1885,8,10]},{"path":[4,105,2,0,3],"span":[1885,13,14]},{"path":[4,105,2,1],"span":[1887,2,20]},{"path":[4,105,2,1,5],"span":[1887,2,7]},{"path":[4,105,2,1,1],"span":[1887,8,15]},{"path":[4,105,2,1,3],"span":[1887,18,19]},{"path":[4,105,2,2],"span":[1888,2,26]},{"path":[4,105,2,2,5],"span":[1888,2,8]},{"path":[4,105,2,2,1],"span":[1888,9,21]},{"path":[4,105,2,2,3],"span":[1888,24,25]},{"path":[4,105,2,3],"span":[1890,2,36]},{"path":[4,105,2,3,4],"span":[1890,2,10]},{"path":[4,105,2,3,5],"span":[1890,11,16]},{"path":[4,105,2,3,1],"span":[1890,17,31]},{"path":[4,105,2,3,3],"span":[1890,34,35]},{"path":[4,105,2,4],"span":[1891,2,40]},{"path":[4,105,2,4,4],"span":[1891,2,10]},{"path":[4,105,2,4,5],"span":[1891,11,17]},{"path":[4,105,2,4,1],"span":[1891,18,35]},{"path":[4,105,2,4,3],"span":[1891,38,39]},{"path":[4,105,2,5],"span":[1893,2,32]},{"path":[4,105,2,5,4],"span":[1893,2,10]},{"path":[4,105,2,5,5],"span":[1893,11,16]},{"path":[4,105,2,5,1],"span":[1893,17,26]},{"path":[4,105,2,5,3],"span":[1893,29,31]},{"path":[4,105,2,6],"span":[1894,2,31]},{"path":[4,105,2,6,4],"span":[1894,2,10]},{"path":[4,105,2,6,5],"span":[1894,11,15]},{"path":[4,105,2,6,1],"span":[1894,16,25]},{"path":[4,105,2,6,3],"span":[1894,28,30]},{"path":[4,105,2,7],"span":[1895,2,34]},{"path":[4,105,2,7,4],"span":[1895,2,10]},{"path":[4,105,2,7,5],"span":[1895,11,17]},{"path":[4,105,2,7,1],"span":[1895,18,28]},{"path":[4,105,2,7,3],"span":[1895,31,33]},{"path":[4,105,2,8],"span":[1896,2,31]},{"path":[4,105,2,8,4],"span":[1896,2,10]},{"path":[4,105,2,8,5],"span":[1896,11,17]},{"path":[4,105,2,8,1],"span":[1896,18,25]},{"path":[4,105,2,8,3],"span":[1896,28,30]},{"path":[4,105,2,9],"span":[1897,2,55]},{"path":[4,105,2,9,4],"span":[1897,2,10]},{"path":[4,105,2,9,6],"span":[1897,11,36]},{"path":[4,105,2,9,1],"span":[1897,37,49]},{"path":[4,105,2,9,3],"span":[1897,52,54]},{"path":[4,105,2,10],"span":[1898,2,52]},{"path":[4,105,2,10,4],"span":[1898,2,10]},{"path":[4,105,2,10,6],"span":[1898,11,36]},{"path":[4,105,2,10,1],"span":[1898,37,46]},{"path":[4,105,2,10,3],"span":[1898,49,51]},{"path":[4,105,2,11],"span":[1899,2,51]},{"path":[4,105,2,11,4],"span":[1899,2,10]},{"path":[4,105,2,11,6],"span":[1899,11,36]},{"path":[4,105,2,11,1],"span":[1899,37,45]},{"path":[4,105,2,11,3],"span":[1899,48,50]},{"path":[4,105,2,12],"span":[1900,2,43]},{"path":[4,105,2,12,4],"span":[1900,2,10]},{"path":[4,105,2,12,5],"span":[1900,11,17]},{"path":[4,105,2,12,1],"span":[1900,18,37]},{"path":[4,105,2,12,3],"span":[1900,40,42]},{"path":[4,105,2,13],"span":[1902,2,35]},{"path":[4,105,2,13,4],"span":[1902,2,10]},{"path":[4,105,2,13,5],"span":[1902,11,17]},{"path":[4,105,2,13,1],"span":[1902,18,29]},{"path":[4,105,2,13,3],"span":[1902,32,34]},{"path":[4,105,2,14],"span":[1903,2,37]},{"path":[4,105,2,14,4],"span":[1903,2,10]},{"path":[4,105,2,14,5],"span":[1903,11,17]},{"path":[4,105,2,14,1],"span":[1903,18,31]},{"path":[4,105,2,14,3],"span":[1903,34,36]},{"path":[4,105,2,15],"span":[1905,2,39]},{"path":[4,105,2,15,4],"span":[1905,2,10]},{"path":[4,105,2,15,5],"span":[1905,11,17]},{"path":[4,105,2,15,1],"span":[1905,18,33]},{"path":[4,105,2,15,3],"span":[1905,36,38]},{"path":[4,105,2,16],"span":[1906,2,43]},{"path":[4,105,2,16,4],"span":[1906,2,10]},{"path":[4,105,2,16,5],"span":[1906,11,17]},{"path":[4,105,2,16,1],"span":[1906,18,37]},{"path":[4,105,2,16,3],"span":[1906,40,42]},{"path":[4,105,2,17],"span":[1907,2,38]},{"path":[4,105,2,17,4],"span":[1907,2,10]},{"path":[4,105,2,17,5],"span":[1907,11,17]},{"path":[4,105,2,17,1],"span":[1907,18,32]},{"path":[4,105,2,17,3],"span":[1907,35,37]},{"path":[4,105,2,18],"span":[1908,2,38]},{"path":[4,105,2,18,4],"span":[1908,2,10]},{"path":[4,105,2,18,5],"span":[1908,11,17]},{"path":[4,105,2,18,1],"span":[1908,18,32]},{"path":[4,105,2,18,3],"span":[1908,35,37]},{"path":[4,105,2,19],"span":[1909,2,41]},{"path":[4,105,2,19,4],"span":[1909,2,10]},{"path":[4,105,2,19,5],"span":[1909,11,15]},{"path":[4,105,2,19,1],"span":[1909,18,35]},{"path":[4,105,2,19,3],"span":[1909,38,40]},{"path":[4,105,2,20],"span":[1910,2,42]},{"path":[4,105,2,20,4],"span":[1910,2,10]},{"path":[4,105,2,20,5],"span":[1910,11,17]},{"path":[4,105,2,20,1],"span":[1910,18,36]},{"path":[4,105,2,20,3],"span":[1910,39,41]},{"path":[4,105,2,21],"span":[1912,2,32]},{"path":[4,105,2,21,4],"span":[1912,2,10]},{"path":[4,105,2,21,5],"span":[1912,11,17]},{"path":[4,105,2,21,1],"span":[1912,18,26]},{"path":[4,105,2,21,3],"span":[1912,29,31]},{"path":[4,105,2,22],"span":[1914,2,33]},{"path":[4,105,2,22,4],"span":[1914,2,10]},{"path":[4,105,2,22,5],"span":[1914,11,16]},{"path":[4,105,2,22,1],"span":[1914,17,27]},{"path":[4,105,2,22,3],"span":[1914,30,32]},{"path":[4,105,2,23],"span":[1916,2,59]},{"path":[4,105,2,23,4],"span":[1916,2,10]},{"path":[4,105,2,23,6],"span":[1916,11,36]},{"path":[4,105,2,23,1],"span":[1916,37,53]},{"path":[4,105,2,23,3],"span":[1916,56,58]},{"path":[4,105,2,24],"span":[1918,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,105,2,24,4],"span":[1918,2,10]},{"path":[4,105,2,24,5],"span":[1918,11,16]},{"path":[4,105,2,24,1],"span":[1918,17,28]},{"path":[4,105,2,24,3],"span":[1918,31,33]},{"path":[4,106],"span":[1921,0,1954,1]},{"path":[4,106,1],"span":[1921,8,17]},{"path":[4,106,2,0],"span":[1922,2,15]},{"path":[4,106,2,0,5],"span":[1922,2,7]},{"path":[4,106,2,0,1],"span":[1922,8,10]},{"path":[4,106,2,0,3],"span":[1922,13,14]},{"path":[4,106,2,1],"span":[1924,2,21]},{"path":[4,106,2,1,5],"span":[1924,2,8]},{"path":[4,106,2,1,1],"span":[1924,9,16]},{"path":[4,106,2,1,3],"span":[1924,19,20]},{"path":[4,106,2,2],"span":[1926,2,33]},{"path":[4,106,2,2,4],"span":[1926,2,10]},{"path":[4,106,2,2,5],"span":[1926,11,17]},{"path":[4,106,2,2,1],"span":[1926,18,28]},{"path":[4,106,2,2,3],"span":[1926,31,32]},{"path":[4,106,2,3],"span":[1927,2,32]},{"path":[4,106,2,3,4],"span":[1927,2,10]},{"path":[4,106,2,3,5],"span":[1927,11,17]},{"path":[4,106,2,3,1],"span":[1927,18,26]},{"path":[4,106,2,3,3],"span":[1927,29,31]},{"path":[4,106,2,4],"span":[1928,2,38]},{"path":[4,106,2,4,4],"span":[1928,2,10]},{"path":[4,106,2,4,5],"span":[1928,11,17]},{"path":[4,106,2,4,1],"span":[1928,18,33]},{"path":[4,106,2,4,3],"span":[1928,36,37]},{"path":[4,106,2,5],"span":[1930,2,33]},{"path":[4,106,2,5,4],"span":[1930,2,10]},{"path":[4,106,2,5,5],"span":[1930,11,16]},{"path":[4,106,2,5,1],"span":[1930,17,28]},{"path":[4,106,2,5,3],"span":[1930,31,32]},{"path":[4,106,2,6],"span":[1931,2,29]},{"path":[4,106,2,6,4],"span":[1931,2,10]},{"path":[4,106,2,6,5],"span":[1931,11,16]},{"path":[4,106,2,6,1],"span":[1931,17,24]},{"path":[4,106,2,6,3],"span":[1931,27,28]},{"path":[4,106,2,7],"span":[1932,2,31]},{"path":[4,106,2,7,4],"span":[1932,2,10]},{"path":[4,106,2,7,5],"span":[1932,11,16]},{"path":[4,106,2,7,1],"span":[1932,17,26]},{"path":[4,106,2,7,3],"span":[1932,29,30]},{"path":[4,106,2,8],"span":[1934,2,54]},{"path":[4,106,2,8,4],"span":[1934,2,10]},{"path":[4,106,2,8,6],"span":[1934,11,36]},{"path":[4,106,2,8,1],"span":[1934,37,49]},{"path":[4,106,2,8,3],"span":[1934,52,53]},{"path":[4,106,2,9],"span":[1935,2,51]},{"path":[4,106,2,9,4],"span":[1935,2,10]},{"path":[4,106,2,9,6],"span":[1935,11,36]},{"path":[4,106,2,9,1],"span":[1935,37,45]},{"path":[4,106,2,9,3],"span":[1935,48,50]},{"path":[4,106,2,10],"span":[1936,2,51]},{"path":[4,106,2,10,4],"span":[1936,2,10]},{"path":[4,106,2,10,6],"span":[1936,11,36]},{"path":[4,106,2,10,1],"span":[1936,37,45]},{"path":[4,106,2,10,3],"span":[1936,48,50]},{"path":[4,106,2,11],"span":[1937,2,52]},{"path":[4,106,2,11,4],"span":[1937,2,10]},{"path":[4,106,2,11,6],"span":[1937,11,36]},{"path":[4,106,2,11,1],"span":[1937,37,46]},{"path":[4,106,2,11,3],"span":[1937,49,51]},{"path":[4,106,2,12],"span":[1938,2,43]},{"path":[4,106,2,12,4],"span":[1938,2,10]},{"path":[4,106,2,12,5],"span":[1938,11,17]},{"path":[4,106,2,12,1],"span":[1938,18,37]},{"path":[4,106,2,12,3],"span":[1938,40,42]},{"path":[4,106,2,13],"span":[1939,2,38]},{"path":[4,106,2,13,4],"span":[1939,2,10]},{"path":[4,106,2,13,5],"span":[1939,11,17]},{"path":[4,106,2,13,1],"span":[1939,18,32]},{"path":[4,106,2,13,3],"span":[1939,35,37]},{"path":[4,106,2,14],"span":[1940,2,40]},{"path":[4,106,2,14,4],"span":[1940,2,10]},{"path":[4,106,2,14,5],"span":[1940,11,17]},{"path":[4,106,2,14,1],"span":[1940,18,34]},{"path":[4,106,2,14,3],"span":[1940,37,39]},{"path":[4,106,2,15],"span":[1941,2,36]},{"path":[4,106,2,15,4],"span":[1941,2,10]},{"path":[4,106,2,15,5],"span":[1941,11,17]},{"path":[4,106,2,15,1],"span":[1941,18,30]},{"path":[4,106,2,15,3],"span":[1941,33,35]},{"path":[4,106,2,16],"span":[1942,2,43]},{"path":[4,106,2,16,4],"span":[1942,2,10]},{"path":[4,106,2,16,5],"span":[1942,11,17]},{"path":[4,106,2,16,1],"span":[1942,18,37]},{"path":[4,106,2,16,3],"span":[1942,40,42]},{"path":[4,106,2,17],"span":[1943,2,35]},{"path":[4,106,2,17,4],"span":[1943,2,10]},{"path":[4,106,2,17,5],"span":[1943,11,17]},{"path":[4,106,2,17,1],"span":[1943,18,29]},{"path":[4,106,2,17,3],"span":[1943,32,34]},{"path":[4,106,2,18],"span":[1944,2,35]},{"path":[4,106,2,18,4],"span":[1944,2,10]},{"path":[4,106,2,18,5],"span":[1944,11,17]},{"path":[4,106,2,18,1],"span":[1944,18,29]},{"path":[4,106,2,18,3],"span":[1944,32,34]},{"path":[4,106,2,19],"span":[1945,2,37]},{"path":[4,106,2,19,4],"span":[1945,2,10]},{"path":[4,106,2,19,5],"span":[1945,11,17]},{"path":[4,106,2,19,1],"span":[1945,18,31]},{"path":[4,106,2,19,3],"span":[1945,34,36]},{"path":[4,106,2,20],"span":[1946,2,40]},{"path":[4,106,2,20,4],"span":[1946,2,10]},{"path":[4,106,2,20,5],"span":[1946,11,17]},{"path":[4,106,2,20,1],"span":[1946,18,34]},{"path":[4,106,2,20,3],"span":[1946,37,39]},{"path":[4,106,2,21],"span":[1947,2,39]},{"path":[4,106,2,21,4],"span":[1947,2,10]},{"path":[4,106,2,21,5],"span":[1947,11,17]},{"path":[4,106,2,21,1],"span":[1947,18,33]},{"path":[4,106,2,21,3],"span":[1947,36,38]},{"path":[4,106,2,22],"span":[1949,2,32]},{"path":[4,106,2,22,4],"span":[1949,2,10]},{"path":[4,106,2,22,5],"span":[1949,11,17]},{"path":[4,106,2,22,1],"span":[1949,18,26]},{"path":[4,106,2,22,3],"span":[1949,29,31]},{"path":[4,106,2,23],"span":[1951,2,59]},{"path":[4,106,2,23,4],"span":[1951,2,10]},{"path":[4,106,2,23,6],"span":[1951,11,36]},{"path":[4,106,2,23,1],"span":[1951,37,53]},{"path":[4,106,2,23,3],"span":[1951,56,58]},{"path":[4,106,2,24],"span":[1953,2,34],"trailingComments":" filled only when a result of search\n"},{"path":[4,106,2,24,4],"span":[1953,2,10]},{"path":[4,106,2,24,5],"span":[1953,11,16]},{"path":[4,106,2,24,1],"span":[1953,17,28]},{"path":[4,106,2,24,3],"span":[1953,31,33]},{"path":[4,107],"span":[1956,0,1986,1]},{"path":[4,107,1],"span":[1956,8,23]},{"path":[4,107,2,0],"span":[1957,2,15]},{"path":[4,107,2,0,5],"span":[1957,2,7]},{"path":[4,107,2,0,1],"span":[1957,8,10]},{"path":[4,107,2,0,3],"span":[1957,13,14]},{"path":[4,107,2,1],"span":[1958,2,21]},{"path":[4,107,2,1,5],"span":[1958,2,8]},{"path":[4,107,2,1,1],"span":[1958,9,16]},{"path":[4,107,2,1,3],"span":[1958,19,20]},{"path":[4,107,2,2],"span":[1960,2,33]},{"path":[4,107,2,2,4],"span":[1960,2,10]},{"path":[4,107,2,2,5],"span":[1960,11,17]},{"path":[4,107,2,2,1],"span":[1960,18,28]},{"path":[4,107,2,2,3],"span":[1960,31,32]},{"path":[4,107,2,3],"span":[1961,2,36]},{"path":[4,107,2,3,4],"span":[1961,2,10]},{"path":[4,107,2,3,5],"span":[1961,11,17]},{"path":[4,107,2,3,1],"span":[1961,18,31]},{"path":[4,107,2,3,3],"span":[1961,34,35]},{"path":[4,107,2,4],"span":[1962,2,33]},{"path":[4,107,2,4,4],"span":[1962,2,10]},{"path":[4,107,2,4,5],"span":[1962,11,17]},{"path":[4,107,2,4,1],"span":[1962,18,28]},{"path":[4,107,2,4,3],"span":[1962,31,32]},{"path":[4,107,2,5],"span":[1963,2,30]},{"path":[4,107,2,5,4],"span":[1963,2,10]},{"path":[4,107,2,5,5],"span":[1963,11,17]},{"path":[4,107,2,5,1],"span":[1963,18,25]},{"path":[4,107,2,5,3],"span":[1963,28,29]},{"path":[4,107,2,6],"span":[1964,2,31]},{"path":[4,107,2,6,4],"span":[1964,2,10]},{"path":[4,107,2,6,5],"span":[1964,11,17]},{"path":[4,107,2,6,1],"span":[1964,18,26]},{"path":[4,107,2,6,3],"span":[1964,29,30]},{"path":[4,107,2,7],"span":[1966,2,29]},{"path":[4,107,2,7,4],"span":[1966,2,10]},{"path":[4,107,2,7,5],"span":[1966,11,16]},{"path":[4,107,2,7,1],"span":[1966,17,24]},{"path":[4,107,2,7,3],"span":[1966,27,28]},{"path":[4,107,2,8],"span":[1967,2,31]},{"path":[4,107,2,8,4],"span":[1967,2,10]},{"path":[4,107,2,8,5],"span":[1967,11,16]},{"path":[4,107,2,8,1],"span":[1967,17,26]},{"path":[4,107,2,8,3],"span":[1967,29,30]},{"path":[4,107,2,9],"span":[1968,2,32]},{"path":[4,107,2,9,4],"span":[1968,2,10]},{"path":[4,107,2,9,5],"span":[1968,11,16]},{"path":[4,107,2,9,1],"span":[1968,17,26]},{"path":[4,107,2,9,3],"span":[1968,29,31]},{"path":[4,107,2,10],"span":[1970,2,31]},{"path":[4,107,2,10,4],"span":[1970,2,10]},{"path":[4,107,2,10,5],"span":[1970,11,17]},{"path":[4,107,2,10,1],"span":[1970,18,25]},{"path":[4,107,2,10,3],"span":[1970,28,30]},{"path":[4,107,2,11],"span":[1971,2,35]},{"path":[4,107,2,11,4],"span":[1971,2,10]},{"path":[4,107,2,11,5],"span":[1971,11,17]},{"path":[4,107,2,11,1],"span":[1971,18,29]},{"path":[4,107,2,11,3],"span":[1971,32,34]},{"path":[4,107,2,12],"span":[1973,2,55]},{"path":[4,107,2,12,4],"span":[1973,2,10]},{"path":[4,107,2,12,6],"span":[1973,11,36]},{"path":[4,107,2,12,1],"span":[1973,37,49]},{"path":[4,107,2,12,3],"span":[1973,52,54]},{"path":[4,107,2,13],"span":[1974,2,51]},{"path":[4,107,2,13,4],"span":[1974,2,10]},{"path":[4,107,2,13,6],"span":[1974,11,36]},{"path":[4,107,2,13,1],"span":[1974,37,45]},{"path":[4,107,2,13,3],"span":[1974,48,50]},{"path":[4,107,2,14],"span":[1975,2,51]},{"path":[4,107,2,14,4],"span":[1975,2,10]},{"path":[4,107,2,14,6],"span":[1975,11,36]},{"path":[4,107,2,14,1],"span":[1975,37,45]},{"path":[4,107,2,14,3],"span":[1975,48,50]},{"path":[4,107,2,15],"span":[1976,2,52]},{"path":[4,107,2,15,4],"span":[1976,2,10]},{"path":[4,107,2,15,6],"span":[1976,11,36]},{"path":[4,107,2,15,1],"span":[1976,37,46]},{"path":[4,107,2,15,3],"span":[1976,49,51]},{"path":[4,107,2,16],"span":[1977,2,43]},{"path":[4,107,2,16,4],"span":[1977,2,10]},{"path":[4,107,2,16,5],"span":[1977,11,17]},{"path":[4,107,2,16,1],"span":[1977,18,37]},{"path":[4,107,2,16,3],"span":[1977,40,42]},{"path":[4,107,2,17],"span":[1979,2,33]},{"path":[4,107,2,17,4],"span":[1979,2,10]},{"path":[4,107,2,17,5],"span":[1979,11,15]},{"path":[4,107,2,17,1],"span":[1979,16,27]},{"path":[4,107,2,17,3],"span":[1979,30,32]},{"path":[4,107,2,18],"span":[1980,2,37]},{"path":[4,107,2,18,4],"span":[1980,2,10]},{"path":[4,107,2,18,5],"span":[1980,11,15]},{"path":[4,107,2,18,1],"span":[1980,16,31]},{"path":[4,107,2,18,3],"span":[1980,34,36]},{"path":[4,107,2,19],"span":[1981,2,37]},{"path":[4,107,2,19,4],"span":[1981,2,10]},{"path":[4,107,2,19,5],"span":[1981,11,15]},{"path":[4,107,2,19,1],"span":[1981,16,31]},{"path":[4,107,2,19,3],"span":[1981,34,36]},{"path":[4,107,2,20],"span":[1983,2,59]},{"path":[4,107,2,20,4],"span":[1983,2,10]},{"path":[4,107,2,20,6],"span":[1983,11,36]},{"path":[4,107,2,20,1],"span":[1983,37,53]},{"path":[4,107,2,20,3],"span":[1983,56,58]},{"path":[4,107,2,21],"span":[1985,2,35],"trailingComments":" filled only when a result of search\n"},{"path":[4,107,2,21,4],"span":[1985,2,10]},{"path":[4,107,2,21,5],"span":[1985,11,16]},{"path":[4,107,2,21,1],"span":[1985,17,28]},{"path":[4,107,2,21,3],"span":[1985,31,34]},{"path":[4,108],"span":[1988,0,2044,1]},{"path":[4,108,1],"span":[1988,8,22]},{"path":[4,108,2,0],"span":[1989,2,16]},{"path":[4,108,2,0,5],"span":[1989,2,7]},{"path":[4,108,2,0,1],"span":[1989,9,11]},{"path":[4,108,2,0,3],"span":[1989,14,15]},{"path":[4,108,2,1],"span":[1991,2,19]},{"path":[4,108,2,1,5],"span":[1991,2,8]},{"path":[4,108,2,1,1],"span":[1991,9,14]},{"path":[4,108,2,1,3],"span":[1991,17,18]},{"path":[4,108,2,2],"span":[1992,2,32]},{"path":[4,108,2,2,4],"span":[1992,2,10]},{"path":[4,108,2,2,5],"span":[1992,11,17]},{"path":[4,108,2,2,1],"span":[1992,18,27]},{"path":[4,108,2,2,3],"span":[1992,30,31]},{"path":[4,108,2,3],"span":[1993,2,29]},{"path":[4,108,2,3,4],"span":[1993,2,10]},{"path":[4,108,2,3,5],"span":[1993,11,16]},{"path":[4,108,2,3,1],"span":[1993,17,24]},{"path":[4,108,2,3,3],"span":[1993,27,28]},{"path":[4,108,2,4],"span":[1995,2,31]},{"path":[4,108,2,4,4],"span":[1995,2,10]},{"path":[4,108,2,4,5],"span":[1995,11,16]},{"path":[4,108,2,4,1],"span":[1995,17,26]},{"path":[4,108,2,4,3],"span":[1995,29,30]},{"path":[4,108,2,5],"span":[1996,2,30]},{"path":[4,108,2,5,4],"span":[1996,2,10]},{"path":[4,108,2,5,5],"span":[1996,11,15]},{"path":[4,108,2,5,1],"span":[1996,16,25]},{"path":[4,108,2,5,3],"span":[1996,28,29]},{"path":[4,108,2,6],"span":[1997,2,36]},{"path":[4,108,2,6,4],"span":[1997,2,10]},{"path":[4,108,2,6,5],"span":[1997,11,17]},{"path":[4,108,2,6,1],"span":[1997,18,31]},{"path":[4,108,2,6,3],"span":[1997,34,35]},{"path":[4,108,2,7],"span":[1998,2,35]},{"path":[4,108,2,7,4],"span":[1998,2,10]},{"path":[4,108,2,7,5],"span":[1998,11,17]},{"path":[4,108,2,7,1],"span":[1998,18,30]},{"path":[4,108,2,7,3],"span":[1998,33,34]},{"path":[4,108,2,8],"span":[2000,2,33]},{"path":[4,108,2,8,4],"span":[2000,2,10]},{"path":[4,108,2,8,5],"span":[2000,11,17]},{"path":[4,108,2,8,1],"span":[2000,18,27]},{"path":[4,108,2,8,3],"span":[2000,30,32]},{"path":[4,108,2,9],"span":[2001,2,38]},{"path":[4,108,2,9,4],"span":[2001,2,10]},{"path":[4,108,2,9,5],"span":[2001,11,17]},{"path":[4,108,2,9,1],"span":[2001,18,32]},{"path":[4,108,2,9,3],"span":[2001,35,37]},{"path":[4,108,2,10],"span":[2002,2,36]},{"path":[4,108,2,10,4],"span":[2002,2,10]},{"path":[4,108,2,10,5],"span":[2002,11,17]},{"path":[4,108,2,10,1],"span":[2002,18,30]},{"path":[4,108,2,10,3],"span":[2002,33,35]},{"path":[4,108,2,11],"span":[2003,2,40]},{"path":[4,108,2,11,4],"span":[2003,2,10]},{"path":[4,108,2,11,5],"span":[2003,11,17]},{"path":[4,108,2,11,1],"span":[2003,18,34]},{"path":[4,108,2,11,3],"span":[2003,37,39]},{"path":[4,108,2,12],"span":[2004,2,31]},{"path":[4,108,2,12,4],"span":[2004,2,10]},{"path":[4,108,2,12,5],"span":[2004,11,17]},{"path":[4,108,2,12,1],"span":[2004,18,25]},{"path":[4,108,2,12,3],"span":[2004,28,30]},{"path":[4,108,2,13],"span":[2005,2,36]},{"path":[4,108,2,13,4],"span":[2005,2,10]},{"path":[4,108,2,13,5],"span":[2005,11,17]},{"path":[4,108,2,13,1],"span":[2005,18,30]},{"path":[4,108,2,13,3],"span":[2005,33,35]},{"path":[4,108,2,14],"span":[2006,2,35]},{"path":[4,108,2,14,4],"span":[2006,2,10]},{"path":[4,108,2,14,5],"span":[2006,11,16]},{"path":[4,108,2,14,1],"span":[2006,17,29]},{"path":[4,108,2,14,3],"span":[2006,32,34]},{"path":[4,108,2,15],"span":[2007,2,29]},{"path":[4,108,2,15,4],"span":[2007,2,10]},{"path":[4,108,2,15,5],"span":[2007,11,17]},{"path":[4,108,2,15,1],"span":[2007,18,23]},{"path":[4,108,2,15,3],"span":[2007,26,28]},{"path":[4,108,2,16],"span":[2008,2,33]},{"path":[4,108,2,16,4],"span":[2008,2,10]},{"path":[4,108,2,16,5],"span":[2008,11,17]},{"path":[4,108,2,16,1],"span":[2008,18,27]},{"path":[4,108,2,16,3],"span":[2008,30,32]},{"path":[4,108,2,17],"span":[2009,2,32]},{"path":[4,108,2,17,4],"span":[2009,2,10]},{"path":[4,108,2,17,5],"span":[2009,11,17]},{"path":[4,108,2,17,1],"span":[2009,18,26]},{"path":[4,108,2,17,3],"span":[2009,29,31]},{"path":[4,108,2,18],"span":[2010,2,35]},{"path":[4,108,2,18,4],"span":[2010,2,10]},{"path":[4,108,2,18,5],"span":[2010,11,17]},{"path":[4,108,2,18,1],"span":[2010,18,29]},{"path":[4,108,2,18,3],"span":[2010,32,34]},{"path":[4,108,2,19],"span":[2012,2,36]},{"path":[4,108,2,19,4],"span":[2012,2,10]},{"path":[4,108,2,19,5],"span":[2012,11,17]},{"path":[4,108,2,19,1],"span":[2012,18,30]},{"path":[4,108,2,19,3],"span":[2012,33,35]},{"path":[4,108,2,20],"span":[2013,2,38]},{"path":[4,108,2,20,4],"span":[2013,2,10]},{"path":[4,108,2,20,5],"span":[2013,11,16]},{"path":[4,108,2,20,1],"span":[2013,17,32]},{"path":[4,108,2,20,3],"span":[2013,35,37]},{"path":[4,108,2,21],"span":[2014,2,47]},{"path":[4,108,2,21,4],"span":[2014,2,10]},{"path":[4,108,2,21,5],"span":[2014,11,16]},{"path":[4,108,2,21,1],"span":[2014,17,41]},{"path":[4,108,2,21,3],"span":[2014,44,46]},{"path":[4,108,2,22],"span":[2015,2,30]},{"path":[4,108,2,22,4],"span":[2015,2,10]},{"path":[4,108,2,22,5],"span":[2015,11,16]},{"path":[4,108,2,22,1],"span":[2015,17,24]},{"path":[4,108,2,22,3],"span":[2015,27,29]},{"path":[4,108,2,23],"span":[2016,2,29]},{"path":[4,108,2,23,4],"span":[2016,2,10]},{"path":[4,108,2,23,5],"span":[2016,11,16]},{"path":[4,108,2,23,1],"span":[2016,17,23]},{"path":[4,108,2,23,3],"span":[2016,26,28]},{"path":[4,108,2,24],"span":[2017,2,29]},{"path":[4,108,2,24,4],"span":[2017,2,10]},{"path":[4,108,2,24,5],"span":[2017,11,16]},{"path":[4,108,2,24,1],"span":[2017,17,23]},{"path":[4,108,2,24,3],"span":[2017,26,28]},{"path":[4,108,2,25],"span":[2018,2,36]},{"path":[4,108,2,25,4],"span":[2018,2,10]},{"path":[4,108,2,25,5],"span":[2018,11,17]},{"path":[4,108,2,25,1],"span":[2018,18,30]},{"path":[4,108,2,25,3],"span":[2018,33,35]},{"path":[4,108,2,26],"span":[2019,2,39]},{"path":[4,108,2,26,4],"span":[2019,2,10]},{"path":[4,108,2,26,5],"span":[2019,11,16]},{"path":[4,108,2,26,1],"span":[2019,17,33]},{"path":[4,108,2,26,3],"span":[2019,36,38]},{"path":[4,108,2,27],"span":[2020,2,44]},{"path":[4,108,2,27,4],"span":[2020,2,10]},{"path":[4,108,2,27,5],"span":[2020,11,17]},{"path":[4,108,2,27,1],"span":[2020,18,38]},{"path":[4,108,2,27,3],"span":[2020,41,43]},{"path":[4,108,2,28],"span":[2022,2,36]},{"path":[4,108,2,28,4],"span":[2022,2,10]},{"path":[4,108,2,28,5],"span":[2022,11,17]},{"path":[4,108,2,28,1],"span":[2022,18,30]},{"path":[4,108,2,28,3],"span":[2022,33,35]},{"path":[4,108,2,29],"span":[2023,2,37]},{"path":[4,108,2,29,4],"span":[2023,2,10]},{"path":[4,108,2,29,5],"span":[2023,11,16]},{"path":[4,108,2,29,1],"span":[2023,17,31]},{"path":[4,108,2,29,3],"span":[2023,34,36]},{"path":[4,108,2,30],"span":[2024,2,42]},{"path":[4,108,2,30,4],"span":[2024,2,10]},{"path":[4,108,2,30,5],"span":[2024,11,17]},{"path":[4,108,2,30,1],"span":[2024,18,36]},{"path":[4,108,2,30,3],"span":[2024,39,41]},{"path":[4,108,2,31],"span":[2025,2,38]},{"path":[4,108,2,31,4],"span":[2025,2,10]},{"path":[4,108,2,31,5],"span":[2025,11,17]},{"path":[4,108,2,31,1],"span":[2025,18,32]},{"path":[4,108,2,31,3],"span":[2025,35,37]},{"path":[4,108,2,32],"span":[2026,2,42]},{"path":[4,108,2,32,4],"span":[2026,2,10]},{"path":[4,108,2,32,5],"span":[2026,11,17]},{"path":[4,108,2,32,1],"span":[2026,18,36]},{"path":[4,108,2,32,3],"span":[2026,39,41]},{"path":[4,108,2,33],"span":[2027,2,39]},{"path":[4,108,2,33,4],"span":[2027,2,10]},{"path":[4,108,2,33,5],"span":[2027,11,17]},{"path":[4,108,2,33,1],"span":[2027,18,33]},{"path":[4,108,2,33,3],"span":[2027,36,38]},{"path":[4,108,2,34],"span":[2028,2,34]},{"path":[4,108,2,34,4],"span":[2028,2,10]},{"path":[4,108,2,34,5],"span":[2028,11,17]},{"path":[4,108,2,34,1],"span":[2028,18,28]},{"path":[4,108,2,34,3],"span":[2028,31,33]},{"path":[4,108,2,35],"span":[2029,2,34]},{"path":[4,108,2,35,4],"span":[2029,2,10]},{"path":[4,108,2,35,5],"span":[2029,11,17]},{"path":[4,108,2,35,1],"span":[2029,18,28]},{"path":[4,108,2,35,3],"span":[2029,31,33]},{"path":[4,108,2,36],"span":[2030,2,33]},{"path":[4,108,2,36,4],"span":[2030,2,10]},{"path":[4,108,2,36,5],"span":[2030,11,17]},{"path":[4,108,2,36,1],"span":[2030,18,27]},{"path":[4,108,2,36,3],"span":[2030,30,32]},{"path":[4,108,2,37],"span":[2032,2,33]},{"path":[4,108,2,37,4],"span":[2032,2,10]},{"path":[4,108,2,37,5],"span":[2032,11,15]},{"path":[4,108,2,37,1],"span":[2032,16,27]},{"path":[4,108,2,37,3],"span":[2032,30,32]},{"path":[4,108,2,38],"span":[2033,2,36]},{"path":[4,108,2,38,4],"span":[2033,2,10]},{"path":[4,108,2,38,5],"span":[2033,11,15]},{"path":[4,108,2,38,1],"span":[2033,16,30]},{"path":[4,108,2,38,3],"span":[2033,33,35]},{"path":[4,108,2,39],"span":[2034,2,38]},{"path":[4,108,2,39,4],"span":[2034,2,10]},{"path":[4,108,2,39,5],"span":[2034,11,15]},{"path":[4,108,2,39,1],"span":[2034,16,32]},{"path":[4,108,2,39,3],"span":[2034,35,37]},{"path":[4,108,2,40],"span":[2035,2,34]},{"path":[4,108,2,40,4],"span":[2035,2,10]},{"path":[4,108,2,40,5],"span":[2035,11,15]},{"path":[4,108,2,40,1],"span":[2035,16,28]},{"path":[4,108,2,40,3],"span":[2035,31,33]},{"path":[4,108,2,41],"span":[2036,2,33]},{"path":[4,108,2,41,4],"span":[2036,2,10]},{"path":[4,108,2,41,5],"span":[2036,11,15]},{"path":[4,108,2,41,1],"span":[2036,16,27]},{"path":[4,108,2,41,3],"span":[2036,30,32]},{"path":[4,108,2,42],"span":[2037,2,38]},{"path":[4,108,2,42,4],"span":[2037,2,10]},{"path":[4,108,2,42,5],"span":[2037,11,15]},{"path":[4,108,2,42,1],"span":[2037,16,32]},{"path":[4,108,2,42,3],"span":[2037,35,37]},{"path":[4,108,2,43],"span":[2038,2,36]},{"path":[4,108,2,43,4],"span":[2038,2,10]},{"path":[4,108,2,43,5],"span":[2038,11,15]},{"path":[4,108,2,43,1],"span":[2038,16,30]},{"path":[4,108,2,43,3],"span":[2038,33,35]},{"path":[4,108,2,44],"span":[2040,2,59]},{"path":[4,108,2,44,4],"span":[2040,2,10]},{"path":[4,108,2,44,6],"span":[2040,11,36]},{"path":[4,108,2,44,1],"span":[2040,37,53]},{"path":[4,108,2,44,3],"span":[2040,56,58]},{"path":[4,108,2,45],"span":[2042,2,35],"trailingComments":" filled only when a result of search\n"},{"path":[4,108,2,45,4],"span":[2042,2,10]},{"path":[4,108,2,45,5],"span":[2042,11,16]},{"path":[4,108,2,45,1],"span":[2042,17,28]},{"path":[4,108,2,45,3],"span":[2042,31,34]}]},"syntax":"proto3","bufExtension":{"isImport":false,"isSyntaxUnspecified":false}}]}