@lansweeper/multitenant-api-grpc 0.4.82 → 0.4.83
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/multitenant_grpc_pb.d.ts +17 -0
- package/gen-proto/multitenant_grpc_pb.js +33 -0
- package/gen-proto/multitenant_pb.d.ts +46 -0
- package/gen-proto/multitenant_pb.js +352 -0
- package/generated-go/multitenant.pb.go +276 -125
- package/generated-go/multitenant_grpc.pb.go +38 -0
- package/package.json +2 -2
- package/proto/multitenant.proto +11 -0
package/gen-proto/image.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"file":[{"name":"google/protobuf/timestamp.proto","package":"google.protobuf","messageType":[{"name":"Timestamp","field":[{"name":"seconds","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"seconds"},{"name":"nanos","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"nanos"}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"TimestampProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/timestamppb","ccEnableArenas":true,"objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"sourceCodeInfo":{"location":[{"span":[30,0,146,1]},{"path":[12],"span":[30,0,18],"leadingDetachedComments":[" Protocol Buffers - Google's data interchange format\n Copyright 2008 Google Inc. All rights reserved.\n https://developers.google.com/protocol-buffers/\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"]},{"path":[2],"span":[32,0,24]},{"path":[8],"span":[34,0,59]},{"path":[8,37],"span":[34,0,59]},{"path":[8],"span":[35,0,31]},{"path":[8,31],"span":[35,0,31]},{"path":[8],"span":[36,0,73]},{"path":[8,11],"span":[36,0,73]},{"path":[8],"span":[37,0,44]},{"path":[8,1],"span":[37,0,44]},{"path":[8],"span":[38,0,47]},{"path":[8,8],"span":[38,0,47]},{"path":[8],"span":[39,0,34]},{"path":[8,10],"span":[39,0,34]},{"path":[8],"span":[40,0,33]},{"path":[8,36],"span":[40,0,33]},{"path":[4,0],"span":[135,0,146,1],"leadingComments":" A Timestamp represents a point in time independent of any time zone or local\n calendar, encoded as a count of seconds and fractions of seconds at\n nanosecond resolution. The count is relative to an epoch at UTC midnight on\n January 1, 1970, in the proleptic Gregorian calendar which extends the\n Gregorian calendar backwards to year one.\n\n All minutes are 60 seconds long. Leap seconds are \"smeared\" so that no leap\n second table is needed for interpretation, using a [24-hour linear\n smear](https://developers.google.com/time/smear).\n\n The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By\n restricting to that range, we ensure that we can convert to and from [RFC\n 3339](https://www.ietf.org/rfc/rfc3339.txt) date strings.\n\n # Examples\n\n Example 1: Compute Timestamp from POSIX `time()`.\n\n Timestamp timestamp;\n timestamp.set_seconds(time(NULL));\n timestamp.set_nanos(0);\n\n Example 2: Compute Timestamp from POSIX `gettimeofday()`.\n\n struct timeval tv;\n gettimeofday(&tv, NULL);\n\n Timestamp timestamp;\n timestamp.set_seconds(tv.tv_sec);\n timestamp.set_nanos(tv.tv_usec * 1000);\n\n Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`.\n\n FILETIME ft;\n GetSystemTimeAsFileTime(&ft);\n UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime;\n\n // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z\n // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.\n Timestamp timestamp;\n timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL));\n timestamp.set_nanos((INT32) ((ticks % 10000000) * 100));\n\n Example 4: Compute Timestamp from Java `System.currentTimeMillis()`.\n\n long millis = System.currentTimeMillis();\n\n Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)\n .setNanos((int) ((millis % 1000) * 1000000)).build();\n\n\n Example 5: Compute Timestamp from Java `Instant.now()`.\n\n Instant now = Instant.now();\n\n Timestamp timestamp =\n Timestamp.newBuilder().setSeconds(now.getEpochSecond())\n .setNanos(now.getNano()).build();\n\n\n Example 6: Compute Timestamp from current time in Python.\n\n timestamp = Timestamp()\n timestamp.GetCurrentTime()\n\n # JSON Mapping\n\n In JSON format, the Timestamp type is encoded as a string in the\n [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the\n format is \"{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z\"\n where {year} is always expressed using four digits while {month}, {day},\n {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional\n seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution),\n are optional. The \"Z\" suffix indicates the timezone (\"UTC\"); the timezone\n is required. A proto3 JSON serializer should always use UTC (as indicated by\n \"Z\") when printing the Timestamp type and a proto3 JSON parser should be\n able to accept both UTC and other timezones (as indicated by an offset).\n\n For example, \"2017-01-15T01:30:15.01Z\" encodes 15.01 seconds past\n 01:30 UTC on January 15, 2017.\n\n In JavaScript, one can convert a Date object to this format using the\n standard\n [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString)\n method. In Python, a standard `datetime.datetime` object can be converted\n to this format using\n [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with\n the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use\n the Joda Time's [`ISODateTimeFormat.dateTime()`](\n http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D\n ) to obtain a formatter capable of generating timestamps in this format.\n\n\n"},{"path":[4,0,1],"span":[135,8,17]},{"path":[4,0,2,0],"span":[139,2,20],"leadingComments":" Represents seconds of UTC time since Unix epoch\n 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to\n 9999-12-31T23:59:59Z inclusive.\n"},{"path":[4,0,2,0,5],"span":[139,2,7]},{"path":[4,0,2,0,1],"span":[139,8,15]},{"path":[4,0,2,0,3],"span":[139,18,19]},{"path":[4,0,2,1],"span":[145,2,18],"leadingComments":" Non-negative fractions of a second at nanosecond resolution. Negative\n second values with fractions must still have non-negative nanos values\n that count forward in time. Must be from 0 to 999,999,999\n inclusive.\n"},{"path":[4,0,2,1,5],"span":[145,2,7]},{"path":[4,0,2,1,1],"span":[145,8,13]},{"path":[4,0,2,1,3],"span":[145,16,17]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"limits/limits.proto","package":"lansweeper.shared.limits.v1","dependency":["google/protobuf/timestamp.proto"],"messageType":[{"name":"CalculateRiskInsights","field":[{"name":"from_year","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"fromYear","proto3Optional":true},{"name":"from_severity","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.shared.limits.v1.RiskInsightsSeverity","oneofIndex":1,"jsonName":"fromSeverity","proto3Optional":true},{"name":"max","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"max","proto3Optional":true}],"oneofDecl":[{"name":"_from_year"},{"name":"_from_severity"},{"name":"_max"}]},{"name":"ExpirableAllowedEntities","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"expires_at","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":0,"jsonName":"expiresAt","proto3Optional":true}],"oneofDecl":[{"name":"_expires_at"}]},{"name":"BaseLimit","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"value"},{"name":"allowed_entities","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.ExpirableAllowedEntities","jsonName":"allowedEntities"}],"reservedRange":[{"start":2,"end":3}]},{"name":"RiskInsights","field":[{"name":"view_assets","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.BaseLimit","jsonName":"viewAssets"}]},{"name":"Assets","field":[{"name":"view_risk_insights","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.BaseLimit","jsonName":"viewRiskInsights"},{"name":"view_lifecycle","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.BaseLimit","jsonName":"viewLifecycle"}]},{"name":"Scopes","field":[{"name":"create_max","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"createMax"}]},{"name":"Attachments","field":[{"name":"max_bytes_per_asset","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"maxBytesPerAsset"}]},{"name":"SiteLimits","field":[{"name":"tier","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.shared.limits.v1.SiteLimitsTiers","jsonName":"tier"},{"name":"risk_insights","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.RiskInsights","oneofIndex":0,"jsonName":"riskInsights","proto3Optional":true},{"name":"assets","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.Assets","oneofIndex":1,"jsonName":"assets","proto3Optional":true},{"name":"scopes","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.Scopes","jsonName":"scopes"},{"name":"attachments","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.Attachments","jsonName":"attachments"}],"oneofDecl":[{"name":"_risk_insights"},{"name":"_assets"}],"reservedRange":[{"start":2,"end":3}]}],"enumType":[{"name":"SiteLimitsTiers","value":[{"name":"SUBSCRIPTION_TYPE_VALUE_STARTER","number":0},{"name":"SUBSCRIPTION_TYPE_VALUE_PRO","number":1},{"name":"SUBSCRIPTION_TYPE_VALUE_ENTERPRISE","number":2}]},{"name":"RiskInsightsSeverity","value":[{"name":"RISK_INSIGHT_SEVERITY_LOW","number":0},{"name":"RISK_INSIGHT_SEVERITY_MEDIUM","number":1},{"name":"RISK_INSIGHT_SEVERITY_HIGH","number":2},{"name":"RISK_INSIGHT_SEVERITY_CRITICAL","number":3}]}],"options":{"goPackage":"github.com/Lansweeper/lansweeperapis/packages/shared/generated-go;limits"},"sourceCodeInfo":{"location":[{"span":[0,0,61,1]},{"path":[12],"span":[0,0,18]},{"path":[2],"span":[2,0,36]},{"path":[8],"span":[3,0,95]},{"path":[8,11],"span":[3,0,95]},{"path":[3,0],"span":[4,0,41]},{"path":[5,0],"span":[7,0,11,1]},{"path":[5,0,1],"span":[7,5,20]},{"path":[5,0,2,0],"span":[8,2,38]},{"path":[5,0,2,0,1],"span":[8,2,33]},{"path":[5,0,2,0,2],"span":[8,36,37]},{"path":[5,0,2,1],"span":[9,2,34]},{"path":[5,0,2,1,1],"span":[9,2,29]},{"path":[5,0,2,1,2],"span":[9,32,33]},{"path":[5,0,2,2],"span":[10,2,41]},{"path":[5,0,2,2,1],"span":[10,2,36]},{"path":[5,0,2,2,2],"span":[10,39,40]},{"path":[5,1],"span":[13,0,18,1]},{"path":[5,1,1],"span":[13,5,25]},{"path":[5,1,2,0],"span":[14,2,32]},{"path":[5,1,2,0,1],"span":[14,2,27]},{"path":[5,1,2,0,2],"span":[14,30,31]},{"path":[5,1,2,1],"span":[15,2,35]},{"path":[5,1,2,1,1],"span":[15,2,30]},{"path":[5,1,2,1,2],"span":[15,33,34]},{"path":[5,1,2,2],"span":[16,2,33]},{"path":[5,1,2,2,1],"span":[16,2,28]},{"path":[5,1,2,2,2],"span":[16,31,32]},{"path":[5,1,2,3],"span":[17,2,37]},{"path":[5,1,2,3,1],"span":[17,2,32]},{"path":[5,1,2,3,2],"span":[17,35,36]},{"path":[4,0],"span":[20,0,24,1]},{"path":[4,0,1],"span":[20,8,29]},{"path":[4,0,2,0],"span":[21,2,32]},{"path":[4,0,2,0,4],"span":[21,2,10]},{"path":[4,0,2,0,5],"span":[21,11,17]},{"path":[4,0,2,0,1],"span":[21,18,27]},{"path":[4,0,2,0,3],"span":[21,30,31]},{"path":[4,0,2,1],"span":[22,2,50]},{"path":[4,0,2,1,4],"span":[22,2,10]},{"path":[4,0,2,1,6],"span":[22,11,31]},{"path":[4,0,2,1,1],"span":[22,32,45]},{"path":[4,0,2,1,3],"span":[22,48,49]},{"path":[4,0,2,2],"span":[23,2,25]},{"path":[4,0,2,2,4],"span":[23,2,10]},{"path":[4,0,2,2,5],"span":[23,11,16]},{"path":[4,0,2,2,1],"span":[23,17,20]},{"path":[4,0,2,2,3],"span":[23,23,24]},{"path":[4,1],"span":[26,0,29,1]},{"path":[4,1,1],"span":[26,8,32]},{"path":[4,1,2,0],"span":[27,2,17]},{"path":[4,1,2,0,5],"span":[27,2,8]},{"path":[4,1,2,0,1],"span":[27,9,12]},{"path":[4,1,2,0,3],"span":[27,15,16]},{"path":[4,1,2,1],"span":[28,2,52]},{"path":[4,1,2,1,4],"span":[28,2,10]},{"path":[4,1,2,1,6],"span":[28,11,36]},{"path":[4,1,2,1,1],"span":[28,37,47]},{"path":[4,1,2,1,3],"span":[28,50,51]},{"path":[4,2],"span":[31,0,35,1]},{"path":[4,2,1],"span":[31,8,17]},{"path":[4,2,9],"span":[32,2,13]},{"path":[4,2,9,0],"span":[32,11,12]},{"path":[4,2,9,0,1],"span":[32,11,12]},{"path":[4,2,2,0],"span":[33,2,17]},{"path":[4,2,2,0,5],"span":[33,2,6]},{"path":[4,2,2,0,1],"span":[33,7,12]},{"path":[4,2,2,0,3],"span":[33,15,16]},{"path":[4,2,2,1],"span":[34,2,57]},{"path":[4,2,2,1,4],"span":[34,2,10]},{"path":[4,2,2,1,6],"span":[34,11,35]},{"path":[4,2,2,1,1],"span":[34,36,52]},{"path":[4,2,2,1,3],"span":[34,55,56]},{"path":[4,3],"span":[37,0,39,1]},{"path":[4,3,1],"span":[37,8,20]},{"path":[4,3,2,0],"span":[38,2,28]},{"path":[4,3,2,0,6],"span":[38,2,11]},{"path":[4,3,2,0,1],"span":[38,12,23]},{"path":[4,3,2,0,3],"span":[38,26,27]},{"path":[4,4],"span":[41,0,44,1]},{"path":[4,4,1],"span":[41,8,14]},{"path":[4,4,2,0],"span":[42,2,35]},{"path":[4,4,2,0,6],"span":[42,2,11]},{"path":[4,4,2,0,1],"span":[42,12,30]},{"path":[4,4,2,0,3],"span":[42,33,34]},{"path":[4,4,2,1],"span":[43,2,31]},{"path":[4,4,2,1,6],"span":[43,2,11]},{"path":[4,4,2,1,1],"span":[43,12,26]},{"path":[4,4,2,1,3],"span":[43,29,30]},{"path":[4,5],"span":[46,0,48,1]},{"path":[4,5,1],"span":[46,8,14]},{"path":[4,5,2,0],"span":[47,2,23]},{"path":[4,5,2,0,5],"span":[47,2,7]},{"path":[4,5,2,0,1],"span":[47,8,18]},{"path":[4,5,2,0,3],"span":[47,21,22]},{"path":[4,6],"span":[50,0,52,1]},{"path":[4,6,1],"span":[50,8,19]},{"path":[4,6,2,0],"span":[51,2,32]},{"path":[4,6,2,0,5],"span":[51,2,7]},{"path":[4,6,2,0,1],"span":[51,8,27]},{"path":[4,6,2,0,3],"span":[51,30,31]},{"path":[4,7],"span":[54,0,61,1]},{"path":[4,7,1],"span":[54,8,18]},{"path":[4,7,9],"span":[55,2,13]},{"path":[4,7,9,0],"span":[55,11,12]},{"path":[4,7,9,0,1],"span":[55,11,12]},{"path":[4,7,2,0],"span":[56,2,27]},{"path":[4,7,2,0,6],"span":[56,2,17]},{"path":[4,7,2,0,1],"span":[56,18,22]},{"path":[4,7,2,0,3],"span":[56,25,26]},{"path":[4,7,2,1],"span":[57,2,42]},{"path":[4,7,2,1,4],"span":[57,2,10]},{"path":[4,7,2,1,6],"span":[57,11,23]},{"path":[4,7,2,1,1],"span":[57,24,37]},{"path":[4,7,2,1,3],"span":[57,40,41]},{"path":[4,7,2,2],"span":[58,2,29]},{"path":[4,7,2,2,4],"span":[58,2,10]},{"path":[4,7,2,2,6],"span":[58,11,17]},{"path":[4,7,2,2,1],"span":[58,18,24]},{"path":[4,7,2,2,3],"span":[58,27,28]},{"path":[4,7,2,3],"span":[59,2,20]},{"path":[4,7,2,3,6],"span":[59,2,8]},{"path":[4,7,2,3,1],"span":[59,9,15]},{"path":[4,7,2,3,3],"span":[59,18,19]},{"path":[4,7,2,4],"span":[60,2,30]},{"path":[4,7,2,4,6],"span":[60,2,13]},{"path":[4,7,2,4,1],"span":[60,14,25]},{"path":[4,7,2,4,3],"span":[60,28,29]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"google/protobuf/empty.proto","package":"google.protobuf","messageType":[{"name":"Empty"}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"EmptyProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/emptypb","ccEnableArenas":true,"objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"sourceCodeInfo":{"location":[{"span":[30,0,51,16]},{"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,69]},{"path":[8,11],"span":[35,0,69]},{"path":[8],"span":[36,0,44]},{"path":[8,1],"span":[36,0,44]},{"path":[8],"span":[37,0,43]},{"path":[8,8],"span":[37,0,43]},{"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":[8],"span":[40,0,31]},{"path":[8,31],"span":[40,0,31]},{"path":[4,0],"span":[51,0,16],"leadingComments":" A generic empty message that you can re-use to avoid defining duplicated\n empty messages in your APIs. A typical example is to use it as the request\n or the response type of an API method. For instance:\n\n service Foo {\n rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);\n }\n\n The JSON representation for `Empty` is empty JSON object `{}`.\n"},{"path":[4,0,1],"span":[51,8,13]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"proto/multitenant.proto","package":"lansweeper.multitenant.v1","dependency":["limits/limits.proto","google/protobuf/empty.proto"],"messageType":[{"name":"PreviewAccount","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"username","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"username"},{"name":"name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"surname","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"surname"},{"name":"email","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"email"},{"name":"image_url","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"imageUrl"}]},{"name":"GetPreviewAccountByIdRequest","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"}]},{"name":"GetPreviewAccountByIdResponse","field":[{"name":"account","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewAccount","jsonName":"account"}]},{"name":"SearchPreviewAccountsBySiteIdsRequest","field":[{"name":"site_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"siteIds"},{"name":"search","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"search"}]},{"name":"SearchPreviewAccountsBySiteIdsResponse","field":[{"name":"accounts","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewAccount","jsonName":"accounts"}]},{"name":"GetPreviewAccountsByAccountIdsRequest","field":[{"name":"account_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"accountIds"}]},{"name":"GetPreviewAccountsByAccountIdsResponse","field":[{"name":"accounts","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewAccount","jsonName":"accounts"}]},{"name":"SiteMetadata","field":[{"name":"payg","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"payg"}]},{"name":"PreviewSite","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"company_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"companyName"},{"name":"logo_url","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"logoUrl"},{"name":"mode","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.SiteMode","jsonName":"mode"},{"name":"created_by","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewAccount","jsonName":"createdBy"},{"name":"current_subscription_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"currentSubscriptionId"},{"name":"deleted_on","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"deletedOn"},{"name":"metadata","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.SiteMetadata","jsonName":"metadata"}]},{"name":"PatchSiteModeRequest","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"mode","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.SiteMode","jsonName":"mode"}]},{"name":"PatchSiteModeResponse","field":[{"name":"success","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"success"}]},{"name":"Profile","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"site","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewSite","jsonName":"site"},{"name":"is_owner","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isOwner"}]},{"name":"ListProfilesByAccountIdRequest","field":[{"name":"account_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"accountId"},{"name":"include_blocks","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"includeBlocks"},{"name":"being_owner_or_administrator","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"beingOwnerOrAdministrator"}]},{"name":"ListProfilesByAccountIdResponse","field":[{"name":"profile","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Profile","jsonName":"profile"}]},{"name":"ListAuthorizedLinkProfilesRequest","field":[{"name":"account_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"accountId"},{"name":"include_blocks","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"includeBlocks","options":{"deprecated":true}}]},{"name":"ListAuthorizedLinkProfilesResponse","field":[{"name":"profile","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Profile","jsonName":"profile"}]},{"name":"CheckAccessToSiteByAccountIdRequest","field":[{"name":"account_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"accountId"},{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"only_owner","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"onlyOwner"},{"name":"user_info","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest.UserInfo","jsonName":"userInfo"}],"nestedType":[{"name":"UserInfo","field":[{"name":"has_mfa","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"hasMfa"},{"name":"is_sso_login","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isSsoLogin"}]}]},{"name":"CheckAccessToSiteByAccountIdResponse","field":[{"name":"access","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"access"}]},{"name":"CheckAccessToSiteByClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"CheckAccessToSiteByClientIdResponse","field":[{"name":"access","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"access"}]},{"name":"Install","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"display_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"displayName"},{"name":"description","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"description"},{"name":"status","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"status"},{"name":"fqdn","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"fqdn"},{"name":"created_by_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"createdById"},{"name":"global_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"globalId"},{"name":"state","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install.InstallState","jsonName":"state"},{"name":"created_at","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"createdAt"},{"name":"license","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"license"},{"name":"type","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"type","options":{"deprecated":true}},{"name":"install_type","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallType","jsonName":"installType"},{"name":"external_id","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"externalId"}],"nestedType":[{"name":"InstallState","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallStateValue","jsonName":"value"},{"name":"deleted_on","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"deletedOn"},{"name":"deleted_data_started_on","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"deletedDataStartedOn"}]}]},{"name":"InstallCredentials","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"client_secret","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientSecret"}]},{"name":"GetInstallsCountBySiteRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"GetInstallsCountResponse","field":[{"name":"count","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"count"}]},{"name":"GetInstallsByIdRequest","field":[{"name":"install_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"installIds"}]},{"name":"GetInstallsByIdResponse","field":[{"name":"install","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"}]},{"name":"GetInstallsByExternalIdsRequest","field":[{"name":"external_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"externalIds"}]},{"name":"GetInstallsByExternalIdsResponse","field":[{"name":"install","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"}]},{"name":"NullableInstallType","field":[{"name":"data","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallType","oneofIndex":0,"jsonName":"data"}],"oneofDecl":[{"name":"kind"}]},{"name":"GetInstallsBySiteRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"filter","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter","jsonName":"filter"}],"nestedType":[{"name":"Filter","field":[{"name":"state","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallStateValue","jsonName":"state"},{"name":"type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallType","jsonName":"type","options":{"deprecated":true}},{"name":"install_type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.NullableInstallType","jsonName":"installType"}]}]},{"name":"GetInstallsBySiteResponse","field":[{"name":"install","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"}]},{"name":"GetInstallsForMultipleSitesRequest","field":[{"name":"site_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"siteIds"}]},{"name":"GetInstallsForMultipleSitesResponse","field":[{"name":"installs","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"installs"}]},{"name":"GetInstallbyClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"}]},{"name":"GetInstallbyClientIdResponse","field":[{"name":"install","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"}]},{"name":"CreateInstallRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"display_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"displayName"},{"name":"description","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"description"},{"name":"status","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"status"},{"name":"fqdn","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"fqdn"},{"name":"created_by_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"createdById"},{"name":"global_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"globalId"},{"name":"type","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallType","jsonName":"type"},{"name":"client_id","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"}],"reservedRange":[{"start":2,"end":3},{"start":8,"end":9}]},{"name":"CreateInstallResponse","field":[{"name":"install","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"},{"name":"credentials","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.InstallCredentials","jsonName":"credentials"}]},{"name":"CreateAndLinkInstallRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"display_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"displayName"},{"name":"description","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"description"},{"name":"global_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"globalId"},{"name":"type","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallType","jsonName":"type"},{"name":"created_by_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"createdById"},{"name":"client_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"external_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"externalId"}]},{"name":"CreateAndLinkInstallResponse","field":[{"name":"install","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"},{"name":"credentials","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.InstallCredentials","jsonName":"credentials"},{"name":"license","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"license"}]},{"name":"UpdateInstallByClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"display_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"displayName"},{"name":"description","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"description"},{"name":"status","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"status"},{"name":"fqdn","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"fqdn"},{"name":"syncer_settings","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.UpdateInstallByClientIdRequest.SyncerSettings","jsonName":"syncerSettings"}],"nestedType":[{"name":"SyncerSettings","field":[{"name":"send_changed_data_timeout","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"sendChangedDataTimeout"},{"name":"send_fast_changing_data_timeout","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"sendFastChangingDataTimeout"},{"name":"send_non_changed_data_timeout","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"sendNonChangedDataTimeout"},{"name":"sync_interval_in_seconds","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"syncIntervalInSeconds"}]}]},{"name":"UpdateInstallByClientIdResponse","field":[{"name":"install","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"}]},{"name":"RotateInstallByClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"track_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"trackId"}]},{"name":"RotateInstallByClientIdResponse","field":[{"name":"success","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"success"},{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"old_install_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"oldInstallId"},{"name":"new_install_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"newInstallId"}]},{"name":"UnlinkInstallByClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"track_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"trackId"},{"name":"remove_data","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"removeData"},{"name":"from_onprem","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"fromOnprem"}]},{"name":"UnlinkInstallByClientIdResponse","field":[{"name":"success","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"success"}]},{"name":"LinkTrialInstallByClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"display_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"displayName"},{"name":"description","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"description"},{"name":"global_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"globalId"},{"name":"type","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallType","jsonName":"type"}]},{"name":"LinkTrialInstallByClientIdResponse","field":[{"name":"install","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"},{"name":"credentials","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.InstallCredentials","jsonName":"credentials"},{"name":"site","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewSite","jsonName":"site"},{"name":"license","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"license"}]},{"name":"RemoveInstallDataBySiteIdRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"install_ids","number":2,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"installIds"},{"name":"user_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"userId"}]},{"name":"RemoveInstallDataBySiteIdResponse","field":[{"name":"result","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse.Result","jsonName":"result"}],"nestedType":[{"name":"Result","field":[{"name":"install_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"installId"},{"name":"queued","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"queued"}]}]},{"name":"GetDuplicatedInstallsByGlobalIdRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"global_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"globalId"}]},{"name":"GetDuplicatedInstallsByGlobalIdResponse","field":[{"name":"install","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"}]},{"name":"GetUserPermissionsRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"account_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"accountId"}]},{"name":"GetUserPermissionsResponse","field":[{"name":"roles","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetUserPermissionsResponse.Role","jsonName":"roles"}],"nestedType":[{"name":"AuthorizationAction","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"derived_permissions","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"derivedPermissions"}]},{"name":"Scope","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"}]},{"name":"Role","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"actions","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetUserPermissionsResponse.AuthorizationAction","jsonName":"actions"},{"name":"installations","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"installations"},{"name":"scopes","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetUserPermissionsResponse.Scope","jsonName":"scopes"}]}]},{"name":"ValidateApplicationPersonalAccessTokenRequest","field":[{"name":"personal_access_token","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"personalAccessToken"},{"name":"trace_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"traceId"}]},{"name":"ValidateApplicationPersonalAccessTokenResponse","field":[{"name":"user_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"userId"},{"name":"application_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"applicationId"}]},{"name":"DisableWebhookEmailRequest","field":[{"name":"application_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"applicationName"},{"name":"email","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"email","options":{"deprecated":true}},{"name":"errors","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.DisableWebhookEmailRequest.WebhookError","jsonName":"errors"},{"name":"payload_url","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"payloadUrl"},{"name":"webhook_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"webhookName"},{"name":"webhook_url","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"webhookUrl","options":{"deprecated":true}},{"name":"webhook_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"webhookId"},{"name":"application_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"applicationId"}],"nestedType":[{"name":"WebhookError","field":[{"name":"code","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"code"},{"name":"messsage","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"messsage","options":{"deprecated":true}},{"name":"timestamp","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"timestamp"},{"name":"message","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"message"}]}]},{"name":"DisableWebhookEmailResponse","field":[{"name":"mail_sent","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"mailSent"}]},{"name":"Site","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"}]},{"name":"AuthorizedSitesRequest","field":[{"name":"application_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"applicationId"},{"name":"trace_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"traceId"}]},{"name":"AuthorizedSitesResponse","field":[{"name":"site","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Site","jsonName":"site"}]},{"name":"GetAccountIdsBySiteIdRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"GetAccountIdsBySiteIdResponse","field":[{"name":"account_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"accountIds"}]},{"name":"CheckManagerInApplicationRequest","field":[{"name":"application_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"applicationId"},{"name":"manager_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"managerId"}]},{"name":"CheckManagerInApplicationResponse","field":[{"name":"is_manager","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isManager"}]},{"name":"Subscription","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.SubscriptionType","jsonName":"type"},{"name":"assets_limit","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"assetsLimit"},{"name":"expiration_date","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"expirationDate"},{"name":"created_at","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"createdAt"},{"name":"created_by","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"createdBy"}]},{"name":"UpdateSiteSubscriptionRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.SubscriptionType","jsonName":"type"},{"name":"assets_limit","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"assetsLimit"},{"name":"expiration_date","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"expirationDate"},{"name":"updated_by","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"updatedBy"}]},{"name":"UpdateSiteSubscriptionResponse","field":[{"name":"subscription","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Subscription","jsonName":"subscription"}]},{"name":"CreateTrialSiteAndInstallerRequest","field":[{"name":"user_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"userId"}]},{"name":"CreateTrialSiteAndInstallerResponse","field":[{"name":"installer_credentials","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"installerCredentials"}]},{"name":"GetInstallationLicenseByClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"}]},{"name":"GetInstallationLicenseByClientIdResponse","field":[{"name":"license","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"license"}]},{"name":"AllProfileExistsRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"emails","number":2,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"emails"}],"options":{"deprecated":true}},{"name":"AllProfileExistsResponse","field":[{"name":"all","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"all"}],"options":{"deprecated":true}},{"name":"AllProfilesExistRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"emails","number":2,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"emails"}]},{"name":"AllProfilesExistResponse","field":[{"name":"all","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"all"},{"name":"profiles","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Profile","jsonName":"profiles"},{"name":"createdBy","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewAccount","jsonName":"createdBy"}]},{"name":"SendInviteLocalUsersMailRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"SendInviteLocalUsersMailResponse","field":[{"name":"sent","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"sent"}]},{"name":"CreateLinkingCodeRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"account_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"accountId"}]},{"name":"CreateLinkingCodeResponse","field":[{"name":"code","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"code"}]},{"name":"GetSiteIdsWithIntegrationData","field":[{"name":"site_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"siteIds"}]},{"name":"CheckStandardizedSoftwareEnabledRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"CheckStandardizedSoftwareEnabledResponse","field":[{"name":"is_enabled","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isEnabled"}]},{"name":"UpdateSiteMetadataRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"key","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"value"}]},{"name":"UpdateSiteMetadataResponse","field":[{"name":"success","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"success"}]},{"name":"UpdateSiteSkipDataExportRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"skip_data_export","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"skipDataExport"},{"name":"updated_by","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"updatedBy"}]},{"name":"UpdateSiteSkipDataExportResponse","field":[{"name":"success","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"success"}]},{"name":"GetSiteLimitsRequest","field":[{"name":"site_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"siteIds"}]},{"name":"GetSiteLimitsResponse","field":[{"name":"site_limits","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetSiteLimitsResponse.SiteLimitsEntry","jsonName":"siteLimits"}],"nestedType":[{"name":"SiteLimitsEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.SiteLimits","jsonName":"value"}],"options":{"mapEntry":true}}]},{"name":"GetSiteHierarchyIdsRequest","field":[{"name":"offset_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"offsetId","proto3Optional":true},{"name":"limit","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":1,"jsonName":"limit","proto3Optional":true}],"oneofDecl":[{"name":"_offset_id"},{"name":"_limit"}]},{"name":"SiteHierarchyIdsItem","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"parent_type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.SiteHierarchyIdsItem.ParentType","jsonName":"parentType"},{"name":"parent_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"parentId"},{"name":"is_customer_account","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isCustomerAccount"},{"name":"skip_hivemind_export","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"skipHivemindExport"}],"enumType":[{"name":"ParentType","value":[{"name":"UNKNOWN","number":0},{"name":"NONE","number":1},{"name":"ORG","number":2},{"name":"MSMP","number":3}]}]},{"name":"SiteHierarchyIdsPageInfo","field":[{"name":"offset_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"offsetId"},{"name":"limit","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"limit"},{"name":"has_next_page","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"hasNextPage"}]},{"name":"GetSiteHierarchyIdsResponse","field":[{"name":"count","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"count"},{"name":"items","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.SiteHierarchyIdsItem","jsonName":"items"},{"name":"page_info","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.SiteHierarchyIdsPageInfo","jsonName":"pageInfo"}]},{"name":"GetSitesOptions","field":[{"name":"offset_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"offsetId","proto3Optional":true},{"name":"limit","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":1,"jsonName":"limit","proto3Optional":true}],"oneofDecl":[{"name":"_offset_id"},{"name":"_limit"}]},{"name":"GetSitesRequest","field":[{"name":"options","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetSitesOptions","oneofIndex":0,"jsonName":"options","proto3Optional":true}],"oneofDecl":[{"name":"_options"}]},{"name":"SiteItemMetadata","field":[{"name":"enabled_metadata_fields_federation","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"enabledMetadataFieldsFederation"},{"name":"enabled_custom_fields_federation","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"enabledCustomFieldsFederation"}]},{"name":"SiteItem","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"metadata","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.SiteItemMetadata","oneofIndex":0,"jsonName":"metadata","proto3Optional":true}],"oneofDecl":[{"name":"_metadata"}]},{"name":"GetSitesPageInfo","field":[{"name":"offset_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"offsetId"},{"name":"limit","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"limit"},{"name":"has_next_page","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"hasNextPage"}]},{"name":"GetSitesResponse","field":[{"name":"count","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"count"},{"name":"items","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.SiteItem","jsonName":"items"},{"name":"page_info","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetSitesPageInfo","jsonName":"pageInfo"}]},{"name":"MsmpPagination","field":[{"name":"offset","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"offset"},{"name":"limit","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"limit"}]},{"name":"MsmpPaginationInfo","field":[{"name":"total","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"total"},{"name":"offset","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"offset"},{"name":"limit","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"limit"},{"name":"has_next_page","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"hasNextPage"}]},{"name":"GetMsmpOrganizationListRequest","field":[{"name":"user_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"userId"},{"name":"msmp_pagination","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetMsmpOrganizationListRequest.MsmpPaginationRequest","jsonName":"msmpPagination"},{"name":"trace_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"traceId"}],"nestedType":[{"name":"MsmpPaginationRequest","field":[{"name":"offset","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"offset"},{"name":"limit","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"limit"}]}]},{"name":"GetMsmpOrganizationListResponse","field":[{"name":"organizations","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.MsmpOrganization","jsonName":"organizations"},{"name":"msmp_page_info","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.MsmpPageInfo","jsonName":"msmpPageInfo"}],"nestedType":[{"name":"MsmpOrganization","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"}]},{"name":"MsmpPageInfo","field":[{"name":"total","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"total"},{"name":"offset","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"offset"},{"name":"limit","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"limit"},{"name":"has_next_page","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"hasNextPage"}]}]},{"name":"GetMsmpOrganizationAccountRequest","field":[{"name":"user_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"userId"},{"name":"msmp_organization_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"msmpOrganizationId"},{"name":"trace_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"traceId"}]},{"name":"GetMsmpOrganizationAccountResponse","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"role","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"role"},{"name":"is_pending","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isPending"},{"name":"has_accessed_multi_site_management_portal","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"hasAccessedMultiSiteManagementPortal"}]},{"name":"GetSitesByMsmpOrganizationIdRequest","field":[{"name":"user_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"userId"},{"name":"msmp_organization_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"msmpOrganizationId"},{"name":"msmp_pagination","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.MsmpPagination","jsonName":"msmpPagination"},{"name":"trace_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"traceId"}]},{"name":"GetSitesByMsmpOrganizationIdResponse","field":[{"name":"sites","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewSite","jsonName":"sites"},{"name":"msmp_pagination_info","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.MsmpPaginationInfo","jsonName":"msmpPaginationInfo"}]},{"name":"SetEnabledCustomFieldsFederationRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"enabled","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"enabled"}]},{"name":"IsCustomFieldsFederationEnabledRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"IsMetadataFieldsFederationEnabledRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"IsCustomFieldsFederationEnabledResponse","field":[{"name":"is_enabled","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isEnabled"}]},{"name":"IsMetadataFieldsFederationEnabledResponse","field":[{"name":"is_enabled","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isEnabled"}]},{"name":"GetSitePreviewRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"GetSitePreviewResponse","field":[{"name":"site","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewSite","jsonName":"site"}]},{"name":"CreateOwnerPersonalAccessTokenRequest","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"partner_integration_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"partnerIntegrationId"},{"name":"site_ids","number":3,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"siteIds"},{"name":"description","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"description","proto3Optional":true}],"oneofDecl":[{"name":"_description"}]},{"name":"CreateOwnerPersonalAccessTokenResponse","field":[{"name":"token","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"token"}]},{"name":"GetInstallationSettingsRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"install_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"installId"}]},{"name":"GetInstallationSettingsResponse","field":[{"name":"digitalLicenseToken","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"digitalLicenseToken"}]},{"name":"CreateFlowBuilderBotAccountRequest","field":[{"name":"trace_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"traceId"},{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"CreateFlowBuilderBotAccountResponse","field":[{"name":"account_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"accountId"}]}],"enumType":[{"name":"SiteMode","value":[{"name":"UNESPECIFIED","number":0},{"name":"CLOUD_NATIVE","number":1},{"name":"DEMO","number":2},{"name":"HYBRID","number":3},{"name":"DUAL","number":4}]},{"name":"InstallStateValue","value":[{"name":"INSTALL_STATE_VALUE_UNESPECIFIED","number":0},{"name":"INSTALL_STATE_VALUE_SYNC","number":1},{"name":"INSTALL_STATE_VALUE_UNSYNC","number":2}]},{"name":"InstallType","value":[{"name":"IT","number":0},{"name":"OT","number":1},{"name":"IT_AGENT","number":2},{"name":"CLOUD","number":3},{"name":"NETWORK_DISCOVERY","number":4},{"name":"MANUAL","number":5}]},{"name":"SubscriptionType","value":[{"name":"SUBSCRIPTION_TYPE_VALUE_UNESPECIFIED","number":0},{"name":"SUBSCRIPTION_TYPE_VALUE_TRIAL","number":1},{"name":"SUBSCRIPTION_TYPE_VALUE_FREEWARE","number":2},{"name":"SUBSCRIPTION_TYPE_VALUE_STARTER","number":3},{"name":"SUBSCRIPTION_TYPE_VALUE_PRO","number":4},{"name":"SUBSCRIPTION_TYPE_VALUE_ENTERPRISE","number":5}]}],"service":[{"name":"Multitenant","method":[{"name":"CheckAccessToSiteByAccountId","inputType":".lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest","outputType":".lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdResponse","options":{}},{"name":"CheckAccessToSiteByClientId","inputType":".lansweeper.multitenant.v1.CheckAccessToSiteByClientIdRequest","outputType":".lansweeper.multitenant.v1.CheckAccessToSiteByClientIdResponse","options":{}},{"name":"GetPreviewAccountById","inputType":".lansweeper.multitenant.v1.GetPreviewAccountByIdRequest","outputType":".lansweeper.multitenant.v1.GetPreviewAccountByIdResponse","options":{}},{"name":"SearchPreviewAccountsBySiteIds","inputType":".lansweeper.multitenant.v1.SearchPreviewAccountsBySiteIdsRequest","outputType":".lansweeper.multitenant.v1.SearchPreviewAccountsBySiteIdsResponse","options":{}},{"name":"GetPreviewAccountsByAccountIds","inputType":".lansweeper.multitenant.v1.GetPreviewAccountsByAccountIdsRequest","outputType":".lansweeper.multitenant.v1.GetPreviewAccountsByAccountIdsResponse","options":{}},{"name":"ListProfilesByAccountId","inputType":".lansweeper.multitenant.v1.ListProfilesByAccountIdRequest","outputType":".lansweeper.multitenant.v1.ListProfilesByAccountIdResponse","options":{}},{"name":"ListAuthorizedLinkProfiles","inputType":".lansweeper.multitenant.v1.ListAuthorizedLinkProfilesRequest","outputType":".lansweeper.multitenant.v1.ListAuthorizedLinkProfilesResponse","options":{}},{"name":"PatchSiteMode","inputType":".lansweeper.multitenant.v1.PatchSiteModeRequest","outputType":".lansweeper.multitenant.v1.PatchSiteModeResponse","options":{}},{"name":"CreateInstall","inputType":".lansweeper.multitenant.v1.CreateInstallRequest","outputType":".lansweeper.multitenant.v1.CreateInstallResponse","options":{}},{"name":"CreateAndLinkInstall","inputType":".lansweeper.multitenant.v1.CreateAndLinkInstallRequest","outputType":".lansweeper.multitenant.v1.CreateAndLinkInstallResponse","options":{}},{"name":"GetInstallsBySite","inputType":".lansweeper.multitenant.v1.GetInstallsBySiteRequest","outputType":".lansweeper.multitenant.v1.GetInstallsBySiteResponse","options":{}},{"name":"GetInstallsforMultipleSites","inputType":".lansweeper.multitenant.v1.GetInstallsForMultipleSitesRequest","outputType":".lansweeper.multitenant.v1.GetInstallsForMultipleSitesResponse","options":{}},{"name":"GetInstallsById","inputType":".lansweeper.multitenant.v1.GetInstallsByIdRequest","outputType":".lansweeper.multitenant.v1.GetInstallsByIdResponse","options":{}},{"name":"GetInstallsCountBySite","inputType":".lansweeper.multitenant.v1.GetInstallsCountBySiteRequest","outputType":".lansweeper.multitenant.v1.GetInstallsCountResponse","options":{}},{"name":"GetInstallbyClientId","inputType":".lansweeper.multitenant.v1.GetInstallbyClientIdRequest","outputType":".lansweeper.multitenant.v1.GetInstallbyClientIdResponse","options":{}},{"name":"UpdateInstallByClientId","inputType":".lansweeper.multitenant.v1.UpdateInstallByClientIdRequest","outputType":".lansweeper.multitenant.v1.UpdateInstallByClientIdResponse","options":{}},{"name":"RotateInstallByClientId","inputType":".lansweeper.multitenant.v1.RotateInstallByClientIdRequest","outputType":".lansweeper.multitenant.v1.RotateInstallByClientIdResponse","options":{}},{"name":"LinkTrialInstallByClientId","inputType":".lansweeper.multitenant.v1.LinkTrialInstallByClientIdRequest","outputType":".lansweeper.multitenant.v1.LinkTrialInstallByClientIdResponse","options":{}},{"name":"UnlinkInstallByClientId","inputType":".lansweeper.multitenant.v1.UnlinkInstallByClientIdRequest","outputType":".lansweeper.multitenant.v1.UnlinkInstallByClientIdResponse","options":{}},{"name":"RemoveInstallDataBySiteId","inputType":".lansweeper.multitenant.v1.RemoveInstallDataBySiteIdRequest","outputType":".lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse","options":{}},{"name":"GetDuplicatedInstallsByGlobalId","inputType":".lansweeper.multitenant.v1.GetDuplicatedInstallsByGlobalIdRequest","outputType":".lansweeper.multitenant.v1.GetDuplicatedInstallsByGlobalIdResponse","options":{}},{"name":"GetUserPermissions","inputType":".lansweeper.multitenant.v1.GetUserPermissionsRequest","outputType":".lansweeper.multitenant.v1.GetUserPermissionsResponse","options":{}},{"name":"ValidateApplicationPersonalAccessToken","inputType":".lansweeper.multitenant.v1.ValidateApplicationPersonalAccessTokenRequest","outputType":".lansweeper.multitenant.v1.ValidateApplicationPersonalAccessTokenResponse","options":{}},{"name":"SendDisabledWebhookEmail","inputType":".lansweeper.multitenant.v1.DisableWebhookEmailRequest","outputType":".lansweeper.multitenant.v1.DisableWebhookEmailResponse","options":{}},{"name":"GetAuthorizedSitesByApplicationId","inputType":".lansweeper.multitenant.v1.AuthorizedSitesRequest","outputType":".lansweeper.multitenant.v1.AuthorizedSitesResponse","options":{}},{"name":"GetAccountIdsBySiteId","inputType":".lansweeper.multitenant.v1.GetAccountIdsBySiteIdRequest","outputType":".lansweeper.multitenant.v1.GetAccountIdsBySiteIdResponse","options":{}},{"name":"CheckManagerInApplication","inputType":".lansweeper.multitenant.v1.CheckManagerInApplicationRequest","outputType":".lansweeper.multitenant.v1.CheckManagerInApplicationResponse","options":{}},{"name":"UpdateSiteSubscription","inputType":".lansweeper.multitenant.v1.UpdateSiteSubscriptionRequest","outputType":".lansweeper.multitenant.v1.UpdateSiteSubscriptionResponse","options":{}},{"name":"CreateTrialSiteAndInstaller","inputType":".lansweeper.multitenant.v1.CreateTrialSiteAndInstallerRequest","outputType":".lansweeper.multitenant.v1.CreateTrialSiteAndInstallerResponse","options":{}},{"name":"GetInstallationLicenseByClientId","inputType":".lansweeper.multitenant.v1.GetInstallationLicenseByClientIdRequest","outputType":".lansweeper.multitenant.v1.GetInstallationLicenseByClientIdResponse","options":{}},{"name":"AllProfilesExist","inputType":".lansweeper.multitenant.v1.AllProfilesExistRequest","outputType":".lansweeper.multitenant.v1.AllProfilesExistResponse","options":{}},{"name":"SendInviteLocalUsersMail","inputType":".lansweeper.multitenant.v1.SendInviteLocalUsersMailRequest","outputType":".lansweeper.multitenant.v1.SendInviteLocalUsersMailResponse","options":{}},{"name":"AllProfileExists","inputType":".lansweeper.multitenant.v1.AllProfileExistsRequest","outputType":".lansweeper.multitenant.v1.AllProfileExistsResponse","options":{"deprecated":true}},{"name":"CreateLinkingCode","inputType":".lansweeper.multitenant.v1.CreateLinkingCodeRequest","outputType":".lansweeper.multitenant.v1.CreateLinkingCodeResponse","options":{}},{"name":"GetSiteIdsWithIntegrationBySiteId","inputType":".lansweeper.multitenant.v1.GetSiteIdsWithIntegrationData","outputType":".lansweeper.multitenant.v1.GetSiteIdsWithIntegrationData","options":{}},{"name":"CheckStandardizedSoftwareEnabled","inputType":".lansweeper.multitenant.v1.CheckStandardizedSoftwareEnabledRequest","outputType":".lansweeper.multitenant.v1.CheckStandardizedSoftwareEnabledResponse","options":{}},{"name":"UpdateSiteMetadata","inputType":".lansweeper.multitenant.v1.UpdateSiteMetadataRequest","outputType":".lansweeper.multitenant.v1.UpdateSiteMetadataResponse","options":{}},{"name":"GetSiteLimits","inputType":".lansweeper.multitenant.v1.GetSiteLimitsRequest","outputType":".lansweeper.multitenant.v1.GetSiteLimitsResponse","options":{}},{"name":"GetMsmpOrganizationList","inputType":".lansweeper.multitenant.v1.GetMsmpOrganizationListRequest","outputType":".lansweeper.multitenant.v1.GetMsmpOrganizationListResponse","options":{}},{"name":"GetMsmpOrganizationAccount","inputType":".lansweeper.multitenant.v1.GetMsmpOrganizationAccountRequest","outputType":".lansweeper.multitenant.v1.GetMsmpOrganizationAccountResponse","options":{}},{"name":"GetSitesByMsmpOrganizationId","inputType":".lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdRequest","outputType":".lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdResponse","options":{}},{"name":"GetInstallsByExternalIds","inputType":".lansweeper.multitenant.v1.GetInstallsByExternalIdsRequest","outputType":".lansweeper.multitenant.v1.GetInstallsByExternalIdsResponse","options":{}},{"name":"SetEnabledCustomFieldsFederation","inputType":".lansweeper.multitenant.v1.SetEnabledCustomFieldsFederationRequest","outputType":".google.protobuf.Empty","options":{}},{"name":"IsCustomFieldsFederationEnabled","inputType":".lansweeper.multitenant.v1.IsCustomFieldsFederationEnabledRequest","outputType":".lansweeper.multitenant.v1.IsCustomFieldsFederationEnabledResponse","options":{}},{"name":"IsMetadataFieldsFederationEnabled","inputType":".lansweeper.multitenant.v1.IsMetadataFieldsFederationEnabledRequest","outputType":".lansweeper.multitenant.v1.IsMetadataFieldsFederationEnabledResponse","options":{}},{"name":"GetSitePreview","inputType":".lansweeper.multitenant.v1.GetSitePreviewRequest","outputType":".lansweeper.multitenant.v1.GetSitePreviewResponse","options":{}},{"name":"UpdateSiteSkipDataExport","inputType":".lansweeper.multitenant.v1.UpdateSiteSkipDataExportRequest","outputType":".lansweeper.multitenant.v1.UpdateSiteSkipDataExportResponse","options":{}},{"name":"GetSiteHierarchyIds","inputType":".lansweeper.multitenant.v1.GetSiteHierarchyIdsRequest","outputType":".lansweeper.multitenant.v1.GetSiteHierarchyIdsResponse","options":{}},{"name":"GetSites","inputType":".lansweeper.multitenant.v1.GetSitesRequest","outputType":".lansweeper.multitenant.v1.GetSitesResponse","options":{}},{"name":"CreateOwnerPersonalAccessToken","inputType":".lansweeper.multitenant.v1.CreateOwnerPersonalAccessTokenRequest","outputType":".lansweeper.multitenant.v1.CreateOwnerPersonalAccessTokenResponse","options":{}},{"name":"GetInstallationSettings","inputType":".lansweeper.multitenant.v1.GetInstallationSettingsRequest","outputType":".lansweeper.multitenant.v1.GetInstallationSettingsResponse","options":{}},{"name":"CreateFlowBuilderBotAccount","inputType":".lansweeper.multitenant.v1.CreateFlowBuilderBotAccountRequest","outputType":".lansweeper.multitenant.v1.CreateFlowBuilderBotAccountResponse","options":{}}]}],"options":{"goPackage":"./generated-go"},"sourceCodeInfo":{"location":[{"span":[0,0,704,1]},{"path":[12],"span":[0,0,18]},{"path":[2],"span":[1,0,34]},{"path":[8],"span":[2,0,37]},{"path":[8,11],"span":[2,0,37]},{"path":[3,0],"span":[4,0,29]},{"path":[3,1],"span":[5,0,37]},{"path":[4,0],"span":[7,0,14,1]},{"path":[4,0,1],"span":[7,8,22]},{"path":[4,0,2,0],"span":[8,2,16]},{"path":[4,0,2,0,5],"span":[8,2,8]},{"path":[4,0,2,0,1],"span":[8,9,11]},{"path":[4,0,2,0,3],"span":[8,14,15]},{"path":[4,0,2,1],"span":[9,2,22]},{"path":[4,0,2,1,5],"span":[9,2,8]},{"path":[4,0,2,1,1],"span":[9,9,17]},{"path":[4,0,2,1,3],"span":[9,20,21]},{"path":[4,0,2,2],"span":[10,2,18]},{"path":[4,0,2,2,5],"span":[10,2,8]},{"path":[4,0,2,2,1],"span":[10,9,13]},{"path":[4,0,2,2,3],"span":[10,16,17]},{"path":[4,0,2,3],"span":[11,2,21]},{"path":[4,0,2,3,5],"span":[11,2,8]},{"path":[4,0,2,3,1],"span":[11,9,16]},{"path":[4,0,2,3,3],"span":[11,19,20]},{"path":[4,0,2,4],"span":[12,2,19]},{"path":[4,0,2,4,5],"span":[12,2,8]},{"path":[4,0,2,4,1],"span":[12,9,14]},{"path":[4,0,2,4,3],"span":[12,17,18]},{"path":[4,0,2,5],"span":[13,2,23]},{"path":[4,0,2,5,5],"span":[13,2,8]},{"path":[4,0,2,5,1],"span":[13,9,18]},{"path":[4,0,2,5,3],"span":[13,21,22]},{"path":[4,1],"span":[16,0,18,1]},{"path":[4,1,1],"span":[16,8,36]},{"path":[4,1,2,0],"span":[17,2,16]},{"path":[4,1,2,0,5],"span":[17,2,8]},{"path":[4,1,2,0,1],"span":[17,9,11]},{"path":[4,1,2,0,3],"span":[17,14,15]},{"path":[4,2],"span":[19,0,21,1]},{"path":[4,2,1],"span":[19,8,37]},{"path":[4,2,2,0],"span":[20,2,29]},{"path":[4,2,2,0,6],"span":[20,2,16]},{"path":[4,2,2,0,1],"span":[20,17,24]},{"path":[4,2,2,0,3],"span":[20,27,28]},{"path":[4,3],"span":[22,0,25,1]},{"path":[4,3,1],"span":[22,8,45]},{"path":[4,3,2,0],"span":[23,2,31]},{"path":[4,3,2,0,4],"span":[23,2,10]},{"path":[4,3,2,0,5],"span":[23,11,17]},{"path":[4,3,2,0,1],"span":[23,18,26]},{"path":[4,3,2,0,3],"span":[23,29,30]},{"path":[4,3,2,1],"span":[24,2,20]},{"path":[4,3,2,1,5],"span":[24,2,8]},{"path":[4,3,2,1,1],"span":[24,9,15]},{"path":[4,3,2,1,3],"span":[24,18,19]},{"path":[4,4],"span":[26,0,28,1]},{"path":[4,4,1],"span":[26,8,46]},{"path":[4,4,2,0],"span":[27,2,39]},{"path":[4,4,2,0,4],"span":[27,2,10]},{"path":[4,4,2,0,6],"span":[27,11,25]},{"path":[4,4,2,0,1],"span":[27,26,34]},{"path":[4,4,2,0,3],"span":[27,37,38]},{"path":[4,5],"span":[29,0,31,1]},{"path":[4,5,1],"span":[29,8,45]},{"path":[4,5,2,0],"span":[30,2,34]},{"path":[4,5,2,0,4],"span":[30,2,10]},{"path":[4,5,2,0,5],"span":[30,11,17]},{"path":[4,5,2,0,1],"span":[30,18,29]},{"path":[4,5,2,0,3],"span":[30,32,33]},{"path":[4,6],"span":[32,0,34,1]},{"path":[4,6,1],"span":[32,8,46]},{"path":[4,6,2,0],"span":[33,2,39]},{"path":[4,6,2,0,4],"span":[33,2,10]},{"path":[4,6,2,0,6],"span":[33,11,25]},{"path":[4,6,2,0,1],"span":[33,26,34]},{"path":[4,6,2,0,3],"span":[33,37,38]},{"path":[5,0],"span":[35,0,41,1]},{"path":[5,0,1],"span":[35,5,13]},{"path":[5,0,2,0],"span":[36,2,19]},{"path":[5,0,2,0,1],"span":[36,2,14]},{"path":[5,0,2,0,2],"span":[36,17,18]},{"path":[5,0,2,1],"span":[37,2,19]},{"path":[5,0,2,1,1],"span":[37,2,14]},{"path":[5,0,2,1,2],"span":[37,17,18]},{"path":[5,0,2,2],"span":[38,2,11]},{"path":[5,0,2,2,1],"span":[38,2,6]},{"path":[5,0,2,2,2],"span":[38,9,10]},{"path":[5,0,2,3],"span":[39,2,13]},{"path":[5,0,2,3,1],"span":[39,2,8]},{"path":[5,0,2,3,2],"span":[39,11,12]},{"path":[5,0,2,4],"span":[40,2,11]},{"path":[5,0,2,4,1],"span":[40,2,6]},{"path":[5,0,2,4,2],"span":[40,9,10]},{"path":[4,7],"span":[42,0,44,1]},{"path":[4,7,1],"span":[42,8,20]},{"path":[4,7,2,0],"span":[43,2,16]},{"path":[4,7,2,0,5],"span":[43,2,6]},{"path":[4,7,2,0,1],"span":[43,7,11]},{"path":[4,7,2,0,3],"span":[43,14,15]},{"path":[4,8],"span":[45,0,55,1]},{"path":[4,8,1],"span":[45,8,19]},{"path":[4,8,2,0],"span":[46,2,16]},{"path":[4,8,2,0,5],"span":[46,2,8]},{"path":[4,8,2,0,1],"span":[46,9,11]},{"path":[4,8,2,0,3],"span":[46,14,15]},{"path":[4,8,2,1],"span":[47,2,18]},{"path":[4,8,2,1,5],"span":[47,2,8]},{"path":[4,8,2,1,1],"span":[47,9,13]},{"path":[4,8,2,1,3],"span":[47,16,17]},{"path":[4,8,2,2],"span":[48,2,26]},{"path":[4,8,2,2,5],"span":[48,2,8]},{"path":[4,8,2,2,1],"span":[48,9,21]},{"path":[4,8,2,2,3],"span":[48,24,25]},{"path":[4,8,2,3],"span":[49,2,22]},{"path":[4,8,2,3,5],"span":[49,2,8]},{"path":[4,8,2,3,1],"span":[49,9,17]},{"path":[4,8,2,3,3],"span":[49,20,21]},{"path":[4,8,2,4],"span":[50,2,20]},{"path":[4,8,2,4,6],"span":[50,2,10]},{"path":[4,8,2,4,1],"span":[50,11,15]},{"path":[4,8,2,4,3],"span":[50,18,19]},{"path":[4,8,2,5],"span":[51,2,32]},{"path":[4,8,2,5,6],"span":[51,2,16]},{"path":[4,8,2,5,1],"span":[51,17,27]},{"path":[4,8,2,5,3],"span":[51,30,31]},{"path":[4,8,2,6],"span":[52,2,37]},{"path":[4,8,2,6,5],"span":[52,2,8]},{"path":[4,8,2,6,1],"span":[52,9,32]},{"path":[4,8,2,6,3],"span":[52,35,36]},{"path":[4,8,2,7],"span":[53,2,24]},{"path":[4,8,2,7,5],"span":[53,2,8]},{"path":[4,8,2,7,1],"span":[53,9,19]},{"path":[4,8,2,7,3],"span":[53,22,23]},{"path":[4,8,2,8],"span":[54,2,28]},{"path":[4,8,2,8,6],"span":[54,2,14]},{"path":[4,8,2,8,1],"span":[54,15,23]},{"path":[4,8,2,8,3],"span":[54,26,27]},{"path":[4,9],"span":[56,0,59,1]},{"path":[4,9,1],"span":[56,8,28]},{"path":[4,9,2,0],"span":[57,2,16]},{"path":[4,9,2,0,5],"span":[57,2,8]},{"path":[4,9,2,0,1],"span":[57,9,11]},{"path":[4,9,2,0,3],"span":[57,14,15]},{"path":[4,9,2,1],"span":[58,2,20]},{"path":[4,9,2,1,6],"span":[58,2,10]},{"path":[4,9,2,1,1],"span":[58,11,15]},{"path":[4,9,2,1,3],"span":[58,18,19]},{"path":[4,10],"span":[60,0,62,1]},{"path":[4,10,1],"span":[60,8,29]},{"path":[4,10,2,0],"span":[61,2,19]},{"path":[4,10,2,0,5],"span":[61,2,6]},{"path":[4,10,2,0,1],"span":[61,7,14]},{"path":[4,10,2,0,3],"span":[61,17,18]},{"path":[4,11],"span":[63,0,68,1]},{"path":[4,11,1],"span":[63,8,15]},{"path":[4,11,2,0],"span":[64,2,16]},{"path":[4,11,2,0,5],"span":[64,2,8]},{"path":[4,11,2,0,1],"span":[64,9,11]},{"path":[4,11,2,0,3],"span":[64,14,15]},{"path":[4,11,2,1],"span":[65,2,21]},{"path":[4,11,2,1,5],"span":[65,2,8]},{"path":[4,11,2,1,1],"span":[65,9,16]},{"path":[4,11,2,1,3],"span":[65,19,20]},{"path":[4,11,2,2],"span":[66,2,23]},{"path":[4,11,2,2,6],"span":[66,2,13]},{"path":[4,11,2,2,1],"span":[66,14,18]},{"path":[4,11,2,2,3],"span":[66,21,22]},{"path":[4,11,2,3],"span":[67,2,20]},{"path":[4,11,2,3,5],"span":[67,2,6]},{"path":[4,11,2,3,1],"span":[67,7,15]},{"path":[4,11,2,3,3],"span":[67,18,19]},{"path":[4,12],"span":[69,0,73,1]},{"path":[4,12,1],"span":[69,8,38]},{"path":[4,12,2,0],"span":[70,2,24]},{"path":[4,12,2,0,5],"span":[70,2,8]},{"path":[4,12,2,0,1],"span":[70,9,19]},{"path":[4,12,2,0,3],"span":[70,22,23]},{"path":[4,12,2,1],"span":[71,2,26]},{"path":[4,12,2,1,5],"span":[71,2,6]},{"path":[4,12,2,1,1],"span":[71,7,21]},{"path":[4,12,2,1,3],"span":[71,24,25]},{"path":[4,12,2,2],"span":[72,2,40]},{"path":[4,12,2,2,5],"span":[72,2,6]},{"path":[4,12,2,2,1],"span":[72,7,35]},{"path":[4,12,2,2,3],"span":[72,38,39]},{"path":[4,13],"span":[74,0,76,1]},{"path":[4,13,1],"span":[74,8,39]},{"path":[4,13,2,0],"span":[75,2,31]},{"path":[4,13,2,0,4],"span":[75,2,10]},{"path":[4,13,2,0,6],"span":[75,11,18]},{"path":[4,13,2,0,1],"span":[75,19,26]},{"path":[4,13,2,0,3],"span":[75,29,30]},{"path":[4,14],"span":[77,0,80,1]},{"path":[4,14,1],"span":[77,8,41]},{"path":[4,14,2,0],"span":[78,2,24]},{"path":[4,14,2,0,5],"span":[78,2,8]},{"path":[4,14,2,0,1],"span":[78,9,19]},{"path":[4,14,2,0,3],"span":[78,22,23]},{"path":[4,14,2,1],"span":[79,2,46]},{"path":[4,14,2,1,5],"span":[79,2,6]},{"path":[4,14,2,1,1],"span":[79,7,21]},{"path":[4,14,2,1,3],"span":[79,24,25]},{"path":[4,14,2,1,8],"span":[79,26,45]},{"path":[4,14,2,1,8,3],"span":[79,27,44]},{"path":[4,15],"span":[81,0,83,1]},{"path":[4,15,1],"span":[81,8,42]},{"path":[4,15,2,0],"span":[82,2,31]},{"path":[4,15,2,0,4],"span":[82,2,10]},{"path":[4,15,2,0,6],"span":[82,11,18]},{"path":[4,15,2,0,1],"span":[82,19,26]},{"path":[4,15,2,0,3],"span":[82,29,30]},{"path":[4,16],"span":[84,0,93,1]},{"path":[4,16,1],"span":[84,8,43]},{"path":[4,16,2,0],"span":[85,2,24]},{"path":[4,16,2,0,5],"span":[85,2,8]},{"path":[4,16,2,0,1],"span":[85,9,19]},{"path":[4,16,2,0,3],"span":[85,22,23]},{"path":[4,16,2,1],"span":[86,2,21]},{"path":[4,16,2,1,5],"span":[86,2,8]},{"path":[4,16,2,1,1],"span":[86,9,16]},{"path":[4,16,2,1,3],"span":[86,19,20]},{"path":[4,16,2,2],"span":[87,2,22]},{"path":[4,16,2,2,5],"span":[87,2,6]},{"path":[4,16,2,2,1],"span":[87,7,17]},{"path":[4,16,2,2,3],"span":[87,20,21]},{"path":[4,16,3,0],"span":[88,2,91,3]},{"path":[4,16,3,0,1],"span":[88,10,18]},{"path":[4,16,3,0,2,0],"span":[89,4,21]},{"path":[4,16,3,0,2,0,5],"span":[89,4,8]},{"path":[4,16,3,0,2,0,1],"span":[89,9,16]},{"path":[4,16,3,0,2,0,3],"span":[89,19,20]},{"path":[4,16,3,0,2,1],"span":[90,4,26]},{"path":[4,16,3,0,2,1,5],"span":[90,4,8]},{"path":[4,16,3,0,2,1,1],"span":[90,9,21]},{"path":[4,16,3,0,2,1,3],"span":[90,24,25]},{"path":[4,16,2,3],"span":[92,2,25]},{"path":[4,16,2,3,6],"span":[92,2,10]},{"path":[4,16,2,3,1],"span":[92,11,20]},{"path":[4,16,2,3,3],"span":[92,23,24]},{"path":[4,17],"span":[94,0,96,1]},{"path":[4,17,1],"span":[94,8,44]},{"path":[4,17,2,0],"span":[95,2,18]},{"path":[4,17,2,0,5],"span":[95,2,6]},{"path":[4,17,2,0,1],"span":[95,7,13]},{"path":[4,17,2,0,3],"span":[95,16,17]},{"path":[4,18],"span":[97,0,100,1]},{"path":[4,18,1],"span":[97,8,42]},{"path":[4,18,2,0],"span":[98,2,23]},{"path":[4,18,2,0,5],"span":[98,2,8]},{"path":[4,18,2,0,1],"span":[98,9,18]},{"path":[4,18,2,0,3],"span":[98,21,22]},{"path":[4,18,2,1],"span":[99,2,21]},{"path":[4,18,2,1,5],"span":[99,2,8]},{"path":[4,18,2,1,1],"span":[99,9,16]},{"path":[4,18,2,1,3],"span":[99,19,20]},{"path":[4,19],"span":[101,0,103,1]},{"path":[4,19,1],"span":[101,8,43]},{"path":[4,19,2,0],"span":[102,2,18]},{"path":[4,19,2,0,5],"span":[102,2,6]},{"path":[4,19,2,0,1],"span":[102,7,13]},{"path":[4,19,2,0,3],"span":[102,16,17]},{"path":[5,1],"span":[104,0,108,1]},{"path":[5,1,1],"span":[104,5,22]},{"path":[5,1,2,0],"span":[105,2,39]},{"path":[5,1,2,0,1],"span":[105,2,34]},{"path":[5,1,2,0,2],"span":[105,37,38]},{"path":[5,1,2,1],"span":[106,2,31]},{"path":[5,1,2,1,1],"span":[106,2,26]},{"path":[5,1,2,1,2],"span":[106,29,30]},{"path":[5,1,2,2],"span":[107,2,33]},{"path":[5,1,2,2,1],"span":[107,2,28]},{"path":[5,1,2,2,2],"span":[107,31,32]},{"path":[4,20],"span":[109,0,129,1]},{"path":[4,20,1],"span":[109,8,15]},{"path":[4,20,2,0],"span":[110,2,16]},{"path":[4,20,2,0,5],"span":[110,2,8]},{"path":[4,20,2,0,1],"span":[110,9,11]},{"path":[4,20,2,0,3],"span":[110,14,15]},{"path":[4,20,2,1],"span":[111,2,21]},{"path":[4,20,2,1,5],"span":[111,2,8]},{"path":[4,20,2,1,1],"span":[111,9,16]},{"path":[4,20,2,1,3],"span":[111,19,20]},{"path":[4,20,2,2],"span":[112,2,26]},{"path":[4,20,2,2,5],"span":[112,2,8]},{"path":[4,20,2,2,1],"span":[112,9,21]},{"path":[4,20,2,2,3],"span":[112,24,25]},{"path":[4,20,2,3],"span":[113,2,25]},{"path":[4,20,2,3,5],"span":[113,2,8]},{"path":[4,20,2,3,1],"span":[113,9,20]},{"path":[4,20,2,3,3],"span":[113,23,24]},{"path":[4,20,2,4],"span":[114,2,20]},{"path":[4,20,2,4,5],"span":[114,2,8]},{"path":[4,20,2,4,1],"span":[114,9,15]},{"path":[4,20,2,4,3],"span":[114,18,19]},{"path":[4,20,2,5],"span":[115,2,18]},{"path":[4,20,2,5,5],"span":[115,2,8]},{"path":[4,20,2,5,1],"span":[115,9,13]},{"path":[4,20,2,5,3],"span":[115,16,17]},{"path":[4,20,2,6],"span":[116,2,27]},{"path":[4,20,2,6,5],"span":[116,2,8]},{"path":[4,20,2,6,1],"span":[116,9,22]},{"path":[4,20,2,6,3],"span":[116,25,26]},{"path":[4,20,2,7],"span":[117,2,23]},{"path":[4,20,2,7,5],"span":[117,2,8]},{"path":[4,20,2,7,1],"span":[117,9,18]},{"path":[4,20,2,7,3],"span":[117,21,22]},{"path":[4,20,3,0],"span":[118,2,122,3]},{"path":[4,20,3,0,1],"span":[118,10,22]},{"path":[4,20,3,0,2,0],"span":[119,4,32]},{"path":[4,20,3,0,2,0,6],"span":[119,4,21]},{"path":[4,20,3,0,2,0,1],"span":[119,22,27]},{"path":[4,20,3,0,2,0,3],"span":[119,30,31]},{"path":[4,20,3,0,2,1],"span":[120,4,26]},{"path":[4,20,3,0,2,1,5],"span":[120,4,10]},{"path":[4,20,3,0,2,1,1],"span":[120,11,21]},{"path":[4,20,3,0,2,1,3],"span":[120,24,25]},{"path":[4,20,3,0,2,2],"span":[121,4,39]},{"path":[4,20,3,0,2,2,5],"span":[121,4,10]},{"path":[4,20,3,0,2,2,1],"span":[121,11,34]},{"path":[4,20,3,0,2,2,3],"span":[121,37,38]},{"path":[4,20,2,8],"span":[123,2,25]},{"path":[4,20,2,8,6],"span":[123,2,14]},{"path":[4,20,2,8,1],"span":[123,15,20]},{"path":[4,20,2,8,3],"span":[123,23,24]},{"path":[4,20,2,9],"span":[124,2,25]},{"path":[4,20,2,9,5],"span":[124,2,8]},{"path":[4,20,2,9,1],"span":[124,9,19]},{"path":[4,20,2,9,3],"span":[124,22,24]},{"path":[4,20,2,10],"span":[125,2,22]},{"path":[4,20,2,10,5],"span":[125,2,8]},{"path":[4,20,2,10,1],"span":[125,9,16]},{"path":[4,20,2,10,3],"span":[125,19,21]},{"path":[4,20,2,11],"span":[126,2,39]},{"path":[4,20,2,11,5],"span":[126,2,8]},{"path":[4,20,2,11,1],"span":[126,9,13]},{"path":[4,20,2,11,3],"span":[126,16,18]},{"path":[4,20,2,11,8],"span":[126,19,38]},{"path":[4,20,2,11,8,3],"span":[126,20,37]},{"path":[4,20,2,12],"span":[127,2,32]},{"path":[4,20,2,12,6],"span":[127,2,13]},{"path":[4,20,2,12,1],"span":[127,14,26]},{"path":[4,20,2,12,3],"span":[127,29,31]},{"path":[4,20,2,13],"span":[128,2,26]},{"path":[4,20,2,13,5],"span":[128,2,8]},{"path":[4,20,2,13,1],"span":[128,9,20]},{"path":[4,20,2,13,3],"span":[128,23,25]},{"path":[4,21],"span":[130,0,133,1]},{"path":[4,21,1],"span":[130,8,26]},{"path":[4,21,2,0],"span":[131,2,23]},{"path":[4,21,2,0,5],"span":[131,2,8]},{"path":[4,21,2,0,1],"span":[131,9,18]},{"path":[4,21,2,0,3],"span":[131,21,22]},{"path":[4,21,2,1],"span":[132,2,27]},{"path":[4,21,2,1,5],"span":[132,2,8]},{"path":[4,21,2,1,1],"span":[132,9,22]},{"path":[4,21,2,1,3],"span":[132,25,26]},{"path":[4,22],"span":[134,0,136,1]},{"path":[4,22,1],"span":[134,8,37]},{"path":[4,22,2,0],"span":[135,2,21]},{"path":[4,22,2,0,5],"span":[135,2,8]},{"path":[4,22,2,0,1],"span":[135,9,16]},{"path":[4,22,2,0,3],"span":[135,19,20]},{"path":[4,23],"span":[137,0,139,1]},{"path":[4,23,1],"span":[137,8,32]},{"path":[4,23,2,0],"span":[138,2,18]},{"path":[4,23,2,0,5],"span":[138,2,7]},{"path":[4,23,2,0,1],"span":[138,8,13]},{"path":[4,23,2,0,3],"span":[138,16,17]},{"path":[4,24],"span":[140,0,142,1]},{"path":[4,24,1],"span":[140,8,30]},{"path":[4,24,2,0],"span":[141,2,34]},{"path":[4,24,2,0,4],"span":[141,2,10]},{"path":[4,24,2,0,5],"span":[141,11,17]},{"path":[4,24,2,0,1],"span":[141,18,29]},{"path":[4,24,2,0,3],"span":[141,32,33]},{"path":[4,25],"span":[143,0,145,1]},{"path":[4,25,1],"span":[143,8,31]},{"path":[4,25,2,0],"span":[144,2,31]},{"path":[4,25,2,0,4],"span":[144,2,10]},{"path":[4,25,2,0,6],"span":[144,11,18]},{"path":[4,25,2,0,1],"span":[144,19,26]},{"path":[4,25,2,0,3],"span":[144,29,30]},{"path":[4,26],"span":[146,0,148,1]},{"path":[4,26,1],"span":[146,8,39]},{"path":[4,26,2,0],"span":[147,2,35]},{"path":[4,26,2,0,4],"span":[147,2,10]},{"path":[4,26,2,0,5],"span":[147,11,17]},{"path":[4,26,2,0,1],"span":[147,18,30]},{"path":[4,26,2,0,3],"span":[147,33,34]},{"path":[4,27],"span":[149,0,151,1]},{"path":[4,27,1],"span":[149,8,40]},{"path":[4,27,2,0],"span":[150,2,31]},{"path":[4,27,2,0,4],"span":[150,2,10]},{"path":[4,27,2,0,6],"span":[150,11,18]},{"path":[4,27,2,0,1],"span":[150,19,26]},{"path":[4,27,2,0,3],"span":[150,29,30]},{"path":[4,28],"span":[152,0,156,1]},{"path":[4,28,1],"span":[152,8,27]},{"path":[4,28,8,0],"span":[153,2,155,3]},{"path":[4,28,8,0,1],"span":[153,8,12]},{"path":[4,28,2,0],"span":[154,4,25]},{"path":[4,28,2,0,6],"span":[154,4,15]},{"path":[4,28,2,0,1],"span":[154,16,20]},{"path":[4,28,2,0,3],"span":[154,23,24]},{"path":[4,29],"span":[157,0,165,1]},{"path":[4,29,1],"span":[157,8,32]},{"path":[4,29,2,0],"span":[158,2,21]},{"path":[4,29,2,0,5],"span":[158,2,8]},{"path":[4,29,2,0,1],"span":[158,9,16]},{"path":[4,29,2,0,3],"span":[158,19,20]},{"path":[4,29,3,0],"span":[159,2,163,3]},{"path":[4,29,3,0,1],"span":[159,10,16]},{"path":[4,29,3,0,2,0],"span":[160,4,32]},{"path":[4,29,3,0,2,0,6],"span":[160,4,21]},{"path":[4,29,3,0,2,0,1],"span":[160,22,27]},{"path":[4,29,3,0,2,0,3],"span":[160,30,31]},{"path":[4,29,3,0,2,1],"span":[161,4,43]},{"path":[4,29,3,0,2,1,6],"span":[161,4,15]},{"path":[4,29,3,0,2,1,1],"span":[161,16,20]},{"path":[4,29,3,0,2,1,3],"span":[161,21,22]},{"path":[4,29,3,0,2,1,8],"span":[161,23,42]},{"path":[4,29,3,0,2,1,8,3],"span":[161,24,41]},{"path":[4,29,3,0,2,2],"span":[162,4,39]},{"path":[4,29,3,0,2,2,6],"span":[162,4,23]},{"path":[4,29,3,0,2,2,1],"span":[162,24,36]},{"path":[4,29,3,0,2,2,3],"span":[162,37,38]},{"path":[4,29,2,1],"span":[164,2,20]},{"path":[4,29,2,1,6],"span":[164,2,8]},{"path":[4,29,2,1,1],"span":[164,9,15]},{"path":[4,29,2,1,3],"span":[164,18,19]},{"path":[4,30],"span":[166,0,168,1]},{"path":[4,30,1],"span":[166,8,33]},{"path":[4,30,2,0],"span":[167,2,31]},{"path":[4,30,2,0,4],"span":[167,2,10]},{"path":[4,30,2,0,6],"span":[167,11,18]},{"path":[4,30,2,0,1],"span":[167,19,26]},{"path":[4,30,2,0,3],"span":[167,29,30]},{"path":[4,31],"span":[169,0,171,1]},{"path":[4,31,1],"span":[169,8,42]},{"path":[4,31,2,0],"span":[170,2,31]},{"path":[4,31,2,0,4],"span":[170,2,10]},{"path":[4,31,2,0,5],"span":[170,11,17]},{"path":[4,31,2,0,1],"span":[170,18,26]},{"path":[4,31,2,0,3],"span":[170,29,30]},{"path":[4,32],"span":[172,0,174,1]},{"path":[4,32,1],"span":[172,8,43]},{"path":[4,32,2,0],"span":[173,2,32]},{"path":[4,32,2,0,4],"span":[173,2,10]},{"path":[4,32,2,0,6],"span":[173,11,18]},{"path":[4,32,2,0,1],"span":[173,19,27]},{"path":[4,32,2,0,3],"span":[173,30,31]},{"path":[4,33],"span":[175,0,177,1]},{"path":[4,33,1],"span":[175,8,35]},{"path":[4,33,2,0],"span":[176,2,23]},{"path":[4,33,2,0,5],"span":[176,2,8]},{"path":[4,33,2,0,1],"span":[176,9,18]},{"path":[4,33,2,0,3],"span":[176,21,22]},{"path":[4,34],"span":[178,0,180,1]},{"path":[4,34,1],"span":[178,8,36]},{"path":[4,34,2,0],"span":[179,2,22]},{"path":[4,34,2,0,6],"span":[179,2,9]},{"path":[4,34,2,0,1],"span":[179,10,17]},{"path":[4,34,2,0,3],"span":[179,20,21]},{"path":[4,35],"span":[181,0,193,1]},{"path":[4,35,1],"span":[181,8,28]},{"path":[4,35,9],"span":[182,2,16]},{"path":[4,35,9,0],"span":[182,11,12]},{"path":[4,35,9,0,1],"span":[182,11,12]},{"path":[4,35,9,1],"span":[182,14,15]},{"path":[4,35,9,1,1],"span":[182,14,15]},{"path":[4,35,2,0],"span":[183,2,21]},{"path":[4,35,2,0,5],"span":[183,2,8]},{"path":[4,35,2,0,1],"span":[183,9,16]},{"path":[4,35,2,0,3],"span":[183,19,20]},{"path":[4,35,2,1],"span":[184,2,26]},{"path":[4,35,2,1,5],"span":[184,2,8]},{"path":[4,35,2,1,1],"span":[184,9,21]},{"path":[4,35,2,1,3],"span":[184,24,25]},{"path":[4,35,2,2],"span":[185,2,25]},{"path":[4,35,2,2,5],"span":[185,2,8]},{"path":[4,35,2,2,1],"span":[185,9,20]},{"path":[4,35,2,2,3],"span":[185,23,24]},{"path":[4,35,2,3],"span":[186,2,20]},{"path":[4,35,2,3,5],"span":[186,2,8]},{"path":[4,35,2,3,1],"span":[186,9,15]},{"path":[4,35,2,3,3],"span":[186,18,19]},{"path":[4,35,2,4],"span":[187,2,18]},{"path":[4,35,2,4,5],"span":[187,2,8]},{"path":[4,35,2,4,1],"span":[187,9,13]},{"path":[4,35,2,4,3],"span":[187,16,17]},{"path":[4,35,2,5],"span":[188,2,27]},{"path":[4,35,2,5,5],"span":[188,2,8]},{"path":[4,35,2,5,1],"span":[188,9,22]},{"path":[4,35,2,5,3],"span":[188,25,26]},{"path":[4,35,2,6],"span":[190,2,23]},{"path":[4,35,2,6,5],"span":[190,2,8]},{"path":[4,35,2,6,1],"span":[190,9,18]},{"path":[4,35,2,6,3],"span":[190,21,22]},{"path":[4,35,2,7],"span":[191,2,24]},{"path":[4,35,2,7,6],"span":[191,2,13]},{"path":[4,35,2,7,1],"span":[191,14,18]},{"path":[4,35,2,7,3],"span":[191,21,23]},{"path":[4,35,2,8],"span":[192,2,24]},{"path":[4,35,2,8,5],"span":[192,2,8]},{"path":[4,35,2,8,1],"span":[192,9,18]},{"path":[4,35,2,8,3],"span":[192,21,23]},{"path":[5,2],"span":[194,0,201,1]},{"path":[5,2,1],"span":[194,5,16]},{"path":[5,2,2,0],"span":[195,2,7]},{"path":[5,2,2,0,1],"span":[195,2,4]},{"path":[5,2,2,0,2],"span":[195,5,6]},{"path":[5,2,2,1],"span":[196,2,7]},{"path":[5,2,2,1,1],"span":[196,2,4]},{"path":[5,2,2,1,2],"span":[196,5,6]},{"path":[5,2,2,2],"span":[197,2,13]},{"path":[5,2,2,2,1],"span":[197,2,10]},{"path":[5,2,2,2,2],"span":[197,11,12]},{"path":[5,2,2,3],"span":[198,2,10]},{"path":[5,2,2,3,1],"span":[198,2,7]},{"path":[5,2,2,3,2],"span":[198,8,9]},{"path":[5,2,2,4],"span":[199,2,22]},{"path":[5,2,2,4,1],"span":[199,2,19]},{"path":[5,2,2,4,2],"span":[199,20,21]},{"path":[5,2,2,5],"span":[200,2,11],"trailingComments":" vNEXT manual reconciled installation, that will link all the manual assets that will come to vNEXT.\n"},{"path":[5,2,2,5,1],"span":[200,2,8]},{"path":[5,2,2,5,2],"span":[200,9,10]},{"path":[4,36],"span":[202,0,205,1]},{"path":[4,36,1],"span":[202,8,29]},{"path":[4,36,2,0],"span":[203,2,22]},{"path":[4,36,2,0,6],"span":[203,2,9]},{"path":[4,36,2,0,1],"span":[203,10,17]},{"path":[4,36,2,0,3],"span":[203,20,21]},{"path":[4,36,2,1],"span":[204,2,37]},{"path":[4,36,2,1,6],"span":[204,2,20]},{"path":[4,36,2,1,1],"span":[204,21,32]},{"path":[4,36,2,1,3],"span":[204,35,36]},{"path":[4,37],"span":[206,0,215,1]},{"path":[4,37,1],"span":[206,8,35]},{"path":[4,37,2,0],"span":[207,2,21]},{"path":[4,37,2,0,5],"span":[207,2,8]},{"path":[4,37,2,0,1],"span":[207,9,16]},{"path":[4,37,2,0,3],"span":[207,19,20]},{"path":[4,37,2,1],"span":[208,2,26]},{"path":[4,37,2,1,5],"span":[208,2,8]},{"path":[4,37,2,1,1],"span":[208,9,21]},{"path":[4,37,2,1,3],"span":[208,24,25]},{"path":[4,37,2,2],"span":[209,2,25]},{"path":[4,37,2,2,5],"span":[209,2,8]},{"path":[4,37,2,2,1],"span":[209,9,20]},{"path":[4,37,2,2,3],"span":[209,23,24]},{"path":[4,37,2,3],"span":[210,2,23]},{"path":[4,37,2,3,5],"span":[210,2,8]},{"path":[4,37,2,3,1],"span":[210,9,18]},{"path":[4,37,2,3,3],"span":[210,21,22]},{"path":[4,37,2,4],"span":[211,2,23]},{"path":[4,37,2,4,6],"span":[211,2,13]},{"path":[4,37,2,4,1],"span":[211,14,18]},{"path":[4,37,2,4,3],"span":[211,21,22]},{"path":[4,37,2,5],"span":[212,2,27]},{"path":[4,37,2,5,5],"span":[212,2,8]},{"path":[4,37,2,5,1],"span":[212,9,22]},{"path":[4,37,2,5,3],"span":[212,25,26]},{"path":[4,37,2,6],"span":[213,2,23]},{"path":[4,37,2,6,5],"span":[213,2,8]},{"path":[4,37,2,6,1],"span":[213,9,18]},{"path":[4,37,2,6,3],"span":[213,21,22]},{"path":[4,37,2,7],"span":[214,2,25]},{"path":[4,37,2,7,5],"span":[214,2,8]},{"path":[4,37,2,7,1],"span":[214,9,20]},{"path":[4,37,2,7,3],"span":[214,23,24]},{"path":[4,38],"span":[216,0,220,1]},{"path":[4,38,1],"span":[216,8,36]},{"path":[4,38,2,0],"span":[217,2,22]},{"path":[4,38,2,0,6],"span":[217,2,9]},{"path":[4,38,2,0,1],"span":[217,10,17]},{"path":[4,38,2,0,3],"span":[217,20,21]},{"path":[4,38,2,1],"span":[218,2,37]},{"path":[4,38,2,1,6],"span":[218,2,20]},{"path":[4,38,2,1,1],"span":[218,21,32]},{"path":[4,38,2,1,3],"span":[218,35,36]},{"path":[4,38,2,2],"span":[219,2,21]},{"path":[4,38,2,2,5],"span":[219,2,8]},{"path":[4,38,2,2,1],"span":[219,9,16]},{"path":[4,38,2,2,3],"span":[219,19,20]},{"path":[4,39],"span":[221,0,234,1]},{"path":[4,39,1],"span":[221,8,38]},{"path":[4,39,2,0],"span":[222,2,23]},{"path":[4,39,2,0,5],"span":[222,2,8]},{"path":[4,39,2,0,1],"span":[222,9,18]},{"path":[4,39,2,0,3],"span":[222,21,22]},{"path":[4,39,2,1],"span":[223,2,26]},{"path":[4,39,2,1,5],"span":[223,2,8]},{"path":[4,39,2,1,1],"span":[223,9,21]},{"path":[4,39,2,1,3],"span":[223,24,25]},{"path":[4,39,2,2],"span":[224,2,25]},{"path":[4,39,2,2,5],"span":[224,2,8]},{"path":[4,39,2,2,1],"span":[224,9,20]},{"path":[4,39,2,2,3],"span":[224,23,24]},{"path":[4,39,2,3],"span":[225,2,20]},{"path":[4,39,2,3,5],"span":[225,2,8]},{"path":[4,39,2,3,1],"span":[225,9,15]},{"path":[4,39,2,3,3],"span":[225,18,19]},{"path":[4,39,2,4],"span":[226,2,18]},{"path":[4,39,2,4,5],"span":[226,2,8]},{"path":[4,39,2,4,1],"span":[226,9,13]},{"path":[4,39,2,4,3],"span":[226,16,17]},{"path":[4,39,3,0],"span":[227,2,232,3]},{"path":[4,39,3,0,1],"span":[227,10,24]},{"path":[4,39,3,0,2,0],"span":[228,4,41]},{"path":[4,39,3,0,2,0,5],"span":[228,4,10]},{"path":[4,39,3,0,2,0,1],"span":[228,11,36]},{"path":[4,39,3,0,2,0,3],"span":[228,39,40]},{"path":[4,39,3,0,2,1],"span":[229,4,47]},{"path":[4,39,3,0,2,1,5],"span":[229,4,10]},{"path":[4,39,3,0,2,1,1],"span":[229,11,42]},{"path":[4,39,3,0,2,1,3],"span":[229,45,46]},{"path":[4,39,3,0,2,2],"span":[230,4,45]},{"path":[4,39,3,0,2,2,5],"span":[230,4,10]},{"path":[4,39,3,0,2,2,1],"span":[230,11,40]},{"path":[4,39,3,0,2,2,3],"span":[230,43,44]},{"path":[4,39,3,0,2,3],"span":[231,4,40]},{"path":[4,39,3,0,2,3,5],"span":[231,4,10]},{"path":[4,39,3,0,2,3,1],"span":[231,11,35]},{"path":[4,39,3,0,2,3,3],"span":[231,38,39]},{"path":[4,39,2,5],"span":[233,2,37]},{"path":[4,39,2,5,6],"span":[233,2,16]},{"path":[4,39,2,5,1],"span":[233,17,32]},{"path":[4,39,2,5,3],"span":[233,35,36]},{"path":[4,40],"span":[235,0,237,1]},{"path":[4,40,1],"span":[235,8,39]},{"path":[4,40,2,0],"span":[236,2,22]},{"path":[4,40,2,0,6],"span":[236,2,9]},{"path":[4,40,2,0,1],"span":[236,10,17]},{"path":[4,40,2,0,3],"span":[236,20,21]},{"path":[4,41],"span":[238,0,241,1]},{"path":[4,41,1],"span":[238,8,38]},{"path":[4,41,2,0],"span":[239,2,23]},{"path":[4,41,2,0,5],"span":[239,2,8]},{"path":[4,41,2,0,1],"span":[239,9,18]},{"path":[4,41,2,0,3],"span":[239,21,22]},{"path":[4,41,2,1],"span":[240,2,22]},{"path":[4,41,2,1,5],"span":[240,2,8]},{"path":[4,41,2,1,1],"span":[240,9,17]},{"path":[4,41,2,1,3],"span":[240,20,21]},{"path":[4,42],"span":[242,0,247,1]},{"path":[4,42,1],"span":[242,8,39]},{"path":[4,42,2,0],"span":[243,2,19]},{"path":[4,42,2,0,5],"span":[243,2,6]},{"path":[4,42,2,0,1],"span":[243,7,14]},{"path":[4,42,2,0,3],"span":[243,17,18]},{"path":[4,42,2,1],"span":[244,2,21]},{"path":[4,42,2,1,5],"span":[244,2,8]},{"path":[4,42,2,1,1],"span":[244,9,16]},{"path":[4,42,2,1,3],"span":[244,19,20]},{"path":[4,42,2,2],"span":[245,2,28]},{"path":[4,42,2,2,5],"span":[245,2,8]},{"path":[4,42,2,2,1],"span":[245,9,23]},{"path":[4,42,2,2,3],"span":[245,26,27]},{"path":[4,42,2,3],"span":[246,2,28]},{"path":[4,42,2,3,5],"span":[246,2,8]},{"path":[4,42,2,3,1],"span":[246,9,23]},{"path":[4,42,2,3,3],"span":[246,26,27]},{"path":[4,43],"span":[248,0,253,1]},{"path":[4,43,1],"span":[248,8,38]},{"path":[4,43,2,0],"span":[249,2,23]},{"path":[4,43,2,0,5],"span":[249,2,8]},{"path":[4,43,2,0,1],"span":[249,9,18]},{"path":[4,43,2,0,3],"span":[249,21,22]},{"path":[4,43,2,1],"span":[250,2,22]},{"path":[4,43,2,1,5],"span":[250,2,8]},{"path":[4,43,2,1,1],"span":[250,9,17]},{"path":[4,43,2,1,3],"span":[250,20,21]},{"path":[4,43,2,2],"span":[251,2,23]},{"path":[4,43,2,2,5],"span":[251,2,6]},{"path":[4,43,2,2,1],"span":[251,7,18]},{"path":[4,43,2,2,3],"span":[251,21,22]},{"path":[4,43,2,3],"span":[252,2,23]},{"path":[4,43,2,3,5],"span":[252,2,6]},{"path":[4,43,2,3,1],"span":[252,7,18]},{"path":[4,43,2,3,3],"span":[252,21,22]},{"path":[4,44],"span":[254,0,256,1]},{"path":[4,44,1],"span":[254,8,39]},{"path":[4,44,2,0],"span":[255,2,19]},{"path":[4,44,2,0,5],"span":[255,2,6]},{"path":[4,44,2,0,1],"span":[255,7,14]},{"path":[4,44,2,0,3],"span":[255,17,18]},{"path":[4,45],"span":[257,0,263,1]},{"path":[4,45,1],"span":[257,8,41]},{"path":[4,45,2,0],"span":[258,2,23]},{"path":[4,45,2,0,5],"span":[258,2,8]},{"path":[4,45,2,0,1],"span":[258,9,18]},{"path":[4,45,2,0,3],"span":[258,21,22]},{"path":[4,45,2,1],"span":[259,2,26]},{"path":[4,45,2,1,5],"span":[259,2,8]},{"path":[4,45,2,1,1],"span":[259,9,21]},{"path":[4,45,2,1,3],"span":[259,24,25]},{"path":[4,45,2,2],"span":[260,2,25]},{"path":[4,45,2,2,5],"span":[260,2,8]},{"path":[4,45,2,2,1],"span":[260,9,20]},{"path":[4,45,2,2,3],"span":[260,23,24]},{"path":[4,45,2,3],"span":[261,2,23]},{"path":[4,45,2,3,5],"span":[261,2,8]},{"path":[4,45,2,3,1],"span":[261,9,18]},{"path":[4,45,2,3,3],"span":[261,21,22]},{"path":[4,45,2,4],"span":[262,2,23]},{"path":[4,45,2,4,6],"span":[262,2,13]},{"path":[4,45,2,4,1],"span":[262,14,18]},{"path":[4,45,2,4,3],"span":[262,21,22]},{"path":[4,46],"span":[264,0,269,1]},{"path":[4,46,1],"span":[264,8,42]},{"path":[4,46,2,0],"span":[265,2,22]},{"path":[4,46,2,0,6],"span":[265,2,9]},{"path":[4,46,2,0,1],"span":[265,10,17]},{"path":[4,46,2,0,3],"span":[265,20,21]},{"path":[4,46,2,1],"span":[266,2,37]},{"path":[4,46,2,1,6],"span":[266,2,20]},{"path":[4,46,2,1,1],"span":[266,21,32]},{"path":[4,46,2,1,3],"span":[266,35,36]},{"path":[4,46,2,2],"span":[267,2,23]},{"path":[4,46,2,2,6],"span":[267,2,13]},{"path":[4,46,2,2,1],"span":[267,14,18]},{"path":[4,46,2,2,3],"span":[267,21,22]},{"path":[4,46,2,3],"span":[268,2,21]},{"path":[4,46,2,3,5],"span":[268,2,8]},{"path":[4,46,2,3,1],"span":[268,9,16]},{"path":[4,46,2,3,3],"span":[268,19,20]},{"path":[4,47],"span":[270,0,274,1]},{"path":[4,47,1],"span":[270,8,40]},{"path":[4,47,2,0],"span":[271,2,21]},{"path":[4,47,2,0,5],"span":[271,2,8]},{"path":[4,47,2,0,1],"span":[271,9,16]},{"path":[4,47,2,0,3],"span":[271,19,20]},{"path":[4,47,2,1],"span":[272,2,34]},{"path":[4,47,2,1,4],"span":[272,2,10]},{"path":[4,47,2,1,5],"span":[272,11,17]},{"path":[4,47,2,1,1],"span":[272,18,29]},{"path":[4,47,2,1,3],"span":[272,32,33]},{"path":[4,47,2,2],"span":[273,2,21]},{"path":[4,47,2,2,5],"span":[273,2,8]},{"path":[4,47,2,2,1],"span":[273,9,16]},{"path":[4,47,2,2,3],"span":[273,19,20]},{"path":[4,48],"span":[275,0,281,1]},{"path":[4,48,1],"span":[275,8,41]},{"path":[4,48,3,0],"span":[276,2,279,3]},{"path":[4,48,3,0,1],"span":[276,10,16]},{"path":[4,48,3,0,2,0],"span":[277,4,26]},{"path":[4,48,3,0,2,0,5],"span":[277,4,10]},{"path":[4,48,3,0,2,0,1],"span":[277,11,21]},{"path":[4,48,3,0,2,0,3],"span":[277,24,25]},{"path":[4,48,3,0,2,1],"span":[278,4,20]},{"path":[4,48,3,0,2,1,5],"span":[278,4,8]},{"path":[4,48,3,0,2,1,1],"span":[278,9,15]},{"path":[4,48,3,0,2,1,3],"span":[278,18,19]},{"path":[4,48,2,0],"span":[280,2,29]},{"path":[4,48,2,0,4],"span":[280,2,10]},{"path":[4,48,2,0,6],"span":[280,11,17]},{"path":[4,48,2,0,1],"span":[280,18,24]},{"path":[4,48,2,0,3],"span":[280,27,28]},{"path":[4,49],"span":[282,0,285,1]},{"path":[4,49,1],"span":[282,8,46]},{"path":[4,49,2,0],"span":[283,2,21]},{"path":[4,49,2,0,5],"span":[283,2,8]},{"path":[4,49,2,0,1],"span":[283,9,16]},{"path":[4,49,2,0,3],"span":[283,19,20]},{"path":[4,49,2,1],"span":[284,2,23]},{"path":[4,49,2,1,5],"span":[284,2,8]},{"path":[4,49,2,1,1],"span":[284,9,18]},{"path":[4,49,2,1,3],"span":[284,21,22]},{"path":[4,50],"span":[286,0,288,1]},{"path":[4,50,1],"span":[286,8,47]},{"path":[4,50,2,0],"span":[287,2,31]},{"path":[4,50,2,0,4],"span":[287,2,10]},{"path":[4,50,2,0,6],"span":[287,11,18]},{"path":[4,50,2,0,1],"span":[287,19,26]},{"path":[4,50,2,0,3],"span":[287,29,30]},{"path":[4,51],"span":[289,0,292,1]},{"path":[4,51,1],"span":[289,8,33]},{"path":[4,51,2,0],"span":[290,2,21]},{"path":[4,51,2,0,5],"span":[290,2,8]},{"path":[4,51,2,0,1],"span":[290,9,16]},{"path":[4,51,2,0,3],"span":[290,19,20]},{"path":[4,51,2,1],"span":[291,2,24]},{"path":[4,51,2,1,5],"span":[291,2,8]},{"path":[4,51,2,1,1],"span":[291,9,19]},{"path":[4,51,2,1,3],"span":[291,22,23]},{"path":[4,52],"span":[293,0,308,1]},{"path":[4,52,1],"span":[293,8,34]},{"path":[4,52,3,0],"span":[294,2,297,3]},{"path":[4,52,3,0,1],"span":[294,10,29]},{"path":[4,52,3,0,2,0],"span":[295,4,19]},{"path":[4,52,3,0,2,0,5],"span":[295,4,10]},{"path":[4,52,3,0,2,0,1],"span":[295,11,14]},{"path":[4,52,3,0,2,0,3],"span":[295,17,18]},{"path":[4,52,3,0,2,1],"span":[296,4,34]},{"path":[4,52,3,0,2,1,5],"span":[296,4,9]},{"path":[4,52,3,0,2,1,1],"span":[296,10,29]},{"path":[4,52,3,0,2,1,3],"span":[296,32,33]},{"path":[4,52,3,1],"span":[298,2,300,3]},{"path":[4,52,3,1,1],"span":[298,10,15]},{"path":[4,52,3,1,2,0],"span":[299,4,18]},{"path":[4,52,3,1,2,0,5],"span":[299,4,10]},{"path":[4,52,3,1,2,0,1],"span":[299,11,13]},{"path":[4,52,3,1,2,0,3],"span":[299,16,17]},{"path":[4,52,3,2],"span":[301,2,306,3]},{"path":[4,52,3,2,1],"span":[301,10,14]},{"path":[4,52,3,2,2,0],"span":[302,4,18]},{"path":[4,52,3,2,2,0,5],"span":[302,4,10]},{"path":[4,52,3,2,2,0,1],"span":[302,11,13]},{"path":[4,52,3,2,2,0,3],"span":[302,16,17]},{"path":[4,52,3,2,2,1],"span":[303,4,45]},{"path":[4,52,3,2,2,1,4],"span":[303,4,12]},{"path":[4,52,3,2,2,1,6],"span":[303,13,32]},{"path":[4,52,3,2,2,1,1],"span":[303,33,40]},{"path":[4,52,3,2,2,1,3],"span":[303,43,44]},{"path":[4,52,3,2,2,2],"span":[304,4,39]},{"path":[4,52,3,2,2,2,4],"span":[304,4,12]},{"path":[4,52,3,2,2,2,6],"span":[304,13,20]},{"path":[4,52,3,2,2,2,1],"span":[304,21,34]},{"path":[4,52,3,2,2,2,3],"span":[304,37,38]},{"path":[4,52,3,2,2,3],"span":[305,4,30]},{"path":[4,52,3,2,2,3,4],"span":[305,4,12]},{"path":[4,52,3,2,2,3,6],"span":[305,13,18]},{"path":[4,52,3,2,2,3,1],"span":[305,19,25]},{"path":[4,52,3,2,2,3,3],"span":[305,28,29]},{"path":[4,52,2,0],"span":[307,2,26]},{"path":[4,52,2,0,4],"span":[307,2,10]},{"path":[4,52,2,0,6],"span":[307,11,15]},{"path":[4,52,2,0,1],"span":[307,16,21]},{"path":[4,52,2,0,3],"span":[307,24,25]},{"path":[4,53],"span":[309,0,312,1]},{"path":[4,53,1],"span":[309,8,53]},{"path":[4,53,2,0],"span":[310,2,35]},{"path":[4,53,2,0,5],"span":[310,2,8]},{"path":[4,53,2,0,1],"span":[310,9,30]},{"path":[4,53,2,0,3],"span":[310,33,34]},{"path":[4,53,2,1],"span":[311,2,22]},{"path":[4,53,2,1,5],"span":[311,2,8]},{"path":[4,53,2,1,1],"span":[311,9,17]},{"path":[4,53,2,1,3],"span":[311,20,21]},{"path":[4,54],"span":[313,0,316,1]},{"path":[4,54,1],"span":[313,8,54]},{"path":[4,54,2,0],"span":[314,2,21]},{"path":[4,54,2,0,5],"span":[314,2,8]},{"path":[4,54,2,0,1],"span":[314,9,16]},{"path":[4,54,2,0,3],"span":[314,19,20]},{"path":[4,54,2,1],"span":[315,2,28]},{"path":[4,54,2,1,5],"span":[315,2,8]},{"path":[4,54,2,1,1],"span":[315,9,23]},{"path":[4,54,2,1,3],"span":[315,26,27]},{"path":[4,55],"span":[317,0,334,1]},{"path":[4,55,1],"span":[317,8,34]},{"path":[4,55,2,0],"span":[318,2,30]},{"path":[4,55,2,0,5],"span":[318,2,8]},{"path":[4,55,2,0,1],"span":[318,9,25]},{"path":[4,55,2,0,3],"span":[318,28,29]},{"path":[4,55,2,1],"span":[319,2,39]},{"path":[4,55,2,1,5],"span":[319,2,8]},{"path":[4,55,2,1,1],"span":[319,9,14]},{"path":[4,55,2,1,3],"span":[319,17,18]},{"path":[4,55,2,1,8],"span":[319,19,38]},{"path":[4,55,2,1,8,3],"span":[319,20,37]},{"path":[4,55,3,0],"span":[321,2,326,3]},{"path":[4,55,3,0,1],"span":[321,10,22]},{"path":[4,55,3,0,2,0],"span":[322,4,20]},{"path":[4,55,3,0,2,0,5],"span":[322,4,10]},{"path":[4,55,3,0,2,0,1],"span":[322,11,15]},{"path":[4,55,3,0,2,0,3],"span":[322,18,19]},{"path":[4,55,3,0,2,1],"span":[323,4,44]},{"path":[4,55,3,0,2,1,5],"span":[323,4,10]},{"path":[4,55,3,0,2,1,1],"span":[323,11,19]},{"path":[4,55,3,0,2,1,3],"span":[323,22,23]},{"path":[4,55,3,0,2,1,8],"span":[323,24,43]},{"path":[4,55,3,0,2,1,8,3],"span":[323,25,42]},{"path":[4,55,3,0,2,2],"span":[324,4,25]},{"path":[4,55,3,0,2,2,5],"span":[324,4,10]},{"path":[4,55,3,0,2,2,1],"span":[324,11,20]},{"path":[4,55,3,0,2,2,3],"span":[324,23,24]},{"path":[4,55,3,0,2,3],"span":[325,4,23]},{"path":[4,55,3,0,2,3,5],"span":[325,4,10]},{"path":[4,55,3,0,2,3,1],"span":[325,11,18]},{"path":[4,55,3,0,2,3,3],"span":[325,21,22]},{"path":[4,55,2,2],"span":[327,2,35]},{"path":[4,55,2,2,4],"span":[327,2,10]},{"path":[4,55,2,2,6],"span":[327,11,23]},{"path":[4,55,2,2,1],"span":[327,24,30]},{"path":[4,55,2,2,3],"span":[327,33,34]},{"path":[4,55,2,3],"span":[329,2,25]},{"path":[4,55,2,3,5],"span":[329,2,8]},{"path":[4,55,2,3,1],"span":[329,9,20]},{"path":[4,55,2,3,3],"span":[329,23,24]},{"path":[4,55,2,4],"span":[330,2,26]},{"path":[4,55,2,4,5],"span":[330,2,8]},{"path":[4,55,2,4,1],"span":[330,9,21]},{"path":[4,55,2,4,3],"span":[330,24,25]},{"path":[4,55,2,5],"span":[331,2,45]},{"path":[4,55,2,5,5],"span":[331,2,8]},{"path":[4,55,2,5,1],"span":[331,9,20]},{"path":[4,55,2,5,3],"span":[331,23,24]},{"path":[4,55,2,5,8],"span":[331,25,44]},{"path":[4,55,2,5,8,3],"span":[331,26,43]},{"path":[4,55,2,6],"span":[332,2,24]},{"path":[4,55,2,6,5],"span":[332,2,8]},{"path":[4,55,2,6,1],"span":[332,9,19]},{"path":[4,55,2,6,3],"span":[332,22,23]},{"path":[4,55,2,7],"span":[333,2,28]},{"path":[4,55,2,7,5],"span":[333,2,8]},{"path":[4,55,2,7,1],"span":[333,9,23]},{"path":[4,55,2,7,3],"span":[333,26,27]},{"path":[4,56],"span":[335,0,337,1]},{"path":[4,56,1],"span":[335,8,35]},{"path":[4,56,2,0],"span":[336,2,21]},{"path":[4,56,2,0,5],"span":[336,2,6]},{"path":[4,56,2,0,1],"span":[336,7,16]},{"path":[4,56,2,0,3],"span":[336,19,20]},{"path":[4,57],"span":[338,0,340,1]},{"path":[4,57,1],"span":[338,8,12]},{"path":[4,57,2,0],"span":[339,2,16]},{"path":[4,57,2,0,5],"span":[339,2,8]},{"path":[4,57,2,0,1],"span":[339,9,11]},{"path":[4,57,2,0,3],"span":[339,14,15]},{"path":[4,58],"span":[341,0,344,1]},{"path":[4,58,1],"span":[341,8,30]},{"path":[4,58,2,0],"span":[342,2,28]},{"path":[4,58,2,0,5],"span":[342,2,8]},{"path":[4,58,2,0,1],"span":[342,9,23]},{"path":[4,58,2,0,3],"span":[342,26,27]},{"path":[4,58,2,1],"span":[343,2,22]},{"path":[4,58,2,1,5],"span":[343,2,8]},{"path":[4,58,2,1,1],"span":[343,9,17]},{"path":[4,58,2,1,3],"span":[343,20,21]},{"path":[4,59],"span":[345,0,347,1]},{"path":[4,59,1],"span":[345,8,31]},{"path":[4,59,2,0],"span":[346,2,25]},{"path":[4,59,2,0,4],"span":[346,2,10]},{"path":[4,59,2,0,6],"span":[346,11,15]},{"path":[4,59,2,0,1],"span":[346,16,20]},{"path":[4,59,2,0,3],"span":[346,23,24]},{"path":[4,60],"span":[348,0,350,1]},{"path":[4,60,1],"span":[348,8,36]},{"path":[4,60,2,0],"span":[349,2,21]},{"path":[4,60,2,0,5],"span":[349,2,8]},{"path":[4,60,2,0,1],"span":[349,9,16]},{"path":[4,60,2,0,3],"span":[349,19,20]},{"path":[4,61],"span":[351,0,353,1]},{"path":[4,61,1],"span":[351,8,37]},{"path":[4,61,2,0],"span":[352,2,34]},{"path":[4,61,2,0,4],"span":[352,2,10]},{"path":[4,61,2,0,5],"span":[352,11,17]},{"path":[4,61,2,0,1],"span":[352,18,29]},{"path":[4,61,2,0,3],"span":[352,32,33]},{"path":[4,62],"span":[354,0,357,1]},{"path":[4,62,1],"span":[354,8,40]},{"path":[4,62,2,0],"span":[355,2,28]},{"path":[4,62,2,0,5],"span":[355,2,8]},{"path":[4,62,2,0,1],"span":[355,9,23]},{"path":[4,62,2,0,3],"span":[355,26,27]},{"path":[4,62,2,1],"span":[356,2,24]},{"path":[4,62,2,1,5],"span":[356,2,8]},{"path":[4,62,2,1,1],"span":[356,9,19]},{"path":[4,62,2,1,3],"span":[356,22,23]},{"path":[4,63],"span":[358,0,360,1]},{"path":[4,63,1],"span":[358,8,41]},{"path":[4,63,2,0],"span":[359,2,22]},{"path":[4,63,2,0,5],"span":[359,2,6]},{"path":[4,63,2,0,1],"span":[359,7,17]},{"path":[4,63,2,0,3],"span":[359,20,21]},{"path":[5,3],"span":[361,0,368,1]},{"path":[5,3,1],"span":[361,5,21]},{"path":[5,3,2,0],"span":[362,2,43]},{"path":[5,3,2,0,1],"span":[362,2,38]},{"path":[5,3,2,0,2],"span":[362,41,42]},{"path":[5,3,2,1],"span":[363,2,36]},{"path":[5,3,2,1,1],"span":[363,2,31]},{"path":[5,3,2,1,2],"span":[363,34,35]},{"path":[5,3,2,2],"span":[364,2,39]},{"path":[5,3,2,2,1],"span":[364,2,34]},{"path":[5,3,2,2,2],"span":[364,37,38]},{"path":[5,3,2,3],"span":[365,2,38]},{"path":[5,3,2,3,1],"span":[365,2,33]},{"path":[5,3,2,3,2],"span":[365,36,37]},{"path":[5,3,2,4],"span":[366,2,34]},{"path":[5,3,2,4,1],"span":[366,2,29]},{"path":[5,3,2,4,2],"span":[366,32,33]},{"path":[5,3,2,5],"span":[367,2,41]},{"path":[5,3,2,5,1],"span":[367,2,36]},{"path":[5,3,2,5,2],"span":[367,39,40]},{"path":[4,64],"span":[369,0,377,1]},{"path":[4,64,1],"span":[369,8,20]},{"path":[4,64,2,0],"span":[370,2,16]},{"path":[4,64,2,0,5],"span":[370,2,8]},{"path":[4,64,2,0,1],"span":[370,9,11]},{"path":[4,64,2,0,3],"span":[370,14,15]},{"path":[4,64,2,1],"span":[371,2,21]},{"path":[4,64,2,1,5],"span":[371,2,8]},{"path":[4,64,2,1,1],"span":[371,9,16]},{"path":[4,64,2,1,3],"span":[371,19,20]},{"path":[4,64,2,2],"span":[372,2,28]},{"path":[4,64,2,2,6],"span":[372,2,18]},{"path":[4,64,2,2,1],"span":[372,19,23]},{"path":[4,64,2,2,3],"span":[372,26,27]},{"path":[4,64,2,3],"span":[373,2,25]},{"path":[4,64,2,3,5],"span":[373,2,7]},{"path":[4,64,2,3,1],"span":[373,8,20]},{"path":[4,64,2,3,3],"span":[373,23,24]},{"path":[4,64,2,4],"span":[374,2,29]},{"path":[4,64,2,4,5],"span":[374,2,8]},{"path":[4,64,2,4,1],"span":[374,9,24]},{"path":[4,64,2,4,3],"span":[374,27,28]},{"path":[4,64,2,5],"span":[375,2,24]},{"path":[4,64,2,5,5],"span":[375,2,8]},{"path":[4,64,2,5,1],"span":[375,9,19]},{"path":[4,64,2,5,3],"span":[375,22,23]},{"path":[4,64,2,6],"span":[376,2,24]},{"path":[4,64,2,6,5],"span":[376,2,8]},{"path":[4,64,2,6,1],"span":[376,9,19]},{"path":[4,64,2,6,3],"span":[376,22,23]},{"path":[4,65],"span":[378,0,384,1]},{"path":[4,65,1],"span":[378,8,37]},{"path":[4,65,2,0],"span":[379,2,21]},{"path":[4,65,2,0,5],"span":[379,2,8]},{"path":[4,65,2,0,1],"span":[379,9,16]},{"path":[4,65,2,0,3],"span":[379,19,20]},{"path":[4,65,2,1],"span":[380,2,28]},{"path":[4,65,2,1,6],"span":[380,2,18]},{"path":[4,65,2,1,1],"span":[380,19,23]},{"path":[4,65,2,1,3],"span":[380,26,27]},{"path":[4,65,2,2],"span":[381,2,25]},{"path":[4,65,2,2,5],"span":[381,2,7]},{"path":[4,65,2,2,1],"span":[381,8,20]},{"path":[4,65,2,2,3],"span":[381,23,24]},{"path":[4,65,2,3],"span":[382,2,29]},{"path":[4,65,2,3,5],"span":[382,2,8]},{"path":[4,65,2,3,1],"span":[382,9,24]},{"path":[4,65,2,3,3],"span":[382,27,28]},{"path":[4,65,2,4],"span":[383,2,24]},{"path":[4,65,2,4,5],"span":[383,2,8]},{"path":[4,65,2,4,1],"span":[383,9,19]},{"path":[4,65,2,4,3],"span":[383,22,23]},{"path":[4,66],"span":[385,0,387,1]},{"path":[4,66,1],"span":[385,8,38]},{"path":[4,66,2,0],"span":[386,2,32]},{"path":[4,66,2,0,6],"span":[386,2,14]},{"path":[4,66,2,0,1],"span":[386,15,27]},{"path":[4,66,2,0,3],"span":[386,30,31]},{"path":[4,67],"span":[388,0,390,1]},{"path":[4,67,1],"span":[388,8,42]},{"path":[4,67,2,0],"span":[389,2,21]},{"path":[4,67,2,0,5],"span":[389,2,8]},{"path":[4,67,2,0,1],"span":[389,9,16]},{"path":[4,67,2,0,3],"span":[389,19,20]},{"path":[4,68],"span":[391,0,393,1]},{"path":[4,68,1],"span":[391,8,43]},{"path":[4,68,2,0],"span":[392,2,35]},{"path":[4,68,2,0,5],"span":[392,2,8]},{"path":[4,68,2,0,1],"span":[392,9,30]},{"path":[4,68,2,0,3],"span":[392,33,34]},{"path":[4,69],"span":[394,0,396,1]},{"path":[4,69,1],"span":[394,8,47]},{"path":[4,69,2,0],"span":[395,2,23]},{"path":[4,69,2,0,5],"span":[395,2,8]},{"path":[4,69,2,0,1],"span":[395,9,18]},{"path":[4,69,2,0,3],"span":[395,21,22]},{"path":[4,70],"span":[397,0,399,1]},{"path":[4,70,1],"span":[397,8,48]},{"path":[4,70,2,0],"span":[398,2,21]},{"path":[4,70,2,0,5],"span":[398,2,8]},{"path":[4,70,2,0,1],"span":[398,9,16]},{"path":[4,70,2,0,3],"span":[398,19,20]},{"path":[4,71],"span":[400,0,404,1]},{"path":[4,71,1],"span":[400,8,31]},{"path":[4,71,7],"span":[401,2,27]},{"path":[4,71,7,3],"span":[401,2,27]},{"path":[4,71,2,0],"span":[402,2,21]},{"path":[4,71,2,0,5],"span":[402,2,8]},{"path":[4,71,2,0,1],"span":[402,9,16]},{"path":[4,71,2,0,3],"span":[402,19,20]},{"path":[4,71,2,1],"span":[403,2,29]},{"path":[4,71,2,1,4],"span":[403,2,10]},{"path":[4,71,2,1,5],"span":[403,11,17]},{"path":[4,71,2,1,1],"span":[403,18,24]},{"path":[4,71,2,1,3],"span":[403,27,28]},{"path":[4,72],"span":[405,0,408,1]},{"path":[4,72,1],"span":[405,8,32]},{"path":[4,72,7],"span":[406,2,27]},{"path":[4,72,7,3],"span":[406,2,27]},{"path":[4,72,2,0],"span":[407,2,15]},{"path":[4,72,2,0,5],"span":[407,2,6]},{"path":[4,72,2,0,1],"span":[407,7,10]},{"path":[4,72,2,0,3],"span":[407,13,14]},{"path":[4,73],"span":[409,0,412,1]},{"path":[4,73,1],"span":[409,8,31]},{"path":[4,73,2,0],"span":[410,2,21]},{"path":[4,73,2,0,5],"span":[410,2,8]},{"path":[4,73,2,0,1],"span":[410,9,16]},{"path":[4,73,2,0,3],"span":[410,19,20]},{"path":[4,73,2,1],"span":[411,2,29]},{"path":[4,73,2,1,4],"span":[411,2,10]},{"path":[4,73,2,1,5],"span":[411,11,17]},{"path":[4,73,2,1,1],"span":[411,18,24]},{"path":[4,73,2,1,3],"span":[411,27,28]},{"path":[4,74],"span":[413,0,417,1]},{"path":[4,74,1],"span":[413,8,32]},{"path":[4,74,2,0],"span":[414,2,15]},{"path":[4,74,2,0,5],"span":[414,2,6]},{"path":[4,74,2,0,1],"span":[414,7,10]},{"path":[4,74,2,0,3],"span":[414,13,14]},{"path":[4,74,2,1],"span":[415,2,32]},{"path":[4,74,2,1,4],"span":[415,2,10]},{"path":[4,74,2,1,6],"span":[415,11,18]},{"path":[4,74,2,1,1],"span":[415,19,27]},{"path":[4,74,2,1,3],"span":[415,30,31]},{"path":[4,74,2,2],"span":[416,2,31]},{"path":[4,74,2,2,6],"span":[416,2,16]},{"path":[4,74,2,2,1],"span":[416,17,26]},{"path":[4,74,2,2,3],"span":[416,29,30]},{"path":[4,75],"span":[418,0,420,1]},{"path":[4,75,1],"span":[418,8,39]},{"path":[4,75,2,0],"span":[419,2,21]},{"path":[4,75,2,0,5],"span":[419,2,8]},{"path":[4,75,2,0,1],"span":[419,9,16]},{"path":[4,75,2,0,3],"span":[419,19,20]},{"path":[4,76],"span":[421,0,423,1]},{"path":[4,76,1],"span":[421,8,40]},{"path":[4,76,2,0],"span":[422,2,16]},{"path":[4,76,2,0,5],"span":[422,2,6]},{"path":[4,76,2,0,1],"span":[422,7,11]},{"path":[4,76,2,0,3],"span":[422,14,15]},{"path":[4,77],"span":[424,0,427,1]},{"path":[4,77,1],"span":[424,8,32]},{"path":[4,77,2,0],"span":[425,2,21]},{"path":[4,77,2,0,5],"span":[425,2,8]},{"path":[4,77,2,0,1],"span":[425,9,16]},{"path":[4,77,2,0,3],"span":[425,19,20]},{"path":[4,77,2,1],"span":[426,2,24]},{"path":[4,77,2,1,5],"span":[426,2,8]},{"path":[4,77,2,1,1],"span":[426,9,19]},{"path":[4,77,2,1,3],"span":[426,22,23]},{"path":[4,78],"span":[428,0,430,1]},{"path":[4,78,1],"span":[428,8,33]},{"path":[4,78,2,0],"span":[429,2,18]},{"path":[4,78,2,0,5],"span":[429,2,8]},{"path":[4,78,2,0,1],"span":[429,9,13]},{"path":[4,78,2,0,3],"span":[429,16,17]},{"path":[4,79],"span":[431,0,433,1]},{"path":[4,79,1],"span":[431,8,37]},{"path":[4,79,2,0],"span":[432,4,33]},{"path":[4,79,2,0,4],"span":[432,4,12]},{"path":[4,79,2,0,5],"span":[432,13,19]},{"path":[4,79,2,0,1],"span":[432,20,28]},{"path":[4,79,2,0,3],"span":[432,31,32]},{"path":[4,80],"span":[434,0,436,1]},{"path":[4,80,1],"span":[434,8,47]},{"path":[4,80,2,0],"span":[435,2,21]},{"path":[4,80,2,0,5],"span":[435,2,8]},{"path":[4,80,2,0,1],"span":[435,9,16]},{"path":[4,80,2,0,3],"span":[435,19,20]},{"path":[4,81],"span":[437,0,439,1]},{"path":[4,81,1],"span":[437,8,48]},{"path":[4,81,2,0],"span":[438,2,22]},{"path":[4,81,2,0,5],"span":[438,2,6]},{"path":[4,81,2,0,1],"span":[438,7,17]},{"path":[4,81,2,0,3],"span":[438,20,21]},{"path":[4,82],"span":[440,0,444,1]},{"path":[4,82,1],"span":[440,8,33]},{"path":[4,82,2,0],"span":[441,2,21]},{"path":[4,82,2,0,5],"span":[441,2,8]},{"path":[4,82,2,0,1],"span":[441,9,16]},{"path":[4,82,2,0,3],"span":[441,19,20]},{"path":[4,82,2,1],"span":[442,2,17]},{"path":[4,82,2,1,5],"span":[442,2,8]},{"path":[4,82,2,1,1],"span":[442,9,12]},{"path":[4,82,2,1,3],"span":[442,15,16]},{"path":[4,82,2,2],"span":[443,2,19]},{"path":[4,82,2,2,5],"span":[443,2,8]},{"path":[4,82,2,2,1],"span":[443,9,14]},{"path":[4,82,2,2,3],"span":[443,17,18]},{"path":[4,83],"span":[445,0,447,1]},{"path":[4,83,1],"span":[445,8,34]},{"path":[4,83,2,0],"span":[446,2,19]},{"path":[4,83,2,0,5],"span":[446,2,6]},{"path":[4,83,2,0,1],"span":[446,7,14]},{"path":[4,83,2,0,3],"span":[446,17,18]},{"path":[4,84],"span":[449,0,453,1]},{"path":[4,84,1],"span":[449,8,39]},{"path":[4,84,2,0],"span":[450,2,21]},{"path":[4,84,2,0,5],"span":[450,2,8]},{"path":[4,84,2,0,1],"span":[450,9,16]},{"path":[4,84,2,0,3],"span":[450,19,20]},{"path":[4,84,2,1],"span":[451,2,28]},{"path":[4,84,2,1,5],"span":[451,2,6]},{"path":[4,84,2,1,1],"span":[451,7,23]},{"path":[4,84,2,1,3],"span":[451,26,27]},{"path":[4,84,2,2],"span":[452,2,24]},{"path":[4,84,2,2,5],"span":[452,2,8]},{"path":[4,84,2,2,1],"span":[452,9,19]},{"path":[4,84,2,2,3],"span":[452,22,23]},{"path":[4,85],"span":[454,0,456,1]},{"path":[4,85,1],"span":[454,8,40]},{"path":[4,85,2,0],"span":[455,2,19]},{"path":[4,85,2,0,5],"span":[455,2,6]},{"path":[4,85,2,0,1],"span":[455,7,14]},{"path":[4,85,2,0,3],"span":[455,17,18]},{"path":[4,86],"span":[458,0,460,1]},{"path":[4,86,1],"span":[458,8,28]},{"path":[4,86,2,0],"span":[459,2,31]},{"path":[4,86,2,0,4],"span":[459,2,10]},{"path":[4,86,2,0,5],"span":[459,11,17]},{"path":[4,86,2,0,1],"span":[459,18,26]},{"path":[4,86,2,0,3],"span":[459,29,30]},{"path":[4,87],"span":[462,0,464,1]},{"path":[4,87,1],"span":[462,8,29]},{"path":[4,87,2,0],"span":[463,2,70]},{"path":[4,87,2,0,6],"span":[463,2,53]},{"path":[4,87,2,0,1],"span":[463,54,65]},{"path":[4,87,2,0,3],"span":[463,68,69]},{"path":[4,88],"span":[466,0,469,1]},{"path":[4,88,1],"span":[466,8,34]},{"path":[4,88,2,0],"span":[467,2,32]},{"path":[4,88,2,0,4],"span":[467,2,10]},{"path":[4,88,2,0,5],"span":[467,11,17]},{"path":[4,88,2,0,1],"span":[467,18,27]},{"path":[4,88,2,0,3],"span":[467,30,31]},{"path":[4,88,2,1],"span":[468,2,27]},{"path":[4,88,2,1,4],"span":[468,2,10]},{"path":[4,88,2,1,5],"span":[468,11,16]},{"path":[4,88,2,1,1],"span":[468,17,22]},{"path":[4,88,2,1,3],"span":[468,25,26]},{"path":[4,89],"span":[471,0,483,1]},{"path":[4,89,1],"span":[471,8,28]},{"path":[4,89,4,0],"span":[472,2,477,3]},{"path":[4,89,4,0,1],"span":[472,7,17]},{"path":[4,89,4,0,2,0],"span":[473,4,16]},{"path":[4,89,4,0,2,0,1],"span":[473,4,11]},{"path":[4,89,4,0,2,0,2],"span":[473,14,15]},{"path":[4,89,4,0,2,1],"span":[474,4,13]},{"path":[4,89,4,0,2,1,1],"span":[474,4,8]},{"path":[4,89,4,0,2,1,2],"span":[474,11,12]},{"path":[4,89,4,0,2,2],"span":[475,4,12]},{"path":[4,89,4,0,2,2,1],"span":[475,4,7]},{"path":[4,89,4,0,2,2,2],"span":[475,10,11]},{"path":[4,89,4,0,2,3],"span":[476,4,13]},{"path":[4,89,4,0,2,3,1],"span":[476,4,8]},{"path":[4,89,4,0,2,3,2],"span":[476,11,12]},{"path":[4,89,2,0],"span":[478,2,21]},{"path":[4,89,2,0,5],"span":[478,2,8]},{"path":[4,89,2,0,1],"span":[478,9,16]},{"path":[4,89,2,0,3],"span":[478,19,20]},{"path":[4,89,2,1],"span":[479,2,29]},{"path":[4,89,2,1,6],"span":[479,2,12]},{"path":[4,89,2,1,1],"span":[479,13,24]},{"path":[4,89,2,1,3],"span":[479,27,28]},{"path":[4,89,2,2],"span":[480,2,23]},{"path":[4,89,2,2,5],"span":[480,2,8]},{"path":[4,89,2,2,1],"span":[480,9,18]},{"path":[4,89,2,2,3],"span":[480,21,22]},{"path":[4,89,2,3],"span":[481,2,31]},{"path":[4,89,2,3,5],"span":[481,2,6]},{"path":[4,89,2,3,1],"span":[481,7,26]},{"path":[4,89,2,3,3],"span":[481,29,30]},{"path":[4,89,2,4],"span":[482,2,32]},{"path":[4,89,2,4,5],"span":[482,2,6]},{"path":[4,89,2,4,1],"span":[482,7,27]},{"path":[4,89,2,4,3],"span":[482,30,31]},{"path":[4,90],"span":[485,0,489,1]},{"path":[4,90,1],"span":[485,8,32]},{"path":[4,90,2,0],"span":[486,2,23]},{"path":[4,90,2,0,5],"span":[486,2,8]},{"path":[4,90,2,0,1],"span":[486,9,18]},{"path":[4,90,2,0,3],"span":[486,21,22]},{"path":[4,90,2,1],"span":[487,2,18]},{"path":[4,90,2,1,5],"span":[487,2,7]},{"path":[4,90,2,1,1],"span":[487,8,13]},{"path":[4,90,2,1,3],"span":[487,16,17]},{"path":[4,90,2,2],"span":[488,2,25]},{"path":[4,90,2,2,5],"span":[488,2,6]},{"path":[4,90,2,2,1],"span":[488,7,20]},{"path":[4,90,2,2,3],"span":[488,23,24]},{"path":[4,91],"span":[491,0,495,1]},{"path":[4,91,1],"span":[491,8,35]},{"path":[4,91,2,0],"span":[492,2,18]},{"path":[4,91,2,0,5],"span":[492,2,7]},{"path":[4,91,2,0,1],"span":[492,8,13]},{"path":[4,91,2,0,3],"span":[492,16,17]},{"path":[4,91,2,1],"span":[493,2,42]},{"path":[4,91,2,1,4],"span":[493,2,10]},{"path":[4,91,2,1,6],"span":[493,11,31]},{"path":[4,91,2,1,1],"span":[493,32,37]},{"path":[4,91,2,1,3],"span":[493,40,41]},{"path":[4,91,2,2],"span":[494,2,41]},{"path":[4,91,2,2,6],"span":[494,2,26]},{"path":[4,91,2,2,1],"span":[494,27,36]},{"path":[4,91,2,2,3],"span":[494,39,40]},{"path":[4,92],"span":[497,0,500,1]},{"path":[4,92,1],"span":[497,8,23]},{"path":[4,92,2,0],"span":[498,2,32]},{"path":[4,92,2,0,4],"span":[498,2,10]},{"path":[4,92,2,0,5],"span":[498,11,17]},{"path":[4,92,2,0,1],"span":[498,18,27]},{"path":[4,92,2,0,3],"span":[498,30,31]},{"path":[4,92,2,1],"span":[499,2,27]},{"path":[4,92,2,1,4],"span":[499,2,10]},{"path":[4,92,2,1,5],"span":[499,11,16]},{"path":[4,92,2,1,1],"span":[499,17,22]},{"path":[4,92,2,1,3],"span":[499,25,26]},{"path":[4,93],"span":[502,0,504,1]},{"path":[4,93,1],"span":[502,8,23]},{"path":[4,93,2,0],"span":[503,2,39]},{"path":[4,93,2,0,4],"span":[503,2,10]},{"path":[4,93,2,0,6],"span":[503,11,26]},{"path":[4,93,2,0,1],"span":[503,27,34]},{"path":[4,93,2,0,3],"span":[503,37,38]},{"path":[4,94],"span":[506,0,509,1]},{"path":[4,94,1],"span":[506,8,24]},{"path":[4,94,2,0],"span":[507,2,46]},{"path":[4,94,2,0,5],"span":[507,2,6]},{"path":[4,94,2,0,1],"span":[507,7,41]},{"path":[4,94,2,0,3],"span":[507,44,45]},{"path":[4,94,2,1],"span":[508,2,44]},{"path":[4,94,2,1,5],"span":[508,2,6]},{"path":[4,94,2,1,1],"span":[508,7,39]},{"path":[4,94,2,1,3],"span":[508,42,43]},{"path":[4,95],"span":[511,0,514,1]},{"path":[4,95,1],"span":[511,8,16]},{"path":[4,95,2,0],"span":[512,2,16]},{"path":[4,95,2,0,5],"span":[512,2,8]},{"path":[4,95,2,0,1],"span":[512,9,11]},{"path":[4,95,2,0,3],"span":[512,14,15]},{"path":[4,95,2,1],"span":[513,2,41]},{"path":[4,95,2,1,4],"span":[513,2,10]},{"path":[4,95,2,1,6],"span":[513,11,27]},{"path":[4,95,2,1,1],"span":[513,28,36]},{"path":[4,95,2,1,3],"span":[513,39,40]},{"path":[4,96],"span":[516,0,520,1]},{"path":[4,96,1],"span":[516,8,24]},{"path":[4,96,2,0],"span":[517,2,23]},{"path":[4,96,2,0,5],"span":[517,2,8]},{"path":[4,96,2,0,1],"span":[517,9,18]},{"path":[4,96,2,0,3],"span":[517,21,22]},{"path":[4,96,2,1],"span":[518,2,18]},{"path":[4,96,2,1,5],"span":[518,2,7]},{"path":[4,96,2,1,1],"span":[518,8,13]},{"path":[4,96,2,1,3],"span":[518,16,17]},{"path":[4,96,2,2],"span":[519,2,25]},{"path":[4,96,2,2,5],"span":[519,2,6]},{"path":[4,96,2,2,1],"span":[519,7,20]},{"path":[4,96,2,2,3],"span":[519,23,24]},{"path":[4,97],"span":[522,0,526,1]},{"path":[4,97,1],"span":[522,8,24]},{"path":[4,97,2,0],"span":[523,2,18]},{"path":[4,97,2,0,5],"span":[523,2,7]},{"path":[4,97,2,0,1],"span":[523,8,13]},{"path":[4,97,2,0,3],"span":[523,16,17]},{"path":[4,97,2,1],"span":[524,2,30]},{"path":[4,97,2,1,4],"span":[524,2,10]},{"path":[4,97,2,1,6],"span":[524,11,19]},{"path":[4,97,2,1,1],"span":[524,20,25]},{"path":[4,97,2,1,3],"span":[524,28,29]},{"path":[4,97,2,2],"span":[525,2,33]},{"path":[4,97,2,2,6],"span":[525,2,18]},{"path":[4,97,2,2,1],"span":[525,19,28]},{"path":[4,97,2,2,3],"span":[525,31,32]},{"path":[4,98],"span":[528,0,531,1]},{"path":[4,98,1],"span":[528,8,22]},{"path":[4,98,2,0],"span":[529,2,19]},{"path":[4,98,2,0,5],"span":[529,2,7]},{"path":[4,98,2,0,1],"span":[529,8,14]},{"path":[4,98,2,0,3],"span":[529,17,18]},{"path":[4,98,2,1],"span":[530,2,18]},{"path":[4,98,2,1,5],"span":[530,2,7]},{"path":[4,98,2,1,1],"span":[530,8,13]},{"path":[4,98,2,1,3],"span":[530,16,17]},{"path":[4,99],"span":[533,0,538,1]},{"path":[4,99,1],"span":[533,8,26]},{"path":[4,99,2,0],"span":[534,2,18]},{"path":[4,99,2,0,5],"span":[534,2,7]},{"path":[4,99,2,0,1],"span":[534,8,13]},{"path":[4,99,2,0,3],"span":[534,16,17]},{"path":[4,99,2,1],"span":[535,2,19]},{"path":[4,99,2,1,5],"span":[535,2,7]},{"path":[4,99,2,1,1],"span":[535,8,14]},{"path":[4,99,2,1,3],"span":[535,17,18]},{"path":[4,99,2,2],"span":[536,2,18]},{"path":[4,99,2,2,5],"span":[536,2,7]},{"path":[4,99,2,2,1],"span":[536,8,13]},{"path":[4,99,2,2,3],"span":[536,16,17]},{"path":[4,99,2,3],"span":[537,2,25]},{"path":[4,99,2,3,5],"span":[537,2,6]},{"path":[4,99,2,3,1],"span":[537,7,20]},{"path":[4,99,2,3,3],"span":[537,23,24]},{"path":[4,100],"span":[540,0,548,1]},{"path":[4,100,1],"span":[540,8,38]},{"path":[4,100,2,0],"span":[541,2,21]},{"path":[4,100,2,0,5],"span":[541,2,8]},{"path":[4,100,2,0,1],"span":[541,9,16]},{"path":[4,100,2,0,3],"span":[541,19,20]},{"path":[4,100,3,0],"span":[542,2,545,3]},{"path":[4,100,3,0,1],"span":[542,10,31]},{"path":[4,100,3,0,2,0],"span":[543,4,21]},{"path":[4,100,3,0,2,0,5],"span":[543,4,9]},{"path":[4,100,3,0,2,0,1],"span":[543,10,16]},{"path":[4,100,3,0,2,0,3],"span":[543,19,20]},{"path":[4,100,3,0,2,1],"span":[544,4,20]},{"path":[4,100,3,0,2,1,5],"span":[544,4,9]},{"path":[4,100,3,0,2,1,1],"span":[544,10,15]},{"path":[4,100,3,0,2,1,3],"span":[544,18,19]},{"path":[4,100,2,1],"span":[546,2,44]},{"path":[4,100,2,1,6],"span":[546,2,23]},{"path":[4,100,2,1,1],"span":[546,24,39]},{"path":[4,100,2,1,3],"span":[546,42,43]},{"path":[4,100,2,2],"span":[547,2,22]},{"path":[4,100,2,2,5],"span":[547,2,8]},{"path":[4,100,2,2,1],"span":[547,9,17]},{"path":[4,100,2,2,3],"span":[547,20,21]},{"path":[4,101],"span":[550,0,563,1]},{"path":[4,101,1],"span":[550,8,39]},{"path":[4,101,3,0],"span":[551,2,554,3]},{"path":[4,101,3,0,1],"span":[551,10,26]},{"path":[4,101,3,0,2,0],"span":[552,4,18]},{"path":[4,101,3,0,2,0,5],"span":[552,4,10]},{"path":[4,101,3,0,2,0,1],"span":[552,11,13]},{"path":[4,101,3,0,2,0,3],"span":[552,16,17]},{"path":[4,101,3,0,2,1],"span":[553,4,20]},{"path":[4,101,3,0,2,1,5],"span":[553,4,10]},{"path":[4,101,3,0,2,1,1],"span":[553,11,15]},{"path":[4,101,3,0,2,1,3],"span":[553,18,19]},{"path":[4,101,2,0],"span":[555,2,46]},{"path":[4,101,2,0,4],"span":[555,2,10]},{"path":[4,101,2,0,6],"span":[555,11,27]},{"path":[4,101,2,0,1],"span":[555,28,41]},{"path":[4,101,2,0,3],"span":[555,44,45]},{"path":[4,101,3,1],"span":[556,2,561,3]},{"path":[4,101,3,1,1],"span":[556,10,22]},{"path":[4,101,3,1,2,0],"span":[557,4,20]},{"path":[4,101,3,1,2,0,5],"span":[557,4,9]},{"path":[4,101,3,1,2,0,1],"span":[557,10,15]},{"path":[4,101,3,1,2,0,3],"span":[557,18,19]},{"path":[4,101,3,1,2,1],"span":[558,4,21]},{"path":[4,101,3,1,2,1,5],"span":[558,4,9]},{"path":[4,101,3,1,2,1,1],"span":[558,10,16]},{"path":[4,101,3,1,2,1,3],"span":[558,19,20]},{"path":[4,101,3,1,2,2],"span":[559,4,20]},{"path":[4,101,3,1,2,2,5],"span":[559,4,9]},{"path":[4,101,3,1,2,2,1],"span":[559,10,15]},{"path":[4,101,3,1,2,2,3],"span":[559,18,19]},{"path":[4,101,3,1,2,3],"span":[560,4,27]},{"path":[4,101,3,1,2,3,5],"span":[560,4,8]},{"path":[4,101,3,1,2,3,1],"span":[560,9,22]},{"path":[4,101,3,1,2,3,3],"span":[560,25,26]},{"path":[4,101,2,1],"span":[562,2,34]},{"path":[4,101,2,1,6],"span":[562,2,14]},{"path":[4,101,2,1,1],"span":[562,15,29]},{"path":[4,101,2,1,3],"span":[562,32,33]},{"path":[4,102],"span":[565,0,569,1]},{"path":[4,102,1],"span":[565,8,41]},{"path":[4,102,2,0],"span":[566,2,21]},{"path":[4,102,2,0,5],"span":[566,2,8]},{"path":[4,102,2,0,1],"span":[566,9,16]},{"path":[4,102,2,0,3],"span":[566,19,20]},{"path":[4,102,2,1],"span":[567,2,34]},{"path":[4,102,2,1,5],"span":[567,2,8]},{"path":[4,102,2,1,1],"span":[567,9,29]},{"path":[4,102,2,1,3],"span":[567,32,33]},{"path":[4,102,2,2],"span":[568,2,22]},{"path":[4,102,2,2,5],"span":[568,2,8]},{"path":[4,102,2,2,1],"span":[568,9,17]},{"path":[4,102,2,2,3],"span":[568,20,21]},{"path":[4,103],"span":[571,0,576,1]},{"path":[4,103,1],"span":[571,8,42]},{"path":[4,103,2,0],"span":[572,2,16]},{"path":[4,103,2,0,5],"span":[572,2,8]},{"path":[4,103,2,0,1],"span":[572,9,11]},{"path":[4,103,2,0,3],"span":[572,14,15]},{"path":[4,103,2,1],"span":[573,2,18]},{"path":[4,103,2,1,5],"span":[573,2,8]},{"path":[4,103,2,1,1],"span":[573,9,13]},{"path":[4,103,2,1,3],"span":[573,16,17]},{"path":[4,103,2,2],"span":[574,2,22]},{"path":[4,103,2,2,5],"span":[574,2,6]},{"path":[4,103,2,2,1],"span":[574,7,17]},{"path":[4,103,2,2,3],"span":[574,20,21]},{"path":[4,103,2,3],"span":[575,2,53]},{"path":[4,103,2,3,5],"span":[575,2,6]},{"path":[4,103,2,3,1],"span":[575,7,48]},{"path":[4,103,2,3,3],"span":[575,51,52]},{"path":[4,104],"span":[578,0,583,1]},{"path":[4,104,1],"span":[578,8,43]},{"path":[4,104,2,0],"span":[579,2,21]},{"path":[4,104,2,0,5],"span":[579,2,8]},{"path":[4,104,2,0,1],"span":[579,9,16]},{"path":[4,104,2,0,3],"span":[579,19,20]},{"path":[4,104,2,1],"span":[580,2,34]},{"path":[4,104,2,1,5],"span":[580,2,8]},{"path":[4,104,2,1,1],"span":[580,9,29]},{"path":[4,104,2,1,3],"span":[580,32,33]},{"path":[4,104,2,2],"span":[581,2,37]},{"path":[4,104,2,2,6],"span":[581,2,16]},{"path":[4,104,2,2,1],"span":[581,17,32]},{"path":[4,104,2,2,3],"span":[581,35,36]},{"path":[4,104,2,3],"span":[582,2,22]},{"path":[4,104,2,3,5],"span":[582,2,8]},{"path":[4,104,2,3,1],"span":[582,9,17]},{"path":[4,104,2,3,3],"span":[582,20,21]},{"path":[4,105],"span":[585,0,588,1]},{"path":[4,105,1],"span":[585,8,44]},{"path":[4,105,2,0],"span":[586,2,33]},{"path":[4,105,2,0,4],"span":[586,2,10]},{"path":[4,105,2,0,6],"span":[586,11,22]},{"path":[4,105,2,0,1],"span":[586,23,28]},{"path":[4,105,2,0,3],"span":[586,31,32]},{"path":[4,105,2,1],"span":[587,2,46]},{"path":[4,105,2,1,6],"span":[587,2,20]},{"path":[4,105,2,1,1],"span":[587,21,41]},{"path":[4,105,2,1,3],"span":[587,44,45]},{"path":[4,106],"span":[590,0,593,1]},{"path":[4,106,1],"span":[590,8,47]},{"path":[4,106,2,0],"span":[591,2,21]},{"path":[4,106,2,0,5],"span":[591,2,8]},{"path":[4,106,2,0,1],"span":[591,9,16]},{"path":[4,106,2,0,3],"span":[591,19,20]},{"path":[4,106,2,1],"span":[592,2,19]},{"path":[4,106,2,1,5],"span":[592,2,6]},{"path":[4,106,2,1,1],"span":[592,7,14]},{"path":[4,106,2,1,3],"span":[592,17,18]},{"path":[4,107],"span":[595,0,597,1]},{"path":[4,107,1],"span":[595,8,46]},{"path":[4,107,2,0],"span":[596,2,21]},{"path":[4,107,2,0,5],"span":[596,2,8]},{"path":[4,107,2,0,1],"span":[596,9,16]},{"path":[4,107,2,0,3],"span":[596,19,20]},{"path":[4,108],"span":[599,0,601,1]},{"path":[4,108,1],"span":[599,8,48]},{"path":[4,108,2,0],"span":[600,2,21]},{"path":[4,108,2,0,5],"span":[600,2,8]},{"path":[4,108,2,0,1],"span":[600,9,16]},{"path":[4,108,2,0,3],"span":[600,19,20]},{"path":[4,109],"span":[603,0,605,1]},{"path":[4,109,1],"span":[603,8,47]},{"path":[4,109,2,0],"span":[604,2,22]},{"path":[4,109,2,0,5],"span":[604,2,6]},{"path":[4,109,2,0,1],"span":[604,7,17]},{"path":[4,109,2,0,3],"span":[604,20,21]},{"path":[4,110],"span":[607,0,609,1]},{"path":[4,110,1],"span":[607,8,49]},{"path":[4,110,2,0],"span":[608,2,22]},{"path":[4,110,2,0,5],"span":[608,2,6]},{"path":[4,110,2,0,1],"span":[608,7,17]},{"path":[4,110,2,0,3],"span":[608,20,21]},{"path":[4,111],"span":[611,0,613,1]},{"path":[4,111,1],"span":[611,8,29]},{"path":[4,111,2,0],"span":[612,2,21]},{"path":[4,111,2,0,5],"span":[612,2,8]},{"path":[4,111,2,0,1],"span":[612,9,16]},{"path":[4,111,2,0,3],"span":[612,19,20]},{"path":[4,112],"span":[615,0,617,1]},{"path":[4,112,1],"span":[615,8,30]},{"path":[4,112,2,0],"span":[616,2,23]},{"path":[4,112,2,0,6],"span":[616,2,13]},{"path":[4,112,2,0,1],"span":[616,14,18]},{"path":[4,112,2,0,3],"span":[616,21,22]},{"path":[4,113],"span":[619,0,624,1]},{"path":[4,113,1],"span":[619,8,45]},{"path":[4,113,2,0],"span":[620,2,18]},{"path":[4,113,2,0,5],"span":[620,2,8]},{"path":[4,113,2,0,1],"span":[620,9,13]},{"path":[4,113,2,0,3],"span":[620,16,17]},{"path":[4,113,2,1],"span":[621,2,36]},{"path":[4,113,2,1,5],"span":[621,2,8]},{"path":[4,113,2,1,1],"span":[621,9,31]},{"path":[4,113,2,1,3],"span":[621,34,35]},{"path":[4,113,2,2],"span":[622,2,31]},{"path":[4,113,2,2,4],"span":[622,2,10]},{"path":[4,113,2,2,5],"span":[622,11,17]},{"path":[4,113,2,2,1],"span":[622,18,26]},{"path":[4,113,2,2,3],"span":[622,29,30]},{"path":[4,113,2,3],"span":[623,2,34]},{"path":[4,113,2,3,4],"span":[623,2,10]},{"path":[4,113,2,3,5],"span":[623,11,17]},{"path":[4,113,2,3,1],"span":[623,18,29]},{"path":[4,113,2,3,3],"span":[623,32,33]},{"path":[4,114],"span":[626,0,628,1]},{"path":[4,114,1],"span":[626,8,46]},{"path":[4,114,2,0],"span":[627,2,19]},{"path":[4,114,2,0,5],"span":[627,2,8]},{"path":[4,114,2,0,1],"span":[627,9,14]},{"path":[4,114,2,0,3],"span":[627,17,18]},{"path":[4,115],"span":[630,0,633,1]},{"path":[4,115,1],"span":[630,8,38]},{"path":[4,115,2,0],"span":[631,2,21]},{"path":[4,115,2,0,5],"span":[631,2,8]},{"path":[4,115,2,0,1],"span":[631,9,16]},{"path":[4,115,2,0,3],"span":[631,19,20]},{"path":[4,115,2,1],"span":[632,2,24]},{"path":[4,115,2,1,5],"span":[632,2,8]},{"path":[4,115,2,1,1],"span":[632,9,19]},{"path":[4,115,2,1,3],"span":[632,22,23]},{"path":[4,116],"span":[635,0,637,1]},{"path":[4,116,1],"span":[635,8,39]},{"path":[4,116,2,0],"span":[636,2,33]},{"path":[4,116,2,0,5],"span":[636,2,8]},{"path":[4,116,2,0,1],"span":[636,9,28]},{"path":[4,116,2,0,3],"span":[636,31,32]},{"path":[4,117],"span":[639,0,642,1]},{"path":[4,117,1],"span":[639,8,42]},{"path":[4,117,2,0],"span":[640,2,22]},{"path":[4,117,2,0,5],"span":[640,2,8]},{"path":[4,117,2,0,1],"span":[640,9,17]},{"path":[4,117,2,0,3],"span":[640,20,21]},{"path":[4,117,2,1],"span":[641,2,21]},{"path":[4,117,2,1,5],"span":[641,2,8]},{"path":[4,117,2,1,1],"span":[641,9,16]},{"path":[4,117,2,1,3],"span":[641,19,20]},{"path":[4,118],"span":[644,0,646,1]},{"path":[4,118,1],"span":[644,8,43]},{"path":[4,118,2,0],"span":[645,2,24]},{"path":[4,118,2,0,5],"span":[645,2,8]},{"path":[4,118,2,0,1],"span":[645,9,19]},{"path":[4,118,2,0,3],"span":[645,22,23]},{"path":[6,0],"span":[648,0,704,1]},{"path":[6,0,1],"span":[648,8,19]},{"path":[6,0,2,0],"span":[649,2,121]},{"path":[6,0,2,0,1],"span":[649,6,34]},{"path":[6,0,2,0,2],"span":[649,35,70]},{"path":[6,0,2,0,3],"span":[649,81,117]},{"path":[6,0,2,1],"span":[650,2,118]},{"path":[6,0,2,1,1],"span":[650,6,33]},{"path":[6,0,2,1,2],"span":[650,34,68]},{"path":[6,0,2,1,3],"span":[650,79,114]},{"path":[6,0,2,2],"span":[651,2,100]},{"path":[6,0,2,2,1],"span":[651,6,27]},{"path":[6,0,2,2,2],"span":[651,28,56]},{"path":[6,0,2,2,3],"span":[651,67,96]},{"path":[6,0,2,3],"span":[652,2,127]},{"path":[6,0,2,3,1],"span":[652,6,36]},{"path":[6,0,2,3,2],"span":[652,37,74]},{"path":[6,0,2,3,3],"span":[652,85,123]},{"path":[6,0,2,4],"span":[653,2,127]},{"path":[6,0,2,4,1],"span":[653,6,36]},{"path":[6,0,2,4,2],"span":[653,37,74]},{"path":[6,0,2,4,3],"span":[653,85,123]},{"path":[6,0,2,5],"span":[654,2,106]},{"path":[6,0,2,5,1],"span":[654,6,29]},{"path":[6,0,2,5,2],"span":[654,30,60]},{"path":[6,0,2,5,3],"span":[654,71,102]},{"path":[6,0,2,6],"span":[656,2,115]},{"path":[6,0,2,6,1],"span":[656,6,32]},{"path":[6,0,2,6,2],"span":[656,33,66]},{"path":[6,0,2,6,3],"span":[656,77,111]},{"path":[6,0,2,7],"span":[657,2,76]},{"path":[6,0,2,7,1],"span":[657,6,19]},{"path":[6,0,2,7,2],"span":[657,20,40]},{"path":[6,0,2,7,3],"span":[657,51,72]},{"path":[6,0,2,8],"span":[658,2,76]},{"path":[6,0,2,8,1],"span":[658,6,19]},{"path":[6,0,2,8,2],"span":[658,20,40]},{"path":[6,0,2,8,3],"span":[658,51,72]},{"path":[6,0,2,9],"span":[659,2,97]},{"path":[6,0,2,9,1],"span":[659,6,26]},{"path":[6,0,2,9,2],"span":[659,27,54]},{"path":[6,0,2,9,3],"span":[659,65,93]},{"path":[6,0,2,10],"span":[660,2,88]},{"path":[6,0,2,10,1],"span":[660,6,23]},{"path":[6,0,2,10,2],"span":[660,24,48]},{"path":[6,0,2,10,3],"span":[660,59,84]},{"path":[6,0,2,11],"span":[661,2,118]},{"path":[6,0,2,11,1],"span":[661,6,33]},{"path":[6,0,2,11,2],"span":[661,34,68]},{"path":[6,0,2,11,3],"span":[661,79,114]},{"path":[6,0,2,12],"span":[662,2,82]},{"path":[6,0,2,12,1],"span":[662,6,21]},{"path":[6,0,2,12,2],"span":[662,22,44]},{"path":[6,0,2,12,3],"span":[662,55,78]},{"path":[6,0,2,13],"span":[663,2,97]},{"path":[6,0,2,13,1],"span":[663,6,28]},{"path":[6,0,2,13,2],"span":[663,29,58]},{"path":[6,0,2,13,3],"span":[663,69,93]},{"path":[6,0,2,14],"span":[664,2,97]},{"path":[6,0,2,14,1],"span":[664,6,26]},{"path":[6,0,2,14,2],"span":[664,27,54]},{"path":[6,0,2,14,3],"span":[664,65,93]},{"path":[6,0,2,15],"span":[665,2,106]},{"path":[6,0,2,15,1],"span":[665,6,29]},{"path":[6,0,2,15,2],"span":[665,30,60]},{"path":[6,0,2,15,3],"span":[665,71,102]},{"path":[6,0,2,16],"span":[666,2,106]},{"path":[6,0,2,16,1],"span":[666,6,29]},{"path":[6,0,2,16,2],"span":[666,30,60]},{"path":[6,0,2,16,3],"span":[666,71,102]},{"path":[6,0,2,17],"span":[667,2,115]},{"path":[6,0,2,17,1],"span":[667,6,32]},{"path":[6,0,2,17,2],"span":[667,33,66]},{"path":[6,0,2,17,3],"span":[667,77,111]},{"path":[6,0,2,18],"span":[668,2,106]},{"path":[6,0,2,18,1],"span":[668,6,29]},{"path":[6,0,2,18,2],"span":[668,30,60]},{"path":[6,0,2,18,3],"span":[668,71,102]},{"path":[6,0,2,19],"span":[669,2,112]},{"path":[6,0,2,19,1],"span":[669,6,31]},{"path":[6,0,2,19,2],"span":[669,32,64]},{"path":[6,0,2,19,3],"span":[669,75,108]},{"path":[6,0,2,20],"span":[670,2,130]},{"path":[6,0,2,20,1],"span":[670,6,37]},{"path":[6,0,2,20,2],"span":[670,38,76]},{"path":[6,0,2,20,3],"span":[670,87,126]},{"path":[6,0,2,21],"span":[671,2,91]},{"path":[6,0,2,21,1],"span":[671,6,24]},{"path":[6,0,2,21,2],"span":[671,25,50]},{"path":[6,0,2,21,3],"span":[671,61,87]},{"path":[6,0,2,22],"span":[672,2,151]},{"path":[6,0,2,22,1],"span":[672,6,44]},{"path":[6,0,2,22,2],"span":[672,45,90]},{"path":[6,0,2,22,3],"span":[672,101,147]},{"path":[6,0,2,23],"span":[673,2,99]},{"path":[6,0,2,23,1],"span":[673,6,30]},{"path":[6,0,2,23,2],"span":[673,31,57]},{"path":[6,0,2,23,3],"span":[673,68,95]},{"path":[6,0,2,24],"span":[674,2,100]},{"path":[6,0,2,24,1],"span":[674,6,39]},{"path":[6,0,2,24,2],"span":[674,40,62]},{"path":[6,0,2,24,3],"span":[674,73,96]},{"path":[6,0,2,25],"span":[675,2,100]},{"path":[6,0,2,25,1],"span":[675,6,27]},{"path":[6,0,2,25,2],"span":[675,28,56]},{"path":[6,0,2,25,3],"span":[675,67,96]},{"path":[6,0,2,26],"span":[676,2,112]},{"path":[6,0,2,26,1],"span":[676,6,31]},{"path":[6,0,2,26,2],"span":[676,32,64]},{"path":[6,0,2,26,3],"span":[676,75,108]},{"path":[6,0,2,27],"span":[677,2,103]},{"path":[6,0,2,27,1],"span":[677,6,28]},{"path":[6,0,2,27,2],"span":[677,29,58]},{"path":[6,0,2,27,3],"span":[677,69,99]},{"path":[6,0,2,28],"span":[678,2,118]},{"path":[6,0,2,28,1],"span":[678,6,33]},{"path":[6,0,2,28,2],"span":[678,34,68]},{"path":[6,0,2,28,3],"span":[678,79,114]},{"path":[6,0,2,29],"span":[679,2,133]},{"path":[6,0,2,29,1],"span":[679,6,38]},{"path":[6,0,2,29,2],"span":[679,39,78]},{"path":[6,0,2,29,3],"span":[679,89,129]},{"path":[6,0,2,30],"span":[680,2,85]},{"path":[6,0,2,30,1],"span":[680,6,22]},{"path":[6,0,2,30,2],"span":[680,23,46]},{"path":[6,0,2,30,3],"span":[680,57,81]},{"path":[6,0,2,31],"span":[681,2,109]},{"path":[6,0,2,31,1],"span":[681,6,30]},{"path":[6,0,2,31,2],"span":[681,31,62]},{"path":[6,0,2,31,3],"span":[681,73,105]},{"path":[6,0,2,32],"span":[682,2,684,3]},{"path":[6,0,2,32,1],"span":[682,6,22]},{"path":[6,0,2,32,2],"span":[682,23,46]},{"path":[6,0,2,32,3],"span":[682,57,81]},{"path":[6,0,2,32,4],"span":[683,4,29]},{"path":[6,0,2,32,4,33],"span":[683,4,29]},{"path":[6,0,2,33],"span":[685,2,88]},{"path":[6,0,2,33,1],"span":[685,6,23]},{"path":[6,0,2,33,2],"span":[685,24,48]},{"path":[6,0,2,33,3],"span":[685,59,84]},{"path":[6,0,2,34],"span":[686,2,113]},{"path":[6,0,2,34,1],"span":[686,6,39]},{"path":[6,0,2,34,2],"span":[686,40,69]},{"path":[6,0,2,34,3],"span":[686,80,109]},{"path":[6,0,2,35],"span":[687,2,133]},{"path":[6,0,2,35,1],"span":[687,6,38]},{"path":[6,0,2,35,2],"span":[687,39,78]},{"path":[6,0,2,35,3],"span":[687,89,129]},{"path":[6,0,2,36],"span":[688,2,91]},{"path":[6,0,2,36,1],"span":[688,6,24]},{"path":[6,0,2,36,2],"span":[688,25,50]},{"path":[6,0,2,36,3],"span":[688,61,87]},{"path":[6,0,2,37],"span":[689,2,76]},{"path":[6,0,2,37,1],"span":[689,6,19]},{"path":[6,0,2,37,2],"span":[689,20,40]},{"path":[6,0,2,37,3],"span":[689,51,72]},{"path":[6,0,2,38],"span":[690,2,106]},{"path":[6,0,2,38,1],"span":[690,6,29]},{"path":[6,0,2,38,2],"span":[690,30,60]},{"path":[6,0,2,38,3],"span":[690,71,102]},{"path":[6,0,2,39],"span":[691,2,115]},{"path":[6,0,2,39,1],"span":[691,6,32]},{"path":[6,0,2,39,2],"span":[691,33,66]},{"path":[6,0,2,39,3],"span":[691,77,111]},{"path":[6,0,2,40],"span":[692,2,121]},{"path":[6,0,2,40,1],"span":[692,6,34]},{"path":[6,0,2,40,2],"span":[692,35,70]},{"path":[6,0,2,40,3],"span":[692,81,117]},{"path":[6,0,2,41],"span":[693,2,109]},{"path":[6,0,2,41,1],"span":[693,6,30]},{"path":[6,0,2,41,2],"span":[693,31,62]},{"path":[6,0,2,41,3],"span":[693,73,105]},{"path":[6,0,2,42],"span":[694,2,114]},{"path":[6,0,2,42,1],"span":[694,6,38]},{"path":[6,0,2,42,2],"span":[694,39,78]},{"path":[6,0,2,42,3],"span":[694,89,110]},{"path":[6,0,2,43],"span":[695,2,130]},{"path":[6,0,2,43,1],"span":[695,6,37]},{"path":[6,0,2,43,2],"span":[695,38,76]},{"path":[6,0,2,43,3],"span":[695,87,126]},{"path":[6,0,2,44],"span":[696,2,136]},{"path":[6,0,2,44,1],"span":[696,6,39]},{"path":[6,0,2,44,2],"span":[696,40,80]},{"path":[6,0,2,44,3],"span":[696,91,132]},{"path":[6,0,2,45],"span":[697,2,79]},{"path":[6,0,2,45,1],"span":[697,6,20]},{"path":[6,0,2,45,2],"span":[697,21,42]},{"path":[6,0,2,45,3],"span":[697,53,75]},{"path":[6,0,2,46],"span":[698,2,109]},{"path":[6,0,2,46,1],"span":[698,6,30]},{"path":[6,0,2,46,2],"span":[698,31,62]},{"path":[6,0,2,46,3],"span":[698,73,105]},{"path":[6,0,2,47],"span":[699,2,94]},{"path":[6,0,2,47,1],"span":[699,6,25]},{"path":[6,0,2,47,2],"span":[699,26,52]},{"path":[6,0,2,47,3],"span":[699,63,90]},{"path":[6,0,2,48],"span":[700,2,61]},{"path":[6,0,2,48,1],"span":[700,6,14]},{"path":[6,0,2,48,2],"span":[700,15,30]},{"path":[6,0,2,48,3],"span":[700,41,57]},{"path":[6,0,2,49],"span":[701,2,127]},{"path":[6,0,2,49,1],"span":[701,6,36]},{"path":[6,0,2,49,2],"span":[701,37,74]},{"path":[6,0,2,49,3],"span":[701,85,123]},{"path":[6,0,2,50],"span":[702,2,106]},{"path":[6,0,2,50,1],"span":[702,6,29]},{"path":[6,0,2,50,2],"span":[702,30,60]},{"path":[6,0,2,50,3],"span":[702,71,102]},{"path":[6,0,2,51],"span":[703,2,118]},{"path":[6,0,2,51,1],"span":[703,6,33]},{"path":[6,0,2,51,2],"span":[703,34,68]},{"path":[6,0,2,51,3],"span":[703,79,114]}]},"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":"limits/limits.proto","package":"lansweeper.shared.limits.v1","dependency":["google/protobuf/timestamp.proto"],"messageType":[{"name":"CalculateRiskInsights","field":[{"name":"from_year","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"fromYear","proto3Optional":true},{"name":"from_severity","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.shared.limits.v1.RiskInsightsSeverity","oneofIndex":1,"jsonName":"fromSeverity","proto3Optional":true},{"name":"max","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"max","proto3Optional":true}],"oneofDecl":[{"name":"_from_year"},{"name":"_from_severity"},{"name":"_max"}]},{"name":"ExpirableAllowedEntities","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"expires_at","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":0,"jsonName":"expiresAt","proto3Optional":true}],"oneofDecl":[{"name":"_expires_at"}]},{"name":"BaseLimit","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"value"},{"name":"allowed_entities","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.ExpirableAllowedEntities","jsonName":"allowedEntities"}],"reservedRange":[{"start":2,"end":3}]},{"name":"RiskInsights","field":[{"name":"view_assets","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.BaseLimit","jsonName":"viewAssets"}]},{"name":"Assets","field":[{"name":"view_risk_insights","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.BaseLimit","jsonName":"viewRiskInsights"},{"name":"view_lifecycle","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.BaseLimit","jsonName":"viewLifecycle"}]},{"name":"Scopes","field":[{"name":"create_max","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"createMax"}]},{"name":"Attachments","field":[{"name":"max_bytes_per_asset","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"maxBytesPerAsset"}]},{"name":"SiteLimits","field":[{"name":"tier","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.shared.limits.v1.SiteLimitsTiers","jsonName":"tier"},{"name":"risk_insights","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.RiskInsights","oneofIndex":0,"jsonName":"riskInsights","proto3Optional":true},{"name":"assets","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.Assets","oneofIndex":1,"jsonName":"assets","proto3Optional":true},{"name":"scopes","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.Scopes","jsonName":"scopes"},{"name":"attachments","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.Attachments","jsonName":"attachments"}],"oneofDecl":[{"name":"_risk_insights"},{"name":"_assets"}],"reservedRange":[{"start":2,"end":3}]}],"enumType":[{"name":"SiteLimitsTiers","value":[{"name":"SUBSCRIPTION_TYPE_VALUE_STARTER","number":0},{"name":"SUBSCRIPTION_TYPE_VALUE_PRO","number":1},{"name":"SUBSCRIPTION_TYPE_VALUE_ENTERPRISE","number":2}]},{"name":"RiskInsightsSeverity","value":[{"name":"RISK_INSIGHT_SEVERITY_LOW","number":0},{"name":"RISK_INSIGHT_SEVERITY_MEDIUM","number":1},{"name":"RISK_INSIGHT_SEVERITY_HIGH","number":2},{"name":"RISK_INSIGHT_SEVERITY_CRITICAL","number":3}]}],"options":{"goPackage":"github.com/Lansweeper/lansweeperapis/packages/shared/generated-go;limits"},"sourceCodeInfo":{"location":[{"span":[0,0,61,1]},{"path":[12],"span":[0,0,18]},{"path":[2],"span":[2,0,36]},{"path":[8],"span":[3,0,95]},{"path":[8,11],"span":[3,0,95]},{"path":[3,0],"span":[4,0,41]},{"path":[5,0],"span":[7,0,11,1]},{"path":[5,0,1],"span":[7,5,20]},{"path":[5,0,2,0],"span":[8,2,38]},{"path":[5,0,2,0,1],"span":[8,2,33]},{"path":[5,0,2,0,2],"span":[8,36,37]},{"path":[5,0,2,1],"span":[9,2,34]},{"path":[5,0,2,1,1],"span":[9,2,29]},{"path":[5,0,2,1,2],"span":[9,32,33]},{"path":[5,0,2,2],"span":[10,2,41]},{"path":[5,0,2,2,1],"span":[10,2,36]},{"path":[5,0,2,2,2],"span":[10,39,40]},{"path":[5,1],"span":[13,0,18,1]},{"path":[5,1,1],"span":[13,5,25]},{"path":[5,1,2,0],"span":[14,2,32]},{"path":[5,1,2,0,1],"span":[14,2,27]},{"path":[5,1,2,0,2],"span":[14,30,31]},{"path":[5,1,2,1],"span":[15,2,35]},{"path":[5,1,2,1,1],"span":[15,2,30]},{"path":[5,1,2,1,2],"span":[15,33,34]},{"path":[5,1,2,2],"span":[16,2,33]},{"path":[5,1,2,2,1],"span":[16,2,28]},{"path":[5,1,2,2,2],"span":[16,31,32]},{"path":[5,1,2,3],"span":[17,2,37]},{"path":[5,1,2,3,1],"span":[17,2,32]},{"path":[5,1,2,3,2],"span":[17,35,36]},{"path":[4,0],"span":[20,0,24,1]},{"path":[4,0,1],"span":[20,8,29]},{"path":[4,0,2,0],"span":[21,2,32]},{"path":[4,0,2,0,4],"span":[21,2,10]},{"path":[4,0,2,0,5],"span":[21,11,17]},{"path":[4,0,2,0,1],"span":[21,18,27]},{"path":[4,0,2,0,3],"span":[21,30,31]},{"path":[4,0,2,1],"span":[22,2,50]},{"path":[4,0,2,1,4],"span":[22,2,10]},{"path":[4,0,2,1,6],"span":[22,11,31]},{"path":[4,0,2,1,1],"span":[22,32,45]},{"path":[4,0,2,1,3],"span":[22,48,49]},{"path":[4,0,2,2],"span":[23,2,25]},{"path":[4,0,2,2,4],"span":[23,2,10]},{"path":[4,0,2,2,5],"span":[23,11,16]},{"path":[4,0,2,2,1],"span":[23,17,20]},{"path":[4,0,2,2,3],"span":[23,23,24]},{"path":[4,1],"span":[26,0,29,1]},{"path":[4,1,1],"span":[26,8,32]},{"path":[4,1,2,0],"span":[27,2,17]},{"path":[4,1,2,0,5],"span":[27,2,8]},{"path":[4,1,2,0,1],"span":[27,9,12]},{"path":[4,1,2,0,3],"span":[27,15,16]},{"path":[4,1,2,1],"span":[28,2,52]},{"path":[4,1,2,1,4],"span":[28,2,10]},{"path":[4,1,2,1,6],"span":[28,11,36]},{"path":[4,1,2,1,1],"span":[28,37,47]},{"path":[4,1,2,1,3],"span":[28,50,51]},{"path":[4,2],"span":[31,0,35,1]},{"path":[4,2,1],"span":[31,8,17]},{"path":[4,2,9],"span":[32,2,13]},{"path":[4,2,9,0],"span":[32,11,12]},{"path":[4,2,9,0,1],"span":[32,11,12]},{"path":[4,2,2,0],"span":[33,2,17]},{"path":[4,2,2,0,5],"span":[33,2,6]},{"path":[4,2,2,0,1],"span":[33,7,12]},{"path":[4,2,2,0,3],"span":[33,15,16]},{"path":[4,2,2,1],"span":[34,2,57]},{"path":[4,2,2,1,4],"span":[34,2,10]},{"path":[4,2,2,1,6],"span":[34,11,35]},{"path":[4,2,2,1,1],"span":[34,36,52]},{"path":[4,2,2,1,3],"span":[34,55,56]},{"path":[4,3],"span":[37,0,39,1]},{"path":[4,3,1],"span":[37,8,20]},{"path":[4,3,2,0],"span":[38,2,28]},{"path":[4,3,2,0,6],"span":[38,2,11]},{"path":[4,3,2,0,1],"span":[38,12,23]},{"path":[4,3,2,0,3],"span":[38,26,27]},{"path":[4,4],"span":[41,0,44,1]},{"path":[4,4,1],"span":[41,8,14]},{"path":[4,4,2,0],"span":[42,2,35]},{"path":[4,4,2,0,6],"span":[42,2,11]},{"path":[4,4,2,0,1],"span":[42,12,30]},{"path":[4,4,2,0,3],"span":[42,33,34]},{"path":[4,4,2,1],"span":[43,2,31]},{"path":[4,4,2,1,6],"span":[43,2,11]},{"path":[4,4,2,1,1],"span":[43,12,26]},{"path":[4,4,2,1,3],"span":[43,29,30]},{"path":[4,5],"span":[46,0,48,1]},{"path":[4,5,1],"span":[46,8,14]},{"path":[4,5,2,0],"span":[47,2,23]},{"path":[4,5,2,0,5],"span":[47,2,7]},{"path":[4,5,2,0,1],"span":[47,8,18]},{"path":[4,5,2,0,3],"span":[47,21,22]},{"path":[4,6],"span":[50,0,52,1]},{"path":[4,6,1],"span":[50,8,19]},{"path":[4,6,2,0],"span":[51,2,32]},{"path":[4,6,2,0,5],"span":[51,2,7]},{"path":[4,6,2,0,1],"span":[51,8,27]},{"path":[4,6,2,0,3],"span":[51,30,31]},{"path":[4,7],"span":[54,0,61,1]},{"path":[4,7,1],"span":[54,8,18]},{"path":[4,7,9],"span":[55,2,13]},{"path":[4,7,9,0],"span":[55,11,12]},{"path":[4,7,9,0,1],"span":[55,11,12]},{"path":[4,7,2,0],"span":[56,2,27]},{"path":[4,7,2,0,6],"span":[56,2,17]},{"path":[4,7,2,0,1],"span":[56,18,22]},{"path":[4,7,2,0,3],"span":[56,25,26]},{"path":[4,7,2,1],"span":[57,2,42]},{"path":[4,7,2,1,4],"span":[57,2,10]},{"path":[4,7,2,1,6],"span":[57,11,23]},{"path":[4,7,2,1,1],"span":[57,24,37]},{"path":[4,7,2,1,3],"span":[57,40,41]},{"path":[4,7,2,2],"span":[58,2,29]},{"path":[4,7,2,2,4],"span":[58,2,10]},{"path":[4,7,2,2,6],"span":[58,11,17]},{"path":[4,7,2,2,1],"span":[58,18,24]},{"path":[4,7,2,2,3],"span":[58,27,28]},{"path":[4,7,2,3],"span":[59,2,20]},{"path":[4,7,2,3,6],"span":[59,2,8]},{"path":[4,7,2,3,1],"span":[59,9,15]},{"path":[4,7,2,3,3],"span":[59,18,19]},{"path":[4,7,2,4],"span":[60,2,30]},{"path":[4,7,2,4,6],"span":[60,2,13]},{"path":[4,7,2,4,1],"span":[60,14,25]},{"path":[4,7,2,4,3],"span":[60,28,29]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"google/protobuf/empty.proto","package":"google.protobuf","messageType":[{"name":"Empty"}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"EmptyProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/emptypb","ccEnableArenas":true,"objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"sourceCodeInfo":{"location":[{"span":[30,0,51,16]},{"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,69]},{"path":[8,11],"span":[35,0,69]},{"path":[8],"span":[36,0,44]},{"path":[8,1],"span":[36,0,44]},{"path":[8],"span":[37,0,43]},{"path":[8,8],"span":[37,0,43]},{"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":[8],"span":[40,0,31]},{"path":[8,31],"span":[40,0,31]},{"path":[4,0],"span":[51,0,16],"leadingComments":" A generic empty message that you can re-use to avoid defining duplicated\n empty messages in your APIs. A typical example is to use it as the request\n or the response type of an API method. For instance:\n\n service Foo {\n rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);\n }\n\n The JSON representation for `Empty` is empty JSON object `{}`.\n"},{"path":[4,0,1],"span":[51,8,13]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"proto/multitenant.proto","package":"lansweeper.multitenant.v1","dependency":["limits/limits.proto","google/protobuf/empty.proto"],"messageType":[{"name":"PreviewAccount","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"username","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"username"},{"name":"name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"surname","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"surname"},{"name":"email","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"email"},{"name":"image_url","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"imageUrl"}]},{"name":"GetPreviewAccountByIdRequest","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"}]},{"name":"GetPreviewAccountByIdResponse","field":[{"name":"account","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewAccount","jsonName":"account"}]},{"name":"SearchPreviewAccountsBySiteIdsRequest","field":[{"name":"site_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"siteIds"},{"name":"search","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"search"}]},{"name":"SearchPreviewAccountsBySiteIdsResponse","field":[{"name":"accounts","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewAccount","jsonName":"accounts"}]},{"name":"GetPreviewAccountsByAccountIdsRequest","field":[{"name":"account_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"accountIds"}]},{"name":"GetPreviewAccountsByAccountIdsResponse","field":[{"name":"accounts","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewAccount","jsonName":"accounts"}]},{"name":"SiteMetadata","field":[{"name":"payg","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"payg"}]},{"name":"PreviewSite","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"company_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"companyName"},{"name":"logo_url","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"logoUrl"},{"name":"mode","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.SiteMode","jsonName":"mode"},{"name":"created_by","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewAccount","jsonName":"createdBy"},{"name":"current_subscription_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"currentSubscriptionId"},{"name":"deleted_on","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"deletedOn"},{"name":"metadata","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.SiteMetadata","jsonName":"metadata"}]},{"name":"PatchSiteModeRequest","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"mode","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.SiteMode","jsonName":"mode"}]},{"name":"PatchSiteModeResponse","field":[{"name":"success","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"success"}]},{"name":"Profile","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"site","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewSite","jsonName":"site"},{"name":"is_owner","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isOwner"}]},{"name":"ListProfilesByAccountIdRequest","field":[{"name":"account_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"accountId"},{"name":"include_blocks","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"includeBlocks"},{"name":"being_owner_or_administrator","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"beingOwnerOrAdministrator"}]},{"name":"ListProfilesByAccountIdResponse","field":[{"name":"profile","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Profile","jsonName":"profile"}]},{"name":"ListAuthorizedLinkProfilesRequest","field":[{"name":"account_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"accountId"},{"name":"include_blocks","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"includeBlocks","options":{"deprecated":true}}]},{"name":"ListAuthorizedLinkProfilesResponse","field":[{"name":"profile","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Profile","jsonName":"profile"}]},{"name":"CheckAccessToSiteByAccountIdRequest","field":[{"name":"account_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"accountId"},{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"only_owner","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"onlyOwner"},{"name":"user_info","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest.UserInfo","jsonName":"userInfo"}],"nestedType":[{"name":"UserInfo","field":[{"name":"has_mfa","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"hasMfa"},{"name":"is_sso_login","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isSsoLogin"}]}]},{"name":"CheckAccessToSiteByAccountIdResponse","field":[{"name":"access","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"access"}]},{"name":"CheckAccessToSiteByClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"CheckAccessToSiteByClientIdResponse","field":[{"name":"access","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"access"}]},{"name":"Install","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"display_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"displayName"},{"name":"description","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"description"},{"name":"status","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"status"},{"name":"fqdn","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"fqdn"},{"name":"created_by_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"createdById"},{"name":"global_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"globalId"},{"name":"state","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install.InstallState","jsonName":"state"},{"name":"created_at","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"createdAt"},{"name":"license","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"license"},{"name":"type","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"type","options":{"deprecated":true}},{"name":"install_type","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallType","jsonName":"installType"},{"name":"external_id","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"externalId"}],"nestedType":[{"name":"InstallState","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallStateValue","jsonName":"value"},{"name":"deleted_on","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"deletedOn"},{"name":"deleted_data_started_on","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"deletedDataStartedOn"}]}]},{"name":"InstallCredentials","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"client_secret","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientSecret"}]},{"name":"GetInstallsCountBySiteRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"GetInstallsCountResponse","field":[{"name":"count","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"count"}]},{"name":"GetInstallsByIdRequest","field":[{"name":"install_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"installIds"}]},{"name":"GetInstallsByIdResponse","field":[{"name":"install","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"}]},{"name":"GetInstallsByExternalIdsRequest","field":[{"name":"external_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"externalIds"}]},{"name":"GetInstallsByExternalIdsResponse","field":[{"name":"install","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"}]},{"name":"NullableInstallType","field":[{"name":"data","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallType","oneofIndex":0,"jsonName":"data"}],"oneofDecl":[{"name":"kind"}]},{"name":"GetInstallsBySiteRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"filter","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter","jsonName":"filter"}],"nestedType":[{"name":"Filter","field":[{"name":"state","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallStateValue","jsonName":"state"},{"name":"type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallType","jsonName":"type","options":{"deprecated":true}},{"name":"install_type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.NullableInstallType","jsonName":"installType"}]}]},{"name":"GetInstallsBySiteResponse","field":[{"name":"install","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"}]},{"name":"GetInstallsForMultipleSitesRequest","field":[{"name":"site_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"siteIds"}]},{"name":"GetInstallsForMultipleSitesResponse","field":[{"name":"installs","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"installs"}]},{"name":"GetInstallbyClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"}]},{"name":"GetInstallbyClientIdResponse","field":[{"name":"install","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"}]},{"name":"CreateInstallRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"display_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"displayName"},{"name":"description","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"description"},{"name":"status","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"status"},{"name":"fqdn","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"fqdn"},{"name":"created_by_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"createdById"},{"name":"global_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"globalId"},{"name":"type","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallType","jsonName":"type"},{"name":"client_id","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"}],"reservedRange":[{"start":2,"end":3},{"start":8,"end":9}]},{"name":"CreateInstallResponse","field":[{"name":"install","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"},{"name":"credentials","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.InstallCredentials","jsonName":"credentials"}]},{"name":"CreateAndLinkInstallRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"display_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"displayName"},{"name":"description","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"description"},{"name":"global_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"globalId"},{"name":"type","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallType","jsonName":"type"},{"name":"created_by_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"createdById"},{"name":"client_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"external_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"externalId"}]},{"name":"CreateAndLinkInstallResponse","field":[{"name":"install","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"},{"name":"credentials","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.InstallCredentials","jsonName":"credentials"},{"name":"license","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"license"}]},{"name":"UpdateInstallByClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"display_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"displayName"},{"name":"description","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"description"},{"name":"status","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"status"},{"name":"fqdn","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"fqdn"},{"name":"syncer_settings","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.UpdateInstallByClientIdRequest.SyncerSettings","jsonName":"syncerSettings"}],"nestedType":[{"name":"SyncerSettings","field":[{"name":"send_changed_data_timeout","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"sendChangedDataTimeout"},{"name":"send_fast_changing_data_timeout","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"sendFastChangingDataTimeout"},{"name":"send_non_changed_data_timeout","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"sendNonChangedDataTimeout"},{"name":"sync_interval_in_seconds","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"syncIntervalInSeconds"}]}]},{"name":"UpdateInstallByClientIdResponse","field":[{"name":"install","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"}]},{"name":"RotateInstallByClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"track_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"trackId"}]},{"name":"RotateInstallByClientIdResponse","field":[{"name":"success","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"success"},{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"old_install_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"oldInstallId"},{"name":"new_install_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"newInstallId"}]},{"name":"UnlinkInstallByClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"track_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"trackId"},{"name":"remove_data","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"removeData"},{"name":"from_onprem","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"fromOnprem"}]},{"name":"UnlinkInstallByClientIdResponse","field":[{"name":"success","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"success"}]},{"name":"LinkTrialInstallByClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"display_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"displayName"},{"name":"description","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"description"},{"name":"global_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"globalId"},{"name":"type","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallType","jsonName":"type"}]},{"name":"LinkTrialInstallByClientIdResponse","field":[{"name":"install","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"},{"name":"credentials","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.InstallCredentials","jsonName":"credentials"},{"name":"site","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewSite","jsonName":"site"},{"name":"license","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"license"}]},{"name":"RemoveInstallDataBySiteIdRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"install_ids","number":2,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"installIds"},{"name":"user_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"userId"}]},{"name":"RemoveInstallDataBySiteIdResponse","field":[{"name":"result","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse.Result","jsonName":"result"}],"nestedType":[{"name":"Result","field":[{"name":"install_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"installId"},{"name":"queued","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"queued"}]}]},{"name":"GetDuplicatedInstallsByGlobalIdRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"global_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"globalId"}]},{"name":"GetDuplicatedInstallsByGlobalIdResponse","field":[{"name":"install","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"}]},{"name":"GetUserPermissionsRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"account_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"accountId"}]},{"name":"GetUserPermissionsResponse","field":[{"name":"roles","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetUserPermissionsResponse.Role","jsonName":"roles"}],"nestedType":[{"name":"AuthorizationAction","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"derived_permissions","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"derivedPermissions"}]},{"name":"Scope","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"}]},{"name":"Role","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"actions","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetUserPermissionsResponse.AuthorizationAction","jsonName":"actions"},{"name":"installations","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"installations"},{"name":"scopes","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetUserPermissionsResponse.Scope","jsonName":"scopes"}]}]},{"name":"ValidateApplicationPersonalAccessTokenRequest","field":[{"name":"personal_access_token","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"personalAccessToken"},{"name":"trace_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"traceId"}]},{"name":"ValidateApplicationPersonalAccessTokenResponse","field":[{"name":"user_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"userId"},{"name":"application_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"applicationId"}]},{"name":"DisableWebhookEmailRequest","field":[{"name":"application_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"applicationName"},{"name":"email","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"email","options":{"deprecated":true}},{"name":"errors","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.DisableWebhookEmailRequest.WebhookError","jsonName":"errors"},{"name":"payload_url","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"payloadUrl"},{"name":"webhook_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"webhookName"},{"name":"webhook_url","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"webhookUrl","options":{"deprecated":true}},{"name":"webhook_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"webhookId"},{"name":"application_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"applicationId"}],"nestedType":[{"name":"WebhookError","field":[{"name":"code","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"code"},{"name":"messsage","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"messsage","options":{"deprecated":true}},{"name":"timestamp","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"timestamp"},{"name":"message","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"message"}]}]},{"name":"DisableWebhookEmailResponse","field":[{"name":"mail_sent","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"mailSent"}]},{"name":"Site","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"}]},{"name":"AuthorizedSitesRequest","field":[{"name":"application_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"applicationId"},{"name":"trace_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"traceId"}]},{"name":"AuthorizedSitesResponse","field":[{"name":"site","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Site","jsonName":"site"}]},{"name":"GetAccountIdsBySiteIdRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"GetAccountIdsBySiteIdResponse","field":[{"name":"account_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"accountIds"}]},{"name":"CheckManagerInApplicationRequest","field":[{"name":"application_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"applicationId"},{"name":"manager_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"managerId"}]},{"name":"CheckManagerInApplicationResponse","field":[{"name":"is_manager","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isManager"}]},{"name":"Subscription","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.SubscriptionType","jsonName":"type"},{"name":"assets_limit","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"assetsLimit"},{"name":"expiration_date","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"expirationDate"},{"name":"created_at","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"createdAt"},{"name":"created_by","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"createdBy"}]},{"name":"UpdateSiteSubscriptionRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.SubscriptionType","jsonName":"type"},{"name":"assets_limit","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"assetsLimit"},{"name":"expiration_date","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"expirationDate"},{"name":"updated_by","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"updatedBy"}]},{"name":"UpdateSiteSubscriptionResponse","field":[{"name":"subscription","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Subscription","jsonName":"subscription"}]},{"name":"CreateTrialSiteAndInstallerRequest","field":[{"name":"user_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"userId"}]},{"name":"CreateTrialSiteAndInstallerResponse","field":[{"name":"installer_credentials","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"installerCredentials"}]},{"name":"GetInstallationLicenseByClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"}]},{"name":"GetInstallationLicenseByClientIdResponse","field":[{"name":"license","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"license"}]},{"name":"AllProfileExistsRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"emails","number":2,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"emails"}],"options":{"deprecated":true}},{"name":"AllProfileExistsResponse","field":[{"name":"all","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"all"}],"options":{"deprecated":true}},{"name":"AllProfilesExistRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"emails","number":2,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"emails"}]},{"name":"AllProfilesExistResponse","field":[{"name":"all","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"all"},{"name":"profiles","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Profile","jsonName":"profiles"},{"name":"createdBy","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewAccount","jsonName":"createdBy"}]},{"name":"SendInviteLocalUsersMailRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"SendInviteLocalUsersMailResponse","field":[{"name":"sent","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"sent"}]},{"name":"CreateLinkingCodeRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"account_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"accountId"}]},{"name":"CreateLinkingCodeResponse","field":[{"name":"code","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"code"}]},{"name":"GetSiteIdsWithIntegrationData","field":[{"name":"site_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"siteIds"}]},{"name":"CheckStandardizedSoftwareEnabledRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"CheckStandardizedSoftwareEnabledResponse","field":[{"name":"is_enabled","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isEnabled"}]},{"name":"UpdateSiteMetadataRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"key","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"value"}]},{"name":"UpdateSiteMetadataResponse","field":[{"name":"success","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"success"}]},{"name":"UpdateSiteSkipDataExportRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"skip_data_export","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"skipDataExport"},{"name":"updated_by","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"updatedBy"}]},{"name":"UpdateSiteSkipDataExportResponse","field":[{"name":"success","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"success"}]},{"name":"GetSiteLimitsRequest","field":[{"name":"site_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"siteIds"}]},{"name":"GetSiteLimitsResponse","field":[{"name":"site_limits","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetSiteLimitsResponse.SiteLimitsEntry","jsonName":"siteLimits"}],"nestedType":[{"name":"SiteLimitsEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.SiteLimits","jsonName":"value"}],"options":{"mapEntry":true}}]},{"name":"GetSiteHierarchyIdsRequest","field":[{"name":"offset_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"offsetId","proto3Optional":true},{"name":"limit","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":1,"jsonName":"limit","proto3Optional":true}],"oneofDecl":[{"name":"_offset_id"},{"name":"_limit"}]},{"name":"SiteHierarchyIdsItem","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"parent_type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.SiteHierarchyIdsItem.ParentType","jsonName":"parentType"},{"name":"parent_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"parentId"},{"name":"is_customer_account","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isCustomerAccount"},{"name":"skip_hivemind_export","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"skipHivemindExport"}],"enumType":[{"name":"ParentType","value":[{"name":"UNKNOWN","number":0},{"name":"NONE","number":1},{"name":"ORG","number":2},{"name":"MSMP","number":3}]}]},{"name":"SiteHierarchyIdsPageInfo","field":[{"name":"offset_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"offsetId"},{"name":"limit","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"limit"},{"name":"has_next_page","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"hasNextPage"}]},{"name":"GetSiteHierarchyIdsResponse","field":[{"name":"count","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"count"},{"name":"items","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.SiteHierarchyIdsItem","jsonName":"items"},{"name":"page_info","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.SiteHierarchyIdsPageInfo","jsonName":"pageInfo"}]},{"name":"GetSitesOptions","field":[{"name":"offset_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"offsetId","proto3Optional":true},{"name":"limit","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":1,"jsonName":"limit","proto3Optional":true}],"oneofDecl":[{"name":"_offset_id"},{"name":"_limit"}]},{"name":"GetSitesRequest","field":[{"name":"options","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetSitesOptions","oneofIndex":0,"jsonName":"options","proto3Optional":true}],"oneofDecl":[{"name":"_options"}]},{"name":"SiteItemMetadata","field":[{"name":"enabled_metadata_fields_federation","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"enabledMetadataFieldsFederation"},{"name":"enabled_custom_fields_federation","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"enabledCustomFieldsFederation"}]},{"name":"SiteItem","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"metadata","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.SiteItemMetadata","oneofIndex":0,"jsonName":"metadata","proto3Optional":true}],"oneofDecl":[{"name":"_metadata"}]},{"name":"GetSitesPageInfo","field":[{"name":"offset_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"offsetId"},{"name":"limit","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"limit"},{"name":"has_next_page","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"hasNextPage"}]},{"name":"GetSitesResponse","field":[{"name":"count","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"count"},{"name":"items","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.SiteItem","jsonName":"items"},{"name":"page_info","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetSitesPageInfo","jsonName":"pageInfo"}]},{"name":"MsmpPagination","field":[{"name":"offset","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"offset"},{"name":"limit","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"limit"}]},{"name":"MsmpPaginationInfo","field":[{"name":"total","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"total"},{"name":"offset","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"offset"},{"name":"limit","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"limit"},{"name":"has_next_page","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"hasNextPage"}]},{"name":"GetMsmpOrganizationListRequest","field":[{"name":"user_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"userId"},{"name":"msmp_pagination","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetMsmpOrganizationListRequest.MsmpPaginationRequest","jsonName":"msmpPagination"},{"name":"trace_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"traceId"}],"nestedType":[{"name":"MsmpPaginationRequest","field":[{"name":"offset","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"offset"},{"name":"limit","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"limit"}]}]},{"name":"GetMsmpOrganizationListResponse","field":[{"name":"organizations","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.MsmpOrganization","jsonName":"organizations"},{"name":"msmp_page_info","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.MsmpPageInfo","jsonName":"msmpPageInfo"}],"nestedType":[{"name":"MsmpOrganization","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"}]},{"name":"MsmpPageInfo","field":[{"name":"total","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"total"},{"name":"offset","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"offset"},{"name":"limit","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"limit"},{"name":"has_next_page","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"hasNextPage"}]}]},{"name":"GetMsmpOrganizationAccountRequest","field":[{"name":"user_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"userId"},{"name":"msmp_organization_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"msmpOrganizationId"},{"name":"trace_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"traceId"}]},{"name":"GetMsmpOrganizationAccountResponse","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"role","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"role"},{"name":"is_pending","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isPending"},{"name":"has_accessed_multi_site_management_portal","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"hasAccessedMultiSiteManagementPortal"}]},{"name":"GetSitesByMsmpOrganizationIdRequest","field":[{"name":"user_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"userId"},{"name":"msmp_organization_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"msmpOrganizationId"},{"name":"msmp_pagination","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.MsmpPagination","jsonName":"msmpPagination"},{"name":"trace_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"traceId"}]},{"name":"GetSitesByMsmpOrganizationIdResponse","field":[{"name":"sites","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewSite","jsonName":"sites"},{"name":"msmp_pagination_info","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.MsmpPaginationInfo","jsonName":"msmpPaginationInfo"}]},{"name":"SetEnabledCustomFieldsFederationRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"enabled","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"enabled"}]},{"name":"IsCustomFieldsFederationEnabledRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"IsMetadataFieldsFederationEnabledRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"IsCustomFieldsFederationEnabledResponse","field":[{"name":"is_enabled","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isEnabled"}]},{"name":"IsMetadataFieldsFederationEnabledResponse","field":[{"name":"is_enabled","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isEnabled"}]},{"name":"GetSitePreviewRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"GetSitePreviewResponse","field":[{"name":"site","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewSite","jsonName":"site"}]},{"name":"CreateOwnerPersonalAccessTokenRequest","field":[{"name":"name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"partner_integration_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"partnerIntegrationId"},{"name":"site_ids","number":3,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"siteIds"},{"name":"description","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"description","proto3Optional":true}],"oneofDecl":[{"name":"_description"}]},{"name":"CreateOwnerPersonalAccessTokenResponse","field":[{"name":"token","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"token"}]},{"name":"GetInstallationSettingsRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"install_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"installId"}]},{"name":"GetInstallationSettingsResponse","field":[{"name":"digitalLicenseToken","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"digitalLicenseToken"}]},{"name":"CreateFlowBuilderBotAccountRequest","field":[{"name":"trace_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"traceId"},{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"CreateFlowBuilderBotAccountResponse","field":[{"name":"account_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"accountId"}]},{"name":"GetManualInstallationRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"user_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"userId","proto3Optional":true}],"oneofDecl":[{"name":"_user_id"}]},{"name":"GetManualInstallationResponse","field":[{"name":"manual_install_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"manualInstallId"}]}],"enumType":[{"name":"SiteMode","value":[{"name":"UNESPECIFIED","number":0},{"name":"CLOUD_NATIVE","number":1},{"name":"DEMO","number":2},{"name":"HYBRID","number":3},{"name":"DUAL","number":4}]},{"name":"InstallStateValue","value":[{"name":"INSTALL_STATE_VALUE_UNESPECIFIED","number":0},{"name":"INSTALL_STATE_VALUE_SYNC","number":1},{"name":"INSTALL_STATE_VALUE_UNSYNC","number":2}]},{"name":"InstallType","value":[{"name":"IT","number":0},{"name":"OT","number":1},{"name":"IT_AGENT","number":2},{"name":"CLOUD","number":3},{"name":"NETWORK_DISCOVERY","number":4},{"name":"MANUAL","number":5}]},{"name":"SubscriptionType","value":[{"name":"SUBSCRIPTION_TYPE_VALUE_UNESPECIFIED","number":0},{"name":"SUBSCRIPTION_TYPE_VALUE_TRIAL","number":1},{"name":"SUBSCRIPTION_TYPE_VALUE_FREEWARE","number":2},{"name":"SUBSCRIPTION_TYPE_VALUE_STARTER","number":3},{"name":"SUBSCRIPTION_TYPE_VALUE_PRO","number":4},{"name":"SUBSCRIPTION_TYPE_VALUE_ENTERPRISE","number":5}]}],"service":[{"name":"Multitenant","method":[{"name":"CheckAccessToSiteByAccountId","inputType":".lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest","outputType":".lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdResponse","options":{}},{"name":"CheckAccessToSiteByClientId","inputType":".lansweeper.multitenant.v1.CheckAccessToSiteByClientIdRequest","outputType":".lansweeper.multitenant.v1.CheckAccessToSiteByClientIdResponse","options":{}},{"name":"GetPreviewAccountById","inputType":".lansweeper.multitenant.v1.GetPreviewAccountByIdRequest","outputType":".lansweeper.multitenant.v1.GetPreviewAccountByIdResponse","options":{}},{"name":"SearchPreviewAccountsBySiteIds","inputType":".lansweeper.multitenant.v1.SearchPreviewAccountsBySiteIdsRequest","outputType":".lansweeper.multitenant.v1.SearchPreviewAccountsBySiteIdsResponse","options":{}},{"name":"GetPreviewAccountsByAccountIds","inputType":".lansweeper.multitenant.v1.GetPreviewAccountsByAccountIdsRequest","outputType":".lansweeper.multitenant.v1.GetPreviewAccountsByAccountIdsResponse","options":{}},{"name":"ListProfilesByAccountId","inputType":".lansweeper.multitenant.v1.ListProfilesByAccountIdRequest","outputType":".lansweeper.multitenant.v1.ListProfilesByAccountIdResponse","options":{}},{"name":"ListAuthorizedLinkProfiles","inputType":".lansweeper.multitenant.v1.ListAuthorizedLinkProfilesRequest","outputType":".lansweeper.multitenant.v1.ListAuthorizedLinkProfilesResponse","options":{}},{"name":"PatchSiteMode","inputType":".lansweeper.multitenant.v1.PatchSiteModeRequest","outputType":".lansweeper.multitenant.v1.PatchSiteModeResponse","options":{}},{"name":"CreateInstall","inputType":".lansweeper.multitenant.v1.CreateInstallRequest","outputType":".lansweeper.multitenant.v1.CreateInstallResponse","options":{}},{"name":"CreateAndLinkInstall","inputType":".lansweeper.multitenant.v1.CreateAndLinkInstallRequest","outputType":".lansweeper.multitenant.v1.CreateAndLinkInstallResponse","options":{}},{"name":"GetInstallsBySite","inputType":".lansweeper.multitenant.v1.GetInstallsBySiteRequest","outputType":".lansweeper.multitenant.v1.GetInstallsBySiteResponse","options":{}},{"name":"GetInstallsforMultipleSites","inputType":".lansweeper.multitenant.v1.GetInstallsForMultipleSitesRequest","outputType":".lansweeper.multitenant.v1.GetInstallsForMultipleSitesResponse","options":{}},{"name":"GetInstallsById","inputType":".lansweeper.multitenant.v1.GetInstallsByIdRequest","outputType":".lansweeper.multitenant.v1.GetInstallsByIdResponse","options":{}},{"name":"GetInstallsCountBySite","inputType":".lansweeper.multitenant.v1.GetInstallsCountBySiteRequest","outputType":".lansweeper.multitenant.v1.GetInstallsCountResponse","options":{}},{"name":"GetInstallbyClientId","inputType":".lansweeper.multitenant.v1.GetInstallbyClientIdRequest","outputType":".lansweeper.multitenant.v1.GetInstallbyClientIdResponse","options":{}},{"name":"UpdateInstallByClientId","inputType":".lansweeper.multitenant.v1.UpdateInstallByClientIdRequest","outputType":".lansweeper.multitenant.v1.UpdateInstallByClientIdResponse","options":{}},{"name":"RotateInstallByClientId","inputType":".lansweeper.multitenant.v1.RotateInstallByClientIdRequest","outputType":".lansweeper.multitenant.v1.RotateInstallByClientIdResponse","options":{}},{"name":"LinkTrialInstallByClientId","inputType":".lansweeper.multitenant.v1.LinkTrialInstallByClientIdRequest","outputType":".lansweeper.multitenant.v1.LinkTrialInstallByClientIdResponse","options":{}},{"name":"UnlinkInstallByClientId","inputType":".lansweeper.multitenant.v1.UnlinkInstallByClientIdRequest","outputType":".lansweeper.multitenant.v1.UnlinkInstallByClientIdResponse","options":{}},{"name":"RemoveInstallDataBySiteId","inputType":".lansweeper.multitenant.v1.RemoveInstallDataBySiteIdRequest","outputType":".lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse","options":{}},{"name":"GetDuplicatedInstallsByGlobalId","inputType":".lansweeper.multitenant.v1.GetDuplicatedInstallsByGlobalIdRequest","outputType":".lansweeper.multitenant.v1.GetDuplicatedInstallsByGlobalIdResponse","options":{}},{"name":"GetUserPermissions","inputType":".lansweeper.multitenant.v1.GetUserPermissionsRequest","outputType":".lansweeper.multitenant.v1.GetUserPermissionsResponse","options":{}},{"name":"ValidateApplicationPersonalAccessToken","inputType":".lansweeper.multitenant.v1.ValidateApplicationPersonalAccessTokenRequest","outputType":".lansweeper.multitenant.v1.ValidateApplicationPersonalAccessTokenResponse","options":{}},{"name":"SendDisabledWebhookEmail","inputType":".lansweeper.multitenant.v1.DisableWebhookEmailRequest","outputType":".lansweeper.multitenant.v1.DisableWebhookEmailResponse","options":{}},{"name":"GetAuthorizedSitesByApplicationId","inputType":".lansweeper.multitenant.v1.AuthorizedSitesRequest","outputType":".lansweeper.multitenant.v1.AuthorizedSitesResponse","options":{}},{"name":"GetAccountIdsBySiteId","inputType":".lansweeper.multitenant.v1.GetAccountIdsBySiteIdRequest","outputType":".lansweeper.multitenant.v1.GetAccountIdsBySiteIdResponse","options":{}},{"name":"CheckManagerInApplication","inputType":".lansweeper.multitenant.v1.CheckManagerInApplicationRequest","outputType":".lansweeper.multitenant.v1.CheckManagerInApplicationResponse","options":{}},{"name":"UpdateSiteSubscription","inputType":".lansweeper.multitenant.v1.UpdateSiteSubscriptionRequest","outputType":".lansweeper.multitenant.v1.UpdateSiteSubscriptionResponse","options":{}},{"name":"CreateTrialSiteAndInstaller","inputType":".lansweeper.multitenant.v1.CreateTrialSiteAndInstallerRequest","outputType":".lansweeper.multitenant.v1.CreateTrialSiteAndInstallerResponse","options":{}},{"name":"GetInstallationLicenseByClientId","inputType":".lansweeper.multitenant.v1.GetInstallationLicenseByClientIdRequest","outputType":".lansweeper.multitenant.v1.GetInstallationLicenseByClientIdResponse","options":{}},{"name":"AllProfilesExist","inputType":".lansweeper.multitenant.v1.AllProfilesExistRequest","outputType":".lansweeper.multitenant.v1.AllProfilesExistResponse","options":{}},{"name":"SendInviteLocalUsersMail","inputType":".lansweeper.multitenant.v1.SendInviteLocalUsersMailRequest","outputType":".lansweeper.multitenant.v1.SendInviteLocalUsersMailResponse","options":{}},{"name":"AllProfileExists","inputType":".lansweeper.multitenant.v1.AllProfileExistsRequest","outputType":".lansweeper.multitenant.v1.AllProfileExistsResponse","options":{"deprecated":true}},{"name":"CreateLinkingCode","inputType":".lansweeper.multitenant.v1.CreateLinkingCodeRequest","outputType":".lansweeper.multitenant.v1.CreateLinkingCodeResponse","options":{}},{"name":"GetSiteIdsWithIntegrationBySiteId","inputType":".lansweeper.multitenant.v1.GetSiteIdsWithIntegrationData","outputType":".lansweeper.multitenant.v1.GetSiteIdsWithIntegrationData","options":{}},{"name":"CheckStandardizedSoftwareEnabled","inputType":".lansweeper.multitenant.v1.CheckStandardizedSoftwareEnabledRequest","outputType":".lansweeper.multitenant.v1.CheckStandardizedSoftwareEnabledResponse","options":{}},{"name":"UpdateSiteMetadata","inputType":".lansweeper.multitenant.v1.UpdateSiteMetadataRequest","outputType":".lansweeper.multitenant.v1.UpdateSiteMetadataResponse","options":{}},{"name":"GetSiteLimits","inputType":".lansweeper.multitenant.v1.GetSiteLimitsRequest","outputType":".lansweeper.multitenant.v1.GetSiteLimitsResponse","options":{}},{"name":"GetMsmpOrganizationList","inputType":".lansweeper.multitenant.v1.GetMsmpOrganizationListRequest","outputType":".lansweeper.multitenant.v1.GetMsmpOrganizationListResponse","options":{}},{"name":"GetMsmpOrganizationAccount","inputType":".lansweeper.multitenant.v1.GetMsmpOrganizationAccountRequest","outputType":".lansweeper.multitenant.v1.GetMsmpOrganizationAccountResponse","options":{}},{"name":"GetSitesByMsmpOrganizationId","inputType":".lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdRequest","outputType":".lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdResponse","options":{}},{"name":"GetInstallsByExternalIds","inputType":".lansweeper.multitenant.v1.GetInstallsByExternalIdsRequest","outputType":".lansweeper.multitenant.v1.GetInstallsByExternalIdsResponse","options":{}},{"name":"SetEnabledCustomFieldsFederation","inputType":".lansweeper.multitenant.v1.SetEnabledCustomFieldsFederationRequest","outputType":".google.protobuf.Empty","options":{}},{"name":"IsCustomFieldsFederationEnabled","inputType":".lansweeper.multitenant.v1.IsCustomFieldsFederationEnabledRequest","outputType":".lansweeper.multitenant.v1.IsCustomFieldsFederationEnabledResponse","options":{}},{"name":"IsMetadataFieldsFederationEnabled","inputType":".lansweeper.multitenant.v1.IsMetadataFieldsFederationEnabledRequest","outputType":".lansweeper.multitenant.v1.IsMetadataFieldsFederationEnabledResponse","options":{}},{"name":"GetSitePreview","inputType":".lansweeper.multitenant.v1.GetSitePreviewRequest","outputType":".lansweeper.multitenant.v1.GetSitePreviewResponse","options":{}},{"name":"UpdateSiteSkipDataExport","inputType":".lansweeper.multitenant.v1.UpdateSiteSkipDataExportRequest","outputType":".lansweeper.multitenant.v1.UpdateSiteSkipDataExportResponse","options":{}},{"name":"GetSiteHierarchyIds","inputType":".lansweeper.multitenant.v1.GetSiteHierarchyIdsRequest","outputType":".lansweeper.multitenant.v1.GetSiteHierarchyIdsResponse","options":{}},{"name":"GetSites","inputType":".lansweeper.multitenant.v1.GetSitesRequest","outputType":".lansweeper.multitenant.v1.GetSitesResponse","options":{}},{"name":"CreateOwnerPersonalAccessToken","inputType":".lansweeper.multitenant.v1.CreateOwnerPersonalAccessTokenRequest","outputType":".lansweeper.multitenant.v1.CreateOwnerPersonalAccessTokenResponse","options":{}},{"name":"GetInstallationSettings","inputType":".lansweeper.multitenant.v1.GetInstallationSettingsRequest","outputType":".lansweeper.multitenant.v1.GetInstallationSettingsResponse","options":{}},{"name":"CreateFlowBuilderBotAccount","inputType":".lansweeper.multitenant.v1.CreateFlowBuilderBotAccountRequest","outputType":".lansweeper.multitenant.v1.CreateFlowBuilderBotAccountResponse","options":{}},{"name":"GetManualInstallation","inputType":".lansweeper.multitenant.v1.GetManualInstallationRequest","outputType":".lansweeper.multitenant.v1.GetManualInstallationResponse","options":{}}]}],"options":{"goPackage":"./generated-go"},"sourceCodeInfo":{"location":[{"span":[0,0,715,1]},{"path":[12],"span":[0,0,18]},{"path":[2],"span":[1,0,34]},{"path":[8],"span":[2,0,37]},{"path":[8,11],"span":[2,0,37]},{"path":[3,0],"span":[4,0,29]},{"path":[3,1],"span":[5,0,37]},{"path":[4,0],"span":[7,0,14,1]},{"path":[4,0,1],"span":[7,8,22]},{"path":[4,0,2,0],"span":[8,2,16]},{"path":[4,0,2,0,5],"span":[8,2,8]},{"path":[4,0,2,0,1],"span":[8,9,11]},{"path":[4,0,2,0,3],"span":[8,14,15]},{"path":[4,0,2,1],"span":[9,2,22]},{"path":[4,0,2,1,5],"span":[9,2,8]},{"path":[4,0,2,1,1],"span":[9,9,17]},{"path":[4,0,2,1,3],"span":[9,20,21]},{"path":[4,0,2,2],"span":[10,2,18]},{"path":[4,0,2,2,5],"span":[10,2,8]},{"path":[4,0,2,2,1],"span":[10,9,13]},{"path":[4,0,2,2,3],"span":[10,16,17]},{"path":[4,0,2,3],"span":[11,2,21]},{"path":[4,0,2,3,5],"span":[11,2,8]},{"path":[4,0,2,3,1],"span":[11,9,16]},{"path":[4,0,2,3,3],"span":[11,19,20]},{"path":[4,0,2,4],"span":[12,2,19]},{"path":[4,0,2,4,5],"span":[12,2,8]},{"path":[4,0,2,4,1],"span":[12,9,14]},{"path":[4,0,2,4,3],"span":[12,17,18]},{"path":[4,0,2,5],"span":[13,2,23]},{"path":[4,0,2,5,5],"span":[13,2,8]},{"path":[4,0,2,5,1],"span":[13,9,18]},{"path":[4,0,2,5,3],"span":[13,21,22]},{"path":[4,1],"span":[16,0,18,1]},{"path":[4,1,1],"span":[16,8,36]},{"path":[4,1,2,0],"span":[17,2,16]},{"path":[4,1,2,0,5],"span":[17,2,8]},{"path":[4,1,2,0,1],"span":[17,9,11]},{"path":[4,1,2,0,3],"span":[17,14,15]},{"path":[4,2],"span":[19,0,21,1]},{"path":[4,2,1],"span":[19,8,37]},{"path":[4,2,2,0],"span":[20,2,29]},{"path":[4,2,2,0,6],"span":[20,2,16]},{"path":[4,2,2,0,1],"span":[20,17,24]},{"path":[4,2,2,0,3],"span":[20,27,28]},{"path":[4,3],"span":[22,0,25,1]},{"path":[4,3,1],"span":[22,8,45]},{"path":[4,3,2,0],"span":[23,2,31]},{"path":[4,3,2,0,4],"span":[23,2,10]},{"path":[4,3,2,0,5],"span":[23,11,17]},{"path":[4,3,2,0,1],"span":[23,18,26]},{"path":[4,3,2,0,3],"span":[23,29,30]},{"path":[4,3,2,1],"span":[24,2,20]},{"path":[4,3,2,1,5],"span":[24,2,8]},{"path":[4,3,2,1,1],"span":[24,9,15]},{"path":[4,3,2,1,3],"span":[24,18,19]},{"path":[4,4],"span":[26,0,28,1]},{"path":[4,4,1],"span":[26,8,46]},{"path":[4,4,2,0],"span":[27,2,39]},{"path":[4,4,2,0,4],"span":[27,2,10]},{"path":[4,4,2,0,6],"span":[27,11,25]},{"path":[4,4,2,0,1],"span":[27,26,34]},{"path":[4,4,2,0,3],"span":[27,37,38]},{"path":[4,5],"span":[29,0,31,1]},{"path":[4,5,1],"span":[29,8,45]},{"path":[4,5,2,0],"span":[30,2,34]},{"path":[4,5,2,0,4],"span":[30,2,10]},{"path":[4,5,2,0,5],"span":[30,11,17]},{"path":[4,5,2,0,1],"span":[30,18,29]},{"path":[4,5,2,0,3],"span":[30,32,33]},{"path":[4,6],"span":[32,0,34,1]},{"path":[4,6,1],"span":[32,8,46]},{"path":[4,6,2,0],"span":[33,2,39]},{"path":[4,6,2,0,4],"span":[33,2,10]},{"path":[4,6,2,0,6],"span":[33,11,25]},{"path":[4,6,2,0,1],"span":[33,26,34]},{"path":[4,6,2,0,3],"span":[33,37,38]},{"path":[5,0],"span":[35,0,41,1]},{"path":[5,0,1],"span":[35,5,13]},{"path":[5,0,2,0],"span":[36,2,19]},{"path":[5,0,2,0,1],"span":[36,2,14]},{"path":[5,0,2,0,2],"span":[36,17,18]},{"path":[5,0,2,1],"span":[37,2,19]},{"path":[5,0,2,1,1],"span":[37,2,14]},{"path":[5,0,2,1,2],"span":[37,17,18]},{"path":[5,0,2,2],"span":[38,2,11]},{"path":[5,0,2,2,1],"span":[38,2,6]},{"path":[5,0,2,2,2],"span":[38,9,10]},{"path":[5,0,2,3],"span":[39,2,13]},{"path":[5,0,2,3,1],"span":[39,2,8]},{"path":[5,0,2,3,2],"span":[39,11,12]},{"path":[5,0,2,4],"span":[40,2,11]},{"path":[5,0,2,4,1],"span":[40,2,6]},{"path":[5,0,2,4,2],"span":[40,9,10]},{"path":[4,7],"span":[42,0,44,1]},{"path":[4,7,1],"span":[42,8,20]},{"path":[4,7,2,0],"span":[43,2,16]},{"path":[4,7,2,0,5],"span":[43,2,6]},{"path":[4,7,2,0,1],"span":[43,7,11]},{"path":[4,7,2,0,3],"span":[43,14,15]},{"path":[4,8],"span":[45,0,55,1]},{"path":[4,8,1],"span":[45,8,19]},{"path":[4,8,2,0],"span":[46,2,16]},{"path":[4,8,2,0,5],"span":[46,2,8]},{"path":[4,8,2,0,1],"span":[46,9,11]},{"path":[4,8,2,0,3],"span":[46,14,15]},{"path":[4,8,2,1],"span":[47,2,18]},{"path":[4,8,2,1,5],"span":[47,2,8]},{"path":[4,8,2,1,1],"span":[47,9,13]},{"path":[4,8,2,1,3],"span":[47,16,17]},{"path":[4,8,2,2],"span":[48,2,26]},{"path":[4,8,2,2,5],"span":[48,2,8]},{"path":[4,8,2,2,1],"span":[48,9,21]},{"path":[4,8,2,2,3],"span":[48,24,25]},{"path":[4,8,2,3],"span":[49,2,22]},{"path":[4,8,2,3,5],"span":[49,2,8]},{"path":[4,8,2,3,1],"span":[49,9,17]},{"path":[4,8,2,3,3],"span":[49,20,21]},{"path":[4,8,2,4],"span":[50,2,20]},{"path":[4,8,2,4,6],"span":[50,2,10]},{"path":[4,8,2,4,1],"span":[50,11,15]},{"path":[4,8,2,4,3],"span":[50,18,19]},{"path":[4,8,2,5],"span":[51,2,32]},{"path":[4,8,2,5,6],"span":[51,2,16]},{"path":[4,8,2,5,1],"span":[51,17,27]},{"path":[4,8,2,5,3],"span":[51,30,31]},{"path":[4,8,2,6],"span":[52,2,37]},{"path":[4,8,2,6,5],"span":[52,2,8]},{"path":[4,8,2,6,1],"span":[52,9,32]},{"path":[4,8,2,6,3],"span":[52,35,36]},{"path":[4,8,2,7],"span":[53,2,24]},{"path":[4,8,2,7,5],"span":[53,2,8]},{"path":[4,8,2,7,1],"span":[53,9,19]},{"path":[4,8,2,7,3],"span":[53,22,23]},{"path":[4,8,2,8],"span":[54,2,28]},{"path":[4,8,2,8,6],"span":[54,2,14]},{"path":[4,8,2,8,1],"span":[54,15,23]},{"path":[4,8,2,8,3],"span":[54,26,27]},{"path":[4,9],"span":[56,0,59,1]},{"path":[4,9,1],"span":[56,8,28]},{"path":[4,9,2,0],"span":[57,2,16]},{"path":[4,9,2,0,5],"span":[57,2,8]},{"path":[4,9,2,0,1],"span":[57,9,11]},{"path":[4,9,2,0,3],"span":[57,14,15]},{"path":[4,9,2,1],"span":[58,2,20]},{"path":[4,9,2,1,6],"span":[58,2,10]},{"path":[4,9,2,1,1],"span":[58,11,15]},{"path":[4,9,2,1,3],"span":[58,18,19]},{"path":[4,10],"span":[60,0,62,1]},{"path":[4,10,1],"span":[60,8,29]},{"path":[4,10,2,0],"span":[61,2,19]},{"path":[4,10,2,0,5],"span":[61,2,6]},{"path":[4,10,2,0,1],"span":[61,7,14]},{"path":[4,10,2,0,3],"span":[61,17,18]},{"path":[4,11],"span":[63,0,68,1]},{"path":[4,11,1],"span":[63,8,15]},{"path":[4,11,2,0],"span":[64,2,16]},{"path":[4,11,2,0,5],"span":[64,2,8]},{"path":[4,11,2,0,1],"span":[64,9,11]},{"path":[4,11,2,0,3],"span":[64,14,15]},{"path":[4,11,2,1],"span":[65,2,21]},{"path":[4,11,2,1,5],"span":[65,2,8]},{"path":[4,11,2,1,1],"span":[65,9,16]},{"path":[4,11,2,1,3],"span":[65,19,20]},{"path":[4,11,2,2],"span":[66,2,23]},{"path":[4,11,2,2,6],"span":[66,2,13]},{"path":[4,11,2,2,1],"span":[66,14,18]},{"path":[4,11,2,2,3],"span":[66,21,22]},{"path":[4,11,2,3],"span":[67,2,20]},{"path":[4,11,2,3,5],"span":[67,2,6]},{"path":[4,11,2,3,1],"span":[67,7,15]},{"path":[4,11,2,3,3],"span":[67,18,19]},{"path":[4,12],"span":[69,0,73,1]},{"path":[4,12,1],"span":[69,8,38]},{"path":[4,12,2,0],"span":[70,2,24]},{"path":[4,12,2,0,5],"span":[70,2,8]},{"path":[4,12,2,0,1],"span":[70,9,19]},{"path":[4,12,2,0,3],"span":[70,22,23]},{"path":[4,12,2,1],"span":[71,2,26]},{"path":[4,12,2,1,5],"span":[71,2,6]},{"path":[4,12,2,1,1],"span":[71,7,21]},{"path":[4,12,2,1,3],"span":[71,24,25]},{"path":[4,12,2,2],"span":[72,2,40]},{"path":[4,12,2,2,5],"span":[72,2,6]},{"path":[4,12,2,2,1],"span":[72,7,35]},{"path":[4,12,2,2,3],"span":[72,38,39]},{"path":[4,13],"span":[74,0,76,1]},{"path":[4,13,1],"span":[74,8,39]},{"path":[4,13,2,0],"span":[75,2,31]},{"path":[4,13,2,0,4],"span":[75,2,10]},{"path":[4,13,2,0,6],"span":[75,11,18]},{"path":[4,13,2,0,1],"span":[75,19,26]},{"path":[4,13,2,0,3],"span":[75,29,30]},{"path":[4,14],"span":[77,0,80,1]},{"path":[4,14,1],"span":[77,8,41]},{"path":[4,14,2,0],"span":[78,2,24]},{"path":[4,14,2,0,5],"span":[78,2,8]},{"path":[4,14,2,0,1],"span":[78,9,19]},{"path":[4,14,2,0,3],"span":[78,22,23]},{"path":[4,14,2,1],"span":[79,2,46]},{"path":[4,14,2,1,5],"span":[79,2,6]},{"path":[4,14,2,1,1],"span":[79,7,21]},{"path":[4,14,2,1,3],"span":[79,24,25]},{"path":[4,14,2,1,8],"span":[79,26,45]},{"path":[4,14,2,1,8,3],"span":[79,27,44]},{"path":[4,15],"span":[81,0,83,1]},{"path":[4,15,1],"span":[81,8,42]},{"path":[4,15,2,0],"span":[82,2,31]},{"path":[4,15,2,0,4],"span":[82,2,10]},{"path":[4,15,2,0,6],"span":[82,11,18]},{"path":[4,15,2,0,1],"span":[82,19,26]},{"path":[4,15,2,0,3],"span":[82,29,30]},{"path":[4,16],"span":[84,0,93,1]},{"path":[4,16,1],"span":[84,8,43]},{"path":[4,16,2,0],"span":[85,2,24]},{"path":[4,16,2,0,5],"span":[85,2,8]},{"path":[4,16,2,0,1],"span":[85,9,19]},{"path":[4,16,2,0,3],"span":[85,22,23]},{"path":[4,16,2,1],"span":[86,2,21]},{"path":[4,16,2,1,5],"span":[86,2,8]},{"path":[4,16,2,1,1],"span":[86,9,16]},{"path":[4,16,2,1,3],"span":[86,19,20]},{"path":[4,16,2,2],"span":[87,2,22]},{"path":[4,16,2,2,5],"span":[87,2,6]},{"path":[4,16,2,2,1],"span":[87,7,17]},{"path":[4,16,2,2,3],"span":[87,20,21]},{"path":[4,16,3,0],"span":[88,2,91,3]},{"path":[4,16,3,0,1],"span":[88,10,18]},{"path":[4,16,3,0,2,0],"span":[89,4,21]},{"path":[4,16,3,0,2,0,5],"span":[89,4,8]},{"path":[4,16,3,0,2,0,1],"span":[89,9,16]},{"path":[4,16,3,0,2,0,3],"span":[89,19,20]},{"path":[4,16,3,0,2,1],"span":[90,4,26]},{"path":[4,16,3,0,2,1,5],"span":[90,4,8]},{"path":[4,16,3,0,2,1,1],"span":[90,9,21]},{"path":[4,16,3,0,2,1,3],"span":[90,24,25]},{"path":[4,16,2,3],"span":[92,2,25]},{"path":[4,16,2,3,6],"span":[92,2,10]},{"path":[4,16,2,3,1],"span":[92,11,20]},{"path":[4,16,2,3,3],"span":[92,23,24]},{"path":[4,17],"span":[94,0,96,1]},{"path":[4,17,1],"span":[94,8,44]},{"path":[4,17,2,0],"span":[95,2,18]},{"path":[4,17,2,0,5],"span":[95,2,6]},{"path":[4,17,2,0,1],"span":[95,7,13]},{"path":[4,17,2,0,3],"span":[95,16,17]},{"path":[4,18],"span":[97,0,100,1]},{"path":[4,18,1],"span":[97,8,42]},{"path":[4,18,2,0],"span":[98,2,23]},{"path":[4,18,2,0,5],"span":[98,2,8]},{"path":[4,18,2,0,1],"span":[98,9,18]},{"path":[4,18,2,0,3],"span":[98,21,22]},{"path":[4,18,2,1],"span":[99,2,21]},{"path":[4,18,2,1,5],"span":[99,2,8]},{"path":[4,18,2,1,1],"span":[99,9,16]},{"path":[4,18,2,1,3],"span":[99,19,20]},{"path":[4,19],"span":[101,0,103,1]},{"path":[4,19,1],"span":[101,8,43]},{"path":[4,19,2,0],"span":[102,2,18]},{"path":[4,19,2,0,5],"span":[102,2,6]},{"path":[4,19,2,0,1],"span":[102,7,13]},{"path":[4,19,2,0,3],"span":[102,16,17]},{"path":[5,1],"span":[104,0,108,1]},{"path":[5,1,1],"span":[104,5,22]},{"path":[5,1,2,0],"span":[105,2,39]},{"path":[5,1,2,0,1],"span":[105,2,34]},{"path":[5,1,2,0,2],"span":[105,37,38]},{"path":[5,1,2,1],"span":[106,2,31]},{"path":[5,1,2,1,1],"span":[106,2,26]},{"path":[5,1,2,1,2],"span":[106,29,30]},{"path":[5,1,2,2],"span":[107,2,33]},{"path":[5,1,2,2,1],"span":[107,2,28]},{"path":[5,1,2,2,2],"span":[107,31,32]},{"path":[4,20],"span":[109,0,129,1]},{"path":[4,20,1],"span":[109,8,15]},{"path":[4,20,2,0],"span":[110,2,16]},{"path":[4,20,2,0,5],"span":[110,2,8]},{"path":[4,20,2,0,1],"span":[110,9,11]},{"path":[4,20,2,0,3],"span":[110,14,15]},{"path":[4,20,2,1],"span":[111,2,21]},{"path":[4,20,2,1,5],"span":[111,2,8]},{"path":[4,20,2,1,1],"span":[111,9,16]},{"path":[4,20,2,1,3],"span":[111,19,20]},{"path":[4,20,2,2],"span":[112,2,26]},{"path":[4,20,2,2,5],"span":[112,2,8]},{"path":[4,20,2,2,1],"span":[112,9,21]},{"path":[4,20,2,2,3],"span":[112,24,25]},{"path":[4,20,2,3],"span":[113,2,25]},{"path":[4,20,2,3,5],"span":[113,2,8]},{"path":[4,20,2,3,1],"span":[113,9,20]},{"path":[4,20,2,3,3],"span":[113,23,24]},{"path":[4,20,2,4],"span":[114,2,20]},{"path":[4,20,2,4,5],"span":[114,2,8]},{"path":[4,20,2,4,1],"span":[114,9,15]},{"path":[4,20,2,4,3],"span":[114,18,19]},{"path":[4,20,2,5],"span":[115,2,18]},{"path":[4,20,2,5,5],"span":[115,2,8]},{"path":[4,20,2,5,1],"span":[115,9,13]},{"path":[4,20,2,5,3],"span":[115,16,17]},{"path":[4,20,2,6],"span":[116,2,27]},{"path":[4,20,2,6,5],"span":[116,2,8]},{"path":[4,20,2,6,1],"span":[116,9,22]},{"path":[4,20,2,6,3],"span":[116,25,26]},{"path":[4,20,2,7],"span":[117,2,23]},{"path":[4,20,2,7,5],"span":[117,2,8]},{"path":[4,20,2,7,1],"span":[117,9,18]},{"path":[4,20,2,7,3],"span":[117,21,22]},{"path":[4,20,3,0],"span":[118,2,122,3]},{"path":[4,20,3,0,1],"span":[118,10,22]},{"path":[4,20,3,0,2,0],"span":[119,4,32]},{"path":[4,20,3,0,2,0,6],"span":[119,4,21]},{"path":[4,20,3,0,2,0,1],"span":[119,22,27]},{"path":[4,20,3,0,2,0,3],"span":[119,30,31]},{"path":[4,20,3,0,2,1],"span":[120,4,26]},{"path":[4,20,3,0,2,1,5],"span":[120,4,10]},{"path":[4,20,3,0,2,1,1],"span":[120,11,21]},{"path":[4,20,3,0,2,1,3],"span":[120,24,25]},{"path":[4,20,3,0,2,2],"span":[121,4,39]},{"path":[4,20,3,0,2,2,5],"span":[121,4,10]},{"path":[4,20,3,0,2,2,1],"span":[121,11,34]},{"path":[4,20,3,0,2,2,3],"span":[121,37,38]},{"path":[4,20,2,8],"span":[123,2,25]},{"path":[4,20,2,8,6],"span":[123,2,14]},{"path":[4,20,2,8,1],"span":[123,15,20]},{"path":[4,20,2,8,3],"span":[123,23,24]},{"path":[4,20,2,9],"span":[124,2,25]},{"path":[4,20,2,9,5],"span":[124,2,8]},{"path":[4,20,2,9,1],"span":[124,9,19]},{"path":[4,20,2,9,3],"span":[124,22,24]},{"path":[4,20,2,10],"span":[125,2,22]},{"path":[4,20,2,10,5],"span":[125,2,8]},{"path":[4,20,2,10,1],"span":[125,9,16]},{"path":[4,20,2,10,3],"span":[125,19,21]},{"path":[4,20,2,11],"span":[126,2,39]},{"path":[4,20,2,11,5],"span":[126,2,8]},{"path":[4,20,2,11,1],"span":[126,9,13]},{"path":[4,20,2,11,3],"span":[126,16,18]},{"path":[4,20,2,11,8],"span":[126,19,38]},{"path":[4,20,2,11,8,3],"span":[126,20,37]},{"path":[4,20,2,12],"span":[127,2,32]},{"path":[4,20,2,12,6],"span":[127,2,13]},{"path":[4,20,2,12,1],"span":[127,14,26]},{"path":[4,20,2,12,3],"span":[127,29,31]},{"path":[4,20,2,13],"span":[128,2,26]},{"path":[4,20,2,13,5],"span":[128,2,8]},{"path":[4,20,2,13,1],"span":[128,9,20]},{"path":[4,20,2,13,3],"span":[128,23,25]},{"path":[4,21],"span":[130,0,133,1]},{"path":[4,21,1],"span":[130,8,26]},{"path":[4,21,2,0],"span":[131,2,23]},{"path":[4,21,2,0,5],"span":[131,2,8]},{"path":[4,21,2,0,1],"span":[131,9,18]},{"path":[4,21,2,0,3],"span":[131,21,22]},{"path":[4,21,2,1],"span":[132,2,27]},{"path":[4,21,2,1,5],"span":[132,2,8]},{"path":[4,21,2,1,1],"span":[132,9,22]},{"path":[4,21,2,1,3],"span":[132,25,26]},{"path":[4,22],"span":[134,0,136,1]},{"path":[4,22,1],"span":[134,8,37]},{"path":[4,22,2,0],"span":[135,2,21]},{"path":[4,22,2,0,5],"span":[135,2,8]},{"path":[4,22,2,0,1],"span":[135,9,16]},{"path":[4,22,2,0,3],"span":[135,19,20]},{"path":[4,23],"span":[137,0,139,1]},{"path":[4,23,1],"span":[137,8,32]},{"path":[4,23,2,0],"span":[138,2,18]},{"path":[4,23,2,0,5],"span":[138,2,7]},{"path":[4,23,2,0,1],"span":[138,8,13]},{"path":[4,23,2,0,3],"span":[138,16,17]},{"path":[4,24],"span":[140,0,142,1]},{"path":[4,24,1],"span":[140,8,30]},{"path":[4,24,2,0],"span":[141,2,34]},{"path":[4,24,2,0,4],"span":[141,2,10]},{"path":[4,24,2,0,5],"span":[141,11,17]},{"path":[4,24,2,0,1],"span":[141,18,29]},{"path":[4,24,2,0,3],"span":[141,32,33]},{"path":[4,25],"span":[143,0,145,1]},{"path":[4,25,1],"span":[143,8,31]},{"path":[4,25,2,0],"span":[144,2,31]},{"path":[4,25,2,0,4],"span":[144,2,10]},{"path":[4,25,2,0,6],"span":[144,11,18]},{"path":[4,25,2,0,1],"span":[144,19,26]},{"path":[4,25,2,0,3],"span":[144,29,30]},{"path":[4,26],"span":[146,0,148,1]},{"path":[4,26,1],"span":[146,8,39]},{"path":[4,26,2,0],"span":[147,2,35]},{"path":[4,26,2,0,4],"span":[147,2,10]},{"path":[4,26,2,0,5],"span":[147,11,17]},{"path":[4,26,2,0,1],"span":[147,18,30]},{"path":[4,26,2,0,3],"span":[147,33,34]},{"path":[4,27],"span":[149,0,151,1]},{"path":[4,27,1],"span":[149,8,40]},{"path":[4,27,2,0],"span":[150,2,31]},{"path":[4,27,2,0,4],"span":[150,2,10]},{"path":[4,27,2,0,6],"span":[150,11,18]},{"path":[4,27,2,0,1],"span":[150,19,26]},{"path":[4,27,2,0,3],"span":[150,29,30]},{"path":[4,28],"span":[152,0,156,1]},{"path":[4,28,1],"span":[152,8,27]},{"path":[4,28,8,0],"span":[153,2,155,3]},{"path":[4,28,8,0,1],"span":[153,8,12]},{"path":[4,28,2,0],"span":[154,4,25]},{"path":[4,28,2,0,6],"span":[154,4,15]},{"path":[4,28,2,0,1],"span":[154,16,20]},{"path":[4,28,2,0,3],"span":[154,23,24]},{"path":[4,29],"span":[157,0,165,1]},{"path":[4,29,1],"span":[157,8,32]},{"path":[4,29,2,0],"span":[158,2,21]},{"path":[4,29,2,0,5],"span":[158,2,8]},{"path":[4,29,2,0,1],"span":[158,9,16]},{"path":[4,29,2,0,3],"span":[158,19,20]},{"path":[4,29,3,0],"span":[159,2,163,3]},{"path":[4,29,3,0,1],"span":[159,10,16]},{"path":[4,29,3,0,2,0],"span":[160,4,32]},{"path":[4,29,3,0,2,0,6],"span":[160,4,21]},{"path":[4,29,3,0,2,0,1],"span":[160,22,27]},{"path":[4,29,3,0,2,0,3],"span":[160,30,31]},{"path":[4,29,3,0,2,1],"span":[161,4,43]},{"path":[4,29,3,0,2,1,6],"span":[161,4,15]},{"path":[4,29,3,0,2,1,1],"span":[161,16,20]},{"path":[4,29,3,0,2,1,3],"span":[161,21,22]},{"path":[4,29,3,0,2,1,8],"span":[161,23,42]},{"path":[4,29,3,0,2,1,8,3],"span":[161,24,41]},{"path":[4,29,3,0,2,2],"span":[162,4,39]},{"path":[4,29,3,0,2,2,6],"span":[162,4,23]},{"path":[4,29,3,0,2,2,1],"span":[162,24,36]},{"path":[4,29,3,0,2,2,3],"span":[162,37,38]},{"path":[4,29,2,1],"span":[164,2,20]},{"path":[4,29,2,1,6],"span":[164,2,8]},{"path":[4,29,2,1,1],"span":[164,9,15]},{"path":[4,29,2,1,3],"span":[164,18,19]},{"path":[4,30],"span":[166,0,168,1]},{"path":[4,30,1],"span":[166,8,33]},{"path":[4,30,2,0],"span":[167,2,31]},{"path":[4,30,2,0,4],"span":[167,2,10]},{"path":[4,30,2,0,6],"span":[167,11,18]},{"path":[4,30,2,0,1],"span":[167,19,26]},{"path":[4,30,2,0,3],"span":[167,29,30]},{"path":[4,31],"span":[169,0,171,1]},{"path":[4,31,1],"span":[169,8,42]},{"path":[4,31,2,0],"span":[170,2,31]},{"path":[4,31,2,0,4],"span":[170,2,10]},{"path":[4,31,2,0,5],"span":[170,11,17]},{"path":[4,31,2,0,1],"span":[170,18,26]},{"path":[4,31,2,0,3],"span":[170,29,30]},{"path":[4,32],"span":[172,0,174,1]},{"path":[4,32,1],"span":[172,8,43]},{"path":[4,32,2,0],"span":[173,2,32]},{"path":[4,32,2,0,4],"span":[173,2,10]},{"path":[4,32,2,0,6],"span":[173,11,18]},{"path":[4,32,2,0,1],"span":[173,19,27]},{"path":[4,32,2,0,3],"span":[173,30,31]},{"path":[4,33],"span":[175,0,177,1]},{"path":[4,33,1],"span":[175,8,35]},{"path":[4,33,2,0],"span":[176,2,23]},{"path":[4,33,2,0,5],"span":[176,2,8]},{"path":[4,33,2,0,1],"span":[176,9,18]},{"path":[4,33,2,0,3],"span":[176,21,22]},{"path":[4,34],"span":[178,0,180,1]},{"path":[4,34,1],"span":[178,8,36]},{"path":[4,34,2,0],"span":[179,2,22]},{"path":[4,34,2,0,6],"span":[179,2,9]},{"path":[4,34,2,0,1],"span":[179,10,17]},{"path":[4,34,2,0,3],"span":[179,20,21]},{"path":[4,35],"span":[181,0,193,1]},{"path":[4,35,1],"span":[181,8,28]},{"path":[4,35,9],"span":[182,2,16]},{"path":[4,35,9,0],"span":[182,11,12]},{"path":[4,35,9,0,1],"span":[182,11,12]},{"path":[4,35,9,1],"span":[182,14,15]},{"path":[4,35,9,1,1],"span":[182,14,15]},{"path":[4,35,2,0],"span":[183,2,21]},{"path":[4,35,2,0,5],"span":[183,2,8]},{"path":[4,35,2,0,1],"span":[183,9,16]},{"path":[4,35,2,0,3],"span":[183,19,20]},{"path":[4,35,2,1],"span":[184,2,26]},{"path":[4,35,2,1,5],"span":[184,2,8]},{"path":[4,35,2,1,1],"span":[184,9,21]},{"path":[4,35,2,1,3],"span":[184,24,25]},{"path":[4,35,2,2],"span":[185,2,25]},{"path":[4,35,2,2,5],"span":[185,2,8]},{"path":[4,35,2,2,1],"span":[185,9,20]},{"path":[4,35,2,2,3],"span":[185,23,24]},{"path":[4,35,2,3],"span":[186,2,20]},{"path":[4,35,2,3,5],"span":[186,2,8]},{"path":[4,35,2,3,1],"span":[186,9,15]},{"path":[4,35,2,3,3],"span":[186,18,19]},{"path":[4,35,2,4],"span":[187,2,18]},{"path":[4,35,2,4,5],"span":[187,2,8]},{"path":[4,35,2,4,1],"span":[187,9,13]},{"path":[4,35,2,4,3],"span":[187,16,17]},{"path":[4,35,2,5],"span":[188,2,27]},{"path":[4,35,2,5,5],"span":[188,2,8]},{"path":[4,35,2,5,1],"span":[188,9,22]},{"path":[4,35,2,5,3],"span":[188,25,26]},{"path":[4,35,2,6],"span":[190,2,23]},{"path":[4,35,2,6,5],"span":[190,2,8]},{"path":[4,35,2,6,1],"span":[190,9,18]},{"path":[4,35,2,6,3],"span":[190,21,22]},{"path":[4,35,2,7],"span":[191,2,24]},{"path":[4,35,2,7,6],"span":[191,2,13]},{"path":[4,35,2,7,1],"span":[191,14,18]},{"path":[4,35,2,7,3],"span":[191,21,23]},{"path":[4,35,2,8],"span":[192,2,24]},{"path":[4,35,2,8,5],"span":[192,2,8]},{"path":[4,35,2,8,1],"span":[192,9,18]},{"path":[4,35,2,8,3],"span":[192,21,23]},{"path":[5,2],"span":[194,0,201,1]},{"path":[5,2,1],"span":[194,5,16]},{"path":[5,2,2,0],"span":[195,2,7]},{"path":[5,2,2,0,1],"span":[195,2,4]},{"path":[5,2,2,0,2],"span":[195,5,6]},{"path":[5,2,2,1],"span":[196,2,7]},{"path":[5,2,2,1,1],"span":[196,2,4]},{"path":[5,2,2,1,2],"span":[196,5,6]},{"path":[5,2,2,2],"span":[197,2,13]},{"path":[5,2,2,2,1],"span":[197,2,10]},{"path":[5,2,2,2,2],"span":[197,11,12]},{"path":[5,2,2,3],"span":[198,2,10]},{"path":[5,2,2,3,1],"span":[198,2,7]},{"path":[5,2,2,3,2],"span":[198,8,9]},{"path":[5,2,2,4],"span":[199,2,22]},{"path":[5,2,2,4,1],"span":[199,2,19]},{"path":[5,2,2,4,2],"span":[199,20,21]},{"path":[5,2,2,5],"span":[200,2,11],"trailingComments":" vNEXT manual reconciled installation, that will link all the manual assets that will come to vNEXT.\n"},{"path":[5,2,2,5,1],"span":[200,2,8]},{"path":[5,2,2,5,2],"span":[200,9,10]},{"path":[4,36],"span":[202,0,205,1]},{"path":[4,36,1],"span":[202,8,29]},{"path":[4,36,2,0],"span":[203,2,22]},{"path":[4,36,2,0,6],"span":[203,2,9]},{"path":[4,36,2,0,1],"span":[203,10,17]},{"path":[4,36,2,0,3],"span":[203,20,21]},{"path":[4,36,2,1],"span":[204,2,37]},{"path":[4,36,2,1,6],"span":[204,2,20]},{"path":[4,36,2,1,1],"span":[204,21,32]},{"path":[4,36,2,1,3],"span":[204,35,36]},{"path":[4,37],"span":[206,0,215,1]},{"path":[4,37,1],"span":[206,8,35]},{"path":[4,37,2,0],"span":[207,2,21]},{"path":[4,37,2,0,5],"span":[207,2,8]},{"path":[4,37,2,0,1],"span":[207,9,16]},{"path":[4,37,2,0,3],"span":[207,19,20]},{"path":[4,37,2,1],"span":[208,2,26]},{"path":[4,37,2,1,5],"span":[208,2,8]},{"path":[4,37,2,1,1],"span":[208,9,21]},{"path":[4,37,2,1,3],"span":[208,24,25]},{"path":[4,37,2,2],"span":[209,2,25]},{"path":[4,37,2,2,5],"span":[209,2,8]},{"path":[4,37,2,2,1],"span":[209,9,20]},{"path":[4,37,2,2,3],"span":[209,23,24]},{"path":[4,37,2,3],"span":[210,2,23]},{"path":[4,37,2,3,5],"span":[210,2,8]},{"path":[4,37,2,3,1],"span":[210,9,18]},{"path":[4,37,2,3,3],"span":[210,21,22]},{"path":[4,37,2,4],"span":[211,2,23]},{"path":[4,37,2,4,6],"span":[211,2,13]},{"path":[4,37,2,4,1],"span":[211,14,18]},{"path":[4,37,2,4,3],"span":[211,21,22]},{"path":[4,37,2,5],"span":[212,2,27]},{"path":[4,37,2,5,5],"span":[212,2,8]},{"path":[4,37,2,5,1],"span":[212,9,22]},{"path":[4,37,2,5,3],"span":[212,25,26]},{"path":[4,37,2,6],"span":[213,2,23]},{"path":[4,37,2,6,5],"span":[213,2,8]},{"path":[4,37,2,6,1],"span":[213,9,18]},{"path":[4,37,2,6,3],"span":[213,21,22]},{"path":[4,37,2,7],"span":[214,2,25]},{"path":[4,37,2,7,5],"span":[214,2,8]},{"path":[4,37,2,7,1],"span":[214,9,20]},{"path":[4,37,2,7,3],"span":[214,23,24]},{"path":[4,38],"span":[216,0,220,1]},{"path":[4,38,1],"span":[216,8,36]},{"path":[4,38,2,0],"span":[217,2,22]},{"path":[4,38,2,0,6],"span":[217,2,9]},{"path":[4,38,2,0,1],"span":[217,10,17]},{"path":[4,38,2,0,3],"span":[217,20,21]},{"path":[4,38,2,1],"span":[218,2,37]},{"path":[4,38,2,1,6],"span":[218,2,20]},{"path":[4,38,2,1,1],"span":[218,21,32]},{"path":[4,38,2,1,3],"span":[218,35,36]},{"path":[4,38,2,2],"span":[219,2,21]},{"path":[4,38,2,2,5],"span":[219,2,8]},{"path":[4,38,2,2,1],"span":[219,9,16]},{"path":[4,38,2,2,3],"span":[219,19,20]},{"path":[4,39],"span":[221,0,234,1]},{"path":[4,39,1],"span":[221,8,38]},{"path":[4,39,2,0],"span":[222,2,23]},{"path":[4,39,2,0,5],"span":[222,2,8]},{"path":[4,39,2,0,1],"span":[222,9,18]},{"path":[4,39,2,0,3],"span":[222,21,22]},{"path":[4,39,2,1],"span":[223,2,26]},{"path":[4,39,2,1,5],"span":[223,2,8]},{"path":[4,39,2,1,1],"span":[223,9,21]},{"path":[4,39,2,1,3],"span":[223,24,25]},{"path":[4,39,2,2],"span":[224,2,25]},{"path":[4,39,2,2,5],"span":[224,2,8]},{"path":[4,39,2,2,1],"span":[224,9,20]},{"path":[4,39,2,2,3],"span":[224,23,24]},{"path":[4,39,2,3],"span":[225,2,20]},{"path":[4,39,2,3,5],"span":[225,2,8]},{"path":[4,39,2,3,1],"span":[225,9,15]},{"path":[4,39,2,3,3],"span":[225,18,19]},{"path":[4,39,2,4],"span":[226,2,18]},{"path":[4,39,2,4,5],"span":[226,2,8]},{"path":[4,39,2,4,1],"span":[226,9,13]},{"path":[4,39,2,4,3],"span":[226,16,17]},{"path":[4,39,3,0],"span":[227,2,232,3]},{"path":[4,39,3,0,1],"span":[227,10,24]},{"path":[4,39,3,0,2,0],"span":[228,4,41]},{"path":[4,39,3,0,2,0,5],"span":[228,4,10]},{"path":[4,39,3,0,2,0,1],"span":[228,11,36]},{"path":[4,39,3,0,2,0,3],"span":[228,39,40]},{"path":[4,39,3,0,2,1],"span":[229,4,47]},{"path":[4,39,3,0,2,1,5],"span":[229,4,10]},{"path":[4,39,3,0,2,1,1],"span":[229,11,42]},{"path":[4,39,3,0,2,1,3],"span":[229,45,46]},{"path":[4,39,3,0,2,2],"span":[230,4,45]},{"path":[4,39,3,0,2,2,5],"span":[230,4,10]},{"path":[4,39,3,0,2,2,1],"span":[230,11,40]},{"path":[4,39,3,0,2,2,3],"span":[230,43,44]},{"path":[4,39,3,0,2,3],"span":[231,4,40]},{"path":[4,39,3,0,2,3,5],"span":[231,4,10]},{"path":[4,39,3,0,2,3,1],"span":[231,11,35]},{"path":[4,39,3,0,2,3,3],"span":[231,38,39]},{"path":[4,39,2,5],"span":[233,2,37]},{"path":[4,39,2,5,6],"span":[233,2,16]},{"path":[4,39,2,5,1],"span":[233,17,32]},{"path":[4,39,2,5,3],"span":[233,35,36]},{"path":[4,40],"span":[235,0,237,1]},{"path":[4,40,1],"span":[235,8,39]},{"path":[4,40,2,0],"span":[236,2,22]},{"path":[4,40,2,0,6],"span":[236,2,9]},{"path":[4,40,2,0,1],"span":[236,10,17]},{"path":[4,40,2,0,3],"span":[236,20,21]},{"path":[4,41],"span":[238,0,241,1]},{"path":[4,41,1],"span":[238,8,38]},{"path":[4,41,2,0],"span":[239,2,23]},{"path":[4,41,2,0,5],"span":[239,2,8]},{"path":[4,41,2,0,1],"span":[239,9,18]},{"path":[4,41,2,0,3],"span":[239,21,22]},{"path":[4,41,2,1],"span":[240,2,22]},{"path":[4,41,2,1,5],"span":[240,2,8]},{"path":[4,41,2,1,1],"span":[240,9,17]},{"path":[4,41,2,1,3],"span":[240,20,21]},{"path":[4,42],"span":[242,0,247,1]},{"path":[4,42,1],"span":[242,8,39]},{"path":[4,42,2,0],"span":[243,2,19]},{"path":[4,42,2,0,5],"span":[243,2,6]},{"path":[4,42,2,0,1],"span":[243,7,14]},{"path":[4,42,2,0,3],"span":[243,17,18]},{"path":[4,42,2,1],"span":[244,2,21]},{"path":[4,42,2,1,5],"span":[244,2,8]},{"path":[4,42,2,1,1],"span":[244,9,16]},{"path":[4,42,2,1,3],"span":[244,19,20]},{"path":[4,42,2,2],"span":[245,2,28]},{"path":[4,42,2,2,5],"span":[245,2,8]},{"path":[4,42,2,2,1],"span":[245,9,23]},{"path":[4,42,2,2,3],"span":[245,26,27]},{"path":[4,42,2,3],"span":[246,2,28]},{"path":[4,42,2,3,5],"span":[246,2,8]},{"path":[4,42,2,3,1],"span":[246,9,23]},{"path":[4,42,2,3,3],"span":[246,26,27]},{"path":[4,43],"span":[248,0,253,1]},{"path":[4,43,1],"span":[248,8,38]},{"path":[4,43,2,0],"span":[249,2,23]},{"path":[4,43,2,0,5],"span":[249,2,8]},{"path":[4,43,2,0,1],"span":[249,9,18]},{"path":[4,43,2,0,3],"span":[249,21,22]},{"path":[4,43,2,1],"span":[250,2,22]},{"path":[4,43,2,1,5],"span":[250,2,8]},{"path":[4,43,2,1,1],"span":[250,9,17]},{"path":[4,43,2,1,3],"span":[250,20,21]},{"path":[4,43,2,2],"span":[251,2,23]},{"path":[4,43,2,2,5],"span":[251,2,6]},{"path":[4,43,2,2,1],"span":[251,7,18]},{"path":[4,43,2,2,3],"span":[251,21,22]},{"path":[4,43,2,3],"span":[252,2,23]},{"path":[4,43,2,3,5],"span":[252,2,6]},{"path":[4,43,2,3,1],"span":[252,7,18]},{"path":[4,43,2,3,3],"span":[252,21,22]},{"path":[4,44],"span":[254,0,256,1]},{"path":[4,44,1],"span":[254,8,39]},{"path":[4,44,2,0],"span":[255,2,19]},{"path":[4,44,2,0,5],"span":[255,2,6]},{"path":[4,44,2,0,1],"span":[255,7,14]},{"path":[4,44,2,0,3],"span":[255,17,18]},{"path":[4,45],"span":[257,0,263,1]},{"path":[4,45,1],"span":[257,8,41]},{"path":[4,45,2,0],"span":[258,2,23]},{"path":[4,45,2,0,5],"span":[258,2,8]},{"path":[4,45,2,0,1],"span":[258,9,18]},{"path":[4,45,2,0,3],"span":[258,21,22]},{"path":[4,45,2,1],"span":[259,2,26]},{"path":[4,45,2,1,5],"span":[259,2,8]},{"path":[4,45,2,1,1],"span":[259,9,21]},{"path":[4,45,2,1,3],"span":[259,24,25]},{"path":[4,45,2,2],"span":[260,2,25]},{"path":[4,45,2,2,5],"span":[260,2,8]},{"path":[4,45,2,2,1],"span":[260,9,20]},{"path":[4,45,2,2,3],"span":[260,23,24]},{"path":[4,45,2,3],"span":[261,2,23]},{"path":[4,45,2,3,5],"span":[261,2,8]},{"path":[4,45,2,3,1],"span":[261,9,18]},{"path":[4,45,2,3,3],"span":[261,21,22]},{"path":[4,45,2,4],"span":[262,2,23]},{"path":[4,45,2,4,6],"span":[262,2,13]},{"path":[4,45,2,4,1],"span":[262,14,18]},{"path":[4,45,2,4,3],"span":[262,21,22]},{"path":[4,46],"span":[264,0,269,1]},{"path":[4,46,1],"span":[264,8,42]},{"path":[4,46,2,0],"span":[265,2,22]},{"path":[4,46,2,0,6],"span":[265,2,9]},{"path":[4,46,2,0,1],"span":[265,10,17]},{"path":[4,46,2,0,3],"span":[265,20,21]},{"path":[4,46,2,1],"span":[266,2,37]},{"path":[4,46,2,1,6],"span":[266,2,20]},{"path":[4,46,2,1,1],"span":[266,21,32]},{"path":[4,46,2,1,3],"span":[266,35,36]},{"path":[4,46,2,2],"span":[267,2,23]},{"path":[4,46,2,2,6],"span":[267,2,13]},{"path":[4,46,2,2,1],"span":[267,14,18]},{"path":[4,46,2,2,3],"span":[267,21,22]},{"path":[4,46,2,3],"span":[268,2,21]},{"path":[4,46,2,3,5],"span":[268,2,8]},{"path":[4,46,2,3,1],"span":[268,9,16]},{"path":[4,46,2,3,3],"span":[268,19,20]},{"path":[4,47],"span":[270,0,274,1]},{"path":[4,47,1],"span":[270,8,40]},{"path":[4,47,2,0],"span":[271,2,21]},{"path":[4,47,2,0,5],"span":[271,2,8]},{"path":[4,47,2,0,1],"span":[271,9,16]},{"path":[4,47,2,0,3],"span":[271,19,20]},{"path":[4,47,2,1],"span":[272,2,34]},{"path":[4,47,2,1,4],"span":[272,2,10]},{"path":[4,47,2,1,5],"span":[272,11,17]},{"path":[4,47,2,1,1],"span":[272,18,29]},{"path":[4,47,2,1,3],"span":[272,32,33]},{"path":[4,47,2,2],"span":[273,2,21]},{"path":[4,47,2,2,5],"span":[273,2,8]},{"path":[4,47,2,2,1],"span":[273,9,16]},{"path":[4,47,2,2,3],"span":[273,19,20]},{"path":[4,48],"span":[275,0,281,1]},{"path":[4,48,1],"span":[275,8,41]},{"path":[4,48,3,0],"span":[276,2,279,3]},{"path":[4,48,3,0,1],"span":[276,10,16]},{"path":[4,48,3,0,2,0],"span":[277,4,26]},{"path":[4,48,3,0,2,0,5],"span":[277,4,10]},{"path":[4,48,3,0,2,0,1],"span":[277,11,21]},{"path":[4,48,3,0,2,0,3],"span":[277,24,25]},{"path":[4,48,3,0,2,1],"span":[278,4,20]},{"path":[4,48,3,0,2,1,5],"span":[278,4,8]},{"path":[4,48,3,0,2,1,1],"span":[278,9,15]},{"path":[4,48,3,0,2,1,3],"span":[278,18,19]},{"path":[4,48,2,0],"span":[280,2,29]},{"path":[4,48,2,0,4],"span":[280,2,10]},{"path":[4,48,2,0,6],"span":[280,11,17]},{"path":[4,48,2,0,1],"span":[280,18,24]},{"path":[4,48,2,0,3],"span":[280,27,28]},{"path":[4,49],"span":[282,0,285,1]},{"path":[4,49,1],"span":[282,8,46]},{"path":[4,49,2,0],"span":[283,2,21]},{"path":[4,49,2,0,5],"span":[283,2,8]},{"path":[4,49,2,0,1],"span":[283,9,16]},{"path":[4,49,2,0,3],"span":[283,19,20]},{"path":[4,49,2,1],"span":[284,2,23]},{"path":[4,49,2,1,5],"span":[284,2,8]},{"path":[4,49,2,1,1],"span":[284,9,18]},{"path":[4,49,2,1,3],"span":[284,21,22]},{"path":[4,50],"span":[286,0,288,1]},{"path":[4,50,1],"span":[286,8,47]},{"path":[4,50,2,0],"span":[287,2,31]},{"path":[4,50,2,0,4],"span":[287,2,10]},{"path":[4,50,2,0,6],"span":[287,11,18]},{"path":[4,50,2,0,1],"span":[287,19,26]},{"path":[4,50,2,0,3],"span":[287,29,30]},{"path":[4,51],"span":[289,0,292,1]},{"path":[4,51,1],"span":[289,8,33]},{"path":[4,51,2,0],"span":[290,2,21]},{"path":[4,51,2,0,5],"span":[290,2,8]},{"path":[4,51,2,0,1],"span":[290,9,16]},{"path":[4,51,2,0,3],"span":[290,19,20]},{"path":[4,51,2,1],"span":[291,2,24]},{"path":[4,51,2,1,5],"span":[291,2,8]},{"path":[4,51,2,1,1],"span":[291,9,19]},{"path":[4,51,2,1,3],"span":[291,22,23]},{"path":[4,52],"span":[293,0,308,1]},{"path":[4,52,1],"span":[293,8,34]},{"path":[4,52,3,0],"span":[294,2,297,3]},{"path":[4,52,3,0,1],"span":[294,10,29]},{"path":[4,52,3,0,2,0],"span":[295,4,19]},{"path":[4,52,3,0,2,0,5],"span":[295,4,10]},{"path":[4,52,3,0,2,0,1],"span":[295,11,14]},{"path":[4,52,3,0,2,0,3],"span":[295,17,18]},{"path":[4,52,3,0,2,1],"span":[296,4,34]},{"path":[4,52,3,0,2,1,5],"span":[296,4,9]},{"path":[4,52,3,0,2,1,1],"span":[296,10,29]},{"path":[4,52,3,0,2,1,3],"span":[296,32,33]},{"path":[4,52,3,1],"span":[298,2,300,3]},{"path":[4,52,3,1,1],"span":[298,10,15]},{"path":[4,52,3,1,2,0],"span":[299,4,18]},{"path":[4,52,3,1,2,0,5],"span":[299,4,10]},{"path":[4,52,3,1,2,0,1],"span":[299,11,13]},{"path":[4,52,3,1,2,0,3],"span":[299,16,17]},{"path":[4,52,3,2],"span":[301,2,306,3]},{"path":[4,52,3,2,1],"span":[301,10,14]},{"path":[4,52,3,2,2,0],"span":[302,4,18]},{"path":[4,52,3,2,2,0,5],"span":[302,4,10]},{"path":[4,52,3,2,2,0,1],"span":[302,11,13]},{"path":[4,52,3,2,2,0,3],"span":[302,16,17]},{"path":[4,52,3,2,2,1],"span":[303,4,45]},{"path":[4,52,3,2,2,1,4],"span":[303,4,12]},{"path":[4,52,3,2,2,1,6],"span":[303,13,32]},{"path":[4,52,3,2,2,1,1],"span":[303,33,40]},{"path":[4,52,3,2,2,1,3],"span":[303,43,44]},{"path":[4,52,3,2,2,2],"span":[304,4,39]},{"path":[4,52,3,2,2,2,4],"span":[304,4,12]},{"path":[4,52,3,2,2,2,6],"span":[304,13,20]},{"path":[4,52,3,2,2,2,1],"span":[304,21,34]},{"path":[4,52,3,2,2,2,3],"span":[304,37,38]},{"path":[4,52,3,2,2,3],"span":[305,4,30]},{"path":[4,52,3,2,2,3,4],"span":[305,4,12]},{"path":[4,52,3,2,2,3,6],"span":[305,13,18]},{"path":[4,52,3,2,2,3,1],"span":[305,19,25]},{"path":[4,52,3,2,2,3,3],"span":[305,28,29]},{"path":[4,52,2,0],"span":[307,2,26]},{"path":[4,52,2,0,4],"span":[307,2,10]},{"path":[4,52,2,0,6],"span":[307,11,15]},{"path":[4,52,2,0,1],"span":[307,16,21]},{"path":[4,52,2,0,3],"span":[307,24,25]},{"path":[4,53],"span":[309,0,312,1]},{"path":[4,53,1],"span":[309,8,53]},{"path":[4,53,2,0],"span":[310,2,35]},{"path":[4,53,2,0,5],"span":[310,2,8]},{"path":[4,53,2,0,1],"span":[310,9,30]},{"path":[4,53,2,0,3],"span":[310,33,34]},{"path":[4,53,2,1],"span":[311,2,22]},{"path":[4,53,2,1,5],"span":[311,2,8]},{"path":[4,53,2,1,1],"span":[311,9,17]},{"path":[4,53,2,1,3],"span":[311,20,21]},{"path":[4,54],"span":[313,0,316,1]},{"path":[4,54,1],"span":[313,8,54]},{"path":[4,54,2,0],"span":[314,2,21]},{"path":[4,54,2,0,5],"span":[314,2,8]},{"path":[4,54,2,0,1],"span":[314,9,16]},{"path":[4,54,2,0,3],"span":[314,19,20]},{"path":[4,54,2,1],"span":[315,2,28]},{"path":[4,54,2,1,5],"span":[315,2,8]},{"path":[4,54,2,1,1],"span":[315,9,23]},{"path":[4,54,2,1,3],"span":[315,26,27]},{"path":[4,55],"span":[317,0,334,1]},{"path":[4,55,1],"span":[317,8,34]},{"path":[4,55,2,0],"span":[318,2,30]},{"path":[4,55,2,0,5],"span":[318,2,8]},{"path":[4,55,2,0,1],"span":[318,9,25]},{"path":[4,55,2,0,3],"span":[318,28,29]},{"path":[4,55,2,1],"span":[319,2,39]},{"path":[4,55,2,1,5],"span":[319,2,8]},{"path":[4,55,2,1,1],"span":[319,9,14]},{"path":[4,55,2,1,3],"span":[319,17,18]},{"path":[4,55,2,1,8],"span":[319,19,38]},{"path":[4,55,2,1,8,3],"span":[319,20,37]},{"path":[4,55,3,0],"span":[321,2,326,3]},{"path":[4,55,3,0,1],"span":[321,10,22]},{"path":[4,55,3,0,2,0],"span":[322,4,20]},{"path":[4,55,3,0,2,0,5],"span":[322,4,10]},{"path":[4,55,3,0,2,0,1],"span":[322,11,15]},{"path":[4,55,3,0,2,0,3],"span":[322,18,19]},{"path":[4,55,3,0,2,1],"span":[323,4,44]},{"path":[4,55,3,0,2,1,5],"span":[323,4,10]},{"path":[4,55,3,0,2,1,1],"span":[323,11,19]},{"path":[4,55,3,0,2,1,3],"span":[323,22,23]},{"path":[4,55,3,0,2,1,8],"span":[323,24,43]},{"path":[4,55,3,0,2,1,8,3],"span":[323,25,42]},{"path":[4,55,3,0,2,2],"span":[324,4,25]},{"path":[4,55,3,0,2,2,5],"span":[324,4,10]},{"path":[4,55,3,0,2,2,1],"span":[324,11,20]},{"path":[4,55,3,0,2,2,3],"span":[324,23,24]},{"path":[4,55,3,0,2,3],"span":[325,4,23]},{"path":[4,55,3,0,2,3,5],"span":[325,4,10]},{"path":[4,55,3,0,2,3,1],"span":[325,11,18]},{"path":[4,55,3,0,2,3,3],"span":[325,21,22]},{"path":[4,55,2,2],"span":[327,2,35]},{"path":[4,55,2,2,4],"span":[327,2,10]},{"path":[4,55,2,2,6],"span":[327,11,23]},{"path":[4,55,2,2,1],"span":[327,24,30]},{"path":[4,55,2,2,3],"span":[327,33,34]},{"path":[4,55,2,3],"span":[329,2,25]},{"path":[4,55,2,3,5],"span":[329,2,8]},{"path":[4,55,2,3,1],"span":[329,9,20]},{"path":[4,55,2,3,3],"span":[329,23,24]},{"path":[4,55,2,4],"span":[330,2,26]},{"path":[4,55,2,4,5],"span":[330,2,8]},{"path":[4,55,2,4,1],"span":[330,9,21]},{"path":[4,55,2,4,3],"span":[330,24,25]},{"path":[4,55,2,5],"span":[331,2,45]},{"path":[4,55,2,5,5],"span":[331,2,8]},{"path":[4,55,2,5,1],"span":[331,9,20]},{"path":[4,55,2,5,3],"span":[331,23,24]},{"path":[4,55,2,5,8],"span":[331,25,44]},{"path":[4,55,2,5,8,3],"span":[331,26,43]},{"path":[4,55,2,6],"span":[332,2,24]},{"path":[4,55,2,6,5],"span":[332,2,8]},{"path":[4,55,2,6,1],"span":[332,9,19]},{"path":[4,55,2,6,3],"span":[332,22,23]},{"path":[4,55,2,7],"span":[333,2,28]},{"path":[4,55,2,7,5],"span":[333,2,8]},{"path":[4,55,2,7,1],"span":[333,9,23]},{"path":[4,55,2,7,3],"span":[333,26,27]},{"path":[4,56],"span":[335,0,337,1]},{"path":[4,56,1],"span":[335,8,35]},{"path":[4,56,2,0],"span":[336,2,21]},{"path":[4,56,2,0,5],"span":[336,2,6]},{"path":[4,56,2,0,1],"span":[336,7,16]},{"path":[4,56,2,0,3],"span":[336,19,20]},{"path":[4,57],"span":[338,0,340,1]},{"path":[4,57,1],"span":[338,8,12]},{"path":[4,57,2,0],"span":[339,2,16]},{"path":[4,57,2,0,5],"span":[339,2,8]},{"path":[4,57,2,0,1],"span":[339,9,11]},{"path":[4,57,2,0,3],"span":[339,14,15]},{"path":[4,58],"span":[341,0,344,1]},{"path":[4,58,1],"span":[341,8,30]},{"path":[4,58,2,0],"span":[342,2,28]},{"path":[4,58,2,0,5],"span":[342,2,8]},{"path":[4,58,2,0,1],"span":[342,9,23]},{"path":[4,58,2,0,3],"span":[342,26,27]},{"path":[4,58,2,1],"span":[343,2,22]},{"path":[4,58,2,1,5],"span":[343,2,8]},{"path":[4,58,2,1,1],"span":[343,9,17]},{"path":[4,58,2,1,3],"span":[343,20,21]},{"path":[4,59],"span":[345,0,347,1]},{"path":[4,59,1],"span":[345,8,31]},{"path":[4,59,2,0],"span":[346,2,25]},{"path":[4,59,2,0,4],"span":[346,2,10]},{"path":[4,59,2,0,6],"span":[346,11,15]},{"path":[4,59,2,0,1],"span":[346,16,20]},{"path":[4,59,2,0,3],"span":[346,23,24]},{"path":[4,60],"span":[348,0,350,1]},{"path":[4,60,1],"span":[348,8,36]},{"path":[4,60,2,0],"span":[349,2,21]},{"path":[4,60,2,0,5],"span":[349,2,8]},{"path":[4,60,2,0,1],"span":[349,9,16]},{"path":[4,60,2,0,3],"span":[349,19,20]},{"path":[4,61],"span":[351,0,353,1]},{"path":[4,61,1],"span":[351,8,37]},{"path":[4,61,2,0],"span":[352,2,34]},{"path":[4,61,2,0,4],"span":[352,2,10]},{"path":[4,61,2,0,5],"span":[352,11,17]},{"path":[4,61,2,0,1],"span":[352,18,29]},{"path":[4,61,2,0,3],"span":[352,32,33]},{"path":[4,62],"span":[354,0,357,1]},{"path":[4,62,1],"span":[354,8,40]},{"path":[4,62,2,0],"span":[355,2,28]},{"path":[4,62,2,0,5],"span":[355,2,8]},{"path":[4,62,2,0,1],"span":[355,9,23]},{"path":[4,62,2,0,3],"span":[355,26,27]},{"path":[4,62,2,1],"span":[356,2,24]},{"path":[4,62,2,1,5],"span":[356,2,8]},{"path":[4,62,2,1,1],"span":[356,9,19]},{"path":[4,62,2,1,3],"span":[356,22,23]},{"path":[4,63],"span":[358,0,360,1]},{"path":[4,63,1],"span":[358,8,41]},{"path":[4,63,2,0],"span":[359,2,22]},{"path":[4,63,2,0,5],"span":[359,2,6]},{"path":[4,63,2,0,1],"span":[359,7,17]},{"path":[4,63,2,0,3],"span":[359,20,21]},{"path":[5,3],"span":[361,0,368,1]},{"path":[5,3,1],"span":[361,5,21]},{"path":[5,3,2,0],"span":[362,2,43]},{"path":[5,3,2,0,1],"span":[362,2,38]},{"path":[5,3,2,0,2],"span":[362,41,42]},{"path":[5,3,2,1],"span":[363,2,36]},{"path":[5,3,2,1,1],"span":[363,2,31]},{"path":[5,3,2,1,2],"span":[363,34,35]},{"path":[5,3,2,2],"span":[364,2,39]},{"path":[5,3,2,2,1],"span":[364,2,34]},{"path":[5,3,2,2,2],"span":[364,37,38]},{"path":[5,3,2,3],"span":[365,2,38]},{"path":[5,3,2,3,1],"span":[365,2,33]},{"path":[5,3,2,3,2],"span":[365,36,37]},{"path":[5,3,2,4],"span":[366,2,34]},{"path":[5,3,2,4,1],"span":[366,2,29]},{"path":[5,3,2,4,2],"span":[366,32,33]},{"path":[5,3,2,5],"span":[367,2,41]},{"path":[5,3,2,5,1],"span":[367,2,36]},{"path":[5,3,2,5,2],"span":[367,39,40]},{"path":[4,64],"span":[369,0,377,1]},{"path":[4,64,1],"span":[369,8,20]},{"path":[4,64,2,0],"span":[370,2,16]},{"path":[4,64,2,0,5],"span":[370,2,8]},{"path":[4,64,2,0,1],"span":[370,9,11]},{"path":[4,64,2,0,3],"span":[370,14,15]},{"path":[4,64,2,1],"span":[371,2,21]},{"path":[4,64,2,1,5],"span":[371,2,8]},{"path":[4,64,2,1,1],"span":[371,9,16]},{"path":[4,64,2,1,3],"span":[371,19,20]},{"path":[4,64,2,2],"span":[372,2,28]},{"path":[4,64,2,2,6],"span":[372,2,18]},{"path":[4,64,2,2,1],"span":[372,19,23]},{"path":[4,64,2,2,3],"span":[372,26,27]},{"path":[4,64,2,3],"span":[373,2,25]},{"path":[4,64,2,3,5],"span":[373,2,7]},{"path":[4,64,2,3,1],"span":[373,8,20]},{"path":[4,64,2,3,3],"span":[373,23,24]},{"path":[4,64,2,4],"span":[374,2,29]},{"path":[4,64,2,4,5],"span":[374,2,8]},{"path":[4,64,2,4,1],"span":[374,9,24]},{"path":[4,64,2,4,3],"span":[374,27,28]},{"path":[4,64,2,5],"span":[375,2,24]},{"path":[4,64,2,5,5],"span":[375,2,8]},{"path":[4,64,2,5,1],"span":[375,9,19]},{"path":[4,64,2,5,3],"span":[375,22,23]},{"path":[4,64,2,6],"span":[376,2,24]},{"path":[4,64,2,6,5],"span":[376,2,8]},{"path":[4,64,2,6,1],"span":[376,9,19]},{"path":[4,64,2,6,3],"span":[376,22,23]},{"path":[4,65],"span":[378,0,384,1]},{"path":[4,65,1],"span":[378,8,37]},{"path":[4,65,2,0],"span":[379,2,21]},{"path":[4,65,2,0,5],"span":[379,2,8]},{"path":[4,65,2,0,1],"span":[379,9,16]},{"path":[4,65,2,0,3],"span":[379,19,20]},{"path":[4,65,2,1],"span":[380,2,28]},{"path":[4,65,2,1,6],"span":[380,2,18]},{"path":[4,65,2,1,1],"span":[380,19,23]},{"path":[4,65,2,1,3],"span":[380,26,27]},{"path":[4,65,2,2],"span":[381,2,25]},{"path":[4,65,2,2,5],"span":[381,2,7]},{"path":[4,65,2,2,1],"span":[381,8,20]},{"path":[4,65,2,2,3],"span":[381,23,24]},{"path":[4,65,2,3],"span":[382,2,29]},{"path":[4,65,2,3,5],"span":[382,2,8]},{"path":[4,65,2,3,1],"span":[382,9,24]},{"path":[4,65,2,3,3],"span":[382,27,28]},{"path":[4,65,2,4],"span":[383,2,24]},{"path":[4,65,2,4,5],"span":[383,2,8]},{"path":[4,65,2,4,1],"span":[383,9,19]},{"path":[4,65,2,4,3],"span":[383,22,23]},{"path":[4,66],"span":[385,0,387,1]},{"path":[4,66,1],"span":[385,8,38]},{"path":[4,66,2,0],"span":[386,2,32]},{"path":[4,66,2,0,6],"span":[386,2,14]},{"path":[4,66,2,0,1],"span":[386,15,27]},{"path":[4,66,2,0,3],"span":[386,30,31]},{"path":[4,67],"span":[388,0,390,1]},{"path":[4,67,1],"span":[388,8,42]},{"path":[4,67,2,0],"span":[389,2,21]},{"path":[4,67,2,0,5],"span":[389,2,8]},{"path":[4,67,2,0,1],"span":[389,9,16]},{"path":[4,67,2,0,3],"span":[389,19,20]},{"path":[4,68],"span":[391,0,393,1]},{"path":[4,68,1],"span":[391,8,43]},{"path":[4,68,2,0],"span":[392,2,35]},{"path":[4,68,2,0,5],"span":[392,2,8]},{"path":[4,68,2,0,1],"span":[392,9,30]},{"path":[4,68,2,0,3],"span":[392,33,34]},{"path":[4,69],"span":[394,0,396,1]},{"path":[4,69,1],"span":[394,8,47]},{"path":[4,69,2,0],"span":[395,2,23]},{"path":[4,69,2,0,5],"span":[395,2,8]},{"path":[4,69,2,0,1],"span":[395,9,18]},{"path":[4,69,2,0,3],"span":[395,21,22]},{"path":[4,70],"span":[397,0,399,1]},{"path":[4,70,1],"span":[397,8,48]},{"path":[4,70,2,0],"span":[398,2,21]},{"path":[4,70,2,0,5],"span":[398,2,8]},{"path":[4,70,2,0,1],"span":[398,9,16]},{"path":[4,70,2,0,3],"span":[398,19,20]},{"path":[4,71],"span":[400,0,404,1]},{"path":[4,71,1],"span":[400,8,31]},{"path":[4,71,7],"span":[401,2,27]},{"path":[4,71,7,3],"span":[401,2,27]},{"path":[4,71,2,0],"span":[402,2,21]},{"path":[4,71,2,0,5],"span":[402,2,8]},{"path":[4,71,2,0,1],"span":[402,9,16]},{"path":[4,71,2,0,3],"span":[402,19,20]},{"path":[4,71,2,1],"span":[403,2,29]},{"path":[4,71,2,1,4],"span":[403,2,10]},{"path":[4,71,2,1,5],"span":[403,11,17]},{"path":[4,71,2,1,1],"span":[403,18,24]},{"path":[4,71,2,1,3],"span":[403,27,28]},{"path":[4,72],"span":[405,0,408,1]},{"path":[4,72,1],"span":[405,8,32]},{"path":[4,72,7],"span":[406,2,27]},{"path":[4,72,7,3],"span":[406,2,27]},{"path":[4,72,2,0],"span":[407,2,15]},{"path":[4,72,2,0,5],"span":[407,2,6]},{"path":[4,72,2,0,1],"span":[407,7,10]},{"path":[4,72,2,0,3],"span":[407,13,14]},{"path":[4,73],"span":[409,0,412,1]},{"path":[4,73,1],"span":[409,8,31]},{"path":[4,73,2,0],"span":[410,2,21]},{"path":[4,73,2,0,5],"span":[410,2,8]},{"path":[4,73,2,0,1],"span":[410,9,16]},{"path":[4,73,2,0,3],"span":[410,19,20]},{"path":[4,73,2,1],"span":[411,2,29]},{"path":[4,73,2,1,4],"span":[411,2,10]},{"path":[4,73,2,1,5],"span":[411,11,17]},{"path":[4,73,2,1,1],"span":[411,18,24]},{"path":[4,73,2,1,3],"span":[411,27,28]},{"path":[4,74],"span":[413,0,417,1]},{"path":[4,74,1],"span":[413,8,32]},{"path":[4,74,2,0],"span":[414,2,15]},{"path":[4,74,2,0,5],"span":[414,2,6]},{"path":[4,74,2,0,1],"span":[414,7,10]},{"path":[4,74,2,0,3],"span":[414,13,14]},{"path":[4,74,2,1],"span":[415,2,32]},{"path":[4,74,2,1,4],"span":[415,2,10]},{"path":[4,74,2,1,6],"span":[415,11,18]},{"path":[4,74,2,1,1],"span":[415,19,27]},{"path":[4,74,2,1,3],"span":[415,30,31]},{"path":[4,74,2,2],"span":[416,2,31]},{"path":[4,74,2,2,6],"span":[416,2,16]},{"path":[4,74,2,2,1],"span":[416,17,26]},{"path":[4,74,2,2,3],"span":[416,29,30]},{"path":[4,75],"span":[418,0,420,1]},{"path":[4,75,1],"span":[418,8,39]},{"path":[4,75,2,0],"span":[419,2,21]},{"path":[4,75,2,0,5],"span":[419,2,8]},{"path":[4,75,2,0,1],"span":[419,9,16]},{"path":[4,75,2,0,3],"span":[419,19,20]},{"path":[4,76],"span":[421,0,423,1]},{"path":[4,76,1],"span":[421,8,40]},{"path":[4,76,2,0],"span":[422,2,16]},{"path":[4,76,2,0,5],"span":[422,2,6]},{"path":[4,76,2,0,1],"span":[422,7,11]},{"path":[4,76,2,0,3],"span":[422,14,15]},{"path":[4,77],"span":[424,0,427,1]},{"path":[4,77,1],"span":[424,8,32]},{"path":[4,77,2,0],"span":[425,2,21]},{"path":[4,77,2,0,5],"span":[425,2,8]},{"path":[4,77,2,0,1],"span":[425,9,16]},{"path":[4,77,2,0,3],"span":[425,19,20]},{"path":[4,77,2,1],"span":[426,2,24]},{"path":[4,77,2,1,5],"span":[426,2,8]},{"path":[4,77,2,1,1],"span":[426,9,19]},{"path":[4,77,2,1,3],"span":[426,22,23]},{"path":[4,78],"span":[428,0,430,1]},{"path":[4,78,1],"span":[428,8,33]},{"path":[4,78,2,0],"span":[429,2,18]},{"path":[4,78,2,0,5],"span":[429,2,8]},{"path":[4,78,2,0,1],"span":[429,9,13]},{"path":[4,78,2,0,3],"span":[429,16,17]},{"path":[4,79],"span":[431,0,433,1]},{"path":[4,79,1],"span":[431,8,37]},{"path":[4,79,2,0],"span":[432,4,33]},{"path":[4,79,2,0,4],"span":[432,4,12]},{"path":[4,79,2,0,5],"span":[432,13,19]},{"path":[4,79,2,0,1],"span":[432,20,28]},{"path":[4,79,2,0,3],"span":[432,31,32]},{"path":[4,80],"span":[434,0,436,1]},{"path":[4,80,1],"span":[434,8,47]},{"path":[4,80,2,0],"span":[435,2,21]},{"path":[4,80,2,0,5],"span":[435,2,8]},{"path":[4,80,2,0,1],"span":[435,9,16]},{"path":[4,80,2,0,3],"span":[435,19,20]},{"path":[4,81],"span":[437,0,439,1]},{"path":[4,81,1],"span":[437,8,48]},{"path":[4,81,2,0],"span":[438,2,22]},{"path":[4,81,2,0,5],"span":[438,2,6]},{"path":[4,81,2,0,1],"span":[438,7,17]},{"path":[4,81,2,0,3],"span":[438,20,21]},{"path":[4,82],"span":[440,0,444,1]},{"path":[4,82,1],"span":[440,8,33]},{"path":[4,82,2,0],"span":[441,2,21]},{"path":[4,82,2,0,5],"span":[441,2,8]},{"path":[4,82,2,0,1],"span":[441,9,16]},{"path":[4,82,2,0,3],"span":[441,19,20]},{"path":[4,82,2,1],"span":[442,2,17]},{"path":[4,82,2,1,5],"span":[442,2,8]},{"path":[4,82,2,1,1],"span":[442,9,12]},{"path":[4,82,2,1,3],"span":[442,15,16]},{"path":[4,82,2,2],"span":[443,2,19]},{"path":[4,82,2,2,5],"span":[443,2,8]},{"path":[4,82,2,2,1],"span":[443,9,14]},{"path":[4,82,2,2,3],"span":[443,17,18]},{"path":[4,83],"span":[445,0,447,1]},{"path":[4,83,1],"span":[445,8,34]},{"path":[4,83,2,0],"span":[446,2,19]},{"path":[4,83,2,0,5],"span":[446,2,6]},{"path":[4,83,2,0,1],"span":[446,7,14]},{"path":[4,83,2,0,3],"span":[446,17,18]},{"path":[4,84],"span":[449,0,453,1]},{"path":[4,84,1],"span":[449,8,39]},{"path":[4,84,2,0],"span":[450,2,21]},{"path":[4,84,2,0,5],"span":[450,2,8]},{"path":[4,84,2,0,1],"span":[450,9,16]},{"path":[4,84,2,0,3],"span":[450,19,20]},{"path":[4,84,2,1],"span":[451,2,28]},{"path":[4,84,2,1,5],"span":[451,2,6]},{"path":[4,84,2,1,1],"span":[451,7,23]},{"path":[4,84,2,1,3],"span":[451,26,27]},{"path":[4,84,2,2],"span":[452,2,24]},{"path":[4,84,2,2,5],"span":[452,2,8]},{"path":[4,84,2,2,1],"span":[452,9,19]},{"path":[4,84,2,2,3],"span":[452,22,23]},{"path":[4,85],"span":[454,0,456,1]},{"path":[4,85,1],"span":[454,8,40]},{"path":[4,85,2,0],"span":[455,2,19]},{"path":[4,85,2,0,5],"span":[455,2,6]},{"path":[4,85,2,0,1],"span":[455,7,14]},{"path":[4,85,2,0,3],"span":[455,17,18]},{"path":[4,86],"span":[458,0,460,1]},{"path":[4,86,1],"span":[458,8,28]},{"path":[4,86,2,0],"span":[459,2,31]},{"path":[4,86,2,0,4],"span":[459,2,10]},{"path":[4,86,2,0,5],"span":[459,11,17]},{"path":[4,86,2,0,1],"span":[459,18,26]},{"path":[4,86,2,0,3],"span":[459,29,30]},{"path":[4,87],"span":[462,0,464,1]},{"path":[4,87,1],"span":[462,8,29]},{"path":[4,87,2,0],"span":[463,2,70]},{"path":[4,87,2,0,6],"span":[463,2,53]},{"path":[4,87,2,0,1],"span":[463,54,65]},{"path":[4,87,2,0,3],"span":[463,68,69]},{"path":[4,88],"span":[466,0,469,1]},{"path":[4,88,1],"span":[466,8,34]},{"path":[4,88,2,0],"span":[467,2,32]},{"path":[4,88,2,0,4],"span":[467,2,10]},{"path":[4,88,2,0,5],"span":[467,11,17]},{"path":[4,88,2,0,1],"span":[467,18,27]},{"path":[4,88,2,0,3],"span":[467,30,31]},{"path":[4,88,2,1],"span":[468,2,27]},{"path":[4,88,2,1,4],"span":[468,2,10]},{"path":[4,88,2,1,5],"span":[468,11,16]},{"path":[4,88,2,1,1],"span":[468,17,22]},{"path":[4,88,2,1,3],"span":[468,25,26]},{"path":[4,89],"span":[471,0,483,1]},{"path":[4,89,1],"span":[471,8,28]},{"path":[4,89,4,0],"span":[472,2,477,3]},{"path":[4,89,4,0,1],"span":[472,7,17]},{"path":[4,89,4,0,2,0],"span":[473,4,16]},{"path":[4,89,4,0,2,0,1],"span":[473,4,11]},{"path":[4,89,4,0,2,0,2],"span":[473,14,15]},{"path":[4,89,4,0,2,1],"span":[474,4,13]},{"path":[4,89,4,0,2,1,1],"span":[474,4,8]},{"path":[4,89,4,0,2,1,2],"span":[474,11,12]},{"path":[4,89,4,0,2,2],"span":[475,4,12]},{"path":[4,89,4,0,2,2,1],"span":[475,4,7]},{"path":[4,89,4,0,2,2,2],"span":[475,10,11]},{"path":[4,89,4,0,2,3],"span":[476,4,13]},{"path":[4,89,4,0,2,3,1],"span":[476,4,8]},{"path":[4,89,4,0,2,3,2],"span":[476,11,12]},{"path":[4,89,2,0],"span":[478,2,21]},{"path":[4,89,2,0,5],"span":[478,2,8]},{"path":[4,89,2,0,1],"span":[478,9,16]},{"path":[4,89,2,0,3],"span":[478,19,20]},{"path":[4,89,2,1],"span":[479,2,29]},{"path":[4,89,2,1,6],"span":[479,2,12]},{"path":[4,89,2,1,1],"span":[479,13,24]},{"path":[4,89,2,1,3],"span":[479,27,28]},{"path":[4,89,2,2],"span":[480,2,23]},{"path":[4,89,2,2,5],"span":[480,2,8]},{"path":[4,89,2,2,1],"span":[480,9,18]},{"path":[4,89,2,2,3],"span":[480,21,22]},{"path":[4,89,2,3],"span":[481,2,31]},{"path":[4,89,2,3,5],"span":[481,2,6]},{"path":[4,89,2,3,1],"span":[481,7,26]},{"path":[4,89,2,3,3],"span":[481,29,30]},{"path":[4,89,2,4],"span":[482,2,32]},{"path":[4,89,2,4,5],"span":[482,2,6]},{"path":[4,89,2,4,1],"span":[482,7,27]},{"path":[4,89,2,4,3],"span":[482,30,31]},{"path":[4,90],"span":[485,0,489,1]},{"path":[4,90,1],"span":[485,8,32]},{"path":[4,90,2,0],"span":[486,2,23]},{"path":[4,90,2,0,5],"span":[486,2,8]},{"path":[4,90,2,0,1],"span":[486,9,18]},{"path":[4,90,2,0,3],"span":[486,21,22]},{"path":[4,90,2,1],"span":[487,2,18]},{"path":[4,90,2,1,5],"span":[487,2,7]},{"path":[4,90,2,1,1],"span":[487,8,13]},{"path":[4,90,2,1,3],"span":[487,16,17]},{"path":[4,90,2,2],"span":[488,2,25]},{"path":[4,90,2,2,5],"span":[488,2,6]},{"path":[4,90,2,2,1],"span":[488,7,20]},{"path":[4,90,2,2,3],"span":[488,23,24]},{"path":[4,91],"span":[491,0,495,1]},{"path":[4,91,1],"span":[491,8,35]},{"path":[4,91,2,0],"span":[492,2,18]},{"path":[4,91,2,0,5],"span":[492,2,7]},{"path":[4,91,2,0,1],"span":[492,8,13]},{"path":[4,91,2,0,3],"span":[492,16,17]},{"path":[4,91,2,1],"span":[493,2,42]},{"path":[4,91,2,1,4],"span":[493,2,10]},{"path":[4,91,2,1,6],"span":[493,11,31]},{"path":[4,91,2,1,1],"span":[493,32,37]},{"path":[4,91,2,1,3],"span":[493,40,41]},{"path":[4,91,2,2],"span":[494,2,41]},{"path":[4,91,2,2,6],"span":[494,2,26]},{"path":[4,91,2,2,1],"span":[494,27,36]},{"path":[4,91,2,2,3],"span":[494,39,40]},{"path":[4,92],"span":[497,0,500,1]},{"path":[4,92,1],"span":[497,8,23]},{"path":[4,92,2,0],"span":[498,2,32]},{"path":[4,92,2,0,4],"span":[498,2,10]},{"path":[4,92,2,0,5],"span":[498,11,17]},{"path":[4,92,2,0,1],"span":[498,18,27]},{"path":[4,92,2,0,3],"span":[498,30,31]},{"path":[4,92,2,1],"span":[499,2,27]},{"path":[4,92,2,1,4],"span":[499,2,10]},{"path":[4,92,2,1,5],"span":[499,11,16]},{"path":[4,92,2,1,1],"span":[499,17,22]},{"path":[4,92,2,1,3],"span":[499,25,26]},{"path":[4,93],"span":[502,0,504,1]},{"path":[4,93,1],"span":[502,8,23]},{"path":[4,93,2,0],"span":[503,2,39]},{"path":[4,93,2,0,4],"span":[503,2,10]},{"path":[4,93,2,0,6],"span":[503,11,26]},{"path":[4,93,2,0,1],"span":[503,27,34]},{"path":[4,93,2,0,3],"span":[503,37,38]},{"path":[4,94],"span":[506,0,509,1]},{"path":[4,94,1],"span":[506,8,24]},{"path":[4,94,2,0],"span":[507,2,46]},{"path":[4,94,2,0,5],"span":[507,2,6]},{"path":[4,94,2,0,1],"span":[507,7,41]},{"path":[4,94,2,0,3],"span":[507,44,45]},{"path":[4,94,2,1],"span":[508,2,44]},{"path":[4,94,2,1,5],"span":[508,2,6]},{"path":[4,94,2,1,1],"span":[508,7,39]},{"path":[4,94,2,1,3],"span":[508,42,43]},{"path":[4,95],"span":[511,0,514,1]},{"path":[4,95,1],"span":[511,8,16]},{"path":[4,95,2,0],"span":[512,2,16]},{"path":[4,95,2,0,5],"span":[512,2,8]},{"path":[4,95,2,0,1],"span":[512,9,11]},{"path":[4,95,2,0,3],"span":[512,14,15]},{"path":[4,95,2,1],"span":[513,2,41]},{"path":[4,95,2,1,4],"span":[513,2,10]},{"path":[4,95,2,1,6],"span":[513,11,27]},{"path":[4,95,2,1,1],"span":[513,28,36]},{"path":[4,95,2,1,3],"span":[513,39,40]},{"path":[4,96],"span":[516,0,520,1]},{"path":[4,96,1],"span":[516,8,24]},{"path":[4,96,2,0],"span":[517,2,23]},{"path":[4,96,2,0,5],"span":[517,2,8]},{"path":[4,96,2,0,1],"span":[517,9,18]},{"path":[4,96,2,0,3],"span":[517,21,22]},{"path":[4,96,2,1],"span":[518,2,18]},{"path":[4,96,2,1,5],"span":[518,2,7]},{"path":[4,96,2,1,1],"span":[518,8,13]},{"path":[4,96,2,1,3],"span":[518,16,17]},{"path":[4,96,2,2],"span":[519,2,25]},{"path":[4,96,2,2,5],"span":[519,2,6]},{"path":[4,96,2,2,1],"span":[519,7,20]},{"path":[4,96,2,2,3],"span":[519,23,24]},{"path":[4,97],"span":[522,0,526,1]},{"path":[4,97,1],"span":[522,8,24]},{"path":[4,97,2,0],"span":[523,2,18]},{"path":[4,97,2,0,5],"span":[523,2,7]},{"path":[4,97,2,0,1],"span":[523,8,13]},{"path":[4,97,2,0,3],"span":[523,16,17]},{"path":[4,97,2,1],"span":[524,2,30]},{"path":[4,97,2,1,4],"span":[524,2,10]},{"path":[4,97,2,1,6],"span":[524,11,19]},{"path":[4,97,2,1,1],"span":[524,20,25]},{"path":[4,97,2,1,3],"span":[524,28,29]},{"path":[4,97,2,2],"span":[525,2,33]},{"path":[4,97,2,2,6],"span":[525,2,18]},{"path":[4,97,2,2,1],"span":[525,19,28]},{"path":[4,97,2,2,3],"span":[525,31,32]},{"path":[4,98],"span":[528,0,531,1]},{"path":[4,98,1],"span":[528,8,22]},{"path":[4,98,2,0],"span":[529,2,19]},{"path":[4,98,2,0,5],"span":[529,2,7]},{"path":[4,98,2,0,1],"span":[529,8,14]},{"path":[4,98,2,0,3],"span":[529,17,18]},{"path":[4,98,2,1],"span":[530,2,18]},{"path":[4,98,2,1,5],"span":[530,2,7]},{"path":[4,98,2,1,1],"span":[530,8,13]},{"path":[4,98,2,1,3],"span":[530,16,17]},{"path":[4,99],"span":[533,0,538,1]},{"path":[4,99,1],"span":[533,8,26]},{"path":[4,99,2,0],"span":[534,2,18]},{"path":[4,99,2,0,5],"span":[534,2,7]},{"path":[4,99,2,0,1],"span":[534,8,13]},{"path":[4,99,2,0,3],"span":[534,16,17]},{"path":[4,99,2,1],"span":[535,2,19]},{"path":[4,99,2,1,5],"span":[535,2,7]},{"path":[4,99,2,1,1],"span":[535,8,14]},{"path":[4,99,2,1,3],"span":[535,17,18]},{"path":[4,99,2,2],"span":[536,2,18]},{"path":[4,99,2,2,5],"span":[536,2,7]},{"path":[4,99,2,2,1],"span":[536,8,13]},{"path":[4,99,2,2,3],"span":[536,16,17]},{"path":[4,99,2,3],"span":[537,2,25]},{"path":[4,99,2,3,5],"span":[537,2,6]},{"path":[4,99,2,3,1],"span":[537,7,20]},{"path":[4,99,2,3,3],"span":[537,23,24]},{"path":[4,100],"span":[540,0,548,1]},{"path":[4,100,1],"span":[540,8,38]},{"path":[4,100,2,0],"span":[541,2,21]},{"path":[4,100,2,0,5],"span":[541,2,8]},{"path":[4,100,2,0,1],"span":[541,9,16]},{"path":[4,100,2,0,3],"span":[541,19,20]},{"path":[4,100,3,0],"span":[542,2,545,3]},{"path":[4,100,3,0,1],"span":[542,10,31]},{"path":[4,100,3,0,2,0],"span":[543,4,21]},{"path":[4,100,3,0,2,0,5],"span":[543,4,9]},{"path":[4,100,3,0,2,0,1],"span":[543,10,16]},{"path":[4,100,3,0,2,0,3],"span":[543,19,20]},{"path":[4,100,3,0,2,1],"span":[544,4,20]},{"path":[4,100,3,0,2,1,5],"span":[544,4,9]},{"path":[4,100,3,0,2,1,1],"span":[544,10,15]},{"path":[4,100,3,0,2,1,3],"span":[544,18,19]},{"path":[4,100,2,1],"span":[546,2,44]},{"path":[4,100,2,1,6],"span":[546,2,23]},{"path":[4,100,2,1,1],"span":[546,24,39]},{"path":[4,100,2,1,3],"span":[546,42,43]},{"path":[4,100,2,2],"span":[547,2,22]},{"path":[4,100,2,2,5],"span":[547,2,8]},{"path":[4,100,2,2,1],"span":[547,9,17]},{"path":[4,100,2,2,3],"span":[547,20,21]},{"path":[4,101],"span":[550,0,563,1]},{"path":[4,101,1],"span":[550,8,39]},{"path":[4,101,3,0],"span":[551,2,554,3]},{"path":[4,101,3,0,1],"span":[551,10,26]},{"path":[4,101,3,0,2,0],"span":[552,4,18]},{"path":[4,101,3,0,2,0,5],"span":[552,4,10]},{"path":[4,101,3,0,2,0,1],"span":[552,11,13]},{"path":[4,101,3,0,2,0,3],"span":[552,16,17]},{"path":[4,101,3,0,2,1],"span":[553,4,20]},{"path":[4,101,3,0,2,1,5],"span":[553,4,10]},{"path":[4,101,3,0,2,1,1],"span":[553,11,15]},{"path":[4,101,3,0,2,1,3],"span":[553,18,19]},{"path":[4,101,2,0],"span":[555,2,46]},{"path":[4,101,2,0,4],"span":[555,2,10]},{"path":[4,101,2,0,6],"span":[555,11,27]},{"path":[4,101,2,0,1],"span":[555,28,41]},{"path":[4,101,2,0,3],"span":[555,44,45]},{"path":[4,101,3,1],"span":[556,2,561,3]},{"path":[4,101,3,1,1],"span":[556,10,22]},{"path":[4,101,3,1,2,0],"span":[557,4,20]},{"path":[4,101,3,1,2,0,5],"span":[557,4,9]},{"path":[4,101,3,1,2,0,1],"span":[557,10,15]},{"path":[4,101,3,1,2,0,3],"span":[557,18,19]},{"path":[4,101,3,1,2,1],"span":[558,4,21]},{"path":[4,101,3,1,2,1,5],"span":[558,4,9]},{"path":[4,101,3,1,2,1,1],"span":[558,10,16]},{"path":[4,101,3,1,2,1,3],"span":[558,19,20]},{"path":[4,101,3,1,2,2],"span":[559,4,20]},{"path":[4,101,3,1,2,2,5],"span":[559,4,9]},{"path":[4,101,3,1,2,2,1],"span":[559,10,15]},{"path":[4,101,3,1,2,2,3],"span":[559,18,19]},{"path":[4,101,3,1,2,3],"span":[560,4,27]},{"path":[4,101,3,1,2,3,5],"span":[560,4,8]},{"path":[4,101,3,1,2,3,1],"span":[560,9,22]},{"path":[4,101,3,1,2,3,3],"span":[560,25,26]},{"path":[4,101,2,1],"span":[562,2,34]},{"path":[4,101,2,1,6],"span":[562,2,14]},{"path":[4,101,2,1,1],"span":[562,15,29]},{"path":[4,101,2,1,3],"span":[562,32,33]},{"path":[4,102],"span":[565,0,569,1]},{"path":[4,102,1],"span":[565,8,41]},{"path":[4,102,2,0],"span":[566,2,21]},{"path":[4,102,2,0,5],"span":[566,2,8]},{"path":[4,102,2,0,1],"span":[566,9,16]},{"path":[4,102,2,0,3],"span":[566,19,20]},{"path":[4,102,2,1],"span":[567,2,34]},{"path":[4,102,2,1,5],"span":[567,2,8]},{"path":[4,102,2,1,1],"span":[567,9,29]},{"path":[4,102,2,1,3],"span":[567,32,33]},{"path":[4,102,2,2],"span":[568,2,22]},{"path":[4,102,2,2,5],"span":[568,2,8]},{"path":[4,102,2,2,1],"span":[568,9,17]},{"path":[4,102,2,2,3],"span":[568,20,21]},{"path":[4,103],"span":[571,0,576,1]},{"path":[4,103,1],"span":[571,8,42]},{"path":[4,103,2,0],"span":[572,2,16]},{"path":[4,103,2,0,5],"span":[572,2,8]},{"path":[4,103,2,0,1],"span":[572,9,11]},{"path":[4,103,2,0,3],"span":[572,14,15]},{"path":[4,103,2,1],"span":[573,2,18]},{"path":[4,103,2,1,5],"span":[573,2,8]},{"path":[4,103,2,1,1],"span":[573,9,13]},{"path":[4,103,2,1,3],"span":[573,16,17]},{"path":[4,103,2,2],"span":[574,2,22]},{"path":[4,103,2,2,5],"span":[574,2,6]},{"path":[4,103,2,2,1],"span":[574,7,17]},{"path":[4,103,2,2,3],"span":[574,20,21]},{"path":[4,103,2,3],"span":[575,2,53]},{"path":[4,103,2,3,5],"span":[575,2,6]},{"path":[4,103,2,3,1],"span":[575,7,48]},{"path":[4,103,2,3,3],"span":[575,51,52]},{"path":[4,104],"span":[578,0,583,1]},{"path":[4,104,1],"span":[578,8,43]},{"path":[4,104,2,0],"span":[579,2,21]},{"path":[4,104,2,0,5],"span":[579,2,8]},{"path":[4,104,2,0,1],"span":[579,9,16]},{"path":[4,104,2,0,3],"span":[579,19,20]},{"path":[4,104,2,1],"span":[580,2,34]},{"path":[4,104,2,1,5],"span":[580,2,8]},{"path":[4,104,2,1,1],"span":[580,9,29]},{"path":[4,104,2,1,3],"span":[580,32,33]},{"path":[4,104,2,2],"span":[581,2,37]},{"path":[4,104,2,2,6],"span":[581,2,16]},{"path":[4,104,2,2,1],"span":[581,17,32]},{"path":[4,104,2,2,3],"span":[581,35,36]},{"path":[4,104,2,3],"span":[582,2,22]},{"path":[4,104,2,3,5],"span":[582,2,8]},{"path":[4,104,2,3,1],"span":[582,9,17]},{"path":[4,104,2,3,3],"span":[582,20,21]},{"path":[4,105],"span":[585,0,588,1]},{"path":[4,105,1],"span":[585,8,44]},{"path":[4,105,2,0],"span":[586,2,33]},{"path":[4,105,2,0,4],"span":[586,2,10]},{"path":[4,105,2,0,6],"span":[586,11,22]},{"path":[4,105,2,0,1],"span":[586,23,28]},{"path":[4,105,2,0,3],"span":[586,31,32]},{"path":[4,105,2,1],"span":[587,2,46]},{"path":[4,105,2,1,6],"span":[587,2,20]},{"path":[4,105,2,1,1],"span":[587,21,41]},{"path":[4,105,2,1,3],"span":[587,44,45]},{"path":[4,106],"span":[590,0,593,1]},{"path":[4,106,1],"span":[590,8,47]},{"path":[4,106,2,0],"span":[591,2,21]},{"path":[4,106,2,0,5],"span":[591,2,8]},{"path":[4,106,2,0,1],"span":[591,9,16]},{"path":[4,106,2,0,3],"span":[591,19,20]},{"path":[4,106,2,1],"span":[592,2,19]},{"path":[4,106,2,1,5],"span":[592,2,6]},{"path":[4,106,2,1,1],"span":[592,7,14]},{"path":[4,106,2,1,3],"span":[592,17,18]},{"path":[4,107],"span":[595,0,597,1]},{"path":[4,107,1],"span":[595,8,46]},{"path":[4,107,2,0],"span":[596,2,21]},{"path":[4,107,2,0,5],"span":[596,2,8]},{"path":[4,107,2,0,1],"span":[596,9,16]},{"path":[4,107,2,0,3],"span":[596,19,20]},{"path":[4,108],"span":[599,0,601,1]},{"path":[4,108,1],"span":[599,8,48]},{"path":[4,108,2,0],"span":[600,2,21]},{"path":[4,108,2,0,5],"span":[600,2,8]},{"path":[4,108,2,0,1],"span":[600,9,16]},{"path":[4,108,2,0,3],"span":[600,19,20]},{"path":[4,109],"span":[603,0,605,1]},{"path":[4,109,1],"span":[603,8,47]},{"path":[4,109,2,0],"span":[604,2,22]},{"path":[4,109,2,0,5],"span":[604,2,6]},{"path":[4,109,2,0,1],"span":[604,7,17]},{"path":[4,109,2,0,3],"span":[604,20,21]},{"path":[4,110],"span":[607,0,609,1]},{"path":[4,110,1],"span":[607,8,49]},{"path":[4,110,2,0],"span":[608,2,22]},{"path":[4,110,2,0,5],"span":[608,2,6]},{"path":[4,110,2,0,1],"span":[608,7,17]},{"path":[4,110,2,0,3],"span":[608,20,21]},{"path":[4,111],"span":[611,0,613,1]},{"path":[4,111,1],"span":[611,8,29]},{"path":[4,111,2,0],"span":[612,2,21]},{"path":[4,111,2,0,5],"span":[612,2,8]},{"path":[4,111,2,0,1],"span":[612,9,16]},{"path":[4,111,2,0,3],"span":[612,19,20]},{"path":[4,112],"span":[615,0,617,1]},{"path":[4,112,1],"span":[615,8,30]},{"path":[4,112,2,0],"span":[616,2,23]},{"path":[4,112,2,0,6],"span":[616,2,13]},{"path":[4,112,2,0,1],"span":[616,14,18]},{"path":[4,112,2,0,3],"span":[616,21,22]},{"path":[4,113],"span":[619,0,624,1]},{"path":[4,113,1],"span":[619,8,45]},{"path":[4,113,2,0],"span":[620,2,18]},{"path":[4,113,2,0,5],"span":[620,2,8]},{"path":[4,113,2,0,1],"span":[620,9,13]},{"path":[4,113,2,0,3],"span":[620,16,17]},{"path":[4,113,2,1],"span":[621,2,36]},{"path":[4,113,2,1,5],"span":[621,2,8]},{"path":[4,113,2,1,1],"span":[621,9,31]},{"path":[4,113,2,1,3],"span":[621,34,35]},{"path":[4,113,2,2],"span":[622,2,31]},{"path":[4,113,2,2,4],"span":[622,2,10]},{"path":[4,113,2,2,5],"span":[622,11,17]},{"path":[4,113,2,2,1],"span":[622,18,26]},{"path":[4,113,2,2,3],"span":[622,29,30]},{"path":[4,113,2,3],"span":[623,2,34]},{"path":[4,113,2,3,4],"span":[623,2,10]},{"path":[4,113,2,3,5],"span":[623,11,17]},{"path":[4,113,2,3,1],"span":[623,18,29]},{"path":[4,113,2,3,3],"span":[623,32,33]},{"path":[4,114],"span":[626,0,628,1]},{"path":[4,114,1],"span":[626,8,46]},{"path":[4,114,2,0],"span":[627,2,19]},{"path":[4,114,2,0,5],"span":[627,2,8]},{"path":[4,114,2,0,1],"span":[627,9,14]},{"path":[4,114,2,0,3],"span":[627,17,18]},{"path":[4,115],"span":[630,0,633,1]},{"path":[4,115,1],"span":[630,8,38]},{"path":[4,115,2,0],"span":[631,2,21]},{"path":[4,115,2,0,5],"span":[631,2,8]},{"path":[4,115,2,0,1],"span":[631,9,16]},{"path":[4,115,2,0,3],"span":[631,19,20]},{"path":[4,115,2,1],"span":[632,2,24]},{"path":[4,115,2,1,5],"span":[632,2,8]},{"path":[4,115,2,1,1],"span":[632,9,19]},{"path":[4,115,2,1,3],"span":[632,22,23]},{"path":[4,116],"span":[635,0,637,1]},{"path":[4,116,1],"span":[635,8,39]},{"path":[4,116,2,0],"span":[636,2,33]},{"path":[4,116,2,0,5],"span":[636,2,8]},{"path":[4,116,2,0,1],"span":[636,9,28]},{"path":[4,116,2,0,3],"span":[636,31,32]},{"path":[4,117],"span":[639,0,642,1]},{"path":[4,117,1],"span":[639,8,42]},{"path":[4,117,2,0],"span":[640,2,22]},{"path":[4,117,2,0,5],"span":[640,2,8]},{"path":[4,117,2,0,1],"span":[640,9,17]},{"path":[4,117,2,0,3],"span":[640,20,21]},{"path":[4,117,2,1],"span":[641,2,21]},{"path":[4,117,2,1,5],"span":[641,2,8]},{"path":[4,117,2,1,1],"span":[641,9,16]},{"path":[4,117,2,1,3],"span":[641,19,20]},{"path":[4,118],"span":[644,0,646,1]},{"path":[4,118,1],"span":[644,8,43]},{"path":[4,118,2,0],"span":[645,2,24]},{"path":[4,118,2,0,5],"span":[645,2,8]},{"path":[4,118,2,0,1],"span":[645,9,19]},{"path":[4,118,2,0,3],"span":[645,22,23]},{"path":[4,119],"span":[648,0,651,1]},{"path":[4,119,1],"span":[648,8,36]},{"path":[4,119,2,0],"span":[649,2,21]},{"path":[4,119,2,0,5],"span":[649,2,8]},{"path":[4,119,2,0,1],"span":[649,9,16]},{"path":[4,119,2,0,3],"span":[649,19,20]},{"path":[4,119,2,1],"span":[650,2,30]},{"path":[4,119,2,1,4],"span":[650,2,10]},{"path":[4,119,2,1,5],"span":[650,11,17]},{"path":[4,119,2,1,1],"span":[650,18,25]},{"path":[4,119,2,1,3],"span":[650,28,29]},{"path":[4,120],"span":[653,0,655,1]},{"path":[4,120,1],"span":[653,8,37]},{"path":[4,120,2,0],"span":[654,2,31]},{"path":[4,120,2,0,5],"span":[654,2,8]},{"path":[4,120,2,0,1],"span":[654,9,26]},{"path":[4,120,2,0,3],"span":[654,29,30]},{"path":[6,0],"span":[657,0,715,1]},{"path":[6,0,1],"span":[657,8,19]},{"path":[6,0,2,0],"span":[658,2,121]},{"path":[6,0,2,0,1],"span":[658,6,34]},{"path":[6,0,2,0,2],"span":[658,35,70]},{"path":[6,0,2,0,3],"span":[658,81,117]},{"path":[6,0,2,1],"span":[659,2,118]},{"path":[6,0,2,1,1],"span":[659,6,33]},{"path":[6,0,2,1,2],"span":[659,34,68]},{"path":[6,0,2,1,3],"span":[659,79,114]},{"path":[6,0,2,2],"span":[660,2,100]},{"path":[6,0,2,2,1],"span":[660,6,27]},{"path":[6,0,2,2,2],"span":[660,28,56]},{"path":[6,0,2,2,3],"span":[660,67,96]},{"path":[6,0,2,3],"span":[661,2,127]},{"path":[6,0,2,3,1],"span":[661,6,36]},{"path":[6,0,2,3,2],"span":[661,37,74]},{"path":[6,0,2,3,3],"span":[661,85,123]},{"path":[6,0,2,4],"span":[662,2,127]},{"path":[6,0,2,4,1],"span":[662,6,36]},{"path":[6,0,2,4,2],"span":[662,37,74]},{"path":[6,0,2,4,3],"span":[662,85,123]},{"path":[6,0,2,5],"span":[663,2,106]},{"path":[6,0,2,5,1],"span":[663,6,29]},{"path":[6,0,2,5,2],"span":[663,30,60]},{"path":[6,0,2,5,3],"span":[663,71,102]},{"path":[6,0,2,6],"span":[665,2,115]},{"path":[6,0,2,6,1],"span":[665,6,32]},{"path":[6,0,2,6,2],"span":[665,33,66]},{"path":[6,0,2,6,3],"span":[665,77,111]},{"path":[6,0,2,7],"span":[666,2,76]},{"path":[6,0,2,7,1],"span":[666,6,19]},{"path":[6,0,2,7,2],"span":[666,20,40]},{"path":[6,0,2,7,3],"span":[666,51,72]},{"path":[6,0,2,8],"span":[667,2,76]},{"path":[6,0,2,8,1],"span":[667,6,19]},{"path":[6,0,2,8,2],"span":[667,20,40]},{"path":[6,0,2,8,3],"span":[667,51,72]},{"path":[6,0,2,9],"span":[668,2,97]},{"path":[6,0,2,9,1],"span":[668,6,26]},{"path":[6,0,2,9,2],"span":[668,27,54]},{"path":[6,0,2,9,3],"span":[668,65,93]},{"path":[6,0,2,10],"span":[669,2,88]},{"path":[6,0,2,10,1],"span":[669,6,23]},{"path":[6,0,2,10,2],"span":[669,24,48]},{"path":[6,0,2,10,3],"span":[669,59,84]},{"path":[6,0,2,11],"span":[670,2,118]},{"path":[6,0,2,11,1],"span":[670,6,33]},{"path":[6,0,2,11,2],"span":[670,34,68]},{"path":[6,0,2,11,3],"span":[670,79,114]},{"path":[6,0,2,12],"span":[671,2,82]},{"path":[6,0,2,12,1],"span":[671,6,21]},{"path":[6,0,2,12,2],"span":[671,22,44]},{"path":[6,0,2,12,3],"span":[671,55,78]},{"path":[6,0,2,13],"span":[672,2,97]},{"path":[6,0,2,13,1],"span":[672,6,28]},{"path":[6,0,2,13,2],"span":[672,29,58]},{"path":[6,0,2,13,3],"span":[672,69,93]},{"path":[6,0,2,14],"span":[673,2,97]},{"path":[6,0,2,14,1],"span":[673,6,26]},{"path":[6,0,2,14,2],"span":[673,27,54]},{"path":[6,0,2,14,3],"span":[673,65,93]},{"path":[6,0,2,15],"span":[674,2,106]},{"path":[6,0,2,15,1],"span":[674,6,29]},{"path":[6,0,2,15,2],"span":[674,30,60]},{"path":[6,0,2,15,3],"span":[674,71,102]},{"path":[6,0,2,16],"span":[675,2,106]},{"path":[6,0,2,16,1],"span":[675,6,29]},{"path":[6,0,2,16,2],"span":[675,30,60]},{"path":[6,0,2,16,3],"span":[675,71,102]},{"path":[6,0,2,17],"span":[676,2,115]},{"path":[6,0,2,17,1],"span":[676,6,32]},{"path":[6,0,2,17,2],"span":[676,33,66]},{"path":[6,0,2,17,3],"span":[676,77,111]},{"path":[6,0,2,18],"span":[677,2,106]},{"path":[6,0,2,18,1],"span":[677,6,29]},{"path":[6,0,2,18,2],"span":[677,30,60]},{"path":[6,0,2,18,3],"span":[677,71,102]},{"path":[6,0,2,19],"span":[678,2,112]},{"path":[6,0,2,19,1],"span":[678,6,31]},{"path":[6,0,2,19,2],"span":[678,32,64]},{"path":[6,0,2,19,3],"span":[678,75,108]},{"path":[6,0,2,20],"span":[679,2,130]},{"path":[6,0,2,20,1],"span":[679,6,37]},{"path":[6,0,2,20,2],"span":[679,38,76]},{"path":[6,0,2,20,3],"span":[679,87,126]},{"path":[6,0,2,21],"span":[680,2,91]},{"path":[6,0,2,21,1],"span":[680,6,24]},{"path":[6,0,2,21,2],"span":[680,25,50]},{"path":[6,0,2,21,3],"span":[680,61,87]},{"path":[6,0,2,22],"span":[681,2,151]},{"path":[6,0,2,22,1],"span":[681,6,44]},{"path":[6,0,2,22,2],"span":[681,45,90]},{"path":[6,0,2,22,3],"span":[681,101,147]},{"path":[6,0,2,23],"span":[682,2,99]},{"path":[6,0,2,23,1],"span":[682,6,30]},{"path":[6,0,2,23,2],"span":[682,31,57]},{"path":[6,0,2,23,3],"span":[682,68,95]},{"path":[6,0,2,24],"span":[683,2,100]},{"path":[6,0,2,24,1],"span":[683,6,39]},{"path":[6,0,2,24,2],"span":[683,40,62]},{"path":[6,0,2,24,3],"span":[683,73,96]},{"path":[6,0,2,25],"span":[684,2,100]},{"path":[6,0,2,25,1],"span":[684,6,27]},{"path":[6,0,2,25,2],"span":[684,28,56]},{"path":[6,0,2,25,3],"span":[684,67,96]},{"path":[6,0,2,26],"span":[685,2,112]},{"path":[6,0,2,26,1],"span":[685,6,31]},{"path":[6,0,2,26,2],"span":[685,32,64]},{"path":[6,0,2,26,3],"span":[685,75,108]},{"path":[6,0,2,27],"span":[686,2,103]},{"path":[6,0,2,27,1],"span":[686,6,28]},{"path":[6,0,2,27,2],"span":[686,29,58]},{"path":[6,0,2,27,3],"span":[686,69,99]},{"path":[6,0,2,28],"span":[687,2,118]},{"path":[6,0,2,28,1],"span":[687,6,33]},{"path":[6,0,2,28,2],"span":[687,34,68]},{"path":[6,0,2,28,3],"span":[687,79,114]},{"path":[6,0,2,29],"span":[688,2,133]},{"path":[6,0,2,29,1],"span":[688,6,38]},{"path":[6,0,2,29,2],"span":[688,39,78]},{"path":[6,0,2,29,3],"span":[688,89,129]},{"path":[6,0,2,30],"span":[689,2,85]},{"path":[6,0,2,30,1],"span":[689,6,22]},{"path":[6,0,2,30,2],"span":[689,23,46]},{"path":[6,0,2,30,3],"span":[689,57,81]},{"path":[6,0,2,31],"span":[690,2,109]},{"path":[6,0,2,31,1],"span":[690,6,30]},{"path":[6,0,2,31,2],"span":[690,31,62]},{"path":[6,0,2,31,3],"span":[690,73,105]},{"path":[6,0,2,32],"span":[691,2,693,3]},{"path":[6,0,2,32,1],"span":[691,6,22]},{"path":[6,0,2,32,2],"span":[691,23,46]},{"path":[6,0,2,32,3],"span":[691,57,81]},{"path":[6,0,2,32,4],"span":[692,4,29]},{"path":[6,0,2,32,4,33],"span":[692,4,29]},{"path":[6,0,2,33],"span":[694,2,88]},{"path":[6,0,2,33,1],"span":[694,6,23]},{"path":[6,0,2,33,2],"span":[694,24,48]},{"path":[6,0,2,33,3],"span":[694,59,84]},{"path":[6,0,2,34],"span":[695,2,113]},{"path":[6,0,2,34,1],"span":[695,6,39]},{"path":[6,0,2,34,2],"span":[695,40,69]},{"path":[6,0,2,34,3],"span":[695,80,109]},{"path":[6,0,2,35],"span":[696,2,133]},{"path":[6,0,2,35,1],"span":[696,6,38]},{"path":[6,0,2,35,2],"span":[696,39,78]},{"path":[6,0,2,35,3],"span":[696,89,129]},{"path":[6,0,2,36],"span":[697,2,91]},{"path":[6,0,2,36,1],"span":[697,6,24]},{"path":[6,0,2,36,2],"span":[697,25,50]},{"path":[6,0,2,36,3],"span":[697,61,87]},{"path":[6,0,2,37],"span":[698,2,76]},{"path":[6,0,2,37,1],"span":[698,6,19]},{"path":[6,0,2,37,2],"span":[698,20,40]},{"path":[6,0,2,37,3],"span":[698,51,72]},{"path":[6,0,2,38],"span":[699,2,106]},{"path":[6,0,2,38,1],"span":[699,6,29]},{"path":[6,0,2,38,2],"span":[699,30,60]},{"path":[6,0,2,38,3],"span":[699,71,102]},{"path":[6,0,2,39],"span":[700,2,115]},{"path":[6,0,2,39,1],"span":[700,6,32]},{"path":[6,0,2,39,2],"span":[700,33,66]},{"path":[6,0,2,39,3],"span":[700,77,111]},{"path":[6,0,2,40],"span":[701,2,121]},{"path":[6,0,2,40,1],"span":[701,6,34]},{"path":[6,0,2,40,2],"span":[701,35,70]},{"path":[6,0,2,40,3],"span":[701,81,117]},{"path":[6,0,2,41],"span":[702,2,109]},{"path":[6,0,2,41,1],"span":[702,6,30]},{"path":[6,0,2,41,2],"span":[702,31,62]},{"path":[6,0,2,41,3],"span":[702,73,105]},{"path":[6,0,2,42],"span":[703,2,114]},{"path":[6,0,2,42,1],"span":[703,6,38]},{"path":[6,0,2,42,2],"span":[703,39,78]},{"path":[6,0,2,42,3],"span":[703,89,110]},{"path":[6,0,2,43],"span":[704,2,130]},{"path":[6,0,2,43,1],"span":[704,6,37]},{"path":[6,0,2,43,2],"span":[704,38,76]},{"path":[6,0,2,43,3],"span":[704,87,126]},{"path":[6,0,2,44],"span":[705,2,136]},{"path":[6,0,2,44,1],"span":[705,6,39]},{"path":[6,0,2,44,2],"span":[705,40,80]},{"path":[6,0,2,44,3],"span":[705,91,132]},{"path":[6,0,2,45],"span":[706,2,79]},{"path":[6,0,2,45,1],"span":[706,6,20]},{"path":[6,0,2,45,2],"span":[706,21,42]},{"path":[6,0,2,45,3],"span":[706,53,75]},{"path":[6,0,2,46],"span":[707,2,109]},{"path":[6,0,2,46,1],"span":[707,6,30]},{"path":[6,0,2,46,2],"span":[707,31,62]},{"path":[6,0,2,46,3],"span":[707,73,105]},{"path":[6,0,2,47],"span":[708,2,94]},{"path":[6,0,2,47,1],"span":[708,6,25]},{"path":[6,0,2,47,2],"span":[708,26,52]},{"path":[6,0,2,47,3],"span":[708,63,90]},{"path":[6,0,2,48],"span":[709,2,61]},{"path":[6,0,2,48,1],"span":[709,6,14]},{"path":[6,0,2,48,2],"span":[709,15,30]},{"path":[6,0,2,48,3],"span":[709,41,57]},{"path":[6,0,2,49],"span":[710,2,127]},{"path":[6,0,2,49,1],"span":[710,6,36]},{"path":[6,0,2,49,2],"span":[710,37,74]},{"path":[6,0,2,49,3],"span":[710,85,123]},{"path":[6,0,2,50],"span":[711,2,106]},{"path":[6,0,2,50,1],"span":[711,6,29]},{"path":[6,0,2,50,2],"span":[711,30,60]},{"path":[6,0,2,50,3],"span":[711,71,102]},{"path":[6,0,2,51],"span":[712,2,118]},{"path":[6,0,2,51,1],"span":[712,6,33]},{"path":[6,0,2,51,2],"span":[712,34,68]},{"path":[6,0,2,51,3],"span":[712,79,114]},{"path":[6,0,2,52],"span":[713,2,100]},{"path":[6,0,2,52,1],"span":[713,6,27]},{"path":[6,0,2,52,2],"span":[713,28,56]},{"path":[6,0,2,52,3],"span":[713,67,96]}]},"syntax":"proto3","bufExtension":{"isImport":false,"isSyntaxUnspecified":false}}]}
|