@lansweeper/multitenant-api-grpc 0.4.64 → 0.4.65
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 +8 -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 +115 -0
- package/gen-proto/multitenant_pb.js +935 -0
- package/generated-go/multitenant.pb.go +1166 -812
- package/generated-go/multitenant_grpc.pb.go +38 -0
- package/package.json +2 -2
- package/proto/multitenant.proto +25 -0
|
@@ -5230,6 +5230,258 @@ func (x *GetSiteLimitsResponse) GetSiteLimits() map[string]*generated_go.SiteLim
|
|
|
5230
5230
|
return nil
|
|
5231
5231
|
}
|
|
5232
5232
|
|
|
5233
|
+
type GetSiteHierarchyIdsRequest struct {
|
|
5234
|
+
state protoimpl.MessageState
|
|
5235
|
+
sizeCache protoimpl.SizeCache
|
|
5236
|
+
unknownFields protoimpl.UnknownFields
|
|
5237
|
+
|
|
5238
|
+
OffsetId *string `protobuf:"bytes,1,opt,name=offset_id,json=offsetId,proto3,oneof" json:"offset_id,omitempty"`
|
|
5239
|
+
Limit *int32 `protobuf:"varint,2,opt,name=limit,proto3,oneof" json:"limit,omitempty"`
|
|
5240
|
+
}
|
|
5241
|
+
|
|
5242
|
+
func (x *GetSiteHierarchyIdsRequest) Reset() {
|
|
5243
|
+
*x = GetSiteHierarchyIdsRequest{}
|
|
5244
|
+
if protoimpl.UnsafeEnabled {
|
|
5245
|
+
mi := &file_multitenant_proto_msgTypes[87]
|
|
5246
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5247
|
+
ms.StoreMessageInfo(mi)
|
|
5248
|
+
}
|
|
5249
|
+
}
|
|
5250
|
+
|
|
5251
|
+
func (x *GetSiteHierarchyIdsRequest) String() string {
|
|
5252
|
+
return protoimpl.X.MessageStringOf(x)
|
|
5253
|
+
}
|
|
5254
|
+
|
|
5255
|
+
func (*GetSiteHierarchyIdsRequest) ProtoMessage() {}
|
|
5256
|
+
|
|
5257
|
+
func (x *GetSiteHierarchyIdsRequest) ProtoReflect() protoreflect.Message {
|
|
5258
|
+
mi := &file_multitenant_proto_msgTypes[87]
|
|
5259
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
5260
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5261
|
+
if ms.LoadMessageInfo() == nil {
|
|
5262
|
+
ms.StoreMessageInfo(mi)
|
|
5263
|
+
}
|
|
5264
|
+
return ms
|
|
5265
|
+
}
|
|
5266
|
+
return mi.MessageOf(x)
|
|
5267
|
+
}
|
|
5268
|
+
|
|
5269
|
+
// Deprecated: Use GetSiteHierarchyIdsRequest.ProtoReflect.Descriptor instead.
|
|
5270
|
+
func (*GetSiteHierarchyIdsRequest) Descriptor() ([]byte, []int) {
|
|
5271
|
+
return file_multitenant_proto_rawDescGZIP(), []int{87}
|
|
5272
|
+
}
|
|
5273
|
+
|
|
5274
|
+
func (x *GetSiteHierarchyIdsRequest) GetOffsetId() string {
|
|
5275
|
+
if x != nil && x.OffsetId != nil {
|
|
5276
|
+
return *x.OffsetId
|
|
5277
|
+
}
|
|
5278
|
+
return ""
|
|
5279
|
+
}
|
|
5280
|
+
|
|
5281
|
+
func (x *GetSiteHierarchyIdsRequest) GetLimit() int32 {
|
|
5282
|
+
if x != nil && x.Limit != nil {
|
|
5283
|
+
return *x.Limit
|
|
5284
|
+
}
|
|
5285
|
+
return 0
|
|
5286
|
+
}
|
|
5287
|
+
|
|
5288
|
+
type SiteHierarchyIdsItem struct {
|
|
5289
|
+
state protoimpl.MessageState
|
|
5290
|
+
sizeCache protoimpl.SizeCache
|
|
5291
|
+
unknownFields protoimpl.UnknownFields
|
|
5292
|
+
|
|
5293
|
+
SiteId string `protobuf:"bytes,1,opt,name=site_id,json=siteId,proto3" json:"site_id,omitempty"`
|
|
5294
|
+
ParentType string `protobuf:"bytes,2,opt,name=parent_type,json=parentType,proto3" json:"parent_type,omitempty"`
|
|
5295
|
+
ParentId string `protobuf:"bytes,3,opt,name=parent_id,json=parentId,proto3" json:"parent_id,omitempty"`
|
|
5296
|
+
IsCustomerAccount bool `protobuf:"varint,4,opt,name=is_customer_account,json=isCustomerAccount,proto3" json:"is_customer_account,omitempty"`
|
|
5297
|
+
}
|
|
5298
|
+
|
|
5299
|
+
func (x *SiteHierarchyIdsItem) Reset() {
|
|
5300
|
+
*x = SiteHierarchyIdsItem{}
|
|
5301
|
+
if protoimpl.UnsafeEnabled {
|
|
5302
|
+
mi := &file_multitenant_proto_msgTypes[88]
|
|
5303
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5304
|
+
ms.StoreMessageInfo(mi)
|
|
5305
|
+
}
|
|
5306
|
+
}
|
|
5307
|
+
|
|
5308
|
+
func (x *SiteHierarchyIdsItem) String() string {
|
|
5309
|
+
return protoimpl.X.MessageStringOf(x)
|
|
5310
|
+
}
|
|
5311
|
+
|
|
5312
|
+
func (*SiteHierarchyIdsItem) ProtoMessage() {}
|
|
5313
|
+
|
|
5314
|
+
func (x *SiteHierarchyIdsItem) ProtoReflect() protoreflect.Message {
|
|
5315
|
+
mi := &file_multitenant_proto_msgTypes[88]
|
|
5316
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
5317
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5318
|
+
if ms.LoadMessageInfo() == nil {
|
|
5319
|
+
ms.StoreMessageInfo(mi)
|
|
5320
|
+
}
|
|
5321
|
+
return ms
|
|
5322
|
+
}
|
|
5323
|
+
return mi.MessageOf(x)
|
|
5324
|
+
}
|
|
5325
|
+
|
|
5326
|
+
// Deprecated: Use SiteHierarchyIdsItem.ProtoReflect.Descriptor instead.
|
|
5327
|
+
func (*SiteHierarchyIdsItem) Descriptor() ([]byte, []int) {
|
|
5328
|
+
return file_multitenant_proto_rawDescGZIP(), []int{88}
|
|
5329
|
+
}
|
|
5330
|
+
|
|
5331
|
+
func (x *SiteHierarchyIdsItem) GetSiteId() string {
|
|
5332
|
+
if x != nil {
|
|
5333
|
+
return x.SiteId
|
|
5334
|
+
}
|
|
5335
|
+
return ""
|
|
5336
|
+
}
|
|
5337
|
+
|
|
5338
|
+
func (x *SiteHierarchyIdsItem) GetParentType() string {
|
|
5339
|
+
if x != nil {
|
|
5340
|
+
return x.ParentType
|
|
5341
|
+
}
|
|
5342
|
+
return ""
|
|
5343
|
+
}
|
|
5344
|
+
|
|
5345
|
+
func (x *SiteHierarchyIdsItem) GetParentId() string {
|
|
5346
|
+
if x != nil {
|
|
5347
|
+
return x.ParentId
|
|
5348
|
+
}
|
|
5349
|
+
return ""
|
|
5350
|
+
}
|
|
5351
|
+
|
|
5352
|
+
func (x *SiteHierarchyIdsItem) GetIsCustomerAccount() bool {
|
|
5353
|
+
if x != nil {
|
|
5354
|
+
return x.IsCustomerAccount
|
|
5355
|
+
}
|
|
5356
|
+
return false
|
|
5357
|
+
}
|
|
5358
|
+
|
|
5359
|
+
type SiteHierarchyIdsPageInfo struct {
|
|
5360
|
+
state protoimpl.MessageState
|
|
5361
|
+
sizeCache protoimpl.SizeCache
|
|
5362
|
+
unknownFields protoimpl.UnknownFields
|
|
5363
|
+
|
|
5364
|
+
OffsetId string `protobuf:"bytes,1,opt,name=offset_id,json=offsetId,proto3" json:"offset_id,omitempty"`
|
|
5365
|
+
Limit int32 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
|
|
5366
|
+
HasNextPage bool `protobuf:"varint,3,opt,name=has_next_page,json=hasNextPage,proto3" json:"has_next_page,omitempty"`
|
|
5367
|
+
}
|
|
5368
|
+
|
|
5369
|
+
func (x *SiteHierarchyIdsPageInfo) Reset() {
|
|
5370
|
+
*x = SiteHierarchyIdsPageInfo{}
|
|
5371
|
+
if protoimpl.UnsafeEnabled {
|
|
5372
|
+
mi := &file_multitenant_proto_msgTypes[89]
|
|
5373
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5374
|
+
ms.StoreMessageInfo(mi)
|
|
5375
|
+
}
|
|
5376
|
+
}
|
|
5377
|
+
|
|
5378
|
+
func (x *SiteHierarchyIdsPageInfo) String() string {
|
|
5379
|
+
return protoimpl.X.MessageStringOf(x)
|
|
5380
|
+
}
|
|
5381
|
+
|
|
5382
|
+
func (*SiteHierarchyIdsPageInfo) ProtoMessage() {}
|
|
5383
|
+
|
|
5384
|
+
func (x *SiteHierarchyIdsPageInfo) ProtoReflect() protoreflect.Message {
|
|
5385
|
+
mi := &file_multitenant_proto_msgTypes[89]
|
|
5386
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
5387
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5388
|
+
if ms.LoadMessageInfo() == nil {
|
|
5389
|
+
ms.StoreMessageInfo(mi)
|
|
5390
|
+
}
|
|
5391
|
+
return ms
|
|
5392
|
+
}
|
|
5393
|
+
return mi.MessageOf(x)
|
|
5394
|
+
}
|
|
5395
|
+
|
|
5396
|
+
// Deprecated: Use SiteHierarchyIdsPageInfo.ProtoReflect.Descriptor instead.
|
|
5397
|
+
func (*SiteHierarchyIdsPageInfo) Descriptor() ([]byte, []int) {
|
|
5398
|
+
return file_multitenant_proto_rawDescGZIP(), []int{89}
|
|
5399
|
+
}
|
|
5400
|
+
|
|
5401
|
+
func (x *SiteHierarchyIdsPageInfo) GetOffsetId() string {
|
|
5402
|
+
if x != nil {
|
|
5403
|
+
return x.OffsetId
|
|
5404
|
+
}
|
|
5405
|
+
return ""
|
|
5406
|
+
}
|
|
5407
|
+
|
|
5408
|
+
func (x *SiteHierarchyIdsPageInfo) GetLimit() int32 {
|
|
5409
|
+
if x != nil {
|
|
5410
|
+
return x.Limit
|
|
5411
|
+
}
|
|
5412
|
+
return 0
|
|
5413
|
+
}
|
|
5414
|
+
|
|
5415
|
+
func (x *SiteHierarchyIdsPageInfo) GetHasNextPage() bool {
|
|
5416
|
+
if x != nil {
|
|
5417
|
+
return x.HasNextPage
|
|
5418
|
+
}
|
|
5419
|
+
return false
|
|
5420
|
+
}
|
|
5421
|
+
|
|
5422
|
+
type GetSiteHierarchyIdsResponse struct {
|
|
5423
|
+
state protoimpl.MessageState
|
|
5424
|
+
sizeCache protoimpl.SizeCache
|
|
5425
|
+
unknownFields protoimpl.UnknownFields
|
|
5426
|
+
|
|
5427
|
+
Count int32 `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
|
|
5428
|
+
Items []*SiteHierarchyIdsItem `protobuf:"bytes,2,rep,name=items,proto3" json:"items,omitempty"`
|
|
5429
|
+
PageInfo *SiteHierarchyIdsPageInfo `protobuf:"bytes,3,opt,name=page_info,json=pageInfo,proto3" json:"page_info,omitempty"`
|
|
5430
|
+
}
|
|
5431
|
+
|
|
5432
|
+
func (x *GetSiteHierarchyIdsResponse) Reset() {
|
|
5433
|
+
*x = GetSiteHierarchyIdsResponse{}
|
|
5434
|
+
if protoimpl.UnsafeEnabled {
|
|
5435
|
+
mi := &file_multitenant_proto_msgTypes[90]
|
|
5436
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5437
|
+
ms.StoreMessageInfo(mi)
|
|
5438
|
+
}
|
|
5439
|
+
}
|
|
5440
|
+
|
|
5441
|
+
func (x *GetSiteHierarchyIdsResponse) String() string {
|
|
5442
|
+
return protoimpl.X.MessageStringOf(x)
|
|
5443
|
+
}
|
|
5444
|
+
|
|
5445
|
+
func (*GetSiteHierarchyIdsResponse) ProtoMessage() {}
|
|
5446
|
+
|
|
5447
|
+
func (x *GetSiteHierarchyIdsResponse) ProtoReflect() protoreflect.Message {
|
|
5448
|
+
mi := &file_multitenant_proto_msgTypes[90]
|
|
5449
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
5450
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5451
|
+
if ms.LoadMessageInfo() == nil {
|
|
5452
|
+
ms.StoreMessageInfo(mi)
|
|
5453
|
+
}
|
|
5454
|
+
return ms
|
|
5455
|
+
}
|
|
5456
|
+
return mi.MessageOf(x)
|
|
5457
|
+
}
|
|
5458
|
+
|
|
5459
|
+
// Deprecated: Use GetSiteHierarchyIdsResponse.ProtoReflect.Descriptor instead.
|
|
5460
|
+
func (*GetSiteHierarchyIdsResponse) Descriptor() ([]byte, []int) {
|
|
5461
|
+
return file_multitenant_proto_rawDescGZIP(), []int{90}
|
|
5462
|
+
}
|
|
5463
|
+
|
|
5464
|
+
func (x *GetSiteHierarchyIdsResponse) GetCount() int32 {
|
|
5465
|
+
if x != nil {
|
|
5466
|
+
return x.Count
|
|
5467
|
+
}
|
|
5468
|
+
return 0
|
|
5469
|
+
}
|
|
5470
|
+
|
|
5471
|
+
func (x *GetSiteHierarchyIdsResponse) GetItems() []*SiteHierarchyIdsItem {
|
|
5472
|
+
if x != nil {
|
|
5473
|
+
return x.Items
|
|
5474
|
+
}
|
|
5475
|
+
return nil
|
|
5476
|
+
}
|
|
5477
|
+
|
|
5478
|
+
func (x *GetSiteHierarchyIdsResponse) GetPageInfo() *SiteHierarchyIdsPageInfo {
|
|
5479
|
+
if x != nil {
|
|
5480
|
+
return x.PageInfo
|
|
5481
|
+
}
|
|
5482
|
+
return nil
|
|
5483
|
+
}
|
|
5484
|
+
|
|
5233
5485
|
type MsmpPagination struct {
|
|
5234
5486
|
state protoimpl.MessageState
|
|
5235
5487
|
sizeCache protoimpl.SizeCache
|
|
@@ -5242,7 +5494,7 @@ type MsmpPagination struct {
|
|
|
5242
5494
|
func (x *MsmpPagination) Reset() {
|
|
5243
5495
|
*x = MsmpPagination{}
|
|
5244
5496
|
if protoimpl.UnsafeEnabled {
|
|
5245
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5497
|
+
mi := &file_multitenant_proto_msgTypes[91]
|
|
5246
5498
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5247
5499
|
ms.StoreMessageInfo(mi)
|
|
5248
5500
|
}
|
|
@@ -5255,7 +5507,7 @@ func (x *MsmpPagination) String() string {
|
|
|
5255
5507
|
func (*MsmpPagination) ProtoMessage() {}
|
|
5256
5508
|
|
|
5257
5509
|
func (x *MsmpPagination) ProtoReflect() protoreflect.Message {
|
|
5258
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5510
|
+
mi := &file_multitenant_proto_msgTypes[91]
|
|
5259
5511
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5260
5512
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5261
5513
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5268,7 +5520,7 @@ func (x *MsmpPagination) ProtoReflect() protoreflect.Message {
|
|
|
5268
5520
|
|
|
5269
5521
|
// Deprecated: Use MsmpPagination.ProtoReflect.Descriptor instead.
|
|
5270
5522
|
func (*MsmpPagination) Descriptor() ([]byte, []int) {
|
|
5271
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
5523
|
+
return file_multitenant_proto_rawDescGZIP(), []int{91}
|
|
5272
5524
|
}
|
|
5273
5525
|
|
|
5274
5526
|
func (x *MsmpPagination) GetOffset() int32 {
|
|
@@ -5299,7 +5551,7 @@ type MsmpPaginationInfo struct {
|
|
|
5299
5551
|
func (x *MsmpPaginationInfo) Reset() {
|
|
5300
5552
|
*x = MsmpPaginationInfo{}
|
|
5301
5553
|
if protoimpl.UnsafeEnabled {
|
|
5302
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5554
|
+
mi := &file_multitenant_proto_msgTypes[92]
|
|
5303
5555
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5304
5556
|
ms.StoreMessageInfo(mi)
|
|
5305
5557
|
}
|
|
@@ -5312,7 +5564,7 @@ func (x *MsmpPaginationInfo) String() string {
|
|
|
5312
5564
|
func (*MsmpPaginationInfo) ProtoMessage() {}
|
|
5313
5565
|
|
|
5314
5566
|
func (x *MsmpPaginationInfo) ProtoReflect() protoreflect.Message {
|
|
5315
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5567
|
+
mi := &file_multitenant_proto_msgTypes[92]
|
|
5316
5568
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5317
5569
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5318
5570
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5325,7 +5577,7 @@ func (x *MsmpPaginationInfo) ProtoReflect() protoreflect.Message {
|
|
|
5325
5577
|
|
|
5326
5578
|
// Deprecated: Use MsmpPaginationInfo.ProtoReflect.Descriptor instead.
|
|
5327
5579
|
func (*MsmpPaginationInfo) Descriptor() ([]byte, []int) {
|
|
5328
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
5580
|
+
return file_multitenant_proto_rawDescGZIP(), []int{92}
|
|
5329
5581
|
}
|
|
5330
5582
|
|
|
5331
5583
|
func (x *MsmpPaginationInfo) GetTotal() int32 {
|
|
@@ -5369,7 +5621,7 @@ type GetMsmpOrganizationListRequest struct {
|
|
|
5369
5621
|
func (x *GetMsmpOrganizationListRequest) Reset() {
|
|
5370
5622
|
*x = GetMsmpOrganizationListRequest{}
|
|
5371
5623
|
if protoimpl.UnsafeEnabled {
|
|
5372
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5624
|
+
mi := &file_multitenant_proto_msgTypes[93]
|
|
5373
5625
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5374
5626
|
ms.StoreMessageInfo(mi)
|
|
5375
5627
|
}
|
|
@@ -5382,7 +5634,7 @@ func (x *GetMsmpOrganizationListRequest) String() string {
|
|
|
5382
5634
|
func (*GetMsmpOrganizationListRequest) ProtoMessage() {}
|
|
5383
5635
|
|
|
5384
5636
|
func (x *GetMsmpOrganizationListRequest) ProtoReflect() protoreflect.Message {
|
|
5385
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5637
|
+
mi := &file_multitenant_proto_msgTypes[93]
|
|
5386
5638
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5387
5639
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5388
5640
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5395,7 +5647,7 @@ func (x *GetMsmpOrganizationListRequest) ProtoReflect() protoreflect.Message {
|
|
|
5395
5647
|
|
|
5396
5648
|
// Deprecated: Use GetMsmpOrganizationListRequest.ProtoReflect.Descriptor instead.
|
|
5397
5649
|
func (*GetMsmpOrganizationListRequest) Descriptor() ([]byte, []int) {
|
|
5398
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
5650
|
+
return file_multitenant_proto_rawDescGZIP(), []int{93}
|
|
5399
5651
|
}
|
|
5400
5652
|
|
|
5401
5653
|
func (x *GetMsmpOrganizationListRequest) GetUserId() string {
|
|
@@ -5431,7 +5683,7 @@ type GetMsmpOrganizationListResponse struct {
|
|
|
5431
5683
|
func (x *GetMsmpOrganizationListResponse) Reset() {
|
|
5432
5684
|
*x = GetMsmpOrganizationListResponse{}
|
|
5433
5685
|
if protoimpl.UnsafeEnabled {
|
|
5434
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5686
|
+
mi := &file_multitenant_proto_msgTypes[94]
|
|
5435
5687
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5436
5688
|
ms.StoreMessageInfo(mi)
|
|
5437
5689
|
}
|
|
@@ -5444,7 +5696,7 @@ func (x *GetMsmpOrganizationListResponse) String() string {
|
|
|
5444
5696
|
func (*GetMsmpOrganizationListResponse) ProtoMessage() {}
|
|
5445
5697
|
|
|
5446
5698
|
func (x *GetMsmpOrganizationListResponse) ProtoReflect() protoreflect.Message {
|
|
5447
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5699
|
+
mi := &file_multitenant_proto_msgTypes[94]
|
|
5448
5700
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5449
5701
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5450
5702
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5457,7 +5709,7 @@ func (x *GetMsmpOrganizationListResponse) ProtoReflect() protoreflect.Message {
|
|
|
5457
5709
|
|
|
5458
5710
|
// Deprecated: Use GetMsmpOrganizationListResponse.ProtoReflect.Descriptor instead.
|
|
5459
5711
|
func (*GetMsmpOrganizationListResponse) Descriptor() ([]byte, []int) {
|
|
5460
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
5712
|
+
return file_multitenant_proto_rawDescGZIP(), []int{94}
|
|
5461
5713
|
}
|
|
5462
5714
|
|
|
5463
5715
|
func (x *GetMsmpOrganizationListResponse) GetOrganizations() []*GetMsmpOrganizationListResponse_MsmpOrganization {
|
|
@@ -5487,7 +5739,7 @@ type GetMsmpOrganizationAccountRequest struct {
|
|
|
5487
5739
|
func (x *GetMsmpOrganizationAccountRequest) Reset() {
|
|
5488
5740
|
*x = GetMsmpOrganizationAccountRequest{}
|
|
5489
5741
|
if protoimpl.UnsafeEnabled {
|
|
5490
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5742
|
+
mi := &file_multitenant_proto_msgTypes[95]
|
|
5491
5743
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5492
5744
|
ms.StoreMessageInfo(mi)
|
|
5493
5745
|
}
|
|
@@ -5500,7 +5752,7 @@ func (x *GetMsmpOrganizationAccountRequest) String() string {
|
|
|
5500
5752
|
func (*GetMsmpOrganizationAccountRequest) ProtoMessage() {}
|
|
5501
5753
|
|
|
5502
5754
|
func (x *GetMsmpOrganizationAccountRequest) ProtoReflect() protoreflect.Message {
|
|
5503
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5755
|
+
mi := &file_multitenant_proto_msgTypes[95]
|
|
5504
5756
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5505
5757
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5506
5758
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5513,7 +5765,7 @@ func (x *GetMsmpOrganizationAccountRequest) ProtoReflect() protoreflect.Message
|
|
|
5513
5765
|
|
|
5514
5766
|
// Deprecated: Use GetMsmpOrganizationAccountRequest.ProtoReflect.Descriptor instead.
|
|
5515
5767
|
func (*GetMsmpOrganizationAccountRequest) Descriptor() ([]byte, []int) {
|
|
5516
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
5768
|
+
return file_multitenant_proto_rawDescGZIP(), []int{95}
|
|
5517
5769
|
}
|
|
5518
5770
|
|
|
5519
5771
|
func (x *GetMsmpOrganizationAccountRequest) GetUserId() string {
|
|
@@ -5551,7 +5803,7 @@ type GetMsmpOrganizationAccountResponse struct {
|
|
|
5551
5803
|
func (x *GetMsmpOrganizationAccountResponse) Reset() {
|
|
5552
5804
|
*x = GetMsmpOrganizationAccountResponse{}
|
|
5553
5805
|
if protoimpl.UnsafeEnabled {
|
|
5554
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5806
|
+
mi := &file_multitenant_proto_msgTypes[96]
|
|
5555
5807
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5556
5808
|
ms.StoreMessageInfo(mi)
|
|
5557
5809
|
}
|
|
@@ -5564,7 +5816,7 @@ func (x *GetMsmpOrganizationAccountResponse) String() string {
|
|
|
5564
5816
|
func (*GetMsmpOrganizationAccountResponse) ProtoMessage() {}
|
|
5565
5817
|
|
|
5566
5818
|
func (x *GetMsmpOrganizationAccountResponse) ProtoReflect() protoreflect.Message {
|
|
5567
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5819
|
+
mi := &file_multitenant_proto_msgTypes[96]
|
|
5568
5820
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5569
5821
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5570
5822
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5577,7 +5829,7 @@ func (x *GetMsmpOrganizationAccountResponse) ProtoReflect() protoreflect.Message
|
|
|
5577
5829
|
|
|
5578
5830
|
// Deprecated: Use GetMsmpOrganizationAccountResponse.ProtoReflect.Descriptor instead.
|
|
5579
5831
|
func (*GetMsmpOrganizationAccountResponse) Descriptor() ([]byte, []int) {
|
|
5580
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
5832
|
+
return file_multitenant_proto_rawDescGZIP(), []int{96}
|
|
5581
5833
|
}
|
|
5582
5834
|
|
|
5583
5835
|
func (x *GetMsmpOrganizationAccountResponse) GetId() string {
|
|
@@ -5622,7 +5874,7 @@ type GetSitesByMsmpOrganizationIdRequest struct {
|
|
|
5622
5874
|
func (x *GetSitesByMsmpOrganizationIdRequest) Reset() {
|
|
5623
5875
|
*x = GetSitesByMsmpOrganizationIdRequest{}
|
|
5624
5876
|
if protoimpl.UnsafeEnabled {
|
|
5625
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5877
|
+
mi := &file_multitenant_proto_msgTypes[97]
|
|
5626
5878
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5627
5879
|
ms.StoreMessageInfo(mi)
|
|
5628
5880
|
}
|
|
@@ -5635,7 +5887,7 @@ func (x *GetSitesByMsmpOrganizationIdRequest) String() string {
|
|
|
5635
5887
|
func (*GetSitesByMsmpOrganizationIdRequest) ProtoMessage() {}
|
|
5636
5888
|
|
|
5637
5889
|
func (x *GetSitesByMsmpOrganizationIdRequest) ProtoReflect() protoreflect.Message {
|
|
5638
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5890
|
+
mi := &file_multitenant_proto_msgTypes[97]
|
|
5639
5891
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5640
5892
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5641
5893
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5648,7 +5900,7 @@ func (x *GetSitesByMsmpOrganizationIdRequest) ProtoReflect() protoreflect.Messag
|
|
|
5648
5900
|
|
|
5649
5901
|
// Deprecated: Use GetSitesByMsmpOrganizationIdRequest.ProtoReflect.Descriptor instead.
|
|
5650
5902
|
func (*GetSitesByMsmpOrganizationIdRequest) Descriptor() ([]byte, []int) {
|
|
5651
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
5903
|
+
return file_multitenant_proto_rawDescGZIP(), []int{97}
|
|
5652
5904
|
}
|
|
5653
5905
|
|
|
5654
5906
|
func (x *GetSitesByMsmpOrganizationIdRequest) GetUserId() string {
|
|
@@ -5691,7 +5943,7 @@ type GetSitesByMsmpOrganizationIdResponse struct {
|
|
|
5691
5943
|
func (x *GetSitesByMsmpOrganizationIdResponse) Reset() {
|
|
5692
5944
|
*x = GetSitesByMsmpOrganizationIdResponse{}
|
|
5693
5945
|
if protoimpl.UnsafeEnabled {
|
|
5694
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5946
|
+
mi := &file_multitenant_proto_msgTypes[98]
|
|
5695
5947
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5696
5948
|
ms.StoreMessageInfo(mi)
|
|
5697
5949
|
}
|
|
@@ -5704,7 +5956,7 @@ func (x *GetSitesByMsmpOrganizationIdResponse) String() string {
|
|
|
5704
5956
|
func (*GetSitesByMsmpOrganizationIdResponse) ProtoMessage() {}
|
|
5705
5957
|
|
|
5706
5958
|
func (x *GetSitesByMsmpOrganizationIdResponse) ProtoReflect() protoreflect.Message {
|
|
5707
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
5959
|
+
mi := &file_multitenant_proto_msgTypes[98]
|
|
5708
5960
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5709
5961
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5710
5962
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5717,7 +5969,7 @@ func (x *GetSitesByMsmpOrganizationIdResponse) ProtoReflect() protoreflect.Messa
|
|
|
5717
5969
|
|
|
5718
5970
|
// Deprecated: Use GetSitesByMsmpOrganizationIdResponse.ProtoReflect.Descriptor instead.
|
|
5719
5971
|
func (*GetSitesByMsmpOrganizationIdResponse) Descriptor() ([]byte, []int) {
|
|
5720
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
5972
|
+
return file_multitenant_proto_rawDescGZIP(), []int{98}
|
|
5721
5973
|
}
|
|
5722
5974
|
|
|
5723
5975
|
func (x *GetSitesByMsmpOrganizationIdResponse) GetSites() []*PreviewSite {
|
|
@@ -5746,7 +5998,7 @@ type SetEnabledCustomFieldsFederationRequest struct {
|
|
|
5746
5998
|
func (x *SetEnabledCustomFieldsFederationRequest) Reset() {
|
|
5747
5999
|
*x = SetEnabledCustomFieldsFederationRequest{}
|
|
5748
6000
|
if protoimpl.UnsafeEnabled {
|
|
5749
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6001
|
+
mi := &file_multitenant_proto_msgTypes[99]
|
|
5750
6002
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5751
6003
|
ms.StoreMessageInfo(mi)
|
|
5752
6004
|
}
|
|
@@ -5759,7 +6011,7 @@ func (x *SetEnabledCustomFieldsFederationRequest) String() string {
|
|
|
5759
6011
|
func (*SetEnabledCustomFieldsFederationRequest) ProtoMessage() {}
|
|
5760
6012
|
|
|
5761
6013
|
func (x *SetEnabledCustomFieldsFederationRequest) ProtoReflect() protoreflect.Message {
|
|
5762
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6014
|
+
mi := &file_multitenant_proto_msgTypes[99]
|
|
5763
6015
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5764
6016
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5765
6017
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5772,7 +6024,7 @@ func (x *SetEnabledCustomFieldsFederationRequest) ProtoReflect() protoreflect.Me
|
|
|
5772
6024
|
|
|
5773
6025
|
// Deprecated: Use SetEnabledCustomFieldsFederationRequest.ProtoReflect.Descriptor instead.
|
|
5774
6026
|
func (*SetEnabledCustomFieldsFederationRequest) Descriptor() ([]byte, []int) {
|
|
5775
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
6027
|
+
return file_multitenant_proto_rawDescGZIP(), []int{99}
|
|
5776
6028
|
}
|
|
5777
6029
|
|
|
5778
6030
|
func (x *SetEnabledCustomFieldsFederationRequest) GetSiteId() string {
|
|
@@ -5800,7 +6052,7 @@ type IsCustomFieldsFederationEnabledRequest struct {
|
|
|
5800
6052
|
func (x *IsCustomFieldsFederationEnabledRequest) Reset() {
|
|
5801
6053
|
*x = IsCustomFieldsFederationEnabledRequest{}
|
|
5802
6054
|
if protoimpl.UnsafeEnabled {
|
|
5803
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6055
|
+
mi := &file_multitenant_proto_msgTypes[100]
|
|
5804
6056
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5805
6057
|
ms.StoreMessageInfo(mi)
|
|
5806
6058
|
}
|
|
@@ -5813,7 +6065,7 @@ func (x *IsCustomFieldsFederationEnabledRequest) String() string {
|
|
|
5813
6065
|
func (*IsCustomFieldsFederationEnabledRequest) ProtoMessage() {}
|
|
5814
6066
|
|
|
5815
6067
|
func (x *IsCustomFieldsFederationEnabledRequest) ProtoReflect() protoreflect.Message {
|
|
5816
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6068
|
+
mi := &file_multitenant_proto_msgTypes[100]
|
|
5817
6069
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5818
6070
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5819
6071
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5826,7 +6078,7 @@ func (x *IsCustomFieldsFederationEnabledRequest) ProtoReflect() protoreflect.Mes
|
|
|
5826
6078
|
|
|
5827
6079
|
// Deprecated: Use IsCustomFieldsFederationEnabledRequest.ProtoReflect.Descriptor instead.
|
|
5828
6080
|
func (*IsCustomFieldsFederationEnabledRequest) Descriptor() ([]byte, []int) {
|
|
5829
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
6081
|
+
return file_multitenant_proto_rawDescGZIP(), []int{100}
|
|
5830
6082
|
}
|
|
5831
6083
|
|
|
5832
6084
|
func (x *IsCustomFieldsFederationEnabledRequest) GetSiteId() string {
|
|
@@ -5847,7 +6099,7 @@ type IsMetadataFieldsFederationEnabledRequest struct {
|
|
|
5847
6099
|
func (x *IsMetadataFieldsFederationEnabledRequest) Reset() {
|
|
5848
6100
|
*x = IsMetadataFieldsFederationEnabledRequest{}
|
|
5849
6101
|
if protoimpl.UnsafeEnabled {
|
|
5850
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6102
|
+
mi := &file_multitenant_proto_msgTypes[101]
|
|
5851
6103
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5852
6104
|
ms.StoreMessageInfo(mi)
|
|
5853
6105
|
}
|
|
@@ -5860,7 +6112,7 @@ func (x *IsMetadataFieldsFederationEnabledRequest) String() string {
|
|
|
5860
6112
|
func (*IsMetadataFieldsFederationEnabledRequest) ProtoMessage() {}
|
|
5861
6113
|
|
|
5862
6114
|
func (x *IsMetadataFieldsFederationEnabledRequest) ProtoReflect() protoreflect.Message {
|
|
5863
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6115
|
+
mi := &file_multitenant_proto_msgTypes[101]
|
|
5864
6116
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5865
6117
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5866
6118
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5873,7 +6125,7 @@ func (x *IsMetadataFieldsFederationEnabledRequest) ProtoReflect() protoreflect.M
|
|
|
5873
6125
|
|
|
5874
6126
|
// Deprecated: Use IsMetadataFieldsFederationEnabledRequest.ProtoReflect.Descriptor instead.
|
|
5875
6127
|
func (*IsMetadataFieldsFederationEnabledRequest) Descriptor() ([]byte, []int) {
|
|
5876
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
6128
|
+
return file_multitenant_proto_rawDescGZIP(), []int{101}
|
|
5877
6129
|
}
|
|
5878
6130
|
|
|
5879
6131
|
func (x *IsMetadataFieldsFederationEnabledRequest) GetSiteId() string {
|
|
@@ -5894,7 +6146,7 @@ type IsCustomFieldsFederationEnabledResponse struct {
|
|
|
5894
6146
|
func (x *IsCustomFieldsFederationEnabledResponse) Reset() {
|
|
5895
6147
|
*x = IsCustomFieldsFederationEnabledResponse{}
|
|
5896
6148
|
if protoimpl.UnsafeEnabled {
|
|
5897
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6149
|
+
mi := &file_multitenant_proto_msgTypes[102]
|
|
5898
6150
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5899
6151
|
ms.StoreMessageInfo(mi)
|
|
5900
6152
|
}
|
|
@@ -5907,7 +6159,7 @@ func (x *IsCustomFieldsFederationEnabledResponse) String() string {
|
|
|
5907
6159
|
func (*IsCustomFieldsFederationEnabledResponse) ProtoMessage() {}
|
|
5908
6160
|
|
|
5909
6161
|
func (x *IsCustomFieldsFederationEnabledResponse) ProtoReflect() protoreflect.Message {
|
|
5910
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6162
|
+
mi := &file_multitenant_proto_msgTypes[102]
|
|
5911
6163
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5912
6164
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5913
6165
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5920,7 +6172,7 @@ func (x *IsCustomFieldsFederationEnabledResponse) ProtoReflect() protoreflect.Me
|
|
|
5920
6172
|
|
|
5921
6173
|
// Deprecated: Use IsCustomFieldsFederationEnabledResponse.ProtoReflect.Descriptor instead.
|
|
5922
6174
|
func (*IsCustomFieldsFederationEnabledResponse) Descriptor() ([]byte, []int) {
|
|
5923
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
6175
|
+
return file_multitenant_proto_rawDescGZIP(), []int{102}
|
|
5924
6176
|
}
|
|
5925
6177
|
|
|
5926
6178
|
func (x *IsCustomFieldsFederationEnabledResponse) GetIsEnabled() bool {
|
|
@@ -5941,7 +6193,7 @@ type IsMetadataFieldsFederationEnabledResponse struct {
|
|
|
5941
6193
|
func (x *IsMetadataFieldsFederationEnabledResponse) Reset() {
|
|
5942
6194
|
*x = IsMetadataFieldsFederationEnabledResponse{}
|
|
5943
6195
|
if protoimpl.UnsafeEnabled {
|
|
5944
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6196
|
+
mi := &file_multitenant_proto_msgTypes[103]
|
|
5945
6197
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5946
6198
|
ms.StoreMessageInfo(mi)
|
|
5947
6199
|
}
|
|
@@ -5954,7 +6206,7 @@ func (x *IsMetadataFieldsFederationEnabledResponse) String() string {
|
|
|
5954
6206
|
func (*IsMetadataFieldsFederationEnabledResponse) ProtoMessage() {}
|
|
5955
6207
|
|
|
5956
6208
|
func (x *IsMetadataFieldsFederationEnabledResponse) ProtoReflect() protoreflect.Message {
|
|
5957
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6209
|
+
mi := &file_multitenant_proto_msgTypes[103]
|
|
5958
6210
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
5959
6211
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5960
6212
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -5967,7 +6219,7 @@ func (x *IsMetadataFieldsFederationEnabledResponse) ProtoReflect() protoreflect.
|
|
|
5967
6219
|
|
|
5968
6220
|
// Deprecated: Use IsMetadataFieldsFederationEnabledResponse.ProtoReflect.Descriptor instead.
|
|
5969
6221
|
func (*IsMetadataFieldsFederationEnabledResponse) Descriptor() ([]byte, []int) {
|
|
5970
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
6222
|
+
return file_multitenant_proto_rawDescGZIP(), []int{103}
|
|
5971
6223
|
}
|
|
5972
6224
|
|
|
5973
6225
|
func (x *IsMetadataFieldsFederationEnabledResponse) GetIsEnabled() bool {
|
|
@@ -5988,7 +6240,7 @@ type GetSitePreviewRequest struct {
|
|
|
5988
6240
|
func (x *GetSitePreviewRequest) Reset() {
|
|
5989
6241
|
*x = GetSitePreviewRequest{}
|
|
5990
6242
|
if protoimpl.UnsafeEnabled {
|
|
5991
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6243
|
+
mi := &file_multitenant_proto_msgTypes[104]
|
|
5992
6244
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
5993
6245
|
ms.StoreMessageInfo(mi)
|
|
5994
6246
|
}
|
|
@@ -6001,7 +6253,7 @@ func (x *GetSitePreviewRequest) String() string {
|
|
|
6001
6253
|
func (*GetSitePreviewRequest) ProtoMessage() {}
|
|
6002
6254
|
|
|
6003
6255
|
func (x *GetSitePreviewRequest) ProtoReflect() protoreflect.Message {
|
|
6004
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6256
|
+
mi := &file_multitenant_proto_msgTypes[104]
|
|
6005
6257
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6006
6258
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6007
6259
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6014,7 +6266,7 @@ func (x *GetSitePreviewRequest) ProtoReflect() protoreflect.Message {
|
|
|
6014
6266
|
|
|
6015
6267
|
// Deprecated: Use GetSitePreviewRequest.ProtoReflect.Descriptor instead.
|
|
6016
6268
|
func (*GetSitePreviewRequest) Descriptor() ([]byte, []int) {
|
|
6017
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
6269
|
+
return file_multitenant_proto_rawDescGZIP(), []int{104}
|
|
6018
6270
|
}
|
|
6019
6271
|
|
|
6020
6272
|
func (x *GetSitePreviewRequest) GetSiteId() string {
|
|
@@ -6035,7 +6287,7 @@ type GetSitePreviewResponse struct {
|
|
|
6035
6287
|
func (x *GetSitePreviewResponse) Reset() {
|
|
6036
6288
|
*x = GetSitePreviewResponse{}
|
|
6037
6289
|
if protoimpl.UnsafeEnabled {
|
|
6038
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6290
|
+
mi := &file_multitenant_proto_msgTypes[105]
|
|
6039
6291
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6040
6292
|
ms.StoreMessageInfo(mi)
|
|
6041
6293
|
}
|
|
@@ -6048,7 +6300,7 @@ func (x *GetSitePreviewResponse) String() string {
|
|
|
6048
6300
|
func (*GetSitePreviewResponse) ProtoMessage() {}
|
|
6049
6301
|
|
|
6050
6302
|
func (x *GetSitePreviewResponse) ProtoReflect() protoreflect.Message {
|
|
6051
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6303
|
+
mi := &file_multitenant_proto_msgTypes[105]
|
|
6052
6304
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6053
6305
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6054
6306
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6061,7 +6313,7 @@ func (x *GetSitePreviewResponse) ProtoReflect() protoreflect.Message {
|
|
|
6061
6313
|
|
|
6062
6314
|
// Deprecated: Use GetSitePreviewResponse.ProtoReflect.Descriptor instead.
|
|
6063
6315
|
func (*GetSitePreviewResponse) Descriptor() ([]byte, []int) {
|
|
6064
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
6316
|
+
return file_multitenant_proto_rawDescGZIP(), []int{105}
|
|
6065
6317
|
}
|
|
6066
6318
|
|
|
6067
6319
|
func (x *GetSitePreviewResponse) GetSite() *PreviewSite {
|
|
@@ -6083,7 +6335,7 @@ type CheckAccessToSiteByAccountIdRequest_UserInfo struct {
|
|
|
6083
6335
|
func (x *CheckAccessToSiteByAccountIdRequest_UserInfo) Reset() {
|
|
6084
6336
|
*x = CheckAccessToSiteByAccountIdRequest_UserInfo{}
|
|
6085
6337
|
if protoimpl.UnsafeEnabled {
|
|
6086
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6338
|
+
mi := &file_multitenant_proto_msgTypes[106]
|
|
6087
6339
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6088
6340
|
ms.StoreMessageInfo(mi)
|
|
6089
6341
|
}
|
|
@@ -6096,7 +6348,7 @@ func (x *CheckAccessToSiteByAccountIdRequest_UserInfo) String() string {
|
|
|
6096
6348
|
func (*CheckAccessToSiteByAccountIdRequest_UserInfo) ProtoMessage() {}
|
|
6097
6349
|
|
|
6098
6350
|
func (x *CheckAccessToSiteByAccountIdRequest_UserInfo) ProtoReflect() protoreflect.Message {
|
|
6099
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6351
|
+
mi := &file_multitenant_proto_msgTypes[106]
|
|
6100
6352
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6101
6353
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6102
6354
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6137,7 +6389,7 @@ type Install_InstallState struct {
|
|
|
6137
6389
|
func (x *Install_InstallState) Reset() {
|
|
6138
6390
|
*x = Install_InstallState{}
|
|
6139
6391
|
if protoimpl.UnsafeEnabled {
|
|
6140
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6392
|
+
mi := &file_multitenant_proto_msgTypes[107]
|
|
6141
6393
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6142
6394
|
ms.StoreMessageInfo(mi)
|
|
6143
6395
|
}
|
|
@@ -6150,7 +6402,7 @@ func (x *Install_InstallState) String() string {
|
|
|
6150
6402
|
func (*Install_InstallState) ProtoMessage() {}
|
|
6151
6403
|
|
|
6152
6404
|
func (x *Install_InstallState) ProtoReflect() protoreflect.Message {
|
|
6153
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6405
|
+
mi := &file_multitenant_proto_msgTypes[107]
|
|
6154
6406
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6155
6407
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6156
6408
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6187,7 +6439,7 @@ type GetInstallsBySiteRequest_Filter struct {
|
|
|
6187
6439
|
func (x *GetInstallsBySiteRequest_Filter) Reset() {
|
|
6188
6440
|
*x = GetInstallsBySiteRequest_Filter{}
|
|
6189
6441
|
if protoimpl.UnsafeEnabled {
|
|
6190
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6442
|
+
mi := &file_multitenant_proto_msgTypes[108]
|
|
6191
6443
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6192
6444
|
ms.StoreMessageInfo(mi)
|
|
6193
6445
|
}
|
|
@@ -6200,7 +6452,7 @@ func (x *GetInstallsBySiteRequest_Filter) String() string {
|
|
|
6200
6452
|
func (*GetInstallsBySiteRequest_Filter) ProtoMessage() {}
|
|
6201
6453
|
|
|
6202
6454
|
func (x *GetInstallsBySiteRequest_Filter) ProtoReflect() protoreflect.Message {
|
|
6203
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6455
|
+
mi := &file_multitenant_proto_msgTypes[108]
|
|
6204
6456
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6205
6457
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6206
6458
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6252,7 +6504,7 @@ type UpdateInstallByClientIdRequest_SyncerSettings struct {
|
|
|
6252
6504
|
func (x *UpdateInstallByClientIdRequest_SyncerSettings) Reset() {
|
|
6253
6505
|
*x = UpdateInstallByClientIdRequest_SyncerSettings{}
|
|
6254
6506
|
if protoimpl.UnsafeEnabled {
|
|
6255
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6507
|
+
mi := &file_multitenant_proto_msgTypes[109]
|
|
6256
6508
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6257
6509
|
ms.StoreMessageInfo(mi)
|
|
6258
6510
|
}
|
|
@@ -6265,7 +6517,7 @@ func (x *UpdateInstallByClientIdRequest_SyncerSettings) String() string {
|
|
|
6265
6517
|
func (*UpdateInstallByClientIdRequest_SyncerSettings) ProtoMessage() {}
|
|
6266
6518
|
|
|
6267
6519
|
func (x *UpdateInstallByClientIdRequest_SyncerSettings) ProtoReflect() protoreflect.Message {
|
|
6268
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6520
|
+
mi := &file_multitenant_proto_msgTypes[109]
|
|
6269
6521
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6270
6522
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6271
6523
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6321,7 +6573,7 @@ type RemoveInstallDataBySiteIdResponse_Result struct {
|
|
|
6321
6573
|
func (x *RemoveInstallDataBySiteIdResponse_Result) Reset() {
|
|
6322
6574
|
*x = RemoveInstallDataBySiteIdResponse_Result{}
|
|
6323
6575
|
if protoimpl.UnsafeEnabled {
|
|
6324
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6576
|
+
mi := &file_multitenant_proto_msgTypes[110]
|
|
6325
6577
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6326
6578
|
ms.StoreMessageInfo(mi)
|
|
6327
6579
|
}
|
|
@@ -6334,7 +6586,7 @@ func (x *RemoveInstallDataBySiteIdResponse_Result) String() string {
|
|
|
6334
6586
|
func (*RemoveInstallDataBySiteIdResponse_Result) ProtoMessage() {}
|
|
6335
6587
|
|
|
6336
6588
|
func (x *RemoveInstallDataBySiteIdResponse_Result) ProtoReflect() protoreflect.Message {
|
|
6337
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6589
|
+
mi := &file_multitenant_proto_msgTypes[110]
|
|
6338
6590
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6339
6591
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6340
6592
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6376,7 +6628,7 @@ type GetUserPermissionsResponse_AuthorizationAction struct {
|
|
|
6376
6628
|
func (x *GetUserPermissionsResponse_AuthorizationAction) Reset() {
|
|
6377
6629
|
*x = GetUserPermissionsResponse_AuthorizationAction{}
|
|
6378
6630
|
if protoimpl.UnsafeEnabled {
|
|
6379
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6631
|
+
mi := &file_multitenant_proto_msgTypes[111]
|
|
6380
6632
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6381
6633
|
ms.StoreMessageInfo(mi)
|
|
6382
6634
|
}
|
|
@@ -6389,7 +6641,7 @@ func (x *GetUserPermissionsResponse_AuthorizationAction) String() string {
|
|
|
6389
6641
|
func (*GetUserPermissionsResponse_AuthorizationAction) ProtoMessage() {}
|
|
6390
6642
|
|
|
6391
6643
|
func (x *GetUserPermissionsResponse_AuthorizationAction) ProtoReflect() protoreflect.Message {
|
|
6392
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6644
|
+
mi := &file_multitenant_proto_msgTypes[111]
|
|
6393
6645
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6394
6646
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6395
6647
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6430,7 +6682,7 @@ type GetUserPermissionsResponse_Scope struct {
|
|
|
6430
6682
|
func (x *GetUserPermissionsResponse_Scope) Reset() {
|
|
6431
6683
|
*x = GetUserPermissionsResponse_Scope{}
|
|
6432
6684
|
if protoimpl.UnsafeEnabled {
|
|
6433
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6685
|
+
mi := &file_multitenant_proto_msgTypes[112]
|
|
6434
6686
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6435
6687
|
ms.StoreMessageInfo(mi)
|
|
6436
6688
|
}
|
|
@@ -6443,7 +6695,7 @@ func (x *GetUserPermissionsResponse_Scope) String() string {
|
|
|
6443
6695
|
func (*GetUserPermissionsResponse_Scope) ProtoMessage() {}
|
|
6444
6696
|
|
|
6445
6697
|
func (x *GetUserPermissionsResponse_Scope) ProtoReflect() protoreflect.Message {
|
|
6446
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6698
|
+
mi := &file_multitenant_proto_msgTypes[112]
|
|
6447
6699
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6448
6700
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6449
6701
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6480,7 +6732,7 @@ type GetUserPermissionsResponse_Role struct {
|
|
|
6480
6732
|
func (x *GetUserPermissionsResponse_Role) Reset() {
|
|
6481
6733
|
*x = GetUserPermissionsResponse_Role{}
|
|
6482
6734
|
if protoimpl.UnsafeEnabled {
|
|
6483
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6735
|
+
mi := &file_multitenant_proto_msgTypes[113]
|
|
6484
6736
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6485
6737
|
ms.StoreMessageInfo(mi)
|
|
6486
6738
|
}
|
|
@@ -6493,7 +6745,7 @@ func (x *GetUserPermissionsResponse_Role) String() string {
|
|
|
6493
6745
|
func (*GetUserPermissionsResponse_Role) ProtoMessage() {}
|
|
6494
6746
|
|
|
6495
6747
|
func (x *GetUserPermissionsResponse_Role) ProtoReflect() protoreflect.Message {
|
|
6496
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6748
|
+
mi := &file_multitenant_proto_msgTypes[113]
|
|
6497
6749
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6498
6750
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6499
6751
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6552,7 +6804,7 @@ type DisableWebhookEmailRequest_WebhookError struct {
|
|
|
6552
6804
|
func (x *DisableWebhookEmailRequest_WebhookError) Reset() {
|
|
6553
6805
|
*x = DisableWebhookEmailRequest_WebhookError{}
|
|
6554
6806
|
if protoimpl.UnsafeEnabled {
|
|
6555
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6807
|
+
mi := &file_multitenant_proto_msgTypes[114]
|
|
6556
6808
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6557
6809
|
ms.StoreMessageInfo(mi)
|
|
6558
6810
|
}
|
|
@@ -6565,7 +6817,7 @@ func (x *DisableWebhookEmailRequest_WebhookError) String() string {
|
|
|
6565
6817
|
func (*DisableWebhookEmailRequest_WebhookError) ProtoMessage() {}
|
|
6566
6818
|
|
|
6567
6819
|
func (x *DisableWebhookEmailRequest_WebhookError) ProtoReflect() protoreflect.Message {
|
|
6568
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6820
|
+
mi := &file_multitenant_proto_msgTypes[114]
|
|
6569
6821
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6570
6822
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6571
6823
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6622,7 +6874,7 @@ type GetMsmpOrganizationListRequest_MsmpPaginationRequest struct {
|
|
|
6622
6874
|
func (x *GetMsmpOrganizationListRequest_MsmpPaginationRequest) Reset() {
|
|
6623
6875
|
*x = GetMsmpOrganizationListRequest_MsmpPaginationRequest{}
|
|
6624
6876
|
if protoimpl.UnsafeEnabled {
|
|
6625
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6877
|
+
mi := &file_multitenant_proto_msgTypes[116]
|
|
6626
6878
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6627
6879
|
ms.StoreMessageInfo(mi)
|
|
6628
6880
|
}
|
|
@@ -6635,7 +6887,7 @@ func (x *GetMsmpOrganizationListRequest_MsmpPaginationRequest) String() string {
|
|
|
6635
6887
|
func (*GetMsmpOrganizationListRequest_MsmpPaginationRequest) ProtoMessage() {}
|
|
6636
6888
|
|
|
6637
6889
|
func (x *GetMsmpOrganizationListRequest_MsmpPaginationRequest) ProtoReflect() protoreflect.Message {
|
|
6638
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6890
|
+
mi := &file_multitenant_proto_msgTypes[116]
|
|
6639
6891
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6640
6892
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6641
6893
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6648,7 +6900,7 @@ func (x *GetMsmpOrganizationListRequest_MsmpPaginationRequest) ProtoReflect() pr
|
|
|
6648
6900
|
|
|
6649
6901
|
// Deprecated: Use GetMsmpOrganizationListRequest_MsmpPaginationRequest.ProtoReflect.Descriptor instead.
|
|
6650
6902
|
func (*GetMsmpOrganizationListRequest_MsmpPaginationRequest) Descriptor() ([]byte, []int) {
|
|
6651
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
6903
|
+
return file_multitenant_proto_rawDescGZIP(), []int{93, 0}
|
|
6652
6904
|
}
|
|
6653
6905
|
|
|
6654
6906
|
func (x *GetMsmpOrganizationListRequest_MsmpPaginationRequest) GetOffset() int32 {
|
|
@@ -6677,7 +6929,7 @@ type GetMsmpOrganizationListResponse_MsmpOrganization struct {
|
|
|
6677
6929
|
func (x *GetMsmpOrganizationListResponse_MsmpOrganization) Reset() {
|
|
6678
6930
|
*x = GetMsmpOrganizationListResponse_MsmpOrganization{}
|
|
6679
6931
|
if protoimpl.UnsafeEnabled {
|
|
6680
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6932
|
+
mi := &file_multitenant_proto_msgTypes[117]
|
|
6681
6933
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6682
6934
|
ms.StoreMessageInfo(mi)
|
|
6683
6935
|
}
|
|
@@ -6690,7 +6942,7 @@ func (x *GetMsmpOrganizationListResponse_MsmpOrganization) String() string {
|
|
|
6690
6942
|
func (*GetMsmpOrganizationListResponse_MsmpOrganization) ProtoMessage() {}
|
|
6691
6943
|
|
|
6692
6944
|
func (x *GetMsmpOrganizationListResponse_MsmpOrganization) ProtoReflect() protoreflect.Message {
|
|
6693
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6945
|
+
mi := &file_multitenant_proto_msgTypes[117]
|
|
6694
6946
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6695
6947
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6696
6948
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6703,7 +6955,7 @@ func (x *GetMsmpOrganizationListResponse_MsmpOrganization) ProtoReflect() protor
|
|
|
6703
6955
|
|
|
6704
6956
|
// Deprecated: Use GetMsmpOrganizationListResponse_MsmpOrganization.ProtoReflect.Descriptor instead.
|
|
6705
6957
|
func (*GetMsmpOrganizationListResponse_MsmpOrganization) Descriptor() ([]byte, []int) {
|
|
6706
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
6958
|
+
return file_multitenant_proto_rawDescGZIP(), []int{94, 0}
|
|
6707
6959
|
}
|
|
6708
6960
|
|
|
6709
6961
|
func (x *GetMsmpOrganizationListResponse_MsmpOrganization) GetId() string {
|
|
@@ -6734,7 +6986,7 @@ type GetMsmpOrganizationListResponse_MsmpPageInfo struct {
|
|
|
6734
6986
|
func (x *GetMsmpOrganizationListResponse_MsmpPageInfo) Reset() {
|
|
6735
6987
|
*x = GetMsmpOrganizationListResponse_MsmpPageInfo{}
|
|
6736
6988
|
if protoimpl.UnsafeEnabled {
|
|
6737
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6989
|
+
mi := &file_multitenant_proto_msgTypes[118]
|
|
6738
6990
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6739
6991
|
ms.StoreMessageInfo(mi)
|
|
6740
6992
|
}
|
|
@@ -6747,7 +6999,7 @@ func (x *GetMsmpOrganizationListResponse_MsmpPageInfo) String() string {
|
|
|
6747
6999
|
func (*GetMsmpOrganizationListResponse_MsmpPageInfo) ProtoMessage() {}
|
|
6748
7000
|
|
|
6749
7001
|
func (x *GetMsmpOrganizationListResponse_MsmpPageInfo) ProtoReflect() protoreflect.Message {
|
|
6750
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7002
|
+
mi := &file_multitenant_proto_msgTypes[118]
|
|
6751
7003
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6752
7004
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6753
7005
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6760,7 +7012,7 @@ func (x *GetMsmpOrganizationListResponse_MsmpPageInfo) ProtoReflect() protorefle
|
|
|
6760
7012
|
|
|
6761
7013
|
// Deprecated: Use GetMsmpOrganizationListResponse_MsmpPageInfo.ProtoReflect.Descriptor instead.
|
|
6762
7014
|
func (*GetMsmpOrganizationListResponse_MsmpPageInfo) Descriptor() ([]byte, []int) {
|
|
6763
|
-
return file_multitenant_proto_rawDescGZIP(), []int{
|
|
7015
|
+
return file_multitenant_proto_rawDescGZIP(), []int{94, 1}
|
|
6764
7016
|
}
|
|
6765
7017
|
|
|
6766
7018
|
func (x *GetMsmpOrganizationListResponse_MsmpPageInfo) GetTotal() int32 {
|
|
@@ -7528,618 +7780,663 @@ var file_multitenant_proto_rawDesc = []byte{
|
|
|
7528
7780
|
0x28, 0x0b, 0x32, 0x27, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
7529
7781
|
0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x2e, 0x76, 0x31,
|
|
7530
7782
|
0x2e, 0x53, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x52, 0x05, 0x76, 0x61, 0x6c,
|
|
7531
|
-
0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22,
|
|
7532
|
-
|
|
7533
|
-
0x65,
|
|
7534
|
-
|
|
7535
|
-
|
|
7536
|
-
|
|
7537
|
-
|
|
7538
|
-
|
|
7539
|
-
|
|
7540
|
-
|
|
7541
|
-
|
|
7542
|
-
|
|
7543
|
-
|
|
7783
|
+
0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x71, 0x0a, 0x1a, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74,
|
|
7784
|
+
0x65, 0x48, 0x69, 0x65, 0x72, 0x61, 0x72, 0x63, 0x68, 0x79, 0x49, 0x64, 0x73, 0x52, 0x65, 0x71,
|
|
7785
|
+
0x75, 0x65, 0x73, 0x74, 0x12, 0x20, 0x0a, 0x09, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x5f, 0x69,
|
|
7786
|
+
0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x08, 0x6f, 0x66, 0x66, 0x73, 0x65,
|
|
7787
|
+
0x74, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x19, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18,
|
|
7788
|
+
0x02, 0x20, 0x01, 0x28, 0x05, 0x48, 0x01, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x88, 0x01,
|
|
7789
|
+
0x01, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x5f, 0x69, 0x64, 0x42,
|
|
7790
|
+
0x08, 0x0a, 0x06, 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x22, 0x9d, 0x01, 0x0a, 0x14, 0x53, 0x69,
|
|
7791
|
+
0x74, 0x65, 0x48, 0x69, 0x65, 0x72, 0x61, 0x72, 0x63, 0x68, 0x79, 0x49, 0x64, 0x73, 0x49, 0x74,
|
|
7792
|
+
0x65, 0x6d, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
|
|
7793
|
+
0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x70,
|
|
7794
|
+
0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
|
|
7795
|
+
0x52, 0x0a, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1b, 0x0a, 0x09,
|
|
7796
|
+
0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
7797
|
+
0x08, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x2e, 0x0a, 0x13, 0x69, 0x73, 0x5f,
|
|
7798
|
+
0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
|
|
7799
|
+
0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x11, 0x69, 0x73, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d,
|
|
7800
|
+
0x65, 0x72, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0x71, 0x0a, 0x18, 0x53, 0x69, 0x74,
|
|
7801
|
+
0x65, 0x48, 0x69, 0x65, 0x72, 0x61, 0x72, 0x63, 0x68, 0x79, 0x49, 0x64, 0x73, 0x50, 0x61, 0x67,
|
|
7802
|
+
0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1b, 0x0a, 0x09, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x5f,
|
|
7803
|
+
0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74,
|
|
7804
|
+
0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28,
|
|
7805
|
+
0x05, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x22, 0x0a, 0x0d, 0x68, 0x61, 0x73, 0x5f,
|
|
7806
|
+
0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52,
|
|
7807
|
+
0x0b, 0x68, 0x61, 0x73, 0x4e, 0x65, 0x78, 0x74, 0x50, 0x61, 0x67, 0x65, 0x22, 0xcc, 0x01, 0x0a,
|
|
7808
|
+
0x1b, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x48, 0x69, 0x65, 0x72, 0x61, 0x72, 0x63, 0x68,
|
|
7809
|
+
0x79, 0x49, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05,
|
|
7810
|
+
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x63, 0x6f, 0x75,
|
|
7811
|
+
0x6e, 0x74, 0x12, 0x45, 0x0a, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28,
|
|
7812
|
+
0x0b, 0x32, 0x2f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
7813
|
+
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x69,
|
|
7814
|
+
0x74, 0x65, 0x48, 0x69, 0x65, 0x72, 0x61, 0x72, 0x63, 0x68, 0x79, 0x49, 0x64, 0x73, 0x49, 0x74,
|
|
7815
|
+
0x65, 0x6d, 0x52, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x12, 0x50, 0x0a, 0x09, 0x70, 0x61, 0x67,
|
|
7816
|
+
0x65, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x6c,
|
|
7817
|
+
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
7818
|
+
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x69, 0x74, 0x65, 0x48, 0x69, 0x65,
|
|
7819
|
+
0x72, 0x61, 0x72, 0x63, 0x68, 0x79, 0x49, 0x64, 0x73, 0x50, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66,
|
|
7820
|
+
0x6f, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x3e, 0x0a, 0x0e, 0x4d,
|
|
7821
|
+
0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a,
|
|
7822
|
+
0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x6f,
|
|
7823
|
+
0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02,
|
|
7824
|
+
0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x22, 0x7c, 0x0a, 0x12, 0x4d,
|
|
7825
|
+
0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66,
|
|
7826
|
+
0x6f, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05,
|
|
7827
|
+
0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65,
|
|
7828
|
+
0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12,
|
|
7829
|
+
0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05,
|
|
7830
|
+
0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x22, 0x0a, 0x0d, 0x68, 0x61, 0x73, 0x5f, 0x6e, 0x65, 0x78,
|
|
7831
|
+
0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x68, 0x61,
|
|
7832
|
+
0x73, 0x4e, 0x65, 0x78, 0x74, 0x50, 0x61, 0x67, 0x65, 0x22, 0x95, 0x02, 0x0a, 0x1e, 0x47, 0x65,
|
|
7833
|
+
0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
|
|
7834
|
+
0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07,
|
|
7835
|
+
0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75,
|
|
7836
|
+
0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x78, 0x0a, 0x0f, 0x6d, 0x73, 0x6d, 0x70, 0x5f, 0x70, 0x61,
|
|
7837
|
+
0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x4f,
|
|
7838
|
+
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
7839
|
+
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x73,
|
|
7840
|
+
0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69,
|
|
7841
|
+
0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4d, 0x73, 0x6d, 0x70, 0x50, 0x61,
|
|
7842
|
+
0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x52,
|
|
7843
|
+
0x0e, 0x6d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12,
|
|
7844
|
+
0x19, 0x0a, 0x08, 0x74, 0x72, 0x61, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28,
|
|
7845
|
+
0x09, 0x52, 0x07, 0x74, 0x72, 0x61, 0x63, 0x65, 0x49, 0x64, 0x1a, 0x45, 0x0a, 0x15, 0x4d, 0x73,
|
|
7846
|
+
0x6d, 0x70, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75,
|
|
7847
|
+
0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20,
|
|
7848
|
+
0x01, 0x28, 0x05, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c,
|
|
7849
|
+
0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69,
|
|
7850
|
+
0x74, 0x22, 0xb3, 0x03, 0x0a, 0x1f, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67,
|
|
7851
|
+
0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73,
|
|
7852
|
+
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x71, 0x0a, 0x0d, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a,
|
|
7853
|
+
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x4b, 0x2e, 0x6c,
|
|
7854
|
+
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
7855
|
+
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70,
|
|
7544
7856
|
0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74,
|
|
7545
|
-
0x52, 0x65,
|
|
7546
|
-
|
|
7547
|
-
|
|
7548
|
-
|
|
7549
|
-
|
|
7550
|
-
|
|
7551
|
-
0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71,
|
|
7552
|
-
0x75, 0x65, 0x73, 0x74, 0x2e, 0x4d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74,
|
|
7553
|
-
0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x52, 0x0e, 0x6d, 0x73, 0x6d, 0x70,
|
|
7554
|
-
0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x19, 0x0a, 0x08, 0x74, 0x72,
|
|
7555
|
-
0x61, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x74, 0x72,
|
|
7556
|
-
0x61, 0x63, 0x65, 0x49, 0x64, 0x1a, 0x45, 0x0a, 0x15, 0x4d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67,
|
|
7557
|
-
0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16,
|
|
7558
|
-
0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06,
|
|
7559
|
-
0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18,
|
|
7560
|
-
0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x22, 0xb3, 0x03, 0x0a,
|
|
7561
|
-
0x1f, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61,
|
|
7562
|
-
0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
|
|
7563
|
-
0x12, 0x71, 0x0a, 0x0d, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
|
7564
|
-
0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x4b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
7565
|
-
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
7566
|
-
0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e,
|
|
7567
|
-
0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
|
7568
|
-
0x6e, 0x73, 0x65, 0x2e, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61,
|
|
7569
|
-
0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0d, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69,
|
|
7570
|
-
0x6f, 0x6e, 0x73, 0x12, 0x6d, 0x0a, 0x0e, 0x6d, 0x73, 0x6d, 0x70, 0x5f, 0x70, 0x61, 0x67, 0x65,
|
|
7571
|
-
0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x47, 0x2e, 0x6c, 0x61,
|
|
7572
|
-
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
7573
|
-
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f,
|
|
7574
|
-
0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52,
|
|
7575
|
-
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x4d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x65,
|
|
7576
|
-
0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0c, 0x6d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x65, 0x49, 0x6e,
|
|
7577
|
-
0x66, 0x6f, 0x1a, 0x36, 0x0a, 0x10, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69,
|
|
7578
|
-
0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
|
|
7579
|
-
0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02,
|
|
7580
|
-
0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x1a, 0x76, 0x0a, 0x0c, 0x4d, 0x73,
|
|
7581
|
-
0x6d, 0x70, 0x50, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f,
|
|
7582
|
-
0x74, 0x61, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c,
|
|
7583
|
-
0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05,
|
|
7584
|
-
0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69,
|
|
7585
|
-
0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x22,
|
|
7586
|
-
0x0a, 0x0d, 0x68, 0x61, 0x73, 0x5f, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x18,
|
|
7587
|
-
0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x68, 0x61, 0x73, 0x4e, 0x65, 0x78, 0x74, 0x50, 0x61,
|
|
7588
|
-
0x67, 0x65, 0x22, 0x89, 0x01, 0x0a, 0x21, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72,
|
|
7589
|
-
0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
|
|
7590
|
-
0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72,
|
|
7591
|
-
0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49,
|
|
7592
|
-
0x64, 0x12, 0x30, 0x0a, 0x14, 0x6d, 0x73, 0x6d, 0x70, 0x5f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69,
|
|
7593
|
-
0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
7594
|
-
0x12, 0x6d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
|
|
7595
|
-
0x6e, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x74, 0x72, 0x61, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18,
|
|
7596
|
-
0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x74, 0x72, 0x61, 0x63, 0x65, 0x49, 0x64, 0x22, 0xc0,
|
|
7597
|
-
0x01, 0x0a, 0x22, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69,
|
|
7598
|
-
0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73,
|
|
7599
|
-
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
7600
|
-
0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x72, 0x6f, 0x6c, 0x65, 0x18, 0x02, 0x20,
|
|
7601
|
-
0x01, 0x28, 0x09, 0x52, 0x04, 0x72, 0x6f, 0x6c, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x73, 0x5f,
|
|
7602
|
-
0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69,
|
|
7603
|
-
0x73, 0x50, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x12, 0x57, 0x0a, 0x29, 0x68, 0x61, 0x73, 0x5f,
|
|
7604
|
-
0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x5f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x5f, 0x73,
|
|
7605
|
-
0x69, 0x74, 0x65, 0x5f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x70,
|
|
7606
|
-
0x6f, 0x72, 0x74, 0x61, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x24, 0x68, 0x61, 0x73,
|
|
7607
|
-
0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x53, 0x69, 0x74,
|
|
7608
|
-
0x65, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x50, 0x6f, 0x72, 0x74, 0x61,
|
|
7609
|
-
0x6c, 0x22, 0xdf, 0x01, 0x0a, 0x23, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x42, 0x79,
|
|
7857
|
+
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67,
|
|
7858
|
+
0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0d, 0x6f, 0x72, 0x67, 0x61, 0x6e,
|
|
7859
|
+
0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x6d, 0x0a, 0x0e, 0x6d, 0x73, 0x6d, 0x70,
|
|
7860
|
+
0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b,
|
|
7861
|
+
0x32, 0x47, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
7862
|
+
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74,
|
|
7610
7863
|
0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
|
7611
|
-
|
|
7612
|
-
|
|
7613
|
-
|
|
7614
|
-
|
|
7615
|
-
|
|
7616
|
-
|
|
7617
|
-
|
|
7864
|
+
0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x4d, 0x73, 0x6d,
|
|
7865
|
+
0x70, 0x50, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0c, 0x6d, 0x73, 0x6d, 0x70, 0x50,
|
|
7866
|
+
0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x1a, 0x36, 0x0a, 0x10, 0x4d, 0x73, 0x6d, 0x70, 0x4f,
|
|
7867
|
+
0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x0e, 0x0a, 0x02, 0x69,
|
|
7868
|
+
0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e,
|
|
7869
|
+
0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x1a,
|
|
7870
|
+
0x76, 0x0a, 0x0c, 0x4d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12,
|
|
7871
|
+
0x14, 0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05,
|
|
7872
|
+
0x74, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18,
|
|
7873
|
+
0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a,
|
|
7874
|
+
0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6c, 0x69,
|
|
7875
|
+
0x6d, 0x69, 0x74, 0x12, 0x22, 0x0a, 0x0d, 0x68, 0x61, 0x73, 0x5f, 0x6e, 0x65, 0x78, 0x74, 0x5f,
|
|
7876
|
+
0x70, 0x61, 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x68, 0x61, 0x73, 0x4e,
|
|
7877
|
+
0x65, 0x78, 0x74, 0x50, 0x61, 0x67, 0x65, 0x22, 0x89, 0x01, 0x0a, 0x21, 0x47, 0x65, 0x74, 0x4d,
|
|
7878
|
+
0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41,
|
|
7879
|
+
0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a,
|
|
7880
|
+
0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
|
|
7881
|
+
0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x30, 0x0a, 0x14, 0x6d, 0x73, 0x6d, 0x70, 0x5f, 0x6f,
|
|
7882
|
+
0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x02,
|
|
7883
|
+
0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x6d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69,
|
|
7884
|
+
0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x74, 0x72, 0x61, 0x63,
|
|
7885
|
+
0x65, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x74, 0x72, 0x61, 0x63,
|
|
7886
|
+
0x65, 0x49, 0x64, 0x22, 0xc0, 0x01, 0x0a, 0x22, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f,
|
|
7887
|
+
0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x63, 0x6f, 0x75,
|
|
7888
|
+
0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
|
|
7889
|
+
0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x72, 0x6f,
|
|
7890
|
+
0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x72, 0x6f, 0x6c, 0x65, 0x12, 0x1d,
|
|
7891
|
+
0x0a, 0x0a, 0x69, 0x73, 0x5f, 0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x18, 0x03, 0x20, 0x01,
|
|
7892
|
+
0x28, 0x08, 0x52, 0x09, 0x69, 0x73, 0x50, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x12, 0x57, 0x0a,
|
|
7893
|
+
0x29, 0x68, 0x61, 0x73, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x5f, 0x6d, 0x75,
|
|
7894
|
+
0x6c, 0x74, 0x69, 0x5f, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
|
|
7895
|
+
0x65, 0x6e, 0x74, 0x5f, 0x70, 0x6f, 0x72, 0x74, 0x61, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08,
|
|
7896
|
+
0x52, 0x24, 0x68, 0x61, 0x73, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x4d, 0x75, 0x6c,
|
|
7897
|
+
0x74, 0x69, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
|
|
7898
|
+
0x50, 0x6f, 0x72, 0x74, 0x61, 0x6c, 0x22, 0xdf, 0x01, 0x0a, 0x23, 0x47, 0x65, 0x74, 0x53, 0x69,
|
|
7899
|
+
0x74, 0x65, 0x73, 0x42, 0x79, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a,
|
|
7900
|
+
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17,
|
|
7901
|
+
0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
7902
|
+
0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x30, 0x0a, 0x14, 0x6d, 0x73, 0x6d, 0x70, 0x5f,
|
|
7903
|
+
0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18,
|
|
7904
|
+
0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x6d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e,
|
|
7905
|
+
0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x52, 0x0a, 0x0f, 0x6d, 0x73, 0x6d,
|
|
7906
|
+
0x70, 0x5f, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01,
|
|
7907
|
+
0x28, 0x0b, 0x32, 0x29, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
7908
|
+
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4d,
|
|
7909
|
+
0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0e, 0x6d,
|
|
7910
|
+
0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x19, 0x0a,
|
|
7911
|
+
0x08, 0x74, 0x72, 0x61, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
7912
|
+
0x07, 0x74, 0x72, 0x61, 0x63, 0x65, 0x49, 0x64, 0x22, 0xc5, 0x01, 0x0a, 0x24, 0x47, 0x65, 0x74,
|
|
7913
|
+
0x53, 0x69, 0x74, 0x65, 0x73, 0x42, 0x79, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e,
|
|
7914
|
+
0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
7915
|
+
0x65, 0x12, 0x3c, 0x0a, 0x05, 0x73, 0x69, 0x74, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b,
|
|
7916
|
+
0x32, 0x26, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
7917
|
+
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x65,
|
|
7918
|
+
0x76, 0x69, 0x65, 0x77, 0x53, 0x69, 0x74, 0x65, 0x52, 0x05, 0x73, 0x69, 0x74, 0x65, 0x73, 0x12,
|
|
7919
|
+
0x5f, 0x0a, 0x14, 0x6d, 0x73, 0x6d, 0x70, 0x5f, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69,
|
|
7920
|
+
0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e,
|
|
7618
7921
|
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
7619
7922
|
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x73, 0x6d, 0x70, 0x50, 0x61,
|
|
7620
|
-
0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
|
7621
|
-
|
|
7622
|
-
|
|
7623
|
-
|
|
7624
|
-
|
|
7625
|
-
|
|
7626
|
-
|
|
7627
|
-
|
|
7628
|
-
|
|
7629
|
-
0x69, 0x74, 0x65, 0x52, 0x05, 0x73, 0x69, 0x74, 0x65, 0x73, 0x12, 0x5f, 0x0a, 0x14, 0x6d, 0x73,
|
|
7630
|
-
0x6d, 0x70, 0x5f, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e,
|
|
7631
|
-
0x66, 0x6f, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
7632
|
-
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
7633
|
-
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74,
|
|
7634
|
-
0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x12, 0x6d, 0x73, 0x6d, 0x70, 0x50, 0x61, 0x67,
|
|
7635
|
-
0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x5c, 0x0a, 0x27, 0x53,
|
|
7636
|
-
0x65, 0x74, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46,
|
|
7637
|
-
0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52,
|
|
7638
|
-
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69,
|
|
7639
|
-
0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12,
|
|
7640
|
-
0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08,
|
|
7641
|
-
0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x22, 0x41, 0x0a, 0x26, 0x49, 0x73, 0x43,
|
|
7642
|
-
0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72,
|
|
7643
|
-
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75,
|
|
7644
|
-
0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01,
|
|
7645
|
-
0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x22, 0x43, 0x0a, 0x28,
|
|
7646
|
-
0x49, 0x73, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73,
|
|
7923
|
+
0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x12, 0x6d, 0x73,
|
|
7924
|
+
0x6d, 0x70, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f,
|
|
7925
|
+
0x22, 0x5c, 0x0a, 0x27, 0x53, 0x65, 0x74, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x43, 0x75,
|
|
7926
|
+
0x73, 0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61,
|
|
7927
|
+
0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73,
|
|
7928
|
+
0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69,
|
|
7929
|
+
0x74, 0x65, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18,
|
|
7930
|
+
0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x22, 0x41,
|
|
7931
|
+
0x0a, 0x26, 0x49, 0x73, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73,
|
|
7647
7932
|
0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65,
|
|
7648
7933
|
0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65,
|
|
7649
7934
|
0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49,
|
|
7650
|
-
0x64, 0x22,
|
|
7651
|
-
0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45,
|
|
7652
|
-
0x62, 0x6c, 0x65, 0x64, 0x52, 0x65,
|
|
7653
|
-
|
|
7654
|
-
|
|
7655
|
-
|
|
7656
|
-
|
|
7657
|
-
|
|
7658
|
-
|
|
7659
|
-
|
|
7660
|
-
|
|
7661
|
-
|
|
7662
|
-
|
|
7663
|
-
|
|
7664
|
-
|
|
7665
|
-
|
|
7666
|
-
|
|
7667
|
-
|
|
7668
|
-
|
|
7669
|
-
|
|
7670
|
-
|
|
7671
|
-
|
|
7672
|
-
|
|
7673
|
-
|
|
7674
|
-
|
|
7675
|
-
|
|
7676
|
-
|
|
7677
|
-
|
|
7678
|
-
|
|
7679
|
-
0x41, 0x4c, 0x4c, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45,
|
|
7680
|
-
0x55, 0x4e, 0x53,
|
|
7681
|
-
|
|
7682
|
-
|
|
7683
|
-
|
|
7684
|
-
|
|
7685
|
-
|
|
7686
|
-
|
|
7687
|
-
|
|
7688
|
-
|
|
7689
|
-
|
|
7690
|
-
|
|
7691
|
-
|
|
7692
|
-
|
|
7693
|
-
|
|
7694
|
-
|
|
7695
|
-
|
|
7696
|
-
|
|
7935
|
+
0x64, 0x22, 0x43, 0x0a, 0x28, 0x49, 0x73, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x46,
|
|
7936
|
+
0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45,
|
|
7937
|
+
0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a,
|
|
7938
|
+
0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
|
|
7939
|
+
0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x22, 0x48, 0x0a, 0x27, 0x49, 0x73, 0x43, 0x75, 0x73, 0x74,
|
|
7940
|
+
0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69,
|
|
7941
|
+
0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
7942
|
+
0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x73, 0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18,
|
|
7943
|
+
0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69, 0x73, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64,
|
|
7944
|
+
0x22, 0x4a, 0x0a, 0x29, 0x49, 0x73, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x46, 0x69,
|
|
7945
|
+
0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e,
|
|
7946
|
+
0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1d, 0x0a,
|
|
7947
|
+
0x0a, 0x69, 0x73, 0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
7948
|
+
0x08, 0x52, 0x09, 0x69, 0x73, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x22, 0x30, 0x0a, 0x15,
|
|
7949
|
+
0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x52, 0x65,
|
|
7950
|
+
0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64,
|
|
7951
|
+
0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x22, 0x54,
|
|
7952
|
+
0x0a, 0x16, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77,
|
|
7953
|
+
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3a, 0x0a, 0x04, 0x73, 0x69, 0x74, 0x65,
|
|
7954
|
+
0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
7955
|
+
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
7956
|
+
0x76, 0x31, 0x2e, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x53, 0x69, 0x74, 0x65, 0x52, 0x04,
|
|
7957
|
+
0x73, 0x69, 0x74, 0x65, 0x2a, 0x4e, 0x0a, 0x08, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x6f, 0x64, 0x65,
|
|
7958
|
+
0x12, 0x10, 0x0a, 0x0c, 0x55, 0x4e, 0x45, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44,
|
|
7959
|
+
0x10, 0x00, 0x12, 0x10, 0x0a, 0x0c, 0x43, 0x4c, 0x4f, 0x55, 0x44, 0x5f, 0x4e, 0x41, 0x54, 0x49,
|
|
7960
|
+
0x56, 0x45, 0x10, 0x01, 0x12, 0x08, 0x0a, 0x04, 0x44, 0x45, 0x4d, 0x4f, 0x10, 0x02, 0x12, 0x0a,
|
|
7961
|
+
0x0a, 0x06, 0x48, 0x59, 0x42, 0x52, 0x49, 0x44, 0x10, 0x03, 0x12, 0x08, 0x0a, 0x04, 0x44, 0x55,
|
|
7962
|
+
0x41, 0x4c, 0x10, 0x04, 0x2a, 0x77, 0x0a, 0x11, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x53,
|
|
7963
|
+
0x74, 0x61, 0x74, 0x65, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x24, 0x0a, 0x20, 0x49, 0x4e, 0x53,
|
|
7964
|
+
0x54, 0x41, 0x4c, 0x4c, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45,
|
|
7965
|
+
0x5f, 0x55, 0x4e, 0x45, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12,
|
|
7966
|
+
0x1c, 0x0a, 0x18, 0x49, 0x4e, 0x53, 0x54, 0x41, 0x4c, 0x4c, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x45,
|
|
7967
|
+
0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x53, 0x59, 0x4e, 0x43, 0x10, 0x01, 0x12, 0x1e, 0x0a,
|
|
7968
|
+
0x1a, 0x49, 0x4e, 0x53, 0x54, 0x41, 0x4c, 0x4c, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x56,
|
|
7969
|
+
0x41, 0x4c, 0x55, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x59, 0x4e, 0x43, 0x10, 0x02, 0x2a, 0x4d, 0x0a,
|
|
7970
|
+
0x0b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x12, 0x06, 0x0a, 0x02,
|
|
7971
|
+
0x49, 0x54, 0x10, 0x00, 0x12, 0x06, 0x0a, 0x02, 0x4f, 0x54, 0x10, 0x01, 0x12, 0x0c, 0x0a, 0x08,
|
|
7972
|
+
0x49, 0x54, 0x5f, 0x41, 0x47, 0x45, 0x4e, 0x54, 0x10, 0x02, 0x12, 0x09, 0x0a, 0x05, 0x43, 0x4c,
|
|
7973
|
+
0x4f, 0x55, 0x44, 0x10, 0x03, 0x12, 0x15, 0x0a, 0x11, 0x4e, 0x45, 0x54, 0x57, 0x4f, 0x52, 0x4b,
|
|
7974
|
+
0x5f, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x59, 0x10, 0x04, 0x2a, 0xf3, 0x01, 0x0a,
|
|
7975
|
+
0x10, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70,
|
|
7976
|
+
0x65, 0x12, 0x28, 0x0a, 0x24, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x50, 0x54, 0x49, 0x4f,
|
|
7977
|
+
0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x55, 0x4e, 0x45,
|
|
7978
|
+
0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x21, 0x0a, 0x1d, 0x53,
|
|
7979
|
+
0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45,
|
|
7980
|
+
0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x54, 0x52, 0x49, 0x41, 0x4c, 0x10, 0x01, 0x12, 0x24,
|
|
7981
|
+
0x0a, 0x20, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54,
|
|
7982
|
+
0x59, 0x50, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x46, 0x52, 0x45, 0x45, 0x57, 0x41,
|
|
7983
|
+
0x52, 0x45, 0x10, 0x02, 0x12, 0x23, 0x0a, 0x1f, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x50,
|
|
7697
7984
|
0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f,
|
|
7698
|
-
|
|
7699
|
-
0x50, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x56,
|
|
7700
|
-
|
|
7701
|
-
|
|
7702
|
-
|
|
7703
|
-
|
|
7704
|
-
|
|
7705
|
-
|
|
7706
|
-
|
|
7707
|
-
|
|
7708
|
-
|
|
7709
|
-
|
|
7710
|
-
|
|
7711
|
-
|
|
7712
|
-
|
|
7713
|
-
|
|
7714
|
-
|
|
7715
|
-
|
|
7716
|
-
|
|
7717
|
-
|
|
7718
|
-
|
|
7719
|
-
|
|
7720
|
-
|
|
7721
|
-
0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
|
|
7722
|
-
0x22, 0x00, 0x12, 0x8c, 0x01, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65,
|
|
7723
|
-
0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x12, 0x37, 0x2e, 0x6c,
|
|
7724
|
-
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
7725
|
-
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x72, 0x65, 0x76,
|
|
7726
|
-
0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x52, 0x65,
|
|
7727
|
-
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
7985
|
+
0x53, 0x54, 0x41, 0x52, 0x54, 0x45, 0x52, 0x10, 0x03, 0x12, 0x1f, 0x0a, 0x1b, 0x53, 0x55, 0x42,
|
|
7986
|
+
0x53, 0x43, 0x52, 0x49, 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x56,
|
|
7987
|
+
0x41, 0x4c, 0x55, 0x45, 0x5f, 0x50, 0x52, 0x4f, 0x10, 0x04, 0x12, 0x26, 0x0a, 0x22, 0x53, 0x55,
|
|
7988
|
+
0x42, 0x53, 0x43, 0x52, 0x49, 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f,
|
|
7989
|
+
0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x45, 0x4e, 0x54, 0x45, 0x52, 0x50, 0x52, 0x49, 0x53, 0x45,
|
|
7990
|
+
0x10, 0x05, 0x32, 0x80, 0x38, 0x0a, 0x0b, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
7991
|
+
0x6e, 0x74, 0x12, 0xa1, 0x01, 0x0a, 0x1c, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41, 0x63, 0x63, 0x65,
|
|
7992
|
+
0x73, 0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
|
|
7993
|
+
0x74, 0x49, 0x64, 0x12, 0x3e, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
7994
|
+
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
7995
|
+
0x43, 0x68, 0x65, 0x63, 0x6b, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69, 0x74,
|
|
7996
|
+
0x65, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75,
|
|
7997
|
+
0x65, 0x73, 0x74, 0x1a, 0x3f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
7998
|
+
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
7999
|
+
0x43, 0x68, 0x65, 0x63, 0x6b, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69, 0x74,
|
|
8000
|
+
0x65, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70,
|
|
8001
|
+
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x9e, 0x01, 0x0a, 0x1b, 0x43, 0x68, 0x65, 0x63, 0x6b,
|
|
8002
|
+
0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42, 0x79, 0x43, 0x6c,
|
|
8003
|
+
0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x3d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
8004
|
+
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
8005
|
+
0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f,
|
|
8006
|
+
0x53, 0x69, 0x74, 0x65, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65,
|
|
8007
|
+
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3e, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
7728
8008
|
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
7729
|
-
0x31, 0x2e,
|
|
7730
|
-
|
|
7731
|
-
|
|
8009
|
+
0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53,
|
|
8010
|
+
0x69, 0x74, 0x65, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73,
|
|
8011
|
+
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8c, 0x01, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x50,
|
|
8012
|
+
0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x49,
|
|
8013
|
+
0x64, 0x12, 0x37, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
8014
|
+
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65,
|
|
8015
|
+
0x74, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42,
|
|
8016
|
+
0x79, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x38, 0x2e, 0x6c, 0x61, 0x6e,
|
|
8017
|
+
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
8018
|
+
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65,
|
|
8019
|
+
0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70,
|
|
8020
|
+
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0xa7, 0x01, 0x0a, 0x1e, 0x53, 0x65, 0x61, 0x72, 0x63,
|
|
8021
|
+
0x68, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73,
|
|
8022
|
+
0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x73, 0x12, 0x40, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
8023
|
+
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
8024
|
+
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x50, 0x72, 0x65, 0x76,
|
|
7732
8025
|
0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74,
|
|
7733
|
-
0x65, 0x49, 0x64, 0x73,
|
|
7734
|
-
|
|
7735
|
-
|
|
7736
|
-
|
|
7737
|
-
|
|
7738
|
-
|
|
7739
|
-
|
|
7740
|
-
|
|
7741
|
-
|
|
8026
|
+
0x65, 0x49, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x41, 0x2e, 0x6c, 0x61,
|
|
8027
|
+
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
8028
|
+
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x50, 0x72,
|
|
8029
|
+
0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x42, 0x79, 0x53,
|
|
8030
|
+
0x69, 0x74, 0x65, 0x49, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
|
|
8031
|
+
0x12, 0xa7, 0x01, 0x0a, 0x1e, 0x47, 0x65, 0x74, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41,
|
|
8032
|
+
0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
|
|
8033
|
+
0x49, 0x64, 0x73, 0x12, 0x40, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
8034
|
+
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
7742
8035
|
0x47, 0x65, 0x74, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
|
|
7743
|
-
0x74, 0x73, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x73,
|
|
7744
|
-
|
|
7745
|
-
|
|
7746
|
-
|
|
7747
|
-
|
|
7748
|
-
|
|
7749
|
-
|
|
7750
|
-
|
|
7751
|
-
|
|
7752
|
-
|
|
7753
|
-
|
|
7754
|
-
|
|
8036
|
+
0x74, 0x73, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x73, 0x52, 0x65,
|
|
8037
|
+
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x41, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
8038
|
+
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
8039
|
+
0x31, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f,
|
|
8040
|
+
0x75, 0x6e, 0x74, 0x73, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x73,
|
|
8041
|
+
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x92, 0x01, 0x0a, 0x17, 0x4c,
|
|
8042
|
+
0x69, 0x73, 0x74, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x42, 0x79, 0x41, 0x63, 0x63,
|
|
8043
|
+
0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
8044
|
+
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
8045
|
+
0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x42,
|
|
8046
|
+
0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
8047
|
+
0x74, 0x1a, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
7755
8048
|
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69,
|
|
7756
8049
|
0x73, 0x74, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f,
|
|
7757
|
-
0x75, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65,
|
|
8050
|
+
0x75, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
|
|
8051
|
+
0x9b, 0x01, 0x0a, 0x1a, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a,
|
|
8052
|
+
0x65, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x12, 0x3c,
|
|
8053
|
+
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
8054
|
+
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x41,
|
|
8055
|
+
0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x50, 0x72, 0x6f,
|
|
8056
|
+
0x66, 0x69, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3d, 0x2e, 0x6c,
|
|
7758
8057
|
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
7759
|
-
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74,
|
|
7760
|
-
|
|
7761
|
-
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
|
|
7762
|
-
|
|
7763
|
-
|
|
7764
|
-
|
|
7765
|
-
|
|
7766
|
-
|
|
7767
|
-
|
|
7768
|
-
|
|
7769
|
-
|
|
7770
|
-
|
|
7771
|
-
|
|
7772
|
-
|
|
7773
|
-
|
|
7774
|
-
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x74, 0x63, 0x68, 0x53, 0x69, 0x74, 0x65, 0x4d,
|
|
7775
|
-
0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x6c, 0x61, 0x6e,
|
|
7776
|
-
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
7777
|
-
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x74, 0x63, 0x68, 0x53, 0x69, 0x74, 0x65,
|
|
7778
|
-
0x4d, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74,
|
|
7779
|
-
0x0a, 0x0d, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x12,
|
|
7780
|
-
0x2f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
7781
|
-
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61,
|
|
7782
|
-
0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
7783
|
-
0x1a, 0x30, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
7784
|
-
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65,
|
|
7785
|
-
0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
7786
|
-
0x73, 0x65, 0x22, 0x00, 0x12, 0x89, 0x01, 0x0a, 0x14, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41,
|
|
7787
|
-
0x6e, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x12, 0x36, 0x2e,
|
|
7788
|
-
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
7789
|
-
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
|
|
7790
|
-
0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65,
|
|
7791
|
-
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x37, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
8058
|
+
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x75, 0x74,
|
|
8059
|
+
0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x50, 0x72, 0x6f, 0x66, 0x69,
|
|
8060
|
+
0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74, 0x0a,
|
|
8061
|
+
0x0d, 0x50, 0x61, 0x74, 0x63, 0x68, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x12, 0x2f,
|
|
8062
|
+
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
8063
|
+
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x74, 0x63, 0x68,
|
|
8064
|
+
0x53, 0x69, 0x74, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
|
|
8065
|
+
0x30, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
8066
|
+
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x74, 0x63,
|
|
8067
|
+
0x68, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
8068
|
+
0x65, 0x22, 0x00, 0x12, 0x74, 0x0a, 0x0d, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73,
|
|
8069
|
+
0x74, 0x61, 0x6c, 0x6c, 0x12, 0x2f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
8070
|
+
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
8071
|
+
0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65,
|
|
8072
|
+
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
7792
8073
|
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
7793
|
-
0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
|
|
7794
|
-
|
|
7795
|
-
|
|
7796
|
-
|
|
7797
|
-
|
|
7798
|
-
|
|
7799
|
-
|
|
8074
|
+
0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52,
|
|
8075
|
+
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x89, 0x01, 0x0a, 0x14, 0x43, 0x72,
|
|
8076
|
+
0x65, 0x61, 0x74, 0x65, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61,
|
|
8077
|
+
0x6c, 0x6c, 0x12, 0x36, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
8078
|
+
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43,
|
|
8079
|
+
0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74,
|
|
8080
|
+
0x61, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x37, 0x2e, 0x6c, 0x61, 0x6e,
|
|
8081
|
+
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
8082
|
+
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x6e, 0x64,
|
|
8083
|
+
0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
|
8084
|
+
0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x80, 0x01, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73,
|
|
8085
|
+
0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x12, 0x33, 0x2e, 0x6c, 0x61,
|
|
7800
8086
|
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
7801
8087
|
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61,
|
|
7802
|
-
0x6c, 0x6c, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x52, 0x65,
|
|
7803
|
-
|
|
7804
|
-
0x6c,
|
|
7805
|
-
|
|
7806
|
-
|
|
7807
|
-
|
|
7808
|
-
|
|
7809
|
-
|
|
7810
|
-
|
|
7811
|
-
|
|
7812
|
-
|
|
7813
|
-
0x73, 0x65, 0x22, 0x00, 0x12, 0x7a, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61,
|
|
7814
|
-
0x6c, 0x6c, 0x73, 0x42, 0x79, 0x49, 0x64, 0x12, 0x31, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
8088
|
+
0x6c, 0x6c, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
8089
|
+
0x1a, 0x34, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
8090
|
+
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74,
|
|
8091
|
+
0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x52, 0x65,
|
|
8092
|
+
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x9e, 0x01, 0x0a, 0x1b, 0x47, 0x65, 0x74,
|
|
8093
|
+
0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x66, 0x6f, 0x72, 0x4d, 0x75, 0x6c, 0x74, 0x69,
|
|
8094
|
+
0x70, 0x6c, 0x65, 0x53, 0x69, 0x74, 0x65, 0x73, 0x12, 0x3d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
8095
|
+
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
8096
|
+
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73,
|
|
8097
|
+
0x46, 0x6f, 0x72, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x65, 0x53, 0x69, 0x74, 0x65, 0x73,
|
|
8098
|
+
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3e, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
7815
8099
|
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
7816
|
-
0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73,
|
|
7817
|
-
|
|
8100
|
+
0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x46,
|
|
8101
|
+
0x6f, 0x72, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x65, 0x53, 0x69, 0x74, 0x65, 0x73, 0x52,
|
|
8102
|
+
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7a, 0x0a, 0x0f, 0x47, 0x65, 0x74,
|
|
8103
|
+
0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x49, 0x64, 0x12, 0x31, 0x2e, 0x6c,
|
|
8104
|
+
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
8105
|
+
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74,
|
|
8106
|
+
0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
|
|
8107
|
+
0x32, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
8108
|
+
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49,
|
|
8109
|
+
0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
|
8110
|
+
0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x89, 0x01, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73,
|
|
8111
|
+
0x74, 0x61, 0x6c, 0x6c, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65,
|
|
8112
|
+
0x12, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
8113
|
+
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74,
|
|
8114
|
+
0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x53,
|
|
8115
|
+
0x69, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x6c, 0x61, 0x6e,
|
|
7818
8116
|
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
7819
8117
|
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c,
|
|
7820
|
-
0x6c, 0x73,
|
|
7821
|
-
0x12, 0x89, 0x01, 0x0a,
|
|
7822
|
-
|
|
7823
|
-
|
|
7824
|
-
|
|
7825
|
-
0x6c,
|
|
7826
|
-
|
|
7827
|
-
|
|
7828
|
-
|
|
7829
|
-
0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x89, 0x01, 0x0a,
|
|
7830
|
-
0x14, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x62, 0x79, 0x43, 0x6c, 0x69,
|
|
7831
|
-
0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x36, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
7832
|
-
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
7833
|
-
0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x62, 0x79, 0x43, 0x6c,
|
|
7834
|
-
0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x37, 0x2e,
|
|
7835
|
-
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
7836
|
-
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73,
|
|
7837
|
-
0x74, 0x61, 0x6c, 0x6c, 0x62, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65,
|
|
7838
|
-
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x92, 0x01, 0x0a, 0x17, 0x55, 0x70, 0x64,
|
|
7839
|
-
0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65,
|
|
7840
|
-
0x6e, 0x74, 0x49, 0x64, 0x12, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
7841
|
-
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
7842
|
-
0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79,
|
|
7843
|
-
0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
|
|
7844
|
-
0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
7845
|
-
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61,
|
|
7846
|
-
0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e,
|
|
8118
|
+
0x6c, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
|
|
8119
|
+
0x00, 0x12, 0x89, 0x01, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c,
|
|
8120
|
+
0x62, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x36, 0x2e, 0x6c, 0x61, 0x6e,
|
|
8121
|
+
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
8122
|
+
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c,
|
|
8123
|
+
0x6c, 0x62, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
|
|
8124
|
+
0x73, 0x74, 0x1a, 0x37, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
8125
|
+
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47,
|
|
8126
|
+
0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x62, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e,
|
|
7847
8127
|
0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x92, 0x01,
|
|
7848
|
-
0x0a, 0x17,
|
|
8128
|
+
0x0a, 0x17, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42,
|
|
7849
8129
|
0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
7850
8130
|
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
7851
|
-
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
8131
|
+
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74,
|
|
7852
8132
|
0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71,
|
|
7853
8133
|
0x75, 0x65, 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
7854
8134
|
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
7855
|
-
0x2e,
|
|
8135
|
+
0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79,
|
|
7856
8136
|
0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
|
|
7857
|
-
0x22, 0x00, 0x12,
|
|
7858
|
-
|
|
7859
|
-
|
|
7860
|
-
|
|
7861
|
-
|
|
7862
|
-
|
|
7863
|
-
|
|
7864
|
-
0x74,
|
|
8137
|
+
0x22, 0x00, 0x12, 0x92, 0x01, 0x0a, 0x17, 0x52, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73,
|
|
8138
|
+
0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x39,
|
|
8139
|
+
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
8140
|
+
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x6f, 0x74, 0x61, 0x74,
|
|
8141
|
+
0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74,
|
|
8142
|
+
0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
8143
|
+
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
8144
|
+
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74,
|
|
8145
|
+
0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73,
|
|
8146
|
+
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x9b, 0x01, 0x0a, 0x1a, 0x4c, 0x69, 0x6e, 0x6b,
|
|
7865
8147
|
0x54, 0x72, 0x69, 0x61, 0x6c, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c,
|
|
7866
|
-
0x69, 0x65, 0x6e, 0x74, 0x49, 0x64,
|
|
7867
|
-
|
|
7868
|
-
|
|
8148
|
+
0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x3c, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
8149
|
+
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
8150
|
+
0x76, 0x31, 0x2e, 0x4c, 0x69, 0x6e, 0x6b, 0x54, 0x72, 0x69, 0x61, 0x6c, 0x49, 0x6e, 0x73, 0x74,
|
|
8151
|
+
0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71,
|
|
8152
|
+
0x75, 0x65, 0x73, 0x74, 0x1a, 0x3d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
8153
|
+
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
8154
|
+
0x2e, 0x4c, 0x69, 0x6e, 0x6b, 0x54, 0x72, 0x69, 0x61, 0x6c, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c,
|
|
8155
|
+
0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
|
8156
|
+
0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x92, 0x01, 0x0a, 0x17, 0x55, 0x6e, 0x6c, 0x69, 0x6e, 0x6b,
|
|
8157
|
+
0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49,
|
|
8158
|
+
0x64, 0x12, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
8159
|
+
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x6e,
|
|
8160
|
+
0x6c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69,
|
|
8161
|
+
0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x6c,
|
|
7869
8162
|
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
7870
8163
|
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x6e, 0x6c, 0x69, 0x6e, 0x6b, 0x49,
|
|
7871
8164
|
0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64,
|
|
7872
|
-
0x52, 0x65,
|
|
7873
|
-
0x65,
|
|
7874
|
-
|
|
7875
|
-
0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
|
7876
|
-
0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x98, 0x01, 0x0a, 0x19, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65,
|
|
7877
|
-
0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x53, 0x69, 0x74,
|
|
7878
|
-
0x65, 0x49, 0x64, 0x12, 0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
7879
|
-
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
7880
|
-
0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x44, 0x61, 0x74,
|
|
7881
|
-
0x61, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
7882
|
-
0x1a, 0x3c, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
7883
|
-
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x65, 0x6d,
|
|
7884
|
-
0x6f, 0x76, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79,
|
|
7885
|
-
0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
|
|
7886
|
-
0x12, 0xaa, 0x01, 0x0a, 0x1f, 0x47, 0x65, 0x74, 0x44, 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74,
|
|
7887
|
-
0x65, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x47, 0x6c, 0x6f, 0x62,
|
|
7888
|
-
0x61, 0x6c, 0x49, 0x64, 0x12, 0x41, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
7889
|
-
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
7890
|
-
0x2e, 0x47, 0x65, 0x74, 0x44, 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e,
|
|
7891
|
-
0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x49, 0x64,
|
|
7892
|
-
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x42, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
7893
|
-
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
7894
|
-
0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x44, 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x65,
|
|
7895
|
-
0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x47, 0x6c, 0x6f, 0x62, 0x61,
|
|
7896
|
-
0x6c, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x83, 0x01,
|
|
7897
|
-
0x0a, 0x12, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73,
|
|
7898
|
-
0x69, 0x6f, 0x6e, 0x73, 0x12, 0x34, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
7899
|
-
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
7900
|
-
0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69,
|
|
7901
|
-
0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x35, 0x2e, 0x6c, 0x61, 0x6e,
|
|
7902
|
-
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
7903
|
-
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65,
|
|
7904
|
-
0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
7905
|
-
0x65, 0x22, 0x00, 0x12, 0xbf, 0x01, 0x0a, 0x26, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65,
|
|
7906
|
-
0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x65, 0x72, 0x73, 0x6f,
|
|
7907
|
-
0x6e, 0x61, 0x6c, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x48,
|
|
7908
|
-
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
7909
|
-
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64,
|
|
7910
|
-
0x61, 0x74, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x65,
|
|
7911
|
-
0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65,
|
|
7912
|
-
0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x49, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
8165
|
+
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x98, 0x01, 0x0a, 0x19, 0x52,
|
|
8166
|
+
0x65, 0x6d, 0x6f, 0x76, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61,
|
|
8167
|
+
0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
7913
8168
|
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
7914
|
-
0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
7915
|
-
0x6c,
|
|
7916
|
-
|
|
7917
|
-
0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8b, 0x01, 0x0a, 0x18, 0x53, 0x65, 0x6e, 0x64, 0x44, 0x69,
|
|
7918
|
-
0x73, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x45, 0x6d, 0x61,
|
|
7919
|
-
0x69, 0x6c, 0x12, 0x35, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
7920
|
-
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x44,
|
|
7921
|
-
0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x45, 0x6d, 0x61,
|
|
7922
|
-
0x69, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x36, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
7923
|
-
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
7924
|
-
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x57, 0x65, 0x62,
|
|
7925
|
-
0x68, 0x6f, 0x6f, 0x6b, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
7926
|
-
0x65, 0x22, 0x00, 0x12, 0x8c, 0x01, 0x0a, 0x21, 0x47, 0x65, 0x74, 0x41, 0x75, 0x74, 0x68, 0x6f,
|
|
7927
|
-
0x72, 0x69, 0x7a, 0x65, 0x64, 0x53, 0x69, 0x74, 0x65, 0x73, 0x42, 0x79, 0x41, 0x70, 0x70, 0x6c,
|
|
7928
|
-
0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x31, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
7929
|
-
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
7930
|
-
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64,
|
|
7931
|
-
0x53, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x32, 0x2e, 0x6c,
|
|
7932
|
-
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
7933
|
-
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69,
|
|
7934
|
-
0x7a, 0x65, 0x64, 0x53, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
|
|
7935
|
-
0x22, 0x00, 0x12, 0x8c, 0x01, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
|
|
7936
|
-
0x74, 0x49, 0x64, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x37, 0x2e, 0x6c,
|
|
7937
|
-
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
7938
|
-
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f,
|
|
7939
|
-
0x75, 0x6e, 0x74, 0x49, 0x64, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x52, 0x65,
|
|
7940
|
-
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
8169
|
+
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61,
|
|
8170
|
+
0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x52, 0x65,
|
|
8171
|
+
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3c, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
7941
8172
|
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
7942
|
-
0x31, 0x2e,
|
|
7943
|
-
0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
|
7944
|
-
|
|
7945
|
-
|
|
7946
|
-
|
|
7947
|
-
|
|
7948
|
-
|
|
7949
|
-
|
|
8173
|
+
0x31, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x44,
|
|
8174
|
+
0x61, 0x74, 0x61, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
|
8175
|
+
0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0xaa, 0x01, 0x0a, 0x1f, 0x47, 0x65, 0x74, 0x44, 0x75, 0x70,
|
|
8176
|
+
0x6c, 0x69, 0x63, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42,
|
|
8177
|
+
0x79, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x49, 0x64, 0x12, 0x41, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
8178
|
+
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
8179
|
+
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x44, 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61,
|
|
8180
|
+
0x74, 0x65, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x47, 0x6c, 0x6f,
|
|
8181
|
+
0x62, 0x61, 0x6c, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x42, 0x2e, 0x6c,
|
|
7950
8182
|
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
7951
|
-
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
7952
|
-
|
|
7953
|
-
|
|
7954
|
-
|
|
7955
|
-
0x72, 0x69,
|
|
8183
|
+
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x44, 0x75, 0x70, 0x6c,
|
|
8184
|
+
0x69, 0x63, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79,
|
|
8185
|
+
0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
|
|
8186
|
+
0x22, 0x00, 0x12, 0x83, 0x01, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65,
|
|
8187
|
+
0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x34, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
8188
|
+
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
8189
|
+
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72,
|
|
8190
|
+
0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
|
|
8191
|
+
0x35, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
8192
|
+
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x55,
|
|
8193
|
+
0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65,
|
|
8194
|
+
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0xbf, 0x01, 0x0a, 0x26, 0x56, 0x61, 0x6c,
|
|
8195
|
+
0x69, 0x64, 0x61, 0x74, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
|
8196
|
+
0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f,
|
|
8197
|
+
0x6b, 0x65, 0x6e, 0x12, 0x48, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
8198
|
+
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
8199
|
+
0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74,
|
|
8200
|
+
0x69, 0x6f, 0x6e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x63, 0x63, 0x65, 0x73,
|
|
8201
|
+
0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x49, 0x2e,
|
|
8202
|
+
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
8203
|
+
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61,
|
|
8204
|
+
0x74, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x65, 0x72,
|
|
8205
|
+
0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e,
|
|
8206
|
+
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8b, 0x01, 0x0a, 0x18, 0x53,
|
|
8207
|
+
0x65, 0x6e, 0x64, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x57, 0x65, 0x62, 0x68, 0x6f,
|
|
8208
|
+
0x6f, 0x6b, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x35, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
7956
8209
|
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
7957
|
-
0x2e, 0x76, 0x31, 0x2e,
|
|
7958
|
-
|
|
7959
|
-
0x74, 0x1a, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
7960
|
-
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70,
|
|
7961
|
-
0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70,
|
|
7962
|
-
0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x9e,
|
|
7963
|
-
0x01, 0x0a, 0x1b, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x69, 0x61, 0x6c, 0x53, 0x69,
|
|
7964
|
-
0x74, 0x65, 0x41, 0x6e, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x12, 0x3d,
|
|
8210
|
+
0x2e, 0x76, 0x31, 0x2e, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f,
|
|
8211
|
+
0x6f, 0x6b, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x36,
|
|
7965
8212
|
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
7966
|
-
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
7967
|
-
|
|
7968
|
-
|
|
7969
|
-
|
|
7970
|
-
|
|
7971
|
-
|
|
7972
|
-
|
|
7973
|
-
|
|
7974
|
-
|
|
7975
|
-
|
|
8213
|
+
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x69, 0x73, 0x61, 0x62,
|
|
8214
|
+
0x6c, 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x52, 0x65,
|
|
8215
|
+
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8c, 0x01, 0x0a, 0x21, 0x47, 0x65, 0x74,
|
|
8216
|
+
0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x53, 0x69, 0x74, 0x65, 0x73, 0x42,
|
|
8217
|
+
0x79, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x31,
|
|
8218
|
+
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
8219
|
+
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x75, 0x74, 0x68, 0x6f,
|
|
8220
|
+
0x72, 0x69, 0x7a, 0x65, 0x64, 0x53, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
8221
|
+
0x74, 0x1a, 0x32, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
8222
|
+
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x75,
|
|
8223
|
+
0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x53, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x73,
|
|
8224
|
+
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8c, 0x01, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x41,
|
|
8225
|
+
0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49,
|
|
8226
|
+
0x64, 0x12, 0x37, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
8227
|
+
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65,
|
|
8228
|
+
0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74,
|
|
8229
|
+
0x65, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x38, 0x2e, 0x6c, 0x61, 0x6e,
|
|
8230
|
+
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
8231
|
+
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
|
|
8232
|
+
0x74, 0x49, 0x64, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70,
|
|
8233
|
+
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x98, 0x01, 0x0a, 0x19, 0x43, 0x68, 0x65, 0x63, 0x6b,
|
|
8234
|
+
0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x49, 0x6e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61,
|
|
8235
|
+
0x74, 0x69, 0x6f, 0x6e, 0x12, 0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
7976
8236
|
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
7977
|
-
0x2e,
|
|
7978
|
-
|
|
7979
|
-
|
|
7980
|
-
|
|
7981
|
-
|
|
7982
|
-
|
|
7983
|
-
|
|
7984
|
-
|
|
7985
|
-
|
|
8237
|
+
0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x49, 0x6e, 0x41,
|
|
8238
|
+
0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
8239
|
+
0x74, 0x1a, 0x3c, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
8240
|
+
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68,
|
|
8241
|
+
0x65, 0x63, 0x6b, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x49, 0x6e, 0x41, 0x70, 0x70, 0x6c,
|
|
8242
|
+
0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
|
|
8243
|
+
0x00, 0x12, 0x8f, 0x01, 0x0a, 0x16, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65,
|
|
8244
|
+
0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x38, 0x2e, 0x6c,
|
|
8245
|
+
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
8246
|
+
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53,
|
|
8247
|
+
0x69, 0x74, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52,
|
|
8248
|
+
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
8249
|
+
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
8250
|
+
0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x53, 0x75, 0x62,
|
|
8251
|
+
0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
8252
|
+
0x65, 0x22, 0x00, 0x12, 0x9e, 0x01, 0x0a, 0x1b, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x72,
|
|
8253
|
+
0x69, 0x61, 0x6c, 0x53, 0x69, 0x74, 0x65, 0x41, 0x6e, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c,
|
|
8254
|
+
0x6c, 0x65, 0x72, 0x12, 0x3d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
7986
8255
|
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
7987
|
-
|
|
7988
|
-
|
|
7989
|
-
|
|
7990
|
-
|
|
7991
|
-
|
|
7992
|
-
|
|
7993
|
-
|
|
7994
|
-
|
|
7995
|
-
|
|
8256
|
+
0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x69, 0x61, 0x6c, 0x53, 0x69, 0x74, 0x65, 0x41,
|
|
8257
|
+
0x6e, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65,
|
|
8258
|
+
0x73, 0x74, 0x1a, 0x3e, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
8259
|
+
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43,
|
|
8260
|
+
0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x69, 0x61, 0x6c, 0x53, 0x69, 0x74, 0x65, 0x41, 0x6e,
|
|
8261
|
+
0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
8262
|
+
0x73, 0x65, 0x22, 0x00, 0x12, 0xad, 0x01, 0x0a, 0x20, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74,
|
|
8263
|
+
0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x42,
|
|
8264
|
+
0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x42, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
8265
|
+
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
8266
|
+
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c,
|
|
8267
|
+
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x42, 0x79, 0x43, 0x6c,
|
|
8268
|
+
0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x43, 0x2e,
|
|
8269
|
+
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
8270
|
+
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73,
|
|
8271
|
+
0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65,
|
|
8272
|
+
0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
8273
|
+
0x73, 0x65, 0x22, 0x00, 0x12, 0x7d, 0x0a, 0x10, 0x41, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69,
|
|
8274
|
+
0x6c, 0x65, 0x73, 0x45, 0x78, 0x69, 0x73, 0x74, 0x12, 0x32, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
8275
|
+
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
8276
|
+
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73,
|
|
8277
|
+
0x45, 0x78, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x6c,
|
|
8278
|
+
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
8279
|
+
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66,
|
|
8280
|
+
0x69, 0x6c, 0x65, 0x73, 0x45, 0x78, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
8281
|
+
0x65, 0x22, 0x00, 0x12, 0x95, 0x01, 0x0a, 0x18, 0x53, 0x65, 0x6e, 0x64, 0x49, 0x6e, 0x76, 0x69,
|
|
7996
8282
|
0x74, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x55, 0x73, 0x65, 0x72, 0x73, 0x4d, 0x61, 0x69, 0x6c,
|
|
7997
|
-
|
|
7998
|
-
|
|
7999
|
-
|
|
8000
|
-
|
|
8001
|
-
|
|
8002
|
-
|
|
8003
|
-
|
|
8004
|
-
|
|
8005
|
-
|
|
8006
|
-
|
|
8007
|
-
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x6c, 0x6c,
|
|
8008
|
-
0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x52, 0x65,
|
|
8009
|
-
|
|
8010
|
-
|
|
8011
|
-
|
|
8012
|
-
|
|
8013
|
-
|
|
8014
|
-
|
|
8283
|
+
0x12, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
8284
|
+
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x6e,
|
|
8285
|
+
0x64, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x55, 0x73, 0x65, 0x72,
|
|
8286
|
+
0x73, 0x4d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3b, 0x2e, 0x6c,
|
|
8287
|
+
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
8288
|
+
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x49, 0x6e, 0x76,
|
|
8289
|
+
0x69, 0x74, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x55, 0x73, 0x65, 0x72, 0x73, 0x4d, 0x61, 0x69,
|
|
8290
|
+
0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x80, 0x01, 0x0a, 0x10,
|
|
8291
|
+
0x41, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73,
|
|
8292
|
+
0x12, 0x32, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
8293
|
+
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x6c, 0x6c,
|
|
8294
|
+
0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x52, 0x65, 0x71,
|
|
8295
|
+
0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
8296
|
+
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
8297
|
+
0x2e, 0x41, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x45, 0x78, 0x69, 0x73, 0x74,
|
|
8298
|
+
0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x03, 0x88, 0x02, 0x01, 0x12, 0x80,
|
|
8299
|
+
0x01, 0x0a, 0x11, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4c, 0x69, 0x6e, 0x6b, 0x69, 0x6e, 0x67,
|
|
8300
|
+
0x43, 0x6f, 0x64, 0x65, 0x12, 0x33, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
8015
8301
|
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
8016
8302
|
0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4c, 0x69, 0x6e, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x6f,
|
|
8017
|
-
0x64, 0x65, 0x52, 0x65,
|
|
8018
|
-
|
|
8019
|
-
0x6e, 0x74,
|
|
8020
|
-
|
|
8021
|
-
|
|
8022
|
-
|
|
8023
|
-
|
|
8024
|
-
|
|
8025
|
-
|
|
8026
|
-
|
|
8027
|
-
|
|
8028
|
-
|
|
8029
|
-
|
|
8030
|
-
|
|
8031
|
-
|
|
8032
|
-
|
|
8033
|
-
|
|
8034
|
-
|
|
8035
|
-
|
|
8036
|
-
|
|
8037
|
-
|
|
8038
|
-
|
|
8039
|
-
|
|
8040
|
-
|
|
8041
|
-
|
|
8042
|
-
|
|
8043
|
-
|
|
8303
|
+
0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x34, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
8304
|
+
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
8305
|
+
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4c, 0x69, 0x6e, 0x6b,
|
|
8306
|
+
0x69, 0x6e, 0x67, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
|
|
8307
|
+
0x00, 0x12, 0x99, 0x01, 0x0a, 0x21, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x73,
|
|
8308
|
+
0x57, 0x69, 0x74, 0x68, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42,
|
|
8309
|
+
0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
8310
|
+
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
8311
|
+
0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x73, 0x57, 0x69,
|
|
8312
|
+
0x74, 0x68, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74,
|
|
8313
|
+
0x61, 0x1a, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
8314
|
+
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65,
|
|
8315
|
+
0x74, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x73, 0x57, 0x69, 0x74, 0x68, 0x49, 0x6e, 0x74, 0x65,
|
|
8316
|
+
0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x61, 0x22, 0x00, 0x12, 0xad, 0x01,
|
|
8317
|
+
0x0a, 0x20, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x69,
|
|
8318
|
+
0x7a, 0x65, 0x64, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x45, 0x6e, 0x61, 0x62, 0x6c,
|
|
8319
|
+
0x65, 0x64, 0x12, 0x42, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
8320
|
+
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43,
|
|
8321
|
+
0x68, 0x65, 0x63, 0x6b, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x69, 0x7a, 0x65, 0x64,
|
|
8322
|
+
0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52,
|
|
8323
|
+
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x43, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
8324
|
+
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
8325
|
+
0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
|
|
8326
|
+
0x69, 0x7a, 0x65, 0x64, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x45, 0x6e, 0x61, 0x62,
|
|
8327
|
+
0x6c, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x83, 0x01,
|
|
8328
|
+
0x0a, 0x12, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61,
|
|
8329
|
+
0x64, 0x61, 0x74, 0x61, 0x12, 0x34, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
8330
|
+
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
8331
|
+
0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64,
|
|
8332
|
+
0x61, 0x74, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x35, 0x2e, 0x6c, 0x61, 0x6e,
|
|
8333
|
+
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
8334
|
+
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74,
|
|
8335
|
+
0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
8336
|
+
0x65, 0x22, 0x00, 0x12, 0x74, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x4c, 0x69,
|
|
8337
|
+
0x6d, 0x69, 0x74, 0x73, 0x12, 0x2f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
8338
|
+
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
8339
|
+
0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x52, 0x65,
|
|
8340
|
+
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
8044
8341
|
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
8045
|
-
0x31, 0x2e,
|
|
8046
|
-
|
|
8047
|
-
|
|
8048
|
-
|
|
8049
|
-
|
|
8050
|
-
|
|
8051
|
-
|
|
8052
|
-
|
|
8053
|
-
0x53, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
8054
|
-
0x73, 0x65, 0x22, 0x00, 0x12, 0x92, 0x01, 0x0a, 0x17, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70,
|
|
8055
|
-
0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74,
|
|
8056
|
-
0x12, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
8342
|
+
0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x52,
|
|
8343
|
+
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x92, 0x01, 0x0a, 0x17, 0x47, 0x65,
|
|
8344
|
+
0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
|
|
8345
|
+
0x6e, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
8346
|
+
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
8347
|
+
0x31, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a,
|
|
8348
|
+
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
8349
|
+
0x1a, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
8057
8350
|
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74,
|
|
8058
8351
|
0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
|
8059
|
-
0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
|
|
8352
|
+
0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x9b,
|
|
8353
|
+
0x01, 0x0a, 0x1a, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69,
|
|
8354
|
+
0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x3c, 0x2e,
|
|
8355
|
+
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
8356
|
+
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d,
|
|
8357
|
+
0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x63,
|
|
8358
|
+
0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3d, 0x2e, 0x6c, 0x61,
|
|
8060
8359
|
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
8061
8360
|
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f,
|
|
8062
|
-
0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
|
8063
|
-
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
|
|
8064
|
-
|
|
8065
|
-
|
|
8066
|
-
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
8067
|
-
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61,
|
|
8068
|
-
0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52,
|
|
8069
|
-
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
8070
|
-
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
8071
|
-
0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69,
|
|
8072
|
-
0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73,
|
|
8073
|
-
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0xa1, 0x01, 0x0a, 0x1c, 0x47, 0x65, 0x74, 0x53,
|
|
8074
|
-
0x69, 0x74, 0x65, 0x73, 0x42, 0x79, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69,
|
|
8075
|
-
0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x3e, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
8076
|
-
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
8077
|
-
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x42, 0x79, 0x4d,
|
|
8078
|
-
0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49,
|
|
8079
|
-
0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
8080
|
-
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
8081
|
-
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x42, 0x79, 0x4d,
|
|
8082
|
-
0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49,
|
|
8083
|
-
0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x95, 0x01, 0x0a, 0x18,
|
|
8084
|
-
0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x45, 0x78, 0x74,
|
|
8085
|
-
0x65, 0x72, 0x6e, 0x61, 0x6c, 0x49, 0x64, 0x73, 0x12, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
8086
|
-
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
8087
|
-
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73,
|
|
8088
|
-
0x42, 0x79, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x49, 0x64, 0x73, 0x52, 0x65, 0x71,
|
|
8089
|
-
0x75, 0x65, 0x73, 0x74, 0x1a, 0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
8090
|
-
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
8091
|
-
0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x45, 0x78,
|
|
8092
|
-
0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x49, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
8093
|
-
0x65, 0x22, 0x00, 0x12, 0x80, 0x01, 0x0a, 0x20, 0x53, 0x65, 0x74, 0x45, 0x6e, 0x61, 0x62, 0x6c,
|
|
8094
|
-
0x65, 0x64, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65,
|
|
8095
|
-
0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x42, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
8096
|
-
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
8097
|
-
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x74, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x43,
|
|
8098
|
-
0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72,
|
|
8099
|
-
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67,
|
|
8100
|
-
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
|
|
8101
|
-
0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0xaa, 0x01, 0x0a, 0x1f, 0x49, 0x73, 0x43, 0x75, 0x73,
|
|
8102
|
-
0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74,
|
|
8103
|
-
0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x41, 0x2e, 0x6c, 0x61, 0x6e,
|
|
8104
|
-
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
8105
|
-
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x73, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46,
|
|
8106
|
-
0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45,
|
|
8107
|
-
0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x42, 0x2e,
|
|
8361
|
+
0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x63, 0x6f, 0x75,
|
|
8362
|
+
0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0xa1, 0x01, 0x0a,
|
|
8363
|
+
0x1c, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x42, 0x79, 0x4d, 0x73, 0x6d, 0x70, 0x4f,
|
|
8364
|
+
0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x3e, 0x2e,
|
|
8108
8365
|
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
8109
|
-
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
8110
|
-
|
|
8111
|
-
|
|
8112
|
-
|
|
8113
|
-
0x74,
|
|
8114
|
-
|
|
8366
|
+
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74,
|
|
8367
|
+
0x65, 0x73, 0x42, 0x79, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61,
|
|
8368
|
+
0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3f, 0x2e,
|
|
8369
|
+
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
8370
|
+
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74,
|
|
8371
|
+
0x65, 0x73, 0x42, 0x79, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61,
|
|
8372
|
+
0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
|
|
8373
|
+
0x12, 0x95, 0x01, 0x0a, 0x18, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73,
|
|
8374
|
+
0x42, 0x79, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x49, 0x64, 0x73, 0x12, 0x3a, 0x2e,
|
|
8375
|
+
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
8376
|
+
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73,
|
|
8377
|
+
0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x49,
|
|
8378
|
+
0x64, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
8115
8379
|
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
8116
|
-
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
8117
|
-
|
|
8118
|
-
|
|
8380
|
+
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c,
|
|
8381
|
+
0x73, 0x42, 0x79, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x49, 0x64, 0x73, 0x52, 0x65,
|
|
8382
|
+
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x80, 0x01, 0x0a, 0x20, 0x53, 0x65, 0x74,
|
|
8383
|
+
0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65,
|
|
8384
|
+
0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x42, 0x2e,
|
|
8385
|
+
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
8386
|
+
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x74, 0x45, 0x6e, 0x61,
|
|
8387
|
+
0x62, 0x6c, 0x65, 0x64, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73,
|
|
8388
|
+
0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
8389
|
+
0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
8390
|
+
0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0xaa, 0x01, 0x0a, 0x1f,
|
|
8391
|
+
0x49, 0x73, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65,
|
|
8392
|
+
0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12,
|
|
8393
|
+
0x41, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
8394
|
+
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x73, 0x43, 0x75,
|
|
8395
|
+
0x73, 0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61,
|
|
8396
|
+
0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
|
|
8397
|
+
0x73, 0x74, 0x1a, 0x42, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
8398
|
+
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49,
|
|
8399
|
+
0x73, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64,
|
|
8400
|
+
0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65,
|
|
8401
|
+
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0xb0, 0x01, 0x0a, 0x21, 0x49, 0x73, 0x4d,
|
|
8402
|
+
0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64,
|
|
8403
|
+
0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x43,
|
|
8119
8404
|
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
8120
8405
|
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x73, 0x4d, 0x65, 0x74,
|
|
8121
8406
|
0x61, 0x64, 0x61, 0x74, 0x61, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72,
|
|
8122
|
-
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65,
|
|
8123
|
-
|
|
8124
|
-
|
|
8125
|
-
|
|
8126
|
-
|
|
8127
|
-
|
|
8128
|
-
|
|
8129
|
-
0x61, 0x6e,
|
|
8130
|
-
|
|
8131
|
-
|
|
8132
|
-
|
|
8133
|
-
|
|
8134
|
-
|
|
8407
|
+
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75,
|
|
8408
|
+
0x65, 0x73, 0x74, 0x1a, 0x44, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
8409
|
+
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
8410
|
+
0x49, 0x73, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73,
|
|
8411
|
+
0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65,
|
|
8412
|
+
0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x77, 0x0a, 0x0e, 0x47,
|
|
8413
|
+
0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x12, 0x30, 0x2e,
|
|
8414
|
+
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
8415
|
+
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74,
|
|
8416
|
+
0x65, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
|
|
8417
|
+
0x31, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
8418
|
+
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53,
|
|
8419
|
+
0x69, 0x74, 0x65, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
8420
|
+
0x73, 0x65, 0x22, 0x00, 0x12, 0x95, 0x01, 0x0a, 0x18, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53,
|
|
8135
8421
|
0x69, 0x74, 0x65, 0x53, 0x6b, 0x69, 0x70, 0x44, 0x61, 0x74, 0x61, 0x45, 0x78, 0x70, 0x6f, 0x72,
|
|
8136
|
-
0x74,
|
|
8137
|
-
|
|
8138
|
-
|
|
8139
|
-
|
|
8140
|
-
|
|
8141
|
-
0x65,
|
|
8142
|
-
|
|
8422
|
+
0x74, 0x12, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
8423
|
+
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70,
|
|
8424
|
+
0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x53, 0x6b, 0x69, 0x70, 0x44, 0x61, 0x74, 0x61,
|
|
8425
|
+
0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3b, 0x2e,
|
|
8426
|
+
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
8427
|
+
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
|
|
8428
|
+
0x53, 0x69, 0x74, 0x65, 0x53, 0x6b, 0x69, 0x70, 0x44, 0x61, 0x74, 0x61, 0x45, 0x78, 0x70, 0x6f,
|
|
8429
|
+
0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x86, 0x01, 0x0a,
|
|
8430
|
+
0x13, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x48, 0x69, 0x65, 0x72, 0x61, 0x72, 0x63, 0x68,
|
|
8431
|
+
0x79, 0x49, 0x64, 0x73, 0x12, 0x35, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
8432
|
+
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
8433
|
+
0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x48, 0x69, 0x65, 0x72, 0x61, 0x72, 0x63, 0x68,
|
|
8434
|
+
0x79, 0x49, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x36, 0x2e, 0x6c, 0x61,
|
|
8435
|
+
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
8436
|
+
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x48,
|
|
8437
|
+
0x69, 0x65, 0x72, 0x61, 0x72, 0x63, 0x68, 0x79, 0x49, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
|
8438
|
+
0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x10, 0x5a, 0x0e, 0x2e, 0x2f, 0x67, 0x65, 0x6e, 0x65, 0x72,
|
|
8439
|
+
0x61, 0x74, 0x65, 0x64, 0x2d, 0x67, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
8143
8440
|
}
|
|
8144
8441
|
|
|
8145
8442
|
var (
|
|
@@ -8155,7 +8452,7 @@ func file_multitenant_proto_rawDescGZIP() []byte {
|
|
|
8155
8452
|
}
|
|
8156
8453
|
|
|
8157
8454
|
var file_multitenant_proto_enumTypes = make([]protoimpl.EnumInfo, 4)
|
|
8158
|
-
var file_multitenant_proto_msgTypes = make([]protoimpl.MessageInfo,
|
|
8455
|
+
var file_multitenant_proto_msgTypes = make([]protoimpl.MessageInfo, 119)
|
|
8159
8456
|
var file_multitenant_proto_goTypes = []any{
|
|
8160
8457
|
(SiteMode)(0), // 0: lansweeper.multitenant.v1.SiteMode
|
|
8161
8458
|
(InstallStateValue)(0), // 1: lansweeper.multitenant.v1.InstallStateValue
|
|
@@ -8248,36 +8545,40 @@ var file_multitenant_proto_goTypes = []any{
|
|
|
8248
8545
|
(*UpdateSiteSkipDataExportResponse)(nil), // 88: lansweeper.multitenant.v1.UpdateSiteSkipDataExportResponse
|
|
8249
8546
|
(*GetSiteLimitsRequest)(nil), // 89: lansweeper.multitenant.v1.GetSiteLimitsRequest
|
|
8250
8547
|
(*GetSiteLimitsResponse)(nil), // 90: lansweeper.multitenant.v1.GetSiteLimitsResponse
|
|
8251
|
-
(*
|
|
8252
|
-
(*
|
|
8253
|
-
(*
|
|
8254
|
-
(*
|
|
8255
|
-
(*
|
|
8256
|
-
(*
|
|
8257
|
-
(*
|
|
8258
|
-
(*
|
|
8259
|
-
(*
|
|
8260
|
-
(*
|
|
8261
|
-
(*
|
|
8262
|
-
(*
|
|
8263
|
-
(*
|
|
8264
|
-
(*
|
|
8265
|
-
(*
|
|
8266
|
-
(*
|
|
8267
|
-
(*
|
|
8268
|
-
(*
|
|
8269
|
-
(*
|
|
8270
|
-
(*
|
|
8271
|
-
(*
|
|
8272
|
-
(*
|
|
8273
|
-
(*
|
|
8274
|
-
(*
|
|
8275
|
-
nil, // 115: lansweeper.multitenant.v1.
|
|
8276
|
-
(*
|
|
8277
|
-
(*
|
|
8278
|
-
(*
|
|
8279
|
-
|
|
8280
|
-
(*
|
|
8548
|
+
(*GetSiteHierarchyIdsRequest)(nil), // 91: lansweeper.multitenant.v1.GetSiteHierarchyIdsRequest
|
|
8549
|
+
(*SiteHierarchyIdsItem)(nil), // 92: lansweeper.multitenant.v1.SiteHierarchyIdsItem
|
|
8550
|
+
(*SiteHierarchyIdsPageInfo)(nil), // 93: lansweeper.multitenant.v1.SiteHierarchyIdsPageInfo
|
|
8551
|
+
(*GetSiteHierarchyIdsResponse)(nil), // 94: lansweeper.multitenant.v1.GetSiteHierarchyIdsResponse
|
|
8552
|
+
(*MsmpPagination)(nil), // 95: lansweeper.multitenant.v1.MsmpPagination
|
|
8553
|
+
(*MsmpPaginationInfo)(nil), // 96: lansweeper.multitenant.v1.MsmpPaginationInfo
|
|
8554
|
+
(*GetMsmpOrganizationListRequest)(nil), // 97: lansweeper.multitenant.v1.GetMsmpOrganizationListRequest
|
|
8555
|
+
(*GetMsmpOrganizationListResponse)(nil), // 98: lansweeper.multitenant.v1.GetMsmpOrganizationListResponse
|
|
8556
|
+
(*GetMsmpOrganizationAccountRequest)(nil), // 99: lansweeper.multitenant.v1.GetMsmpOrganizationAccountRequest
|
|
8557
|
+
(*GetMsmpOrganizationAccountResponse)(nil), // 100: lansweeper.multitenant.v1.GetMsmpOrganizationAccountResponse
|
|
8558
|
+
(*GetSitesByMsmpOrganizationIdRequest)(nil), // 101: lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdRequest
|
|
8559
|
+
(*GetSitesByMsmpOrganizationIdResponse)(nil), // 102: lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdResponse
|
|
8560
|
+
(*SetEnabledCustomFieldsFederationRequest)(nil), // 103: lansweeper.multitenant.v1.SetEnabledCustomFieldsFederationRequest
|
|
8561
|
+
(*IsCustomFieldsFederationEnabledRequest)(nil), // 104: lansweeper.multitenant.v1.IsCustomFieldsFederationEnabledRequest
|
|
8562
|
+
(*IsMetadataFieldsFederationEnabledRequest)(nil), // 105: lansweeper.multitenant.v1.IsMetadataFieldsFederationEnabledRequest
|
|
8563
|
+
(*IsCustomFieldsFederationEnabledResponse)(nil), // 106: lansweeper.multitenant.v1.IsCustomFieldsFederationEnabledResponse
|
|
8564
|
+
(*IsMetadataFieldsFederationEnabledResponse)(nil), // 107: lansweeper.multitenant.v1.IsMetadataFieldsFederationEnabledResponse
|
|
8565
|
+
(*GetSitePreviewRequest)(nil), // 108: lansweeper.multitenant.v1.GetSitePreviewRequest
|
|
8566
|
+
(*GetSitePreviewResponse)(nil), // 109: lansweeper.multitenant.v1.GetSitePreviewResponse
|
|
8567
|
+
(*CheckAccessToSiteByAccountIdRequest_UserInfo)(nil), // 110: lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest.UserInfo
|
|
8568
|
+
(*Install_InstallState)(nil), // 111: lansweeper.multitenant.v1.Install.InstallState
|
|
8569
|
+
(*GetInstallsBySiteRequest_Filter)(nil), // 112: lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter
|
|
8570
|
+
(*UpdateInstallByClientIdRequest_SyncerSettings)(nil), // 113: lansweeper.multitenant.v1.UpdateInstallByClientIdRequest.SyncerSettings
|
|
8571
|
+
(*RemoveInstallDataBySiteIdResponse_Result)(nil), // 114: lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse.Result
|
|
8572
|
+
(*GetUserPermissionsResponse_AuthorizationAction)(nil), // 115: lansweeper.multitenant.v1.GetUserPermissionsResponse.AuthorizationAction
|
|
8573
|
+
(*GetUserPermissionsResponse_Scope)(nil), // 116: lansweeper.multitenant.v1.GetUserPermissionsResponse.Scope
|
|
8574
|
+
(*GetUserPermissionsResponse_Role)(nil), // 117: lansweeper.multitenant.v1.GetUserPermissionsResponse.Role
|
|
8575
|
+
(*DisableWebhookEmailRequest_WebhookError)(nil), // 118: lansweeper.multitenant.v1.DisableWebhookEmailRequest.WebhookError
|
|
8576
|
+
nil, // 119: lansweeper.multitenant.v1.GetSiteLimitsResponse.SiteLimitsEntry
|
|
8577
|
+
(*GetMsmpOrganizationListRequest_MsmpPaginationRequest)(nil), // 120: lansweeper.multitenant.v1.GetMsmpOrganizationListRequest.MsmpPaginationRequest
|
|
8578
|
+
(*GetMsmpOrganizationListResponse_MsmpOrganization)(nil), // 121: lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.MsmpOrganization
|
|
8579
|
+
(*GetMsmpOrganizationListResponse_MsmpPageInfo)(nil), // 122: lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.MsmpPageInfo
|
|
8580
|
+
(*generated_go.SiteLimits)(nil), // 123: lansweeper.shared.limits.v1.SiteLimits
|
|
8581
|
+
(*emptypb.Empty)(nil), // 124: google.protobuf.Empty
|
|
8281
8582
|
}
|
|
8282
8583
|
var file_multitenant_proto_depIdxs = []int32{
|
|
8283
8584
|
4, // 0: lansweeper.multitenant.v1.GetPreviewAccountByIdResponse.account:type_name -> lansweeper.multitenant.v1.PreviewAccount
|
|
@@ -8289,13 +8590,13 @@ var file_multitenant_proto_depIdxs = []int32{
|
|
|
8289
8590
|
11, // 6: lansweeper.multitenant.v1.Profile.site:type_name -> lansweeper.multitenant.v1.PreviewSite
|
|
8290
8591
|
14, // 7: lansweeper.multitenant.v1.ListProfilesByAccountIdResponse.profile:type_name -> lansweeper.multitenant.v1.Profile
|
|
8291
8592
|
14, // 8: lansweeper.multitenant.v1.ListAuthorizedLinkProfilesResponse.profile:type_name -> lansweeper.multitenant.v1.Profile
|
|
8292
|
-
|
|
8293
|
-
|
|
8593
|
+
110, // 9: lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest.user_info:type_name -> lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest.UserInfo
|
|
8594
|
+
111, // 10: lansweeper.multitenant.v1.Install.state:type_name -> lansweeper.multitenant.v1.Install.InstallState
|
|
8294
8595
|
2, // 11: lansweeper.multitenant.v1.Install.install_type:type_name -> lansweeper.multitenant.v1.InstallType
|
|
8295
8596
|
23, // 12: lansweeper.multitenant.v1.GetInstallsByIdResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
8296
8597
|
23, // 13: lansweeper.multitenant.v1.GetInstallsByExternalIdsResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
8297
8598
|
2, // 14: lansweeper.multitenant.v1.NullableInstallType.data:type_name -> lansweeper.multitenant.v1.InstallType
|
|
8298
|
-
|
|
8599
|
+
112, // 15: lansweeper.multitenant.v1.GetInstallsBySiteRequest.filter:type_name -> lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter
|
|
8299
8600
|
23, // 16: lansweeper.multitenant.v1.GetInstallsBySiteResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
8300
8601
|
23, // 17: lansweeper.multitenant.v1.GetInstallsForMultipleSitesResponse.installs:type_name -> lansweeper.multitenant.v1.Install
|
|
8301
8602
|
23, // 18: lansweeper.multitenant.v1.GetInstallbyClientIdResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
@@ -8305,137 +8606,141 @@ var file_multitenant_proto_depIdxs = []int32{
|
|
|
8305
8606
|
2, // 22: lansweeper.multitenant.v1.CreateAndLinkInstallRequest.type:type_name -> lansweeper.multitenant.v1.InstallType
|
|
8306
8607
|
23, // 23: lansweeper.multitenant.v1.CreateAndLinkInstallResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
8307
8608
|
24, // 24: lansweeper.multitenant.v1.CreateAndLinkInstallResponse.credentials:type_name -> lansweeper.multitenant.v1.InstallCredentials
|
|
8308
|
-
|
|
8609
|
+
113, // 25: lansweeper.multitenant.v1.UpdateInstallByClientIdRequest.syncer_settings:type_name -> lansweeper.multitenant.v1.UpdateInstallByClientIdRequest.SyncerSettings
|
|
8309
8610
|
23, // 26: lansweeper.multitenant.v1.UpdateInstallByClientIdResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
8310
8611
|
2, // 27: lansweeper.multitenant.v1.LinkTrialInstallByClientIdRequest.type:type_name -> lansweeper.multitenant.v1.InstallType
|
|
8311
8612
|
23, // 28: lansweeper.multitenant.v1.LinkTrialInstallByClientIdResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
8312
8613
|
24, // 29: lansweeper.multitenant.v1.LinkTrialInstallByClientIdResponse.credentials:type_name -> lansweeper.multitenant.v1.InstallCredentials
|
|
8313
8614
|
11, // 30: lansweeper.multitenant.v1.LinkTrialInstallByClientIdResponse.site:type_name -> lansweeper.multitenant.v1.PreviewSite
|
|
8314
|
-
|
|
8615
|
+
114, // 31: lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse.result:type_name -> lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse.Result
|
|
8315
8616
|
23, // 32: lansweeper.multitenant.v1.GetDuplicatedInstallsByGlobalIdResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
8316
|
-
|
|
8317
|
-
|
|
8617
|
+
117, // 33: lansweeper.multitenant.v1.GetUserPermissionsResponse.roles:type_name -> lansweeper.multitenant.v1.GetUserPermissionsResponse.Role
|
|
8618
|
+
118, // 34: lansweeper.multitenant.v1.DisableWebhookEmailRequest.errors:type_name -> lansweeper.multitenant.v1.DisableWebhookEmailRequest.WebhookError
|
|
8318
8619
|
60, // 35: lansweeper.multitenant.v1.AuthorizedSitesResponse.site:type_name -> lansweeper.multitenant.v1.Site
|
|
8319
8620
|
3, // 36: lansweeper.multitenant.v1.Subscription.type:type_name -> lansweeper.multitenant.v1.SubscriptionType
|
|
8320
8621
|
3, // 37: lansweeper.multitenant.v1.UpdateSiteSubscriptionRequest.type:type_name -> lansweeper.multitenant.v1.SubscriptionType
|
|
8321
8622
|
67, // 38: lansweeper.multitenant.v1.UpdateSiteSubscriptionResponse.subscription:type_name -> lansweeper.multitenant.v1.Subscription
|
|
8322
8623
|
14, // 39: lansweeper.multitenant.v1.AllProfilesExistResponse.profiles:type_name -> lansweeper.multitenant.v1.Profile
|
|
8323
8624
|
4, // 40: lansweeper.multitenant.v1.AllProfilesExistResponse.createdBy:type_name -> lansweeper.multitenant.v1.PreviewAccount
|
|
8324
|
-
|
|
8325
|
-
|
|
8326
|
-
|
|
8327
|
-
|
|
8328
|
-
|
|
8329
|
-
|
|
8330
|
-
|
|
8331
|
-
11, // 48: lansweeper.multitenant.v1.
|
|
8332
|
-
|
|
8333
|
-
|
|
8334
|
-
|
|
8335
|
-
|
|
8336
|
-
|
|
8337
|
-
|
|
8338
|
-
|
|
8339
|
-
|
|
8340
|
-
|
|
8341
|
-
|
|
8342
|
-
|
|
8343
|
-
|
|
8344
|
-
|
|
8345
|
-
|
|
8346
|
-
|
|
8347
|
-
|
|
8348
|
-
|
|
8349
|
-
|
|
8350
|
-
|
|
8351
|
-
|
|
8352
|
-
|
|
8353
|
-
|
|
8354
|
-
|
|
8355
|
-
|
|
8356
|
-
|
|
8357
|
-
|
|
8358
|
-
|
|
8359
|
-
|
|
8360
|
-
|
|
8361
|
-
|
|
8362
|
-
|
|
8363
|
-
|
|
8364
|
-
|
|
8365
|
-
|
|
8366
|
-
|
|
8367
|
-
|
|
8368
|
-
|
|
8369
|
-
|
|
8370
|
-
|
|
8371
|
-
|
|
8372
|
-
|
|
8373
|
-
|
|
8374
|
-
|
|
8375
|
-
|
|
8376
|
-
|
|
8377
|
-
|
|
8378
|
-
|
|
8379
|
-
|
|
8380
|
-
97, // 97: lansweeper.multitenant.v1.Multitenant.
|
|
8381
|
-
|
|
8382
|
-
|
|
8383
|
-
|
|
8384
|
-
|
|
8385
|
-
104, // 102: lansweeper.multitenant.v1.Multitenant.
|
|
8386
|
-
|
|
8387
|
-
|
|
8388
|
-
|
|
8389
|
-
|
|
8390
|
-
|
|
8391
|
-
|
|
8392
|
-
|
|
8393
|
-
|
|
8394
|
-
|
|
8395
|
-
|
|
8396
|
-
|
|
8397
|
-
|
|
8398
|
-
|
|
8399
|
-
|
|
8400
|
-
|
|
8401
|
-
|
|
8402
|
-
|
|
8403
|
-
|
|
8404
|
-
|
|
8405
|
-
|
|
8406
|
-
|
|
8407
|
-
|
|
8408
|
-
|
|
8409
|
-
|
|
8410
|
-
|
|
8411
|
-
|
|
8412
|
-
|
|
8413
|
-
|
|
8414
|
-
|
|
8415
|
-
|
|
8416
|
-
|
|
8417
|
-
|
|
8418
|
-
|
|
8419
|
-
|
|
8420
|
-
|
|
8421
|
-
|
|
8422
|
-
|
|
8423
|
-
|
|
8424
|
-
|
|
8425
|
-
|
|
8426
|
-
|
|
8427
|
-
|
|
8428
|
-
|
|
8429
|
-
|
|
8430
|
-
102, // 147: lansweeper.multitenant.v1.Multitenant.
|
|
8431
|
-
|
|
8432
|
-
|
|
8433
|
-
|
|
8434
|
-
|
|
8435
|
-
|
|
8436
|
-
|
|
8437
|
-
|
|
8438
|
-
|
|
8625
|
+
119, // 41: lansweeper.multitenant.v1.GetSiteLimitsResponse.site_limits:type_name -> lansweeper.multitenant.v1.GetSiteLimitsResponse.SiteLimitsEntry
|
|
8626
|
+
92, // 42: lansweeper.multitenant.v1.GetSiteHierarchyIdsResponse.items:type_name -> lansweeper.multitenant.v1.SiteHierarchyIdsItem
|
|
8627
|
+
93, // 43: lansweeper.multitenant.v1.GetSiteHierarchyIdsResponse.page_info:type_name -> lansweeper.multitenant.v1.SiteHierarchyIdsPageInfo
|
|
8628
|
+
120, // 44: lansweeper.multitenant.v1.GetMsmpOrganizationListRequest.msmp_pagination:type_name -> lansweeper.multitenant.v1.GetMsmpOrganizationListRequest.MsmpPaginationRequest
|
|
8629
|
+
121, // 45: lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.organizations:type_name -> lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.MsmpOrganization
|
|
8630
|
+
122, // 46: lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.msmp_page_info:type_name -> lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.MsmpPageInfo
|
|
8631
|
+
95, // 47: lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdRequest.msmp_pagination:type_name -> lansweeper.multitenant.v1.MsmpPagination
|
|
8632
|
+
11, // 48: lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdResponse.sites:type_name -> lansweeper.multitenant.v1.PreviewSite
|
|
8633
|
+
96, // 49: lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdResponse.msmp_pagination_info:type_name -> lansweeper.multitenant.v1.MsmpPaginationInfo
|
|
8634
|
+
11, // 50: lansweeper.multitenant.v1.GetSitePreviewResponse.site:type_name -> lansweeper.multitenant.v1.PreviewSite
|
|
8635
|
+
1, // 51: lansweeper.multitenant.v1.Install.InstallState.value:type_name -> lansweeper.multitenant.v1.InstallStateValue
|
|
8636
|
+
1, // 52: lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter.state:type_name -> lansweeper.multitenant.v1.InstallStateValue
|
|
8637
|
+
2, // 53: lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter.type:type_name -> lansweeper.multitenant.v1.InstallType
|
|
8638
|
+
31, // 54: lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter.install_type:type_name -> lansweeper.multitenant.v1.NullableInstallType
|
|
8639
|
+
115, // 55: lansweeper.multitenant.v1.GetUserPermissionsResponse.Role.actions:type_name -> lansweeper.multitenant.v1.GetUserPermissionsResponse.AuthorizationAction
|
|
8640
|
+
23, // 56: lansweeper.multitenant.v1.GetUserPermissionsResponse.Role.installations:type_name -> lansweeper.multitenant.v1.Install
|
|
8641
|
+
116, // 57: lansweeper.multitenant.v1.GetUserPermissionsResponse.Role.scopes:type_name -> lansweeper.multitenant.v1.GetUserPermissionsResponse.Scope
|
|
8642
|
+
123, // 58: lansweeper.multitenant.v1.GetSiteLimitsResponse.SiteLimitsEntry.value:type_name -> lansweeper.shared.limits.v1.SiteLimits
|
|
8643
|
+
19, // 59: lansweeper.multitenant.v1.Multitenant.CheckAccessToSiteByAccountId:input_type -> lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest
|
|
8644
|
+
21, // 60: lansweeper.multitenant.v1.Multitenant.CheckAccessToSiteByClientId:input_type -> lansweeper.multitenant.v1.CheckAccessToSiteByClientIdRequest
|
|
8645
|
+
5, // 61: lansweeper.multitenant.v1.Multitenant.GetPreviewAccountById:input_type -> lansweeper.multitenant.v1.GetPreviewAccountByIdRequest
|
|
8646
|
+
7, // 62: lansweeper.multitenant.v1.Multitenant.SearchPreviewAccountsBySiteIds:input_type -> lansweeper.multitenant.v1.SearchPreviewAccountsBySiteIdsRequest
|
|
8647
|
+
9, // 63: lansweeper.multitenant.v1.Multitenant.GetPreviewAccountsByAccountIds:input_type -> lansweeper.multitenant.v1.GetPreviewAccountsByAccountIdsRequest
|
|
8648
|
+
15, // 64: lansweeper.multitenant.v1.Multitenant.ListProfilesByAccountId:input_type -> lansweeper.multitenant.v1.ListProfilesByAccountIdRequest
|
|
8649
|
+
17, // 65: lansweeper.multitenant.v1.Multitenant.ListAuthorizedLinkProfiles:input_type -> lansweeper.multitenant.v1.ListAuthorizedLinkProfilesRequest
|
|
8650
|
+
12, // 66: lansweeper.multitenant.v1.Multitenant.PatchSiteMode:input_type -> lansweeper.multitenant.v1.PatchSiteModeRequest
|
|
8651
|
+
38, // 67: lansweeper.multitenant.v1.Multitenant.CreateInstall:input_type -> lansweeper.multitenant.v1.CreateInstallRequest
|
|
8652
|
+
40, // 68: lansweeper.multitenant.v1.Multitenant.CreateAndLinkInstall:input_type -> lansweeper.multitenant.v1.CreateAndLinkInstallRequest
|
|
8653
|
+
32, // 69: lansweeper.multitenant.v1.Multitenant.GetInstallsBySite:input_type -> lansweeper.multitenant.v1.GetInstallsBySiteRequest
|
|
8654
|
+
34, // 70: lansweeper.multitenant.v1.Multitenant.GetInstallsforMultipleSites:input_type -> lansweeper.multitenant.v1.GetInstallsForMultipleSitesRequest
|
|
8655
|
+
27, // 71: lansweeper.multitenant.v1.Multitenant.GetInstallsById:input_type -> lansweeper.multitenant.v1.GetInstallsByIdRequest
|
|
8656
|
+
25, // 72: lansweeper.multitenant.v1.Multitenant.GetInstallsCountBySite:input_type -> lansweeper.multitenant.v1.GetInstallsCountBySiteRequest
|
|
8657
|
+
36, // 73: lansweeper.multitenant.v1.Multitenant.GetInstallbyClientId:input_type -> lansweeper.multitenant.v1.GetInstallbyClientIdRequest
|
|
8658
|
+
42, // 74: lansweeper.multitenant.v1.Multitenant.UpdateInstallByClientId:input_type -> lansweeper.multitenant.v1.UpdateInstallByClientIdRequest
|
|
8659
|
+
44, // 75: lansweeper.multitenant.v1.Multitenant.RotateInstallByClientId:input_type -> lansweeper.multitenant.v1.RotateInstallByClientIdRequest
|
|
8660
|
+
48, // 76: lansweeper.multitenant.v1.Multitenant.LinkTrialInstallByClientId:input_type -> lansweeper.multitenant.v1.LinkTrialInstallByClientIdRequest
|
|
8661
|
+
46, // 77: lansweeper.multitenant.v1.Multitenant.UnlinkInstallByClientId:input_type -> lansweeper.multitenant.v1.UnlinkInstallByClientIdRequest
|
|
8662
|
+
50, // 78: lansweeper.multitenant.v1.Multitenant.RemoveInstallDataBySiteId:input_type -> lansweeper.multitenant.v1.RemoveInstallDataBySiteIdRequest
|
|
8663
|
+
52, // 79: lansweeper.multitenant.v1.Multitenant.GetDuplicatedInstallsByGlobalId:input_type -> lansweeper.multitenant.v1.GetDuplicatedInstallsByGlobalIdRequest
|
|
8664
|
+
54, // 80: lansweeper.multitenant.v1.Multitenant.GetUserPermissions:input_type -> lansweeper.multitenant.v1.GetUserPermissionsRequest
|
|
8665
|
+
56, // 81: lansweeper.multitenant.v1.Multitenant.ValidateApplicationPersonalAccessToken:input_type -> lansweeper.multitenant.v1.ValidateApplicationPersonalAccessTokenRequest
|
|
8666
|
+
58, // 82: lansweeper.multitenant.v1.Multitenant.SendDisabledWebhookEmail:input_type -> lansweeper.multitenant.v1.DisableWebhookEmailRequest
|
|
8667
|
+
61, // 83: lansweeper.multitenant.v1.Multitenant.GetAuthorizedSitesByApplicationId:input_type -> lansweeper.multitenant.v1.AuthorizedSitesRequest
|
|
8668
|
+
63, // 84: lansweeper.multitenant.v1.Multitenant.GetAccountIdsBySiteId:input_type -> lansweeper.multitenant.v1.GetAccountIdsBySiteIdRequest
|
|
8669
|
+
65, // 85: lansweeper.multitenant.v1.Multitenant.CheckManagerInApplication:input_type -> lansweeper.multitenant.v1.CheckManagerInApplicationRequest
|
|
8670
|
+
68, // 86: lansweeper.multitenant.v1.Multitenant.UpdateSiteSubscription:input_type -> lansweeper.multitenant.v1.UpdateSiteSubscriptionRequest
|
|
8671
|
+
70, // 87: lansweeper.multitenant.v1.Multitenant.CreateTrialSiteAndInstaller:input_type -> lansweeper.multitenant.v1.CreateTrialSiteAndInstallerRequest
|
|
8672
|
+
72, // 88: lansweeper.multitenant.v1.Multitenant.GetInstallationLicenseByClientId:input_type -> lansweeper.multitenant.v1.GetInstallationLicenseByClientIdRequest
|
|
8673
|
+
76, // 89: lansweeper.multitenant.v1.Multitenant.AllProfilesExist:input_type -> lansweeper.multitenant.v1.AllProfilesExistRequest
|
|
8674
|
+
78, // 90: lansweeper.multitenant.v1.Multitenant.SendInviteLocalUsersMail:input_type -> lansweeper.multitenant.v1.SendInviteLocalUsersMailRequest
|
|
8675
|
+
74, // 91: lansweeper.multitenant.v1.Multitenant.AllProfileExists:input_type -> lansweeper.multitenant.v1.AllProfileExistsRequest
|
|
8676
|
+
80, // 92: lansweeper.multitenant.v1.Multitenant.CreateLinkingCode:input_type -> lansweeper.multitenant.v1.CreateLinkingCodeRequest
|
|
8677
|
+
82, // 93: lansweeper.multitenant.v1.Multitenant.GetSiteIdsWithIntegrationBySiteId:input_type -> lansweeper.multitenant.v1.GetSiteIdsWithIntegrationData
|
|
8678
|
+
83, // 94: lansweeper.multitenant.v1.Multitenant.CheckStandardizedSoftwareEnabled:input_type -> lansweeper.multitenant.v1.CheckStandardizedSoftwareEnabledRequest
|
|
8679
|
+
85, // 95: lansweeper.multitenant.v1.Multitenant.UpdateSiteMetadata:input_type -> lansweeper.multitenant.v1.UpdateSiteMetadataRequest
|
|
8680
|
+
89, // 96: lansweeper.multitenant.v1.Multitenant.GetSiteLimits:input_type -> lansweeper.multitenant.v1.GetSiteLimitsRequest
|
|
8681
|
+
97, // 97: lansweeper.multitenant.v1.Multitenant.GetMsmpOrganizationList:input_type -> lansweeper.multitenant.v1.GetMsmpOrganizationListRequest
|
|
8682
|
+
99, // 98: lansweeper.multitenant.v1.Multitenant.GetMsmpOrganizationAccount:input_type -> lansweeper.multitenant.v1.GetMsmpOrganizationAccountRequest
|
|
8683
|
+
101, // 99: lansweeper.multitenant.v1.Multitenant.GetSitesByMsmpOrganizationId:input_type -> lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdRequest
|
|
8684
|
+
29, // 100: lansweeper.multitenant.v1.Multitenant.GetInstallsByExternalIds:input_type -> lansweeper.multitenant.v1.GetInstallsByExternalIdsRequest
|
|
8685
|
+
103, // 101: lansweeper.multitenant.v1.Multitenant.SetEnabledCustomFieldsFederation:input_type -> lansweeper.multitenant.v1.SetEnabledCustomFieldsFederationRequest
|
|
8686
|
+
104, // 102: lansweeper.multitenant.v1.Multitenant.IsCustomFieldsFederationEnabled:input_type -> lansweeper.multitenant.v1.IsCustomFieldsFederationEnabledRequest
|
|
8687
|
+
105, // 103: lansweeper.multitenant.v1.Multitenant.IsMetadataFieldsFederationEnabled:input_type -> lansweeper.multitenant.v1.IsMetadataFieldsFederationEnabledRequest
|
|
8688
|
+
108, // 104: lansweeper.multitenant.v1.Multitenant.GetSitePreview:input_type -> lansweeper.multitenant.v1.GetSitePreviewRequest
|
|
8689
|
+
87, // 105: lansweeper.multitenant.v1.Multitenant.UpdateSiteSkipDataExport:input_type -> lansweeper.multitenant.v1.UpdateSiteSkipDataExportRequest
|
|
8690
|
+
91, // 106: lansweeper.multitenant.v1.Multitenant.GetSiteHierarchyIds:input_type -> lansweeper.multitenant.v1.GetSiteHierarchyIdsRequest
|
|
8691
|
+
20, // 107: lansweeper.multitenant.v1.Multitenant.CheckAccessToSiteByAccountId:output_type -> lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdResponse
|
|
8692
|
+
22, // 108: lansweeper.multitenant.v1.Multitenant.CheckAccessToSiteByClientId:output_type -> lansweeper.multitenant.v1.CheckAccessToSiteByClientIdResponse
|
|
8693
|
+
6, // 109: lansweeper.multitenant.v1.Multitenant.GetPreviewAccountById:output_type -> lansweeper.multitenant.v1.GetPreviewAccountByIdResponse
|
|
8694
|
+
8, // 110: lansweeper.multitenant.v1.Multitenant.SearchPreviewAccountsBySiteIds:output_type -> lansweeper.multitenant.v1.SearchPreviewAccountsBySiteIdsResponse
|
|
8695
|
+
10, // 111: lansweeper.multitenant.v1.Multitenant.GetPreviewAccountsByAccountIds:output_type -> lansweeper.multitenant.v1.GetPreviewAccountsByAccountIdsResponse
|
|
8696
|
+
16, // 112: lansweeper.multitenant.v1.Multitenant.ListProfilesByAccountId:output_type -> lansweeper.multitenant.v1.ListProfilesByAccountIdResponse
|
|
8697
|
+
18, // 113: lansweeper.multitenant.v1.Multitenant.ListAuthorizedLinkProfiles:output_type -> lansweeper.multitenant.v1.ListAuthorizedLinkProfilesResponse
|
|
8698
|
+
13, // 114: lansweeper.multitenant.v1.Multitenant.PatchSiteMode:output_type -> lansweeper.multitenant.v1.PatchSiteModeResponse
|
|
8699
|
+
39, // 115: lansweeper.multitenant.v1.Multitenant.CreateInstall:output_type -> lansweeper.multitenant.v1.CreateInstallResponse
|
|
8700
|
+
41, // 116: lansweeper.multitenant.v1.Multitenant.CreateAndLinkInstall:output_type -> lansweeper.multitenant.v1.CreateAndLinkInstallResponse
|
|
8701
|
+
33, // 117: lansweeper.multitenant.v1.Multitenant.GetInstallsBySite:output_type -> lansweeper.multitenant.v1.GetInstallsBySiteResponse
|
|
8702
|
+
35, // 118: lansweeper.multitenant.v1.Multitenant.GetInstallsforMultipleSites:output_type -> lansweeper.multitenant.v1.GetInstallsForMultipleSitesResponse
|
|
8703
|
+
28, // 119: lansweeper.multitenant.v1.Multitenant.GetInstallsById:output_type -> lansweeper.multitenant.v1.GetInstallsByIdResponse
|
|
8704
|
+
26, // 120: lansweeper.multitenant.v1.Multitenant.GetInstallsCountBySite:output_type -> lansweeper.multitenant.v1.GetInstallsCountResponse
|
|
8705
|
+
37, // 121: lansweeper.multitenant.v1.Multitenant.GetInstallbyClientId:output_type -> lansweeper.multitenant.v1.GetInstallbyClientIdResponse
|
|
8706
|
+
43, // 122: lansweeper.multitenant.v1.Multitenant.UpdateInstallByClientId:output_type -> lansweeper.multitenant.v1.UpdateInstallByClientIdResponse
|
|
8707
|
+
45, // 123: lansweeper.multitenant.v1.Multitenant.RotateInstallByClientId:output_type -> lansweeper.multitenant.v1.RotateInstallByClientIdResponse
|
|
8708
|
+
49, // 124: lansweeper.multitenant.v1.Multitenant.LinkTrialInstallByClientId:output_type -> lansweeper.multitenant.v1.LinkTrialInstallByClientIdResponse
|
|
8709
|
+
47, // 125: lansweeper.multitenant.v1.Multitenant.UnlinkInstallByClientId:output_type -> lansweeper.multitenant.v1.UnlinkInstallByClientIdResponse
|
|
8710
|
+
51, // 126: lansweeper.multitenant.v1.Multitenant.RemoveInstallDataBySiteId:output_type -> lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse
|
|
8711
|
+
53, // 127: lansweeper.multitenant.v1.Multitenant.GetDuplicatedInstallsByGlobalId:output_type -> lansweeper.multitenant.v1.GetDuplicatedInstallsByGlobalIdResponse
|
|
8712
|
+
55, // 128: lansweeper.multitenant.v1.Multitenant.GetUserPermissions:output_type -> lansweeper.multitenant.v1.GetUserPermissionsResponse
|
|
8713
|
+
57, // 129: lansweeper.multitenant.v1.Multitenant.ValidateApplicationPersonalAccessToken:output_type -> lansweeper.multitenant.v1.ValidateApplicationPersonalAccessTokenResponse
|
|
8714
|
+
59, // 130: lansweeper.multitenant.v1.Multitenant.SendDisabledWebhookEmail:output_type -> lansweeper.multitenant.v1.DisableWebhookEmailResponse
|
|
8715
|
+
62, // 131: lansweeper.multitenant.v1.Multitenant.GetAuthorizedSitesByApplicationId:output_type -> lansweeper.multitenant.v1.AuthorizedSitesResponse
|
|
8716
|
+
64, // 132: lansweeper.multitenant.v1.Multitenant.GetAccountIdsBySiteId:output_type -> lansweeper.multitenant.v1.GetAccountIdsBySiteIdResponse
|
|
8717
|
+
66, // 133: lansweeper.multitenant.v1.Multitenant.CheckManagerInApplication:output_type -> lansweeper.multitenant.v1.CheckManagerInApplicationResponse
|
|
8718
|
+
69, // 134: lansweeper.multitenant.v1.Multitenant.UpdateSiteSubscription:output_type -> lansweeper.multitenant.v1.UpdateSiteSubscriptionResponse
|
|
8719
|
+
71, // 135: lansweeper.multitenant.v1.Multitenant.CreateTrialSiteAndInstaller:output_type -> lansweeper.multitenant.v1.CreateTrialSiteAndInstallerResponse
|
|
8720
|
+
73, // 136: lansweeper.multitenant.v1.Multitenant.GetInstallationLicenseByClientId:output_type -> lansweeper.multitenant.v1.GetInstallationLicenseByClientIdResponse
|
|
8721
|
+
77, // 137: lansweeper.multitenant.v1.Multitenant.AllProfilesExist:output_type -> lansweeper.multitenant.v1.AllProfilesExistResponse
|
|
8722
|
+
79, // 138: lansweeper.multitenant.v1.Multitenant.SendInviteLocalUsersMail:output_type -> lansweeper.multitenant.v1.SendInviteLocalUsersMailResponse
|
|
8723
|
+
75, // 139: lansweeper.multitenant.v1.Multitenant.AllProfileExists:output_type -> lansweeper.multitenant.v1.AllProfileExistsResponse
|
|
8724
|
+
81, // 140: lansweeper.multitenant.v1.Multitenant.CreateLinkingCode:output_type -> lansweeper.multitenant.v1.CreateLinkingCodeResponse
|
|
8725
|
+
82, // 141: lansweeper.multitenant.v1.Multitenant.GetSiteIdsWithIntegrationBySiteId:output_type -> lansweeper.multitenant.v1.GetSiteIdsWithIntegrationData
|
|
8726
|
+
84, // 142: lansweeper.multitenant.v1.Multitenant.CheckStandardizedSoftwareEnabled:output_type -> lansweeper.multitenant.v1.CheckStandardizedSoftwareEnabledResponse
|
|
8727
|
+
86, // 143: lansweeper.multitenant.v1.Multitenant.UpdateSiteMetadata:output_type -> lansweeper.multitenant.v1.UpdateSiteMetadataResponse
|
|
8728
|
+
90, // 144: lansweeper.multitenant.v1.Multitenant.GetSiteLimits:output_type -> lansweeper.multitenant.v1.GetSiteLimitsResponse
|
|
8729
|
+
98, // 145: lansweeper.multitenant.v1.Multitenant.GetMsmpOrganizationList:output_type -> lansweeper.multitenant.v1.GetMsmpOrganizationListResponse
|
|
8730
|
+
100, // 146: lansweeper.multitenant.v1.Multitenant.GetMsmpOrganizationAccount:output_type -> lansweeper.multitenant.v1.GetMsmpOrganizationAccountResponse
|
|
8731
|
+
102, // 147: lansweeper.multitenant.v1.Multitenant.GetSitesByMsmpOrganizationId:output_type -> lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdResponse
|
|
8732
|
+
30, // 148: lansweeper.multitenant.v1.Multitenant.GetInstallsByExternalIds:output_type -> lansweeper.multitenant.v1.GetInstallsByExternalIdsResponse
|
|
8733
|
+
124, // 149: lansweeper.multitenant.v1.Multitenant.SetEnabledCustomFieldsFederation:output_type -> google.protobuf.Empty
|
|
8734
|
+
106, // 150: lansweeper.multitenant.v1.Multitenant.IsCustomFieldsFederationEnabled:output_type -> lansweeper.multitenant.v1.IsCustomFieldsFederationEnabledResponse
|
|
8735
|
+
107, // 151: lansweeper.multitenant.v1.Multitenant.IsMetadataFieldsFederationEnabled:output_type -> lansweeper.multitenant.v1.IsMetadataFieldsFederationEnabledResponse
|
|
8736
|
+
109, // 152: lansweeper.multitenant.v1.Multitenant.GetSitePreview:output_type -> lansweeper.multitenant.v1.GetSitePreviewResponse
|
|
8737
|
+
88, // 153: lansweeper.multitenant.v1.Multitenant.UpdateSiteSkipDataExport:output_type -> lansweeper.multitenant.v1.UpdateSiteSkipDataExportResponse
|
|
8738
|
+
94, // 154: lansweeper.multitenant.v1.Multitenant.GetSiteHierarchyIds:output_type -> lansweeper.multitenant.v1.GetSiteHierarchyIdsResponse
|
|
8739
|
+
107, // [107:155] is the sub-list for method output_type
|
|
8740
|
+
59, // [59:107] is the sub-list for method input_type
|
|
8741
|
+
59, // [59:59] is the sub-list for extension type_name
|
|
8742
|
+
59, // [59:59] is the sub-list for extension extendee
|
|
8743
|
+
0, // [0:59] is the sub-list for field type_name
|
|
8439
8744
|
}
|
|
8440
8745
|
|
|
8441
8746
|
func init() { file_multitenant_proto_init() }
|
|
@@ -9489,7 +9794,7 @@ func file_multitenant_proto_init() {
|
|
|
9489
9794
|
}
|
|
9490
9795
|
}
|
|
9491
9796
|
file_multitenant_proto_msgTypes[87].Exporter = func(v any, i int) any {
|
|
9492
|
-
switch v := v.(*
|
|
9797
|
+
switch v := v.(*GetSiteHierarchyIdsRequest); i {
|
|
9493
9798
|
case 0:
|
|
9494
9799
|
return &v.state
|
|
9495
9800
|
case 1:
|
|
@@ -9501,7 +9806,7 @@ func file_multitenant_proto_init() {
|
|
|
9501
9806
|
}
|
|
9502
9807
|
}
|
|
9503
9808
|
file_multitenant_proto_msgTypes[88].Exporter = func(v any, i int) any {
|
|
9504
|
-
switch v := v.(*
|
|
9809
|
+
switch v := v.(*SiteHierarchyIdsItem); i {
|
|
9505
9810
|
case 0:
|
|
9506
9811
|
return &v.state
|
|
9507
9812
|
case 1:
|
|
@@ -9513,7 +9818,7 @@ func file_multitenant_proto_init() {
|
|
|
9513
9818
|
}
|
|
9514
9819
|
}
|
|
9515
9820
|
file_multitenant_proto_msgTypes[89].Exporter = func(v any, i int) any {
|
|
9516
|
-
switch v := v.(*
|
|
9821
|
+
switch v := v.(*SiteHierarchyIdsPageInfo); i {
|
|
9517
9822
|
case 0:
|
|
9518
9823
|
return &v.state
|
|
9519
9824
|
case 1:
|
|
@@ -9525,7 +9830,7 @@ func file_multitenant_proto_init() {
|
|
|
9525
9830
|
}
|
|
9526
9831
|
}
|
|
9527
9832
|
file_multitenant_proto_msgTypes[90].Exporter = func(v any, i int) any {
|
|
9528
|
-
switch v := v.(*
|
|
9833
|
+
switch v := v.(*GetSiteHierarchyIdsResponse); i {
|
|
9529
9834
|
case 0:
|
|
9530
9835
|
return &v.state
|
|
9531
9836
|
case 1:
|
|
@@ -9537,7 +9842,7 @@ func file_multitenant_proto_init() {
|
|
|
9537
9842
|
}
|
|
9538
9843
|
}
|
|
9539
9844
|
file_multitenant_proto_msgTypes[91].Exporter = func(v any, i int) any {
|
|
9540
|
-
switch v := v.(*
|
|
9845
|
+
switch v := v.(*MsmpPagination); i {
|
|
9541
9846
|
case 0:
|
|
9542
9847
|
return &v.state
|
|
9543
9848
|
case 1:
|
|
@@ -9549,7 +9854,7 @@ func file_multitenant_proto_init() {
|
|
|
9549
9854
|
}
|
|
9550
9855
|
}
|
|
9551
9856
|
file_multitenant_proto_msgTypes[92].Exporter = func(v any, i int) any {
|
|
9552
|
-
switch v := v.(*
|
|
9857
|
+
switch v := v.(*MsmpPaginationInfo); i {
|
|
9553
9858
|
case 0:
|
|
9554
9859
|
return &v.state
|
|
9555
9860
|
case 1:
|
|
@@ -9561,7 +9866,7 @@ func file_multitenant_proto_init() {
|
|
|
9561
9866
|
}
|
|
9562
9867
|
}
|
|
9563
9868
|
file_multitenant_proto_msgTypes[93].Exporter = func(v any, i int) any {
|
|
9564
|
-
switch v := v.(*
|
|
9869
|
+
switch v := v.(*GetMsmpOrganizationListRequest); i {
|
|
9565
9870
|
case 0:
|
|
9566
9871
|
return &v.state
|
|
9567
9872
|
case 1:
|
|
@@ -9573,7 +9878,7 @@ func file_multitenant_proto_init() {
|
|
|
9573
9878
|
}
|
|
9574
9879
|
}
|
|
9575
9880
|
file_multitenant_proto_msgTypes[94].Exporter = func(v any, i int) any {
|
|
9576
|
-
switch v := v.(*
|
|
9881
|
+
switch v := v.(*GetMsmpOrganizationListResponse); i {
|
|
9577
9882
|
case 0:
|
|
9578
9883
|
return &v.state
|
|
9579
9884
|
case 1:
|
|
@@ -9585,7 +9890,7 @@ func file_multitenant_proto_init() {
|
|
|
9585
9890
|
}
|
|
9586
9891
|
}
|
|
9587
9892
|
file_multitenant_proto_msgTypes[95].Exporter = func(v any, i int) any {
|
|
9588
|
-
switch v := v.(*
|
|
9893
|
+
switch v := v.(*GetMsmpOrganizationAccountRequest); i {
|
|
9589
9894
|
case 0:
|
|
9590
9895
|
return &v.state
|
|
9591
9896
|
case 1:
|
|
@@ -9597,7 +9902,7 @@ func file_multitenant_proto_init() {
|
|
|
9597
9902
|
}
|
|
9598
9903
|
}
|
|
9599
9904
|
file_multitenant_proto_msgTypes[96].Exporter = func(v any, i int) any {
|
|
9600
|
-
switch v := v.(*
|
|
9905
|
+
switch v := v.(*GetMsmpOrganizationAccountResponse); i {
|
|
9601
9906
|
case 0:
|
|
9602
9907
|
return &v.state
|
|
9603
9908
|
case 1:
|
|
@@ -9609,7 +9914,7 @@ func file_multitenant_proto_init() {
|
|
|
9609
9914
|
}
|
|
9610
9915
|
}
|
|
9611
9916
|
file_multitenant_proto_msgTypes[97].Exporter = func(v any, i int) any {
|
|
9612
|
-
switch v := v.(*
|
|
9917
|
+
switch v := v.(*GetSitesByMsmpOrganizationIdRequest); i {
|
|
9613
9918
|
case 0:
|
|
9614
9919
|
return &v.state
|
|
9615
9920
|
case 1:
|
|
@@ -9621,7 +9926,7 @@ func file_multitenant_proto_init() {
|
|
|
9621
9926
|
}
|
|
9622
9927
|
}
|
|
9623
9928
|
file_multitenant_proto_msgTypes[98].Exporter = func(v any, i int) any {
|
|
9624
|
-
switch v := v.(*
|
|
9929
|
+
switch v := v.(*GetSitesByMsmpOrganizationIdResponse); i {
|
|
9625
9930
|
case 0:
|
|
9626
9931
|
return &v.state
|
|
9627
9932
|
case 1:
|
|
@@ -9633,7 +9938,7 @@ func file_multitenant_proto_init() {
|
|
|
9633
9938
|
}
|
|
9634
9939
|
}
|
|
9635
9940
|
file_multitenant_proto_msgTypes[99].Exporter = func(v any, i int) any {
|
|
9636
|
-
switch v := v.(*
|
|
9941
|
+
switch v := v.(*SetEnabledCustomFieldsFederationRequest); i {
|
|
9637
9942
|
case 0:
|
|
9638
9943
|
return &v.state
|
|
9639
9944
|
case 1:
|
|
@@ -9645,7 +9950,7 @@ func file_multitenant_proto_init() {
|
|
|
9645
9950
|
}
|
|
9646
9951
|
}
|
|
9647
9952
|
file_multitenant_proto_msgTypes[100].Exporter = func(v any, i int) any {
|
|
9648
|
-
switch v := v.(*
|
|
9953
|
+
switch v := v.(*IsCustomFieldsFederationEnabledRequest); i {
|
|
9649
9954
|
case 0:
|
|
9650
9955
|
return &v.state
|
|
9651
9956
|
case 1:
|
|
@@ -9657,7 +9962,7 @@ func file_multitenant_proto_init() {
|
|
|
9657
9962
|
}
|
|
9658
9963
|
}
|
|
9659
9964
|
file_multitenant_proto_msgTypes[101].Exporter = func(v any, i int) any {
|
|
9660
|
-
switch v := v.(*
|
|
9965
|
+
switch v := v.(*IsMetadataFieldsFederationEnabledRequest); i {
|
|
9661
9966
|
case 0:
|
|
9662
9967
|
return &v.state
|
|
9663
9968
|
case 1:
|
|
@@ -9669,7 +9974,7 @@ func file_multitenant_proto_init() {
|
|
|
9669
9974
|
}
|
|
9670
9975
|
}
|
|
9671
9976
|
file_multitenant_proto_msgTypes[102].Exporter = func(v any, i int) any {
|
|
9672
|
-
switch v := v.(*
|
|
9977
|
+
switch v := v.(*IsCustomFieldsFederationEnabledResponse); i {
|
|
9673
9978
|
case 0:
|
|
9674
9979
|
return &v.state
|
|
9675
9980
|
case 1:
|
|
@@ -9681,7 +9986,7 @@ func file_multitenant_proto_init() {
|
|
|
9681
9986
|
}
|
|
9682
9987
|
}
|
|
9683
9988
|
file_multitenant_proto_msgTypes[103].Exporter = func(v any, i int) any {
|
|
9684
|
-
switch v := v.(*
|
|
9989
|
+
switch v := v.(*IsMetadataFieldsFederationEnabledResponse); i {
|
|
9685
9990
|
case 0:
|
|
9686
9991
|
return &v.state
|
|
9687
9992
|
case 1:
|
|
@@ -9693,7 +9998,7 @@ func file_multitenant_proto_init() {
|
|
|
9693
9998
|
}
|
|
9694
9999
|
}
|
|
9695
10000
|
file_multitenant_proto_msgTypes[104].Exporter = func(v any, i int) any {
|
|
9696
|
-
switch v := v.(*
|
|
10001
|
+
switch v := v.(*GetSitePreviewRequest); i {
|
|
9697
10002
|
case 0:
|
|
9698
10003
|
return &v.state
|
|
9699
10004
|
case 1:
|
|
@@ -9705,7 +10010,7 @@ func file_multitenant_proto_init() {
|
|
|
9705
10010
|
}
|
|
9706
10011
|
}
|
|
9707
10012
|
file_multitenant_proto_msgTypes[105].Exporter = func(v any, i int) any {
|
|
9708
|
-
switch v := v.(*
|
|
10013
|
+
switch v := v.(*GetSitePreviewResponse); i {
|
|
9709
10014
|
case 0:
|
|
9710
10015
|
return &v.state
|
|
9711
10016
|
case 1:
|
|
@@ -9717,7 +10022,7 @@ func file_multitenant_proto_init() {
|
|
|
9717
10022
|
}
|
|
9718
10023
|
}
|
|
9719
10024
|
file_multitenant_proto_msgTypes[106].Exporter = func(v any, i int) any {
|
|
9720
|
-
switch v := v.(*
|
|
10025
|
+
switch v := v.(*CheckAccessToSiteByAccountIdRequest_UserInfo); i {
|
|
9721
10026
|
case 0:
|
|
9722
10027
|
return &v.state
|
|
9723
10028
|
case 1:
|
|
@@ -9729,7 +10034,7 @@ func file_multitenant_proto_init() {
|
|
|
9729
10034
|
}
|
|
9730
10035
|
}
|
|
9731
10036
|
file_multitenant_proto_msgTypes[107].Exporter = func(v any, i int) any {
|
|
9732
|
-
switch v := v.(*
|
|
10037
|
+
switch v := v.(*Install_InstallState); i {
|
|
9733
10038
|
case 0:
|
|
9734
10039
|
return &v.state
|
|
9735
10040
|
case 1:
|
|
@@ -9741,7 +10046,7 @@ func file_multitenant_proto_init() {
|
|
|
9741
10046
|
}
|
|
9742
10047
|
}
|
|
9743
10048
|
file_multitenant_proto_msgTypes[108].Exporter = func(v any, i int) any {
|
|
9744
|
-
switch v := v.(*
|
|
10049
|
+
switch v := v.(*GetInstallsBySiteRequest_Filter); i {
|
|
9745
10050
|
case 0:
|
|
9746
10051
|
return &v.state
|
|
9747
10052
|
case 1:
|
|
@@ -9753,7 +10058,7 @@ func file_multitenant_proto_init() {
|
|
|
9753
10058
|
}
|
|
9754
10059
|
}
|
|
9755
10060
|
file_multitenant_proto_msgTypes[109].Exporter = func(v any, i int) any {
|
|
9756
|
-
switch v := v.(*
|
|
10061
|
+
switch v := v.(*UpdateInstallByClientIdRequest_SyncerSettings); i {
|
|
9757
10062
|
case 0:
|
|
9758
10063
|
return &v.state
|
|
9759
10064
|
case 1:
|
|
@@ -9765,7 +10070,19 @@ func file_multitenant_proto_init() {
|
|
|
9765
10070
|
}
|
|
9766
10071
|
}
|
|
9767
10072
|
file_multitenant_proto_msgTypes[110].Exporter = func(v any, i int) any {
|
|
9768
|
-
switch v := v.(*
|
|
10073
|
+
switch v := v.(*RemoveInstallDataBySiteIdResponse_Result); i {
|
|
10074
|
+
case 0:
|
|
10075
|
+
return &v.state
|
|
10076
|
+
case 1:
|
|
10077
|
+
return &v.sizeCache
|
|
10078
|
+
case 2:
|
|
10079
|
+
return &v.unknownFields
|
|
10080
|
+
default:
|
|
10081
|
+
return nil
|
|
10082
|
+
}
|
|
10083
|
+
}
|
|
10084
|
+
file_multitenant_proto_msgTypes[111].Exporter = func(v any, i int) any {
|
|
10085
|
+
switch v := v.(*GetUserPermissionsResponse_AuthorizationAction); i {
|
|
9769
10086
|
case 0:
|
|
9770
10087
|
return &v.state
|
|
9771
10088
|
case 1:
|
|
@@ -9777,7 +10094,7 @@ func file_multitenant_proto_init() {
|
|
|
9777
10094
|
}
|
|
9778
10095
|
}
|
|
9779
10096
|
file_multitenant_proto_msgTypes[112].Exporter = func(v any, i int) any {
|
|
9780
|
-
switch v := v.(*
|
|
10097
|
+
switch v := v.(*GetUserPermissionsResponse_Scope); i {
|
|
9781
10098
|
case 0:
|
|
9782
10099
|
return &v.state
|
|
9783
10100
|
case 1:
|
|
@@ -9789,7 +10106,7 @@ func file_multitenant_proto_init() {
|
|
|
9789
10106
|
}
|
|
9790
10107
|
}
|
|
9791
10108
|
file_multitenant_proto_msgTypes[113].Exporter = func(v any, i int) any {
|
|
9792
|
-
switch v := v.(*
|
|
10109
|
+
switch v := v.(*GetUserPermissionsResponse_Role); i {
|
|
9793
10110
|
case 0:
|
|
9794
10111
|
return &v.state
|
|
9795
10112
|
case 1:
|
|
@@ -9801,6 +10118,42 @@ func file_multitenant_proto_init() {
|
|
|
9801
10118
|
}
|
|
9802
10119
|
}
|
|
9803
10120
|
file_multitenant_proto_msgTypes[114].Exporter = func(v any, i int) any {
|
|
10121
|
+
switch v := v.(*DisableWebhookEmailRequest_WebhookError); i {
|
|
10122
|
+
case 0:
|
|
10123
|
+
return &v.state
|
|
10124
|
+
case 1:
|
|
10125
|
+
return &v.sizeCache
|
|
10126
|
+
case 2:
|
|
10127
|
+
return &v.unknownFields
|
|
10128
|
+
default:
|
|
10129
|
+
return nil
|
|
10130
|
+
}
|
|
10131
|
+
}
|
|
10132
|
+
file_multitenant_proto_msgTypes[116].Exporter = func(v any, i int) any {
|
|
10133
|
+
switch v := v.(*GetMsmpOrganizationListRequest_MsmpPaginationRequest); i {
|
|
10134
|
+
case 0:
|
|
10135
|
+
return &v.state
|
|
10136
|
+
case 1:
|
|
10137
|
+
return &v.sizeCache
|
|
10138
|
+
case 2:
|
|
10139
|
+
return &v.unknownFields
|
|
10140
|
+
default:
|
|
10141
|
+
return nil
|
|
10142
|
+
}
|
|
10143
|
+
}
|
|
10144
|
+
file_multitenant_proto_msgTypes[117].Exporter = func(v any, i int) any {
|
|
10145
|
+
switch v := v.(*GetMsmpOrganizationListResponse_MsmpOrganization); i {
|
|
10146
|
+
case 0:
|
|
10147
|
+
return &v.state
|
|
10148
|
+
case 1:
|
|
10149
|
+
return &v.sizeCache
|
|
10150
|
+
case 2:
|
|
10151
|
+
return &v.unknownFields
|
|
10152
|
+
default:
|
|
10153
|
+
return nil
|
|
10154
|
+
}
|
|
10155
|
+
}
|
|
10156
|
+
file_multitenant_proto_msgTypes[118].Exporter = func(v any, i int) any {
|
|
9804
10157
|
switch v := v.(*GetMsmpOrganizationListResponse_MsmpPageInfo); i {
|
|
9805
10158
|
case 0:
|
|
9806
10159
|
return &v.state
|
|
@@ -9816,13 +10169,14 @@ func file_multitenant_proto_init() {
|
|
|
9816
10169
|
file_multitenant_proto_msgTypes[27].OneofWrappers = []any{
|
|
9817
10170
|
(*NullableInstallType_Data)(nil),
|
|
9818
10171
|
}
|
|
10172
|
+
file_multitenant_proto_msgTypes[87].OneofWrappers = []any{}
|
|
9819
10173
|
type x struct{}
|
|
9820
10174
|
out := protoimpl.TypeBuilder{
|
|
9821
10175
|
File: protoimpl.DescBuilder{
|
|
9822
10176
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
9823
10177
|
RawDescriptor: file_multitenant_proto_rawDesc,
|
|
9824
10178
|
NumEnums: 4,
|
|
9825
|
-
NumMessages:
|
|
10179
|
+
NumMessages: 119,
|
|
9826
10180
|
NumExtensions: 0,
|
|
9827
10181
|
NumServices: 1,
|
|
9828
10182
|
},
|