@lansweeper/data-platform-outbound-grpc 0.1.12 → 0.1.13
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/outbound_grpc_pb.d.ts +17 -0
- package/gen-proto/outbound_grpc_pb.js +34 -0
- package/gen-proto/outbound_pb.d.ts +108 -63
- package/gen-proto/outbound_pb.js +976 -534
- package/generated-go/outbound.pb.go +1343 -1215
- package/generated-go/outbound_grpc.pb.go +41 -2
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +46 -16
|
@@ -250,6 +250,172 @@ func (x *ListEntityResponse) GetRelated() []*Entity {
|
|
|
250
250
|
return nil
|
|
251
251
|
}
|
|
252
252
|
|
|
253
|
+
type CatalogLookupRequest struct {
|
|
254
|
+
state protoimpl.MessageState
|
|
255
|
+
sizeCache protoimpl.SizeCache
|
|
256
|
+
unknownFields protoimpl.UnknownFields
|
|
257
|
+
|
|
258
|
+
BrandId []int64 `protobuf:"varint,1,rep,packed,name=brand_id,json=brandId,proto3" json:"brand_id,omitempty"`
|
|
259
|
+
ModelId []int64 `protobuf:"varint,2,rep,packed,name=model_id,json=modelId,proto3" json:"model_id,omitempty"`
|
|
260
|
+
OsId []int64 `protobuf:"varint,3,rep,packed,name=os_id,json=osId,proto3" json:"os_id,omitempty"`
|
|
261
|
+
SwId []int64 `protobuf:"varint,4,rep,packed,name=sw_id,json=swId,proto3" json:"sw_id,omitempty"`
|
|
262
|
+
MonitorId []int64 `protobuf:"varint,5,rep,packed,name=monitor_id,json=monitorId,proto3" json:"monitor_id,omitempty"`
|
|
263
|
+
OnlyRequested *bool `protobuf:"varint,10,opt,name=only_requested,json=onlyRequested,proto3,oneof" json:"only_requested,omitempty"` // false by default: to avoid to get full path
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
func (x *CatalogLookupRequest) Reset() {
|
|
267
|
+
*x = CatalogLookupRequest{}
|
|
268
|
+
if protoimpl.UnsafeEnabled {
|
|
269
|
+
mi := &file_outbound_proto_msgTypes[4]
|
|
270
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
271
|
+
ms.StoreMessageInfo(mi)
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
func (x *CatalogLookupRequest) String() string {
|
|
276
|
+
return protoimpl.X.MessageStringOf(x)
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
func (*CatalogLookupRequest) ProtoMessage() {}
|
|
280
|
+
|
|
281
|
+
func (x *CatalogLookupRequest) ProtoReflect() protoreflect.Message {
|
|
282
|
+
mi := &file_outbound_proto_msgTypes[4]
|
|
283
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
284
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
285
|
+
if ms.LoadMessageInfo() == nil {
|
|
286
|
+
ms.StoreMessageInfo(mi)
|
|
287
|
+
}
|
|
288
|
+
return ms
|
|
289
|
+
}
|
|
290
|
+
return mi.MessageOf(x)
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
// Deprecated: Use CatalogLookupRequest.ProtoReflect.Descriptor instead.
|
|
294
|
+
func (*CatalogLookupRequest) Descriptor() ([]byte, []int) {
|
|
295
|
+
return file_outbound_proto_rawDescGZIP(), []int{4}
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
func (x *CatalogLookupRequest) GetBrandId() []int64 {
|
|
299
|
+
if x != nil {
|
|
300
|
+
return x.BrandId
|
|
301
|
+
}
|
|
302
|
+
return nil
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
func (x *CatalogLookupRequest) GetModelId() []int64 {
|
|
306
|
+
if x != nil {
|
|
307
|
+
return x.ModelId
|
|
308
|
+
}
|
|
309
|
+
return nil
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
func (x *CatalogLookupRequest) GetOsId() []int64 {
|
|
313
|
+
if x != nil {
|
|
314
|
+
return x.OsId
|
|
315
|
+
}
|
|
316
|
+
return nil
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
func (x *CatalogLookupRequest) GetSwId() []int64 {
|
|
320
|
+
if x != nil {
|
|
321
|
+
return x.SwId
|
|
322
|
+
}
|
|
323
|
+
return nil
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
func (x *CatalogLookupRequest) GetMonitorId() []int64 {
|
|
327
|
+
if x != nil {
|
|
328
|
+
return x.MonitorId
|
|
329
|
+
}
|
|
330
|
+
return nil
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
func (x *CatalogLookupRequest) GetOnlyRequested() bool {
|
|
334
|
+
if x != nil && x.OnlyRequested != nil {
|
|
335
|
+
return *x.OnlyRequested
|
|
336
|
+
}
|
|
337
|
+
return false
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
type CatalogLookupResponse struct {
|
|
341
|
+
state protoimpl.MessageState
|
|
342
|
+
sizeCache protoimpl.SizeCache
|
|
343
|
+
unknownFields protoimpl.UnknownFields
|
|
344
|
+
|
|
345
|
+
Brand []*CatalogBrand `protobuf:"bytes,1,rep,name=brand,proto3" json:"brand,omitempty"`
|
|
346
|
+
Model []*CatalogModel `protobuf:"bytes,2,rep,name=model,proto3" json:"model,omitempty"`
|
|
347
|
+
Os []*CatalogOs `protobuf:"bytes,3,rep,name=os,proto3" json:"os,omitempty"`
|
|
348
|
+
Sw []*CatalogSoftware `protobuf:"bytes,4,rep,name=sw,proto3" json:"sw,omitempty"`
|
|
349
|
+
Monitor []*CatalogMonitor `protobuf:"bytes,5,rep,name=monitor,proto3" json:"monitor,omitempty"`
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
func (x *CatalogLookupResponse) Reset() {
|
|
353
|
+
*x = CatalogLookupResponse{}
|
|
354
|
+
if protoimpl.UnsafeEnabled {
|
|
355
|
+
mi := &file_outbound_proto_msgTypes[5]
|
|
356
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
357
|
+
ms.StoreMessageInfo(mi)
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
func (x *CatalogLookupResponse) String() string {
|
|
362
|
+
return protoimpl.X.MessageStringOf(x)
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
func (*CatalogLookupResponse) ProtoMessage() {}
|
|
366
|
+
|
|
367
|
+
func (x *CatalogLookupResponse) ProtoReflect() protoreflect.Message {
|
|
368
|
+
mi := &file_outbound_proto_msgTypes[5]
|
|
369
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
370
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
371
|
+
if ms.LoadMessageInfo() == nil {
|
|
372
|
+
ms.StoreMessageInfo(mi)
|
|
373
|
+
}
|
|
374
|
+
return ms
|
|
375
|
+
}
|
|
376
|
+
return mi.MessageOf(x)
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
// Deprecated: Use CatalogLookupResponse.ProtoReflect.Descriptor instead.
|
|
380
|
+
func (*CatalogLookupResponse) Descriptor() ([]byte, []int) {
|
|
381
|
+
return file_outbound_proto_rawDescGZIP(), []int{5}
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
func (x *CatalogLookupResponse) GetBrand() []*CatalogBrand {
|
|
385
|
+
if x != nil {
|
|
386
|
+
return x.Brand
|
|
387
|
+
}
|
|
388
|
+
return nil
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
func (x *CatalogLookupResponse) GetModel() []*CatalogModel {
|
|
392
|
+
if x != nil {
|
|
393
|
+
return x.Model
|
|
394
|
+
}
|
|
395
|
+
return nil
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
func (x *CatalogLookupResponse) GetOs() []*CatalogOs {
|
|
399
|
+
if x != nil {
|
|
400
|
+
return x.Os
|
|
401
|
+
}
|
|
402
|
+
return nil
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
func (x *CatalogLookupResponse) GetSw() []*CatalogSoftware {
|
|
406
|
+
if x != nil {
|
|
407
|
+
return x.Sw
|
|
408
|
+
}
|
|
409
|
+
return nil
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
func (x *CatalogLookupResponse) GetMonitor() []*CatalogMonitor {
|
|
413
|
+
if x != nil {
|
|
414
|
+
return x.Monitor
|
|
415
|
+
}
|
|
416
|
+
return nil
|
|
417
|
+
}
|
|
418
|
+
|
|
253
419
|
type EntityPath struct {
|
|
254
420
|
state protoimpl.MessageState
|
|
255
421
|
sizeCache protoimpl.SizeCache
|
|
@@ -265,7 +431,7 @@ type EntityPath struct {
|
|
|
265
431
|
func (x *EntityPath) Reset() {
|
|
266
432
|
*x = EntityPath{}
|
|
267
433
|
if protoimpl.UnsafeEnabled {
|
|
268
|
-
mi := &file_outbound_proto_msgTypes[
|
|
434
|
+
mi := &file_outbound_proto_msgTypes[6]
|
|
269
435
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
270
436
|
ms.StoreMessageInfo(mi)
|
|
271
437
|
}
|
|
@@ -278,7 +444,7 @@ func (x *EntityPath) String() string {
|
|
|
278
444
|
func (*EntityPath) ProtoMessage() {}
|
|
279
445
|
|
|
280
446
|
func (x *EntityPath) ProtoReflect() protoreflect.Message {
|
|
281
|
-
mi := &file_outbound_proto_msgTypes[
|
|
447
|
+
mi := &file_outbound_proto_msgTypes[6]
|
|
282
448
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
283
449
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
284
450
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -291,7 +457,7 @@ func (x *EntityPath) ProtoReflect() protoreflect.Message {
|
|
|
291
457
|
|
|
292
458
|
// Deprecated: Use EntityPath.ProtoReflect.Descriptor instead.
|
|
293
459
|
func (*EntityPath) Descriptor() ([]byte, []int) {
|
|
294
|
-
return file_outbound_proto_rawDescGZIP(), []int{
|
|
460
|
+
return file_outbound_proto_rawDescGZIP(), []int{6}
|
|
295
461
|
}
|
|
296
462
|
|
|
297
463
|
func (x *EntityPath) GetSiteId() string {
|
|
@@ -342,7 +508,7 @@ type Entity struct {
|
|
|
342
508
|
func (x *Entity) Reset() {
|
|
343
509
|
*x = Entity{}
|
|
344
510
|
if protoimpl.UnsafeEnabled {
|
|
345
|
-
mi := &file_outbound_proto_msgTypes[
|
|
511
|
+
mi := &file_outbound_proto_msgTypes[7]
|
|
346
512
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
347
513
|
ms.StoreMessageInfo(mi)
|
|
348
514
|
}
|
|
@@ -355,7 +521,7 @@ func (x *Entity) String() string {
|
|
|
355
521
|
func (*Entity) ProtoMessage() {}
|
|
356
522
|
|
|
357
523
|
func (x *Entity) ProtoReflect() protoreflect.Message {
|
|
358
|
-
mi := &file_outbound_proto_msgTypes[
|
|
524
|
+
mi := &file_outbound_proto_msgTypes[7]
|
|
359
525
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
360
526
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
361
527
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -368,7 +534,7 @@ func (x *Entity) ProtoReflect() protoreflect.Message {
|
|
|
368
534
|
|
|
369
535
|
// Deprecated: Use Entity.ProtoReflect.Descriptor instead.
|
|
370
536
|
func (*Entity) Descriptor() ([]byte, []int) {
|
|
371
|
-
return file_outbound_proto_rawDescGZIP(), []int{
|
|
537
|
+
return file_outbound_proto_rawDescGZIP(), []int{7}
|
|
372
538
|
}
|
|
373
539
|
|
|
374
540
|
func (m *Entity) GetEntity() isEntity_Entity {
|
|
@@ -415,7 +581,7 @@ type Asset struct {
|
|
|
415
581
|
func (x *Asset) Reset() {
|
|
416
582
|
*x = Asset{}
|
|
417
583
|
if protoimpl.UnsafeEnabled {
|
|
418
|
-
mi := &file_outbound_proto_msgTypes[
|
|
584
|
+
mi := &file_outbound_proto_msgTypes[8]
|
|
419
585
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
420
586
|
ms.StoreMessageInfo(mi)
|
|
421
587
|
}
|
|
@@ -428,7 +594,7 @@ func (x *Asset) String() string {
|
|
|
428
594
|
func (*Asset) ProtoMessage() {}
|
|
429
595
|
|
|
430
596
|
func (x *Asset) ProtoReflect() protoreflect.Message {
|
|
431
|
-
mi := &file_outbound_proto_msgTypes[
|
|
597
|
+
mi := &file_outbound_proto_msgTypes[8]
|
|
432
598
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
433
599
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
434
600
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -441,7 +607,7 @@ func (x *Asset) ProtoReflect() protoreflect.Message {
|
|
|
441
607
|
|
|
442
608
|
// Deprecated: Use Asset.ProtoReflect.Descriptor instead.
|
|
443
609
|
func (*Asset) Descriptor() ([]byte, []int) {
|
|
444
|
-
return file_outbound_proto_rawDescGZIP(), []int{
|
|
610
|
+
return file_outbound_proto_rawDescGZIP(), []int{8}
|
|
445
611
|
}
|
|
446
612
|
|
|
447
613
|
func (x *Asset) GetId() *EntityPath {
|
|
@@ -533,7 +699,7 @@ type AssetType struct {
|
|
|
533
699
|
func (x *AssetType) Reset() {
|
|
534
700
|
*x = AssetType{}
|
|
535
701
|
if protoimpl.UnsafeEnabled {
|
|
536
|
-
mi := &file_outbound_proto_msgTypes[
|
|
702
|
+
mi := &file_outbound_proto_msgTypes[9]
|
|
537
703
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
538
704
|
ms.StoreMessageInfo(mi)
|
|
539
705
|
}
|
|
@@ -546,7 +712,7 @@ func (x *AssetType) String() string {
|
|
|
546
712
|
func (*AssetType) ProtoMessage() {}
|
|
547
713
|
|
|
548
714
|
func (x *AssetType) ProtoReflect() protoreflect.Message {
|
|
549
|
-
mi := &file_outbound_proto_msgTypes[
|
|
715
|
+
mi := &file_outbound_proto_msgTypes[9]
|
|
550
716
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
551
717
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
552
718
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -559,7 +725,7 @@ func (x *AssetType) ProtoReflect() protoreflect.Message {
|
|
|
559
725
|
|
|
560
726
|
// Deprecated: Use AssetType.ProtoReflect.Descriptor instead.
|
|
561
727
|
func (*AssetType) Descriptor() ([]byte, []int) {
|
|
562
|
-
return file_outbound_proto_rawDescGZIP(), []int{
|
|
728
|
+
return file_outbound_proto_rawDescGZIP(), []int{9}
|
|
563
729
|
}
|
|
564
730
|
|
|
565
731
|
func (x *AssetType) GetLsName() string {
|
|
@@ -603,7 +769,7 @@ type CoreFields struct {
|
|
|
603
769
|
func (x *CoreFields) Reset() {
|
|
604
770
|
*x = CoreFields{}
|
|
605
771
|
if protoimpl.UnsafeEnabled {
|
|
606
|
-
mi := &file_outbound_proto_msgTypes[
|
|
772
|
+
mi := &file_outbound_proto_msgTypes[10]
|
|
607
773
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
608
774
|
ms.StoreMessageInfo(mi)
|
|
609
775
|
}
|
|
@@ -616,7 +782,7 @@ func (x *CoreFields) String() string {
|
|
|
616
782
|
func (*CoreFields) ProtoMessage() {}
|
|
617
783
|
|
|
618
784
|
func (x *CoreFields) ProtoReflect() protoreflect.Message {
|
|
619
|
-
mi := &file_outbound_proto_msgTypes[
|
|
785
|
+
mi := &file_outbound_proto_msgTypes[10]
|
|
620
786
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
621
787
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
622
788
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -629,7 +795,7 @@ func (x *CoreFields) ProtoReflect() protoreflect.Message {
|
|
|
629
795
|
|
|
630
796
|
// Deprecated: Use CoreFields.ProtoReflect.Descriptor instead.
|
|
631
797
|
func (*CoreFields) Descriptor() ([]byte, []int) {
|
|
632
|
-
return file_outbound_proto_rawDescGZIP(), []int{
|
|
798
|
+
return file_outbound_proto_rawDescGZIP(), []int{10}
|
|
633
799
|
}
|
|
634
800
|
|
|
635
801
|
func (x *CoreFields) GetType() *AssetType {
|
|
@@ -693,28 +859,28 @@ type HardwareInfo struct {
|
|
|
693
859
|
sizeCache protoimpl.SizeCache
|
|
694
860
|
unknownFields protoimpl.UnknownFields
|
|
695
861
|
|
|
696
|
-
TypeId
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
Raw
|
|
862
|
+
TypeId *int64 `protobuf:"varint,1,opt,name=type_id,json=typeId,proto3,oneof" json:"type_id,omitempty"`
|
|
863
|
+
// catalog id of: CatalogBrand
|
|
864
|
+
MakeId *int64 `protobuf:"varint,2,opt,name=make_id,json=makeId,proto3,oneof" json:"make_id,omitempty"`
|
|
865
|
+
// catalog id of: CatalogModel
|
|
866
|
+
ModelId *int64 `protobuf:"varint,3,opt,name=model_id,json=modelId,proto3,oneof" json:"model_id,omitempty"`
|
|
867
|
+
// catalog id of: CatalogModel
|
|
868
|
+
FamilyId *int64 `protobuf:"varint,4,opt,name=family_id,json=familyId,proto3,oneof" json:"family_id,omitempty"`
|
|
869
|
+
IsFamily *bool `protobuf:"varint,6,opt,name=is_family,json=isFamily,proto3,oneof" json:"is_family,omitempty"`
|
|
870
|
+
Serial *string `protobuf:"bytes,7,opt,name=serial,proto3,oneof" json:"serial,omitempty"`
|
|
871
|
+
TypeName *string `protobuf:"bytes,10,opt,name=type_name,json=typeName,proto3,oneof" json:"type_name,omitempty"`
|
|
872
|
+
MakeName *string `protobuf:"bytes,11,opt,name=make_name,json=makeName,proto3,oneof" json:"make_name,omitempty"`
|
|
873
|
+
ModelName *string `protobuf:"bytes,12,opt,name=model_name,json=modelName,proto3,oneof" json:"model_name,omitempty"`
|
|
874
|
+
FamilyName *string `protobuf:"bytes,13,opt,name=family_name,json=familyName,proto3,oneof" json:"family_name,omitempty"`
|
|
875
|
+
Cpe *string `protobuf:"bytes,21,opt,name=cpe,proto3,oneof" json:"cpe,omitempty"`
|
|
876
|
+
Rank *int32 `protobuf:"varint,20,opt,name=rank,proto3,oneof" json:"rank,omitempty"`
|
|
877
|
+
Raw *RawHardwareInfo `protobuf:"bytes,24,opt,name=raw,proto3,oneof" json:"raw,omitempty"`
|
|
712
878
|
}
|
|
713
879
|
|
|
714
880
|
func (x *HardwareInfo) Reset() {
|
|
715
881
|
*x = HardwareInfo{}
|
|
716
882
|
if protoimpl.UnsafeEnabled {
|
|
717
|
-
mi := &file_outbound_proto_msgTypes[
|
|
883
|
+
mi := &file_outbound_proto_msgTypes[11]
|
|
718
884
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
719
885
|
ms.StoreMessageInfo(mi)
|
|
720
886
|
}
|
|
@@ -727,7 +893,7 @@ func (x *HardwareInfo) String() string {
|
|
|
727
893
|
func (*HardwareInfo) ProtoMessage() {}
|
|
728
894
|
|
|
729
895
|
func (x *HardwareInfo) ProtoReflect() protoreflect.Message {
|
|
730
|
-
mi := &file_outbound_proto_msgTypes[
|
|
896
|
+
mi := &file_outbound_proto_msgTypes[11]
|
|
731
897
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
732
898
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
733
899
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -740,7 +906,7 @@ func (x *HardwareInfo) ProtoReflect() protoreflect.Message {
|
|
|
740
906
|
|
|
741
907
|
// Deprecated: Use HardwareInfo.ProtoReflect.Descriptor instead.
|
|
742
908
|
func (*HardwareInfo) Descriptor() ([]byte, []int) {
|
|
743
|
-
return file_outbound_proto_rawDescGZIP(), []int{
|
|
909
|
+
return file_outbound_proto_rawDescGZIP(), []int{11}
|
|
744
910
|
}
|
|
745
911
|
|
|
746
912
|
func (x *HardwareInfo) GetTypeId() int64 {
|
|
@@ -827,27 +993,6 @@ func (x *HardwareInfo) GetRank() int32 {
|
|
|
827
993
|
return 0
|
|
828
994
|
}
|
|
829
995
|
|
|
830
|
-
func (x *HardwareInfo) GetCatalogBrand() *CatalogBrand {
|
|
831
|
-
if x != nil {
|
|
832
|
-
return x.CatalogBrand
|
|
833
|
-
}
|
|
834
|
-
return nil
|
|
835
|
-
}
|
|
836
|
-
|
|
837
|
-
func (x *HardwareInfo) GetCatalogModel() *CatalogModel {
|
|
838
|
-
if x != nil {
|
|
839
|
-
return x.CatalogModel
|
|
840
|
-
}
|
|
841
|
-
return nil
|
|
842
|
-
}
|
|
843
|
-
|
|
844
|
-
func (x *HardwareInfo) GetCatalogFamily() *CatalogModel {
|
|
845
|
-
if x != nil {
|
|
846
|
-
return x.CatalogFamily
|
|
847
|
-
}
|
|
848
|
-
return nil
|
|
849
|
-
}
|
|
850
|
-
|
|
851
996
|
func (x *HardwareInfo) GetRaw() *RawHardwareInfo {
|
|
852
997
|
if x != nil {
|
|
853
998
|
return x.Raw
|
|
@@ -869,7 +1014,7 @@ type RawHardwareInfo struct {
|
|
|
869
1014
|
func (x *RawHardwareInfo) Reset() {
|
|
870
1015
|
*x = RawHardwareInfo{}
|
|
871
1016
|
if protoimpl.UnsafeEnabled {
|
|
872
|
-
mi := &file_outbound_proto_msgTypes[
|
|
1017
|
+
mi := &file_outbound_proto_msgTypes[12]
|
|
873
1018
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
874
1019
|
ms.StoreMessageInfo(mi)
|
|
875
1020
|
}
|
|
@@ -882,7 +1027,7 @@ func (x *RawHardwareInfo) String() string {
|
|
|
882
1027
|
func (*RawHardwareInfo) ProtoMessage() {}
|
|
883
1028
|
|
|
884
1029
|
func (x *RawHardwareInfo) ProtoReflect() protoreflect.Message {
|
|
885
|
-
mi := &file_outbound_proto_msgTypes[
|
|
1030
|
+
mi := &file_outbound_proto_msgTypes[12]
|
|
886
1031
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
887
1032
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
888
1033
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -895,7 +1040,7 @@ func (x *RawHardwareInfo) ProtoReflect() protoreflect.Message {
|
|
|
895
1040
|
|
|
896
1041
|
// Deprecated: Use RawHardwareInfo.ProtoReflect.Descriptor instead.
|
|
897
1042
|
func (*RawHardwareInfo) Descriptor() ([]byte, []int) {
|
|
898
|
-
return file_outbound_proto_rawDescGZIP(), []int{
|
|
1043
|
+
return file_outbound_proto_rawDescGZIP(), []int{12}
|
|
899
1044
|
}
|
|
900
1045
|
|
|
901
1046
|
func (x *RawHardwareInfo) GetArchitecture() string {
|
|
@@ -931,17 +1076,17 @@ type OperatingSystemInfo struct {
|
|
|
931
1076
|
sizeCache protoimpl.SizeCache
|
|
932
1077
|
unknownFields protoimpl.UnknownFields
|
|
933
1078
|
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
1079
|
+
// catalog id of: CatalogOs
|
|
1080
|
+
Id *int64 `protobuf:"varint,1,opt,name=id,proto3,oneof" json:"id,omitempty"`
|
|
1081
|
+
// catalog id of: CatalogBrand
|
|
1082
|
+
MakeId *int64 `protobuf:"varint,11,opt,name=make_id,json=makeId,proto3,oneof" json:"make_id,omitempty"`
|
|
1083
|
+
Name *string `protobuf:"bytes,2,opt,name=name,proto3,oneof" json:"name,omitempty"`
|
|
1084
|
+
Version *string `protobuf:"bytes,3,opt,name=version,proto3,oneof" json:"version,omitempty"`
|
|
1085
|
+
Build *string `protobuf:"bytes,4,opt,name=build,proto3,oneof" json:"build,omitempty"`
|
|
1086
|
+
FwVersion *string `protobuf:"bytes,5,opt,name=fw_version,json=fwVersion,proto3,oneof" json:"fw_version,omitempty"`
|
|
1087
|
+
Cpe *string `protobuf:"bytes,6,opt,name=cpe,proto3,oneof" json:"cpe,omitempty"`
|
|
1088
|
+
FwCpe *string `protobuf:"bytes,7,opt,name=fw_cpe,json=fwCpe,proto3,oneof" json:"fw_cpe,omitempty"`
|
|
1089
|
+
Rank *int32 `protobuf:"varint,8,opt,name=rank,proto3,oneof" json:"rank,omitempty"`
|
|
945
1090
|
// Types that are assignable to Raw:
|
|
946
1091
|
// *OperatingSystemInfo_Windows
|
|
947
1092
|
Raw isOperatingSystemInfo_Raw `protobuf_oneof:"raw"`
|
|
@@ -950,7 +1095,7 @@ type OperatingSystemInfo struct {
|
|
|
950
1095
|
func (x *OperatingSystemInfo) Reset() {
|
|
951
1096
|
*x = OperatingSystemInfo{}
|
|
952
1097
|
if protoimpl.UnsafeEnabled {
|
|
953
|
-
mi := &file_outbound_proto_msgTypes[
|
|
1098
|
+
mi := &file_outbound_proto_msgTypes[13]
|
|
954
1099
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
955
1100
|
ms.StoreMessageInfo(mi)
|
|
956
1101
|
}
|
|
@@ -963,7 +1108,7 @@ func (x *OperatingSystemInfo) String() string {
|
|
|
963
1108
|
func (*OperatingSystemInfo) ProtoMessage() {}
|
|
964
1109
|
|
|
965
1110
|
func (x *OperatingSystemInfo) ProtoReflect() protoreflect.Message {
|
|
966
|
-
mi := &file_outbound_proto_msgTypes[
|
|
1111
|
+
mi := &file_outbound_proto_msgTypes[13]
|
|
967
1112
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
968
1113
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
969
1114
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -976,7 +1121,7 @@ func (x *OperatingSystemInfo) ProtoReflect() protoreflect.Message {
|
|
|
976
1121
|
|
|
977
1122
|
// Deprecated: Use OperatingSystemInfo.ProtoReflect.Descriptor instead.
|
|
978
1123
|
func (*OperatingSystemInfo) Descriptor() ([]byte, []int) {
|
|
979
|
-
return file_outbound_proto_rawDescGZIP(), []int{
|
|
1124
|
+
return file_outbound_proto_rawDescGZIP(), []int{13}
|
|
980
1125
|
}
|
|
981
1126
|
|
|
982
1127
|
func (x *OperatingSystemInfo) GetId() int64 {
|
|
@@ -1042,20 +1187,6 @@ func (x *OperatingSystemInfo) GetRank() int32 {
|
|
|
1042
1187
|
return 0
|
|
1043
1188
|
}
|
|
1044
1189
|
|
|
1045
|
-
func (x *OperatingSystemInfo) GetCatalogBrand() *CatalogBrand {
|
|
1046
|
-
if x != nil {
|
|
1047
|
-
return x.CatalogBrand
|
|
1048
|
-
}
|
|
1049
|
-
return nil
|
|
1050
|
-
}
|
|
1051
|
-
|
|
1052
|
-
func (x *OperatingSystemInfo) GetCatalogOs() *CatalogOs {
|
|
1053
|
-
if x != nil {
|
|
1054
|
-
return x.CatalogOs
|
|
1055
|
-
}
|
|
1056
|
-
return nil
|
|
1057
|
-
}
|
|
1058
|
-
|
|
1059
1190
|
func (m *OperatingSystemInfo) GetRaw() isOperatingSystemInfo_Raw {
|
|
1060
1191
|
if m != nil {
|
|
1061
1192
|
return m.Raw
|
|
@@ -1100,7 +1231,7 @@ type WindowsRawOperatingSystemInfo struct {
|
|
|
1100
1231
|
func (x *WindowsRawOperatingSystemInfo) Reset() {
|
|
1101
1232
|
*x = WindowsRawOperatingSystemInfo{}
|
|
1102
1233
|
if protoimpl.UnsafeEnabled {
|
|
1103
|
-
mi := &file_outbound_proto_msgTypes[
|
|
1234
|
+
mi := &file_outbound_proto_msgTypes[14]
|
|
1104
1235
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1105
1236
|
ms.StoreMessageInfo(mi)
|
|
1106
1237
|
}
|
|
@@ -1113,7 +1244,7 @@ func (x *WindowsRawOperatingSystemInfo) String() string {
|
|
|
1113
1244
|
func (*WindowsRawOperatingSystemInfo) ProtoMessage() {}
|
|
1114
1245
|
|
|
1115
1246
|
func (x *WindowsRawOperatingSystemInfo) ProtoReflect() protoreflect.Message {
|
|
1116
|
-
mi := &file_outbound_proto_msgTypes[
|
|
1247
|
+
mi := &file_outbound_proto_msgTypes[14]
|
|
1117
1248
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
1118
1249
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1119
1250
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1126,7 +1257,7 @@ func (x *WindowsRawOperatingSystemInfo) ProtoReflect() protoreflect.Message {
|
|
|
1126
1257
|
|
|
1127
1258
|
// Deprecated: Use WindowsRawOperatingSystemInfo.ProtoReflect.Descriptor instead.
|
|
1128
1259
|
func (*WindowsRawOperatingSystemInfo) Descriptor() ([]byte, []int) {
|
|
1129
|
-
return file_outbound_proto_rawDescGZIP(), []int{
|
|
1260
|
+
return file_outbound_proto_rawDescGZIP(), []int{14}
|
|
1130
1261
|
}
|
|
1131
1262
|
|
|
1132
1263
|
func (x *WindowsRawOperatingSystemInfo) GetVersion() string {
|
|
@@ -1212,7 +1343,7 @@ type MonitorInventory struct {
|
|
|
1212
1343
|
func (x *MonitorInventory) Reset() {
|
|
1213
1344
|
*x = MonitorInventory{}
|
|
1214
1345
|
if protoimpl.UnsafeEnabled {
|
|
1215
|
-
mi := &file_outbound_proto_msgTypes[
|
|
1346
|
+
mi := &file_outbound_proto_msgTypes[15]
|
|
1216
1347
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1217
1348
|
ms.StoreMessageInfo(mi)
|
|
1218
1349
|
}
|
|
@@ -1225,7 +1356,7 @@ func (x *MonitorInventory) String() string {
|
|
|
1225
1356
|
func (*MonitorInventory) ProtoMessage() {}
|
|
1226
1357
|
|
|
1227
1358
|
func (x *MonitorInventory) ProtoReflect() protoreflect.Message {
|
|
1228
|
-
mi := &file_outbound_proto_msgTypes[
|
|
1359
|
+
mi := &file_outbound_proto_msgTypes[15]
|
|
1229
1360
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
1230
1361
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1231
1362
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1238,7 +1369,7 @@ func (x *MonitorInventory) ProtoReflect() protoreflect.Message {
|
|
|
1238
1369
|
|
|
1239
1370
|
// Deprecated: Use MonitorInventory.ProtoReflect.Descriptor instead.
|
|
1240
1371
|
func (*MonitorInventory) Descriptor() ([]byte, []int) {
|
|
1241
|
-
return file_outbound_proto_rawDescGZIP(), []int{
|
|
1372
|
+
return file_outbound_proto_rawDescGZIP(), []int{15}
|
|
1242
1373
|
}
|
|
1243
1374
|
|
|
1244
1375
|
func (x *MonitorInventory) GetTimestamp() *timestamppb.Timestamp {
|
|
@@ -1261,11 +1392,14 @@ type Monitor struct {
|
|
|
1261
1392
|
sizeCache protoimpl.SizeCache
|
|
1262
1393
|
unknownFields protoimpl.UnknownFields
|
|
1263
1394
|
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1395
|
+
// catalog id of: CatalogMonitor
|
|
1396
|
+
Id *int64 `protobuf:"varint,1,opt,name=id,proto3,oneof" json:"id,omitempty"`
|
|
1397
|
+
// catalog id of: CatalogBrand
|
|
1398
|
+
MakeId *int64 `protobuf:"varint,2,opt,name=make_id,json=makeId,proto3,oneof" json:"make_id,omitempty"`
|
|
1399
|
+
MakeName string `protobuf:"bytes,3,opt,name=make_name,json=makeName,proto3" json:"make_name,omitempty"`
|
|
1400
|
+
ModelName string `protobuf:"bytes,4,opt,name=model_name,json=modelName,proto3" json:"model_name,omitempty"`
|
|
1401
|
+
SerialNumber *string `protobuf:"bytes,5,opt,name=serial_number,json=serialNumber,proto3,oneof" json:"serial_number,omitempty"`
|
|
1402
|
+
ManufacturerDate *timestamppb.Timestamp `protobuf:"bytes,6,opt,name=manufacturer_date,json=manufacturerDate,proto3" json:"manufacturer_date,omitempty"`
|
|
1269
1403
|
// Types that are assignable to Raw:
|
|
1270
1404
|
// *Monitor_Windows
|
|
1271
1405
|
Raw isMonitor_Raw `protobuf_oneof:"raw"`
|
|
@@ -1274,7 +1408,7 @@ type Monitor struct {
|
|
|
1274
1408
|
func (x *Monitor) Reset() {
|
|
1275
1409
|
*x = Monitor{}
|
|
1276
1410
|
if protoimpl.UnsafeEnabled {
|
|
1277
|
-
mi := &file_outbound_proto_msgTypes[
|
|
1411
|
+
mi := &file_outbound_proto_msgTypes[16]
|
|
1278
1412
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1279
1413
|
ms.StoreMessageInfo(mi)
|
|
1280
1414
|
}
|
|
@@ -1287,7 +1421,7 @@ func (x *Monitor) String() string {
|
|
|
1287
1421
|
func (*Monitor) ProtoMessage() {}
|
|
1288
1422
|
|
|
1289
1423
|
func (x *Monitor) ProtoReflect() protoreflect.Message {
|
|
1290
|
-
mi := &file_outbound_proto_msgTypes[
|
|
1424
|
+
mi := &file_outbound_proto_msgTypes[16]
|
|
1291
1425
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
1292
1426
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1293
1427
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1300,40 +1434,47 @@ func (x *Monitor) ProtoReflect() protoreflect.Message {
|
|
|
1300
1434
|
|
|
1301
1435
|
// Deprecated: Use Monitor.ProtoReflect.Descriptor instead.
|
|
1302
1436
|
func (*Monitor) Descriptor() ([]byte, []int) {
|
|
1303
|
-
return file_outbound_proto_rawDescGZIP(), []int{
|
|
1437
|
+
return file_outbound_proto_rawDescGZIP(), []int{16}
|
|
1304
1438
|
}
|
|
1305
1439
|
|
|
1306
|
-
func (x *Monitor)
|
|
1307
|
-
if x != nil {
|
|
1308
|
-
return x.
|
|
1440
|
+
func (x *Monitor) GetId() int64 {
|
|
1441
|
+
if x != nil && x.Id != nil {
|
|
1442
|
+
return *x.Id
|
|
1309
1443
|
}
|
|
1310
|
-
return
|
|
1444
|
+
return 0
|
|
1311
1445
|
}
|
|
1312
1446
|
|
|
1313
|
-
func (x *Monitor)
|
|
1314
|
-
if x != nil && x.
|
|
1315
|
-
return *x.
|
|
1447
|
+
func (x *Monitor) GetMakeId() int64 {
|
|
1448
|
+
if x != nil && x.MakeId != nil {
|
|
1449
|
+
return *x.MakeId
|
|
1316
1450
|
}
|
|
1317
|
-
return
|
|
1451
|
+
return 0
|
|
1318
1452
|
}
|
|
1319
1453
|
|
|
1320
|
-
func (x *Monitor)
|
|
1454
|
+
func (x *Monitor) GetMakeName() string {
|
|
1321
1455
|
if x != nil {
|
|
1322
|
-
return x.
|
|
1456
|
+
return x.MakeName
|
|
1323
1457
|
}
|
|
1324
|
-
return
|
|
1458
|
+
return ""
|
|
1325
1459
|
}
|
|
1326
1460
|
|
|
1327
|
-
func (x *Monitor)
|
|
1461
|
+
func (x *Monitor) GetModelName() string {
|
|
1328
1462
|
if x != nil {
|
|
1329
|
-
return x.
|
|
1463
|
+
return x.ModelName
|
|
1330
1464
|
}
|
|
1331
|
-
return
|
|
1465
|
+
return ""
|
|
1332
1466
|
}
|
|
1333
1467
|
|
|
1334
|
-
func (x *Monitor)
|
|
1468
|
+
func (x *Monitor) GetSerialNumber() string {
|
|
1469
|
+
if x != nil && x.SerialNumber != nil {
|
|
1470
|
+
return *x.SerialNumber
|
|
1471
|
+
}
|
|
1472
|
+
return ""
|
|
1473
|
+
}
|
|
1474
|
+
|
|
1475
|
+
func (x *Monitor) GetManufacturerDate() *timestamppb.Timestamp {
|
|
1335
1476
|
if x != nil {
|
|
1336
|
-
return x.
|
|
1477
|
+
return x.ManufacturerDate
|
|
1337
1478
|
}
|
|
1338
1479
|
return nil
|
|
1339
1480
|
}
|
|
@@ -1380,7 +1521,7 @@ type WindowsRawMonitorInfo struct {
|
|
|
1380
1521
|
func (x *WindowsRawMonitorInfo) Reset() {
|
|
1381
1522
|
*x = WindowsRawMonitorInfo{}
|
|
1382
1523
|
if protoimpl.UnsafeEnabled {
|
|
1383
|
-
mi := &file_outbound_proto_msgTypes[
|
|
1524
|
+
mi := &file_outbound_proto_msgTypes[17]
|
|
1384
1525
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1385
1526
|
ms.StoreMessageInfo(mi)
|
|
1386
1527
|
}
|
|
@@ -1393,7 +1534,7 @@ func (x *WindowsRawMonitorInfo) String() string {
|
|
|
1393
1534
|
func (*WindowsRawMonitorInfo) ProtoMessage() {}
|
|
1394
1535
|
|
|
1395
1536
|
func (x *WindowsRawMonitorInfo) ProtoReflect() protoreflect.Message {
|
|
1396
|
-
mi := &file_outbound_proto_msgTypes[
|
|
1537
|
+
mi := &file_outbound_proto_msgTypes[17]
|
|
1397
1538
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
1398
1539
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1399
1540
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1406,7 +1547,7 @@ func (x *WindowsRawMonitorInfo) ProtoReflect() protoreflect.Message {
|
|
|
1406
1547
|
|
|
1407
1548
|
// Deprecated: Use WindowsRawMonitorInfo.ProtoReflect.Descriptor instead.
|
|
1408
1549
|
func (*WindowsRawMonitorInfo) Descriptor() ([]byte, []int) {
|
|
1409
|
-
return file_outbound_proto_rawDescGZIP(), []int{
|
|
1550
|
+
return file_outbound_proto_rawDescGZIP(), []int{17}
|
|
1410
1551
|
}
|
|
1411
1552
|
|
|
1412
1553
|
func (x *WindowsRawMonitorInfo) GetModel() string {
|
|
@@ -1478,7 +1619,7 @@ type SoftwareInventory struct {
|
|
|
1478
1619
|
func (x *SoftwareInventory) Reset() {
|
|
1479
1620
|
*x = SoftwareInventory{}
|
|
1480
1621
|
if protoimpl.UnsafeEnabled {
|
|
1481
|
-
mi := &file_outbound_proto_msgTypes[
|
|
1622
|
+
mi := &file_outbound_proto_msgTypes[18]
|
|
1482
1623
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1483
1624
|
ms.StoreMessageInfo(mi)
|
|
1484
1625
|
}
|
|
@@ -1491,7 +1632,7 @@ func (x *SoftwareInventory) String() string {
|
|
|
1491
1632
|
func (*SoftwareInventory) ProtoMessage() {}
|
|
1492
1633
|
|
|
1493
1634
|
func (x *SoftwareInventory) ProtoReflect() protoreflect.Message {
|
|
1494
|
-
mi := &file_outbound_proto_msgTypes[
|
|
1635
|
+
mi := &file_outbound_proto_msgTypes[18]
|
|
1495
1636
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
1496
1637
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1497
1638
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1504,7 +1645,7 @@ func (x *SoftwareInventory) ProtoReflect() protoreflect.Message {
|
|
|
1504
1645
|
|
|
1505
1646
|
// Deprecated: Use SoftwareInventory.ProtoReflect.Descriptor instead.
|
|
1506
1647
|
func (*SoftwareInventory) Descriptor() ([]byte, []int) {
|
|
1507
|
-
return file_outbound_proto_rawDescGZIP(), []int{
|
|
1648
|
+
return file_outbound_proto_rawDescGZIP(), []int{18}
|
|
1508
1649
|
}
|
|
1509
1650
|
|
|
1510
1651
|
func (x *SoftwareInventory) GetTimestamp() *timestamppb.Timestamp {
|
|
@@ -1527,35 +1668,35 @@ type Software struct {
|
|
|
1527
1668
|
sizeCache protoimpl.SizeCache
|
|
1528
1669
|
unknownFields protoimpl.UnknownFields
|
|
1529
1670
|
|
|
1530
|
-
Rank
|
|
1531
|
-
TypeId
|
|
1532
|
-
CatId
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
Raw
|
|
1551
|
-
RawHash
|
|
1552
|
-
NreHash
|
|
1671
|
+
Rank *int32 `protobuf:"varint,1,opt,name=rank,proto3,oneof" json:"rank,omitempty"`
|
|
1672
|
+
TypeId *int64 `protobuf:"varint,2,opt,name=type_id,json=typeId,proto3,oneof" json:"type_id,omitempty"`
|
|
1673
|
+
CatId *int64 `protobuf:"varint,3,opt,name=cat_id,json=catId,proto3,oneof" json:"cat_id,omitempty"`
|
|
1674
|
+
// catalog id of: CatalogBrand
|
|
1675
|
+
MakeId *int64 `protobuf:"varint,4,opt,name=make_id,json=makeId,proto3,oneof" json:"make_id,omitempty"`
|
|
1676
|
+
// catalog id of: CatalogSoftware
|
|
1677
|
+
SwId *int64 `protobuf:"varint,5,opt,name=sw_id,json=swId,proto3,oneof" json:"sw_id,omitempty"`
|
|
1678
|
+
// catalog id of: CatalogSoftware
|
|
1679
|
+
ParentId *int64 `protobuf:"varint,6,opt,name=parent_id,json=parentId,proto3,oneof" json:"parent_id,omitempty"`
|
|
1680
|
+
TypeName *string `protobuf:"bytes,7,opt,name=type_name,json=typeName,proto3,oneof" json:"type_name,omitempty"`
|
|
1681
|
+
CatName *string `protobuf:"bytes,8,opt,name=cat_name,json=catName,proto3,oneof" json:"cat_name,omitempty"`
|
|
1682
|
+
MakeName *string `protobuf:"bytes,9,opt,name=make_name,json=makeName,proto3,oneof" json:"make_name,omitempty"`
|
|
1683
|
+
Name *string `protobuf:"bytes,10,opt,name=name,proto3,oneof" json:"name,omitempty"`
|
|
1684
|
+
Version *string `protobuf:"bytes,11,opt,name=version,proto3,oneof" json:"version,omitempty"`
|
|
1685
|
+
MarketVer *string `protobuf:"bytes,12,opt,name=market_ver,json=marketVer,proto3,oneof" json:"market_ver,omitempty"`
|
|
1686
|
+
Edition *string `protobuf:"bytes,13,opt,name=edition,proto3,oneof" json:"edition,omitempty"`
|
|
1687
|
+
Build *string `protobuf:"bytes,14,opt,name=build,proto3,oneof" json:"build,omitempty"`
|
|
1688
|
+
Arch *string `protobuf:"bytes,20,opt,name=arch,proto3,oneof" json:"arch,omitempty"`
|
|
1689
|
+
Lang *string `protobuf:"bytes,21,opt,name=lang,proto3,oneof" json:"lang,omitempty"`
|
|
1690
|
+
Cpe *string `protobuf:"bytes,15,opt,name=cpe,proto3,oneof" json:"cpe,omitempty"`
|
|
1691
|
+
Raw *RawSoftware `protobuf:"bytes,17,opt,name=raw,proto3" json:"raw,omitempty"`
|
|
1692
|
+
RawHash *string `protobuf:"bytes,18,opt,name=raw_hash,json=rawHash,proto3,oneof" json:"raw_hash,omitempty"` // optional raw hash of SW
|
|
1693
|
+
NreHash *string `protobuf:"bytes,19,opt,name=nre_hash,json=nreHash,proto3,oneof" json:"nre_hash,omitempty"` // optional NRE hash of SW
|
|
1553
1694
|
}
|
|
1554
1695
|
|
|
1555
1696
|
func (x *Software) Reset() {
|
|
1556
1697
|
*x = Software{}
|
|
1557
1698
|
if protoimpl.UnsafeEnabled {
|
|
1558
|
-
mi := &file_outbound_proto_msgTypes[
|
|
1699
|
+
mi := &file_outbound_proto_msgTypes[19]
|
|
1559
1700
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1560
1701
|
ms.StoreMessageInfo(mi)
|
|
1561
1702
|
}
|
|
@@ -1568,7 +1709,7 @@ func (x *Software) String() string {
|
|
|
1568
1709
|
func (*Software) ProtoMessage() {}
|
|
1569
1710
|
|
|
1570
1711
|
func (x *Software) ProtoReflect() protoreflect.Message {
|
|
1571
|
-
mi := &file_outbound_proto_msgTypes[
|
|
1712
|
+
mi := &file_outbound_proto_msgTypes[19]
|
|
1572
1713
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
1573
1714
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1574
1715
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1581,7 +1722,7 @@ func (x *Software) ProtoReflect() protoreflect.Message {
|
|
|
1581
1722
|
|
|
1582
1723
|
// Deprecated: Use Software.ProtoReflect.Descriptor instead.
|
|
1583
1724
|
func (*Software) Descriptor() ([]byte, []int) {
|
|
1584
|
-
return file_outbound_proto_rawDescGZIP(), []int{
|
|
1725
|
+
return file_outbound_proto_rawDescGZIP(), []int{19}
|
|
1585
1726
|
}
|
|
1586
1727
|
|
|
1587
1728
|
func (x *Software) GetRank() int32 {
|
|
@@ -1703,27 +1844,6 @@ func (x *Software) GetCpe() string {
|
|
|
1703
1844
|
return ""
|
|
1704
1845
|
}
|
|
1705
1846
|
|
|
1706
|
-
func (x *Software) GetCatalogBrand() *CatalogBrand {
|
|
1707
|
-
if x != nil {
|
|
1708
|
-
return x.CatalogBrand
|
|
1709
|
-
}
|
|
1710
|
-
return nil
|
|
1711
|
-
}
|
|
1712
|
-
|
|
1713
|
-
func (x *Software) GetCatalogSoftware() *CatalogSoftware {
|
|
1714
|
-
if x != nil {
|
|
1715
|
-
return x.CatalogSoftware
|
|
1716
|
-
}
|
|
1717
|
-
return nil
|
|
1718
|
-
}
|
|
1719
|
-
|
|
1720
|
-
func (x *Software) GetCatalogLatest() *CatalogSoftware {
|
|
1721
|
-
if x != nil {
|
|
1722
|
-
return x.CatalogLatest
|
|
1723
|
-
}
|
|
1724
|
-
return nil
|
|
1725
|
-
}
|
|
1726
|
-
|
|
1727
1847
|
func (x *Software) GetRaw() *RawSoftware {
|
|
1728
1848
|
if x != nil {
|
|
1729
1849
|
return x.Raw
|
|
@@ -1766,7 +1886,7 @@ type RawSoftware struct {
|
|
|
1766
1886
|
func (x *RawSoftware) Reset() {
|
|
1767
1887
|
*x = RawSoftware{}
|
|
1768
1888
|
if protoimpl.UnsafeEnabled {
|
|
1769
|
-
mi := &file_outbound_proto_msgTypes[
|
|
1889
|
+
mi := &file_outbound_proto_msgTypes[20]
|
|
1770
1890
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1771
1891
|
ms.StoreMessageInfo(mi)
|
|
1772
1892
|
}
|
|
@@ -1779,7 +1899,7 @@ func (x *RawSoftware) String() string {
|
|
|
1779
1899
|
func (*RawSoftware) ProtoMessage() {}
|
|
1780
1900
|
|
|
1781
1901
|
func (x *RawSoftware) ProtoReflect() protoreflect.Message {
|
|
1782
|
-
mi := &file_outbound_proto_msgTypes[
|
|
1902
|
+
mi := &file_outbound_proto_msgTypes[20]
|
|
1783
1903
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
1784
1904
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1785
1905
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1792,7 +1912,7 @@ func (x *RawSoftware) ProtoReflect() protoreflect.Message {
|
|
|
1792
1912
|
|
|
1793
1913
|
// Deprecated: Use RawSoftware.ProtoReflect.Descriptor instead.
|
|
1794
1914
|
func (*RawSoftware) Descriptor() ([]byte, []int) {
|
|
1795
|
-
return file_outbound_proto_rawDescGZIP(), []int{
|
|
1915
|
+
return file_outbound_proto_rawDescGZIP(), []int{20}
|
|
1796
1916
|
}
|
|
1797
1917
|
|
|
1798
1918
|
func (x *RawSoftware) GetName() string {
|
|
@@ -1903,7 +2023,7 @@ type CatalogBrand struct {
|
|
|
1903
2023
|
func (x *CatalogBrand) Reset() {
|
|
1904
2024
|
*x = CatalogBrand{}
|
|
1905
2025
|
if protoimpl.UnsafeEnabled {
|
|
1906
|
-
mi := &file_outbound_proto_msgTypes[
|
|
2026
|
+
mi := &file_outbound_proto_msgTypes[21]
|
|
1907
2027
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1908
2028
|
ms.StoreMessageInfo(mi)
|
|
1909
2029
|
}
|
|
@@ -1916,7 +2036,7 @@ func (x *CatalogBrand) String() string {
|
|
|
1916
2036
|
func (*CatalogBrand) ProtoMessage() {}
|
|
1917
2037
|
|
|
1918
2038
|
func (x *CatalogBrand) ProtoReflect() protoreflect.Message {
|
|
1919
|
-
mi := &file_outbound_proto_msgTypes[
|
|
2039
|
+
mi := &file_outbound_proto_msgTypes[21]
|
|
1920
2040
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
1921
2041
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
1922
2042
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1929,7 +2049,7 @@ func (x *CatalogBrand) ProtoReflect() protoreflect.Message {
|
|
|
1929
2049
|
|
|
1930
2050
|
// Deprecated: Use CatalogBrand.ProtoReflect.Descriptor instead.
|
|
1931
2051
|
func (*CatalogBrand) Descriptor() ([]byte, []int) {
|
|
1932
|
-
return file_outbound_proto_rawDescGZIP(), []int{
|
|
2052
|
+
return file_outbound_proto_rawDescGZIP(), []int{21}
|
|
1933
2053
|
}
|
|
1934
2054
|
|
|
1935
2055
|
func (x *CatalogBrand) GetId() int64 {
|
|
@@ -2163,7 +2283,7 @@ type CatalogModel struct {
|
|
|
2163
2283
|
func (x *CatalogModel) Reset() {
|
|
2164
2284
|
*x = CatalogModel{}
|
|
2165
2285
|
if protoimpl.UnsafeEnabled {
|
|
2166
|
-
mi := &file_outbound_proto_msgTypes[
|
|
2286
|
+
mi := &file_outbound_proto_msgTypes[22]
|
|
2167
2287
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2168
2288
|
ms.StoreMessageInfo(mi)
|
|
2169
2289
|
}
|
|
@@ -2176,7 +2296,7 @@ func (x *CatalogModel) String() string {
|
|
|
2176
2296
|
func (*CatalogModel) ProtoMessage() {}
|
|
2177
2297
|
|
|
2178
2298
|
func (x *CatalogModel) ProtoReflect() protoreflect.Message {
|
|
2179
|
-
mi := &file_outbound_proto_msgTypes[
|
|
2299
|
+
mi := &file_outbound_proto_msgTypes[22]
|
|
2180
2300
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
2181
2301
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2182
2302
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2189,7 +2309,7 @@ func (x *CatalogModel) ProtoReflect() protoreflect.Message {
|
|
|
2189
2309
|
|
|
2190
2310
|
// Deprecated: Use CatalogModel.ProtoReflect.Descriptor instead.
|
|
2191
2311
|
func (*CatalogModel) Descriptor() ([]byte, []int) {
|
|
2192
|
-
return file_outbound_proto_rawDescGZIP(), []int{
|
|
2312
|
+
return file_outbound_proto_rawDescGZIP(), []int{22}
|
|
2193
2313
|
}
|
|
2194
2314
|
|
|
2195
2315
|
func (x *CatalogModel) GetId() int64 {
|
|
@@ -2402,7 +2522,7 @@ type CatalogOs struct {
|
|
|
2402
2522
|
func (x *CatalogOs) Reset() {
|
|
2403
2523
|
*x = CatalogOs{}
|
|
2404
2524
|
if protoimpl.UnsafeEnabled {
|
|
2405
|
-
mi := &file_outbound_proto_msgTypes[
|
|
2525
|
+
mi := &file_outbound_proto_msgTypes[23]
|
|
2406
2526
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2407
2527
|
ms.StoreMessageInfo(mi)
|
|
2408
2528
|
}
|
|
@@ -2415,7 +2535,7 @@ func (x *CatalogOs) String() string {
|
|
|
2415
2535
|
func (*CatalogOs) ProtoMessage() {}
|
|
2416
2536
|
|
|
2417
2537
|
func (x *CatalogOs) ProtoReflect() protoreflect.Message {
|
|
2418
|
-
mi := &file_outbound_proto_msgTypes[
|
|
2538
|
+
mi := &file_outbound_proto_msgTypes[23]
|
|
2419
2539
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
2420
2540
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2421
2541
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2428,7 +2548,7 @@ func (x *CatalogOs) ProtoReflect() protoreflect.Message {
|
|
|
2428
2548
|
|
|
2429
2549
|
// Deprecated: Use CatalogOs.ProtoReflect.Descriptor instead.
|
|
2430
2550
|
func (*CatalogOs) Descriptor() ([]byte, []int) {
|
|
2431
|
-
return file_outbound_proto_rawDescGZIP(), []int{
|
|
2551
|
+
return file_outbound_proto_rawDescGZIP(), []int{23}
|
|
2432
2552
|
}
|
|
2433
2553
|
|
|
2434
2554
|
func (x *CatalogOs) GetId() int64 {
|
|
@@ -2638,7 +2758,7 @@ type CatalogSoftware struct {
|
|
|
2638
2758
|
func (x *CatalogSoftware) Reset() {
|
|
2639
2759
|
*x = CatalogSoftware{}
|
|
2640
2760
|
if protoimpl.UnsafeEnabled {
|
|
2641
|
-
mi := &file_outbound_proto_msgTypes[
|
|
2761
|
+
mi := &file_outbound_proto_msgTypes[24]
|
|
2642
2762
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2643
2763
|
ms.StoreMessageInfo(mi)
|
|
2644
2764
|
}
|
|
@@ -2651,7 +2771,7 @@ func (x *CatalogSoftware) String() string {
|
|
|
2651
2771
|
func (*CatalogSoftware) ProtoMessage() {}
|
|
2652
2772
|
|
|
2653
2773
|
func (x *CatalogSoftware) ProtoReflect() protoreflect.Message {
|
|
2654
|
-
mi := &file_outbound_proto_msgTypes[
|
|
2774
|
+
mi := &file_outbound_proto_msgTypes[24]
|
|
2655
2775
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
2656
2776
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2657
2777
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2664,7 +2784,7 @@ func (x *CatalogSoftware) ProtoReflect() protoreflect.Message {
|
|
|
2664
2784
|
|
|
2665
2785
|
// Deprecated: Use CatalogSoftware.ProtoReflect.Descriptor instead.
|
|
2666
2786
|
func (*CatalogSoftware) Descriptor() ([]byte, []int) {
|
|
2667
|
-
return file_outbound_proto_rawDescGZIP(), []int{
|
|
2787
|
+
return file_outbound_proto_rawDescGZIP(), []int{24}
|
|
2668
2788
|
}
|
|
2669
2789
|
|
|
2670
2790
|
func (x *CatalogSoftware) GetId() int64 {
|
|
@@ -2877,7 +2997,7 @@ type CatalogMonitor struct {
|
|
|
2877
2997
|
func (x *CatalogMonitor) Reset() {
|
|
2878
2998
|
*x = CatalogMonitor{}
|
|
2879
2999
|
if protoimpl.UnsafeEnabled {
|
|
2880
|
-
mi := &file_outbound_proto_msgTypes[
|
|
3000
|
+
mi := &file_outbound_proto_msgTypes[25]
|
|
2881
3001
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2882
3002
|
ms.StoreMessageInfo(mi)
|
|
2883
3003
|
}
|
|
@@ -2890,7 +3010,7 @@ func (x *CatalogMonitor) String() string {
|
|
|
2890
3010
|
func (*CatalogMonitor) ProtoMessage() {}
|
|
2891
3011
|
|
|
2892
3012
|
func (x *CatalogMonitor) ProtoReflect() protoreflect.Message {
|
|
2893
|
-
mi := &file_outbound_proto_msgTypes[
|
|
3013
|
+
mi := &file_outbound_proto_msgTypes[25]
|
|
2894
3014
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
2895
3015
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
2896
3016
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2903,7 +3023,7 @@ func (x *CatalogMonitor) ProtoReflect() protoreflect.Message {
|
|
|
2903
3023
|
|
|
2904
3024
|
// Deprecated: Use CatalogMonitor.ProtoReflect.Descriptor instead.
|
|
2905
3025
|
func (*CatalogMonitor) Descriptor() ([]byte, []int) {
|
|
2906
|
-
return file_outbound_proto_rawDescGZIP(), []int{
|
|
3026
|
+
return file_outbound_proto_rawDescGZIP(), []int{25}
|
|
2907
3027
|
}
|
|
2908
3028
|
|
|
2909
3029
|
func (x *CatalogMonitor) GetId() int64 {
|
|
@@ -3273,518 +3393,675 @@ var file_outbound_proto_rawDesc = []byte{
|
|
|
3273
3393
|
0x64, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61,
|
|
3274
3394
|
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62,
|
|
3275
3395
|
0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x07,
|
|
3276
|
-
0x72, 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x22,
|
|
3277
|
-
|
|
3278
|
-
|
|
3279
|
-
|
|
3280
|
-
|
|
3281
|
-
|
|
3282
|
-
|
|
3283
|
-
|
|
3284
|
-
|
|
3285
|
-
|
|
3286
|
-
|
|
3287
|
-
|
|
3288
|
-
|
|
3289
|
-
|
|
3290
|
-
|
|
3291
|
-
|
|
3292
|
-
|
|
3293
|
-
0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
3294
|
-
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e,
|
|
3295
|
-
0x64, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x48, 0x00, 0x52, 0x05, 0x61, 0x73,
|
|
3296
|
-
0x73, 0x65, 0x74, 0x42, 0x08, 0x0a, 0x06, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x22, 0x88, 0x06,
|
|
3297
|
-
0x0a, 0x05, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x39, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20,
|
|
3298
|
-
0x01, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
3299
|
-
0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64,
|
|
3300
|
-
0x2e, 0x76, 0x31, 0x2e, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x50, 0x61, 0x74, 0x68, 0x52, 0x02,
|
|
3301
|
-
0x69, 0x64, 0x12, 0x3b, 0x0a, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x73, 0x79, 0x6e, 0x63, 0x65,
|
|
3302
|
-
0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
|
|
3303
|
-
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74,
|
|
3304
|
-
0x61, 0x6d, 0x70, 0x52, 0x0a, 0x6c, 0x61, 0x73, 0x74, 0x53, 0x79, 0x6e, 0x63, 0x65, 0x64, 0x12,
|
|
3305
|
-
0x39, 0x0a, 0x0a, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x73, 0x65, 0x65, 0x6e, 0x18, 0x03, 0x20,
|
|
3306
|
-
0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
|
|
3307
|
-
0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52,
|
|
3308
|
-
0x09, 0x66, 0x69, 0x72, 0x73, 0x74, 0x53, 0x65, 0x65, 0x6e, 0x12, 0x3d, 0x0a, 0x0c, 0x6c, 0x61,
|
|
3309
|
-
0x73, 0x74, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b,
|
|
3310
|
-
0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
|
|
3311
|
-
0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0b, 0x6c, 0x61,
|
|
3312
|
-
0x73, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x12, 0x3f, 0x0a, 0x0d, 0x6c, 0x61, 0x73,
|
|
3313
|
-
0x74, 0x5f, 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x65, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b,
|
|
3314
|
-
0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
|
|
3315
|
-
0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0c, 0x6c, 0x61,
|
|
3316
|
-
0x73, 0x74, 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x65, 0x64, 0x12, 0x3d, 0x0a, 0x04, 0x63, 0x6f,
|
|
3317
|
-
0x72, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c,
|
|
3318
|
-
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74,
|
|
3319
|
-
0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x6f, 0x72, 0x65, 0x46, 0x69, 0x65,
|
|
3320
|
-
0x6c, 0x64, 0x73, 0x52, 0x04, 0x63, 0x6f, 0x72, 0x65, 0x12, 0x40, 0x0a, 0x02, 0x68, 0x77, 0x18,
|
|
3321
|
-
0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
3322
|
-
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75,
|
|
3323
|
-
0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x48, 0x61, 0x72, 0x64, 0x77, 0x61, 0x72, 0x65, 0x49, 0x6e,
|
|
3324
|
-
0x66, 0x6f, 0x48, 0x00, 0x52, 0x02, 0x68, 0x77, 0x88, 0x01, 0x01, 0x12, 0x47, 0x0a, 0x02, 0x6f,
|
|
3325
|
-
0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61,
|
|
3326
|
-
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62,
|
|
3327
|
-
0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e,
|
|
3328
|
-
0x67, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x01, 0x52, 0x02, 0x6f,
|
|
3329
|
-
0x73, 0x88, 0x01, 0x01, 0x12, 0x64, 0x0a, 0x12, 0x73, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65,
|
|
3330
|
-
0x5f, 0x69, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b,
|
|
3331
|
-
0x32, 0x30, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
3332
|
-
0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31,
|
|
3333
|
-
0x2e, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x49, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f,
|
|
3334
|
-
0x72, 0x79, 0x48, 0x02, 0x52, 0x11, 0x73, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x49, 0x6e,
|
|
3335
|
-
0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x88, 0x01, 0x01, 0x12, 0x61, 0x0a, 0x11, 0x6d, 0x6f,
|
|
3336
|
-
0x6e, 0x69, 0x74, 0x6f, 0x72, 0x5f, 0x69, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x18,
|
|
3337
|
-
0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
3338
|
-
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75,
|
|
3339
|
-
0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x49, 0x6e, 0x76,
|
|
3340
|
-
0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x48, 0x03, 0x52, 0x10, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f,
|
|
3341
|
-
0x72, 0x49, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x88, 0x01, 0x01, 0x42, 0x05, 0x0a,
|
|
3342
|
-
0x03, 0x5f, 0x68, 0x77, 0x42, 0x05, 0x0a, 0x03, 0x5f, 0x6f, 0x73, 0x42, 0x15, 0x0a, 0x13, 0x5f,
|
|
3343
|
-
0x73, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x5f, 0x69, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f,
|
|
3344
|
-
0x72, 0x79, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x5f, 0x69,
|
|
3345
|
-
0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x22, 0x69, 0x0a, 0x09, 0x41, 0x73, 0x73, 0x65,
|
|
3346
|
-
0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x17, 0x0a, 0x07, 0x6c, 0x73, 0x5f, 0x6e, 0x61, 0x6d, 0x65,
|
|
3347
|
-
0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6c, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x13,
|
|
3348
|
-
0x0a, 0x05, 0x6c, 0x73, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x6c,
|
|
3349
|
-
0x73, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x09, 0x66, 0x69, 0x6e, 0x67, 0x5f, 0x74, 0x79, 0x70, 0x65,
|
|
3350
|
-
0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x08, 0x66, 0x69, 0x6e, 0x67, 0x54, 0x79,
|
|
3351
|
-
0x70, 0x65, 0x88, 0x01, 0x01, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x66, 0x69, 0x6e, 0x67, 0x5f, 0x74,
|
|
3352
|
-
0x79, 0x70, 0x65, 0x22, 0xe3, 0x02, 0x0a, 0x0a, 0x43, 0x6f, 0x72, 0x65, 0x46, 0x69, 0x65, 0x6c,
|
|
3353
|
-
0x64, 0x73, 0x12, 0x3c, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
|
|
3354
|
-
0x32, 0x28, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
3355
|
-
0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31,
|
|
3356
|
-
0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65,
|
|
3357
|
-
0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
|
|
3358
|
-
0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18, 0x03,
|
|
3359
|
-
0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x88, 0x01,
|
|
3360
|
-
0x01, 0x12, 0x22, 0x0a, 0x0a, 0x69, 0x70, 0x5f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18,
|
|
3361
|
-
0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x09, 0x69, 0x70, 0x41, 0x64, 0x64, 0x72, 0x65,
|
|
3362
|
-
0x73, 0x73, 0x88, 0x01, 0x01, 0x12, 0x1b, 0x0a, 0x06, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x18,
|
|
3363
|
-
0x05, 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x06, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x88,
|
|
3364
|
-
0x01, 0x01, 0x12, 0x15, 0x0a, 0x03, 0x6d, 0x61, 0x63, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x48,
|
|
3365
|
-
0x03, 0x52, 0x03, 0x6d, 0x61, 0x63, 0x88, 0x01, 0x01, 0x12, 0x22, 0x0a, 0x0a, 0x6d, 0x61, 0x63,
|
|
3366
|
-
0x5f, 0x76, 0x65, 0x6e, 0x64, 0x6f, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x48, 0x04, 0x52,
|
|
3367
|
-
0x09, 0x6d, 0x61, 0x63, 0x56, 0x65, 0x6e, 0x64, 0x6f, 0x72, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a,
|
|
3368
|
-
0x09, 0x73, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09,
|
|
3369
|
-
0x48, 0x05, 0x52, 0x08, 0x73, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x49, 0x64, 0x88, 0x01, 0x01, 0x42,
|
|
3370
|
-
0x09, 0x0a, 0x07, 0x5f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x69,
|
|
3371
|
-
0x70, 0x5f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x73, 0x65,
|
|
3372
|
-
0x72, 0x69, 0x61, 0x6c, 0x42, 0x06, 0x0a, 0x04, 0x5f, 0x6d, 0x61, 0x63, 0x42, 0x0d, 0x0a, 0x0b,
|
|
3373
|
-
0x5f, 0x6d, 0x61, 0x63, 0x5f, 0x76, 0x65, 0x6e, 0x64, 0x6f, 0x72, 0x42, 0x0c, 0x0a, 0x0a, 0x5f,
|
|
3374
|
-
0x73, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x5f, 0x69, 0x64, 0x22, 0xae, 0x07, 0x0a, 0x0c, 0x48, 0x61,
|
|
3375
|
-
0x72, 0x64, 0x77, 0x61, 0x72, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1c, 0x0a, 0x07, 0x74, 0x79,
|
|
3376
|
-
0x70, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x00, 0x52, 0x06, 0x74,
|
|
3377
|
-
0x79, 0x70, 0x65, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1c, 0x0a, 0x07, 0x6d, 0x61, 0x6b, 0x65,
|
|
3378
|
-
0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x48, 0x01, 0x52, 0x06, 0x6d, 0x61, 0x6b,
|
|
3379
|
-
0x65, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1e, 0x0a, 0x08, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f,
|
|
3380
|
-
0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x48, 0x02, 0x52, 0x07, 0x6d, 0x6f, 0x64, 0x65,
|
|
3381
|
-
0x6c, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79,
|
|
3382
|
-
0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x48, 0x03, 0x52, 0x08, 0x66, 0x61, 0x6d,
|
|
3383
|
-
0x69, 0x6c, 0x79, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x69, 0x73, 0x5f, 0x66,
|
|
3384
|
-
0x61, 0x6d, 0x69, 0x6c, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x48, 0x04, 0x52, 0x08, 0x69,
|
|
3385
|
-
0x73, 0x46, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x88, 0x01, 0x01, 0x12, 0x1b, 0x0a, 0x06, 0x73, 0x65,
|
|
3386
|
-
0x72, 0x69, 0x61, 0x6c, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x48, 0x05, 0x52, 0x06, 0x73, 0x65,
|
|
3387
|
-
0x72, 0x69, 0x61, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x74, 0x79, 0x70, 0x65, 0x5f,
|
|
3388
|
-
0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x48, 0x06, 0x52, 0x08, 0x74, 0x79,
|
|
3389
|
-
0x70, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x6d, 0x61, 0x6b,
|
|
3390
|
-
0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x48, 0x07, 0x52, 0x08,
|
|
3391
|
-
0x6d, 0x61, 0x6b, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x22, 0x0a, 0x0a, 0x6d,
|
|
3392
|
-
0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x48,
|
|
3393
|
-
0x08, 0x52, 0x09, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12,
|
|
3394
|
-
0x24, 0x0a, 0x0b, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0d,
|
|
3395
|
-
0x20, 0x01, 0x28, 0x09, 0x48, 0x09, 0x52, 0x0a, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x4e, 0x61,
|
|
3396
|
-
0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x15, 0x0a, 0x03, 0x63, 0x70, 0x65, 0x18, 0x15, 0x20, 0x01,
|
|
3397
|
-
0x28, 0x09, 0x48, 0x0a, 0x52, 0x03, 0x63, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x17, 0x0a, 0x04,
|
|
3398
|
-
0x72, 0x61, 0x6e, 0x6b, 0x18, 0x14, 0x20, 0x01, 0x28, 0x05, 0x48, 0x0b, 0x52, 0x04, 0x72, 0x61,
|
|
3399
|
-
0x6e, 0x6b, 0x88, 0x01, 0x01, 0x12, 0x55, 0x0a, 0x0d, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67,
|
|
3400
|
-
0x5f, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x18, 0x16, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x63,
|
|
3401
|
-
0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70,
|
|
3402
|
-
0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x61, 0x74,
|
|
3403
|
-
0x61, 0x6c, 0x6f, 0x67, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x48, 0x0c, 0x52, 0x0c, 0x63, 0x61, 0x74,
|
|
3404
|
-
0x61, 0x6c, 0x6f, 0x67, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x88, 0x01, 0x01, 0x12, 0x55, 0x0a, 0x0d,
|
|
3405
|
-
0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x18, 0x17, 0x20,
|
|
3406
|
-
0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
3407
|
-
0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64,
|
|
3408
|
-
0x2e, 0x76, 0x31, 0x2e, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x4d, 0x6f, 0x64, 0x65, 0x6c,
|
|
3409
|
-
0x48, 0x0d, 0x52, 0x0c, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x4d, 0x6f, 0x64, 0x65, 0x6c,
|
|
3410
|
-
0x88, 0x01, 0x01, 0x12, 0x57, 0x0a, 0x0e, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x5f, 0x66,
|
|
3411
|
-
0x61, 0x6d, 0x69, 0x6c, 0x79, 0x18, 0x19, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x63, 0x6f,
|
|
3412
|
-
0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e,
|
|
3413
|
-
0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x61, 0x74, 0x61,
|
|
3414
|
-
0x6c, 0x6f, 0x67, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x48, 0x0e, 0x52, 0x0d, 0x63, 0x61, 0x74, 0x61,
|
|
3415
|
-
0x6c, 0x6f, 0x67, 0x46, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x88, 0x01, 0x01, 0x12, 0x45, 0x0a, 0x03,
|
|
3416
|
-
0x72, 0x61, 0x77, 0x18, 0x18, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x63, 0x6f, 0x6d, 0x2e,
|
|
3417
|
-
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75,
|
|
3418
|
-
0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x61, 0x77, 0x48, 0x61, 0x72,
|
|
3419
|
-
0x64, 0x77, 0x61, 0x72, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x0f, 0x52, 0x03, 0x72, 0x61, 0x77,
|
|
3420
|
-
0x88, 0x01, 0x01, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x69, 0x64, 0x42,
|
|
3421
|
-
0x0a, 0x0a, 0x08, 0x5f, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x69, 0x64, 0x42, 0x0b, 0x0a, 0x09, 0x5f,
|
|
3422
|
-
0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x69, 0x64, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x66, 0x61, 0x6d,
|
|
3423
|
-
0x69, 0x6c, 0x79, 0x5f, 0x69, 0x64, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x69, 0x73, 0x5f, 0x66, 0x61,
|
|
3424
|
-
0x6d, 0x69, 0x6c, 0x79, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x42,
|
|
3425
|
-
0x0c, 0x0a, 0x0a, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x0c, 0x0a,
|
|
3426
|
-
0x0a, 0x5f, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x0d, 0x0a, 0x0b, 0x5f,
|
|
3427
|
-
0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x66,
|
|
3428
|
-
0x61, 0x6d, 0x69, 0x6c, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x06, 0x0a, 0x04, 0x5f, 0x63,
|
|
3429
|
-
0x70, 0x65, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x72, 0x61, 0x6e, 0x6b, 0x42, 0x10, 0x0a, 0x0e, 0x5f,
|
|
3430
|
-
0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x5f, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x42, 0x10, 0x0a,
|
|
3431
|
-
0x0e, 0x5f, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x42,
|
|
3432
|
-
0x11, 0x0a, 0x0f, 0x5f, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x5f, 0x66, 0x61, 0x6d, 0x69,
|
|
3433
|
-
0x6c, 0x79, 0x42, 0x06, 0x0a, 0x04, 0x5f, 0x72, 0x61, 0x77, 0x22, 0xe6, 0x01, 0x0a, 0x0f, 0x52,
|
|
3434
|
-
0x61, 0x77, 0x48, 0x61, 0x72, 0x64, 0x77, 0x61, 0x72, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x27,
|
|
3435
|
-
0x0a, 0x0c, 0x61, 0x72, 0x63, 0x68, 0x69, 0x74, 0x65, 0x63, 0x74, 0x75, 0x72, 0x65, 0x18, 0x01,
|
|
3436
|
-
0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x0c, 0x61, 0x72, 0x63, 0x68, 0x69, 0x74, 0x65, 0x63,
|
|
3437
|
-
0x74, 0x75, 0x72, 0x65, 0x88, 0x01, 0x01, 0x12, 0x19, 0x0a, 0x05, 0x6d, 0x6f, 0x64, 0x65, 0x6c,
|
|
3438
|
-
0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x05, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x88,
|
|
3439
|
-
0x01, 0x01, 0x12, 0x27, 0x0a, 0x0c, 0x6d, 0x61, 0x6e, 0x75, 0x66, 0x61, 0x63, 0x74, 0x75, 0x72,
|
|
3440
|
-
0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x0c, 0x6d, 0x61, 0x6e, 0x75,
|
|
3441
|
-
0x66, 0x61, 0x63, 0x74, 0x75, 0x72, 0x65, 0x72, 0x88, 0x01, 0x01, 0x12, 0x28, 0x0a, 0x0d, 0x73,
|
|
3442
|
-
0x65, 0x72, 0x69, 0x61, 0x6c, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01,
|
|
3443
|
-
0x28, 0x09, 0x48, 0x03, 0x52, 0x0c, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x75, 0x6d, 0x62,
|
|
3444
|
-
0x65, 0x72, 0x88, 0x01, 0x01, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x61, 0x72, 0x63, 0x68, 0x69, 0x74,
|
|
3445
|
-
0x65, 0x63, 0x74, 0x75, 0x72, 0x65, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c,
|
|
3446
|
-
0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x6d, 0x61, 0x6e, 0x75, 0x66, 0x61, 0x63, 0x74, 0x75, 0x72, 0x65,
|
|
3447
|
-
0x72, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x5f, 0x6e, 0x75, 0x6d,
|
|
3448
|
-
0x62, 0x65, 0x72, 0x22, 0x8f, 0x05, 0x0a, 0x13, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e,
|
|
3449
|
-
0x67, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x13, 0x0a, 0x02, 0x69,
|
|
3450
|
-
0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x01, 0x52, 0x02, 0x69, 0x64, 0x88, 0x01, 0x01,
|
|
3451
|
-
0x12, 0x1c, 0x0a, 0x07, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28,
|
|
3452
|
-
0x03, 0x48, 0x02, 0x52, 0x06, 0x6d, 0x61, 0x6b, 0x65, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x17,
|
|
3453
|
-
0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x48, 0x03, 0x52, 0x04,
|
|
3454
|
-
0x6e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x1d, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69,
|
|
3455
|
-
0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x48, 0x04, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73,
|
|
3456
|
-
0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x19, 0x0a, 0x05, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x18,
|
|
3457
|
-
0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x05, 0x52, 0x05, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x88, 0x01,
|
|
3458
|
-
0x01, 0x12, 0x22, 0x0a, 0x0a, 0x66, 0x77, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18,
|
|
3459
|
-
0x05, 0x20, 0x01, 0x28, 0x09, 0x48, 0x06, 0x52, 0x09, 0x66, 0x77, 0x56, 0x65, 0x72, 0x73, 0x69,
|
|
3460
|
-
0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x15, 0x0a, 0x03, 0x63, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01,
|
|
3461
|
-
0x28, 0x09, 0x48, 0x07, 0x52, 0x03, 0x63, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x1a, 0x0a, 0x06,
|
|
3462
|
-
0x66, 0x77, 0x5f, 0x63, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x48, 0x08, 0x52, 0x05,
|
|
3463
|
-
0x66, 0x77, 0x43, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x17, 0x0a, 0x04, 0x72, 0x61, 0x6e, 0x6b,
|
|
3464
|
-
0x18, 0x08, 0x20, 0x01, 0x28, 0x05, 0x48, 0x09, 0x52, 0x04, 0x72, 0x61, 0x6e, 0x6b, 0x88, 0x01,
|
|
3465
|
-
0x01, 0x12, 0x55, 0x0a, 0x0d, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x5f, 0x62, 0x72, 0x61,
|
|
3466
|
-
0x6e, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c,
|
|
3467
|
-
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74,
|
|
3468
|
-
0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67,
|
|
3469
|
-
0x42, 0x72, 0x61, 0x6e, 0x64, 0x48, 0x0a, 0x52, 0x0c, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67,
|
|
3470
|
-
0x42, 0x72, 0x61, 0x6e, 0x64, 0x88, 0x01, 0x01, 0x12, 0x4c, 0x0a, 0x0a, 0x63, 0x61, 0x74, 0x61,
|
|
3471
|
-
0x6c, 0x6f, 0x67, 0x5f, 0x6f, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x63,
|
|
3472
|
-
0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70,
|
|
3473
|
-
0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x61, 0x74,
|
|
3474
|
-
0x61, 0x6c, 0x6f, 0x67, 0x4f, 0x73, 0x48, 0x0b, 0x52, 0x09, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f,
|
|
3475
|
-
0x67, 0x4f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x58, 0x0a, 0x07, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77,
|
|
3476
|
-
0x73, 0x18, 0x20, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3c, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61,
|
|
3396
|
+
0x72, 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x22, 0xd4, 0x01, 0x0a, 0x14, 0x43, 0x61, 0x74, 0x61,
|
|
3397
|
+
0x6c, 0x6f, 0x67, 0x4c, 0x6f, 0x6f, 0x6b, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
3398
|
+
0x12, 0x19, 0x0a, 0x08, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x03,
|
|
3399
|
+
0x28, 0x03, 0x52, 0x07, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x6d,
|
|
3400
|
+
0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x03, 0x28, 0x03, 0x52, 0x07, 0x6d,
|
|
3401
|
+
0x6f, 0x64, 0x65, 0x6c, 0x49, 0x64, 0x12, 0x13, 0x0a, 0x05, 0x6f, 0x73, 0x5f, 0x69, 0x64, 0x18,
|
|
3402
|
+
0x03, 0x20, 0x03, 0x28, 0x03, 0x52, 0x04, 0x6f, 0x73, 0x49, 0x64, 0x12, 0x13, 0x0a, 0x05, 0x73,
|
|
3403
|
+
0x77, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x03, 0x28, 0x03, 0x52, 0x04, 0x73, 0x77, 0x49, 0x64,
|
|
3404
|
+
0x12, 0x1d, 0x0a, 0x0a, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x05,
|
|
3405
|
+
0x20, 0x03, 0x28, 0x03, 0x52, 0x09, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x49, 0x64, 0x12,
|
|
3406
|
+
0x2a, 0x0a, 0x0e, 0x6f, 0x6e, 0x6c, 0x79, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65,
|
|
3407
|
+
0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x08, 0x48, 0x00, 0x52, 0x0d, 0x6f, 0x6e, 0x6c, 0x79, 0x52,
|
|
3408
|
+
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x64, 0x88, 0x01, 0x01, 0x42, 0x11, 0x0a, 0x0f, 0x5f,
|
|
3409
|
+
0x6f, 0x6e, 0x6c, 0x79, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x64, 0x22, 0xe0,
|
|
3410
|
+
0x02, 0x0a, 0x15, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x4c, 0x6f, 0x6f, 0x6b, 0x75, 0x70,
|
|
3411
|
+
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x41, 0x0a, 0x05, 0x62, 0x72, 0x61, 0x6e,
|
|
3412
|
+
0x64, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61,
|
|
3477
3413
|
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62,
|
|
3478
|
-
0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e,
|
|
3479
|
-
|
|
3480
|
-
|
|
3481
|
-
|
|
3482
|
-
|
|
3483
|
-
|
|
3484
|
-
|
|
3485
|
-
|
|
3486
|
-
|
|
3487
|
-
|
|
3488
|
-
|
|
3489
|
-
|
|
3490
|
-
|
|
3491
|
-
|
|
3492
|
-
0x6f,
|
|
3493
|
-
0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63,
|
|
3494
|
-
0x65, 0x5f, 0x70, 0x61, 0x63, 0x6b, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x48, 0x01, 0x52, 0x0b,
|
|
3495
|
-
0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x61, 0x63, 0x6b, 0x88, 0x01, 0x01, 0x12, 0x19,
|
|
3496
|
-
0x0a, 0x05, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52,
|
|
3497
|
-
0x05, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x76, 0x65, 0x72,
|
|
3498
|
-
0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48,
|
|
3499
|
-
0x03, 0x52, 0x0b, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01,
|
|
3500
|
-
0x01, 0x12, 0x26, 0x0a, 0x0c, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65,
|
|
3501
|
-
0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x48, 0x04, 0x52, 0x0b, 0x62, 0x75, 0x69, 0x6c, 0x64,
|
|
3502
|
-
0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x70, 0x72, 0x6f,
|
|
3503
|
-
0x64, 0x75, 0x63, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x48,
|
|
3504
|
-
0x05, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x54, 0x79, 0x70, 0x65, 0x88, 0x01,
|
|
3505
|
-
0x01, 0x12, 0x35, 0x0a, 0x14, 0x69, 0x73, 0x5f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x5f, 0x63,
|
|
3506
|
-
0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x6c, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x48,
|
|
3507
|
-
0x06, 0x52, 0x12, 0x69, 0x73, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x43, 0x6f, 0x6e, 0x74, 0x72,
|
|
3508
|
-
0x6f, 0x6c, 0x6c, 0x65, 0x72, 0x88, 0x01, 0x01, 0x12, 0x29, 0x0a, 0x0e, 0x70, 0x61, 0x72, 0x74,
|
|
3509
|
-
0x5f, 0x6f, 0x66, 0x5f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08,
|
|
3510
|
-
0x48, 0x07, 0x52, 0x0c, 0x70, 0x61, 0x72, 0x74, 0x4f, 0x66, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e,
|
|
3511
|
-
0x88, 0x01, 0x01, 0x12, 0x30, 0x0a, 0x12, 0x69, 0x73, 0x5f, 0x61, 0x7a, 0x75, 0x72, 0x65, 0x5f,
|
|
3512
|
-
0x61, 0x64, 0x5f, 0x6a, 0x6f, 0x69, 0x6e, 0x65, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x08, 0x48,
|
|
3513
|
-
0x08, 0x52, 0x0f, 0x69, 0x73, 0x41, 0x7a, 0x75, 0x72, 0x65, 0x41, 0x64, 0x4a, 0x6f, 0x69, 0x6e,
|
|
3514
|
-
0x65, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1c, 0x0a, 0x07, 0x6f, 0x73, 0x5f, 0x63, 0x6f, 0x64, 0x65,
|
|
3515
|
-
0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x48, 0x09, 0x52, 0x06, 0x6f, 0x73, 0x43, 0x6f, 0x64, 0x65,
|
|
3516
|
-
0x88, 0x01, 0x01, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x42,
|
|
3517
|
-
0x0f, 0x0a, 0x0d, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x70, 0x61, 0x63, 0x6b,
|
|
3518
|
-
0x42, 0x08, 0x0a, 0x06, 0x5f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x76,
|
|
3519
|
-
0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x0f, 0x0a, 0x0d, 0x5f,
|
|
3520
|
-
0x62, 0x75, 0x69, 0x6c, 0x64, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x42, 0x0f, 0x0a, 0x0d,
|
|
3521
|
-
0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x42, 0x17, 0x0a,
|
|
3522
|
-
0x15, 0x5f, 0x69, 0x73, 0x5f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x5f, 0x63, 0x6f, 0x6e, 0x74,
|
|
3523
|
-
0x72, 0x6f, 0x6c, 0x6c, 0x65, 0x72, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x5f,
|
|
3524
|
-
0x6f, 0x66, 0x5f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x69, 0x73,
|
|
3525
|
-
0x5f, 0x61, 0x7a, 0x75, 0x72, 0x65, 0x5f, 0x61, 0x64, 0x5f, 0x6a, 0x6f, 0x69, 0x6e, 0x65, 0x64,
|
|
3526
|
-
0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x6f, 0x73, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x22, 0x8e, 0x01, 0x0a,
|
|
3527
|
-
0x10, 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x49, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72,
|
|
3528
|
-
0x79, 0x12, 0x38, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x01,
|
|
3529
|
-
0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
|
|
3530
|
-
0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70,
|
|
3531
|
-
0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x12, 0x40, 0x0a, 0x07, 0x6d,
|
|
3532
|
-
0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x63,
|
|
3533
|
-
0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70,
|
|
3534
|
-
0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x6f, 0x6e,
|
|
3535
|
-
0x69, 0x74, 0x6f, 0x72, 0x52, 0x07, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x22, 0xd7, 0x03,
|
|
3536
|
-
0x0a, 0x07, 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x6f, 0x64,
|
|
3537
|
-
0x65, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x12,
|
|
3538
|
-
0x28, 0x0a, 0x0d, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72,
|
|
3539
|
-
0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x0c, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c,
|
|
3540
|
-
0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x88, 0x01, 0x01, 0x12, 0x47, 0x0a, 0x11, 0x6d, 0x61, 0x6e,
|
|
3541
|
-
0x75, 0x66, 0x61, 0x63, 0x74, 0x75, 0x72, 0x65, 0x72, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x03,
|
|
3542
|
-
0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
|
|
3543
|
-
0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70,
|
|
3544
|
-
0x52, 0x10, 0x6d, 0x61, 0x6e, 0x75, 0x66, 0x61, 0x63, 0x74, 0x75, 0x72, 0x65, 0x72, 0x44, 0x61,
|
|
3545
|
-
0x74, 0x65, 0x12, 0x55, 0x0a, 0x0d, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x5f, 0x62, 0x72,
|
|
3546
|
-
0x61, 0x6e, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x63, 0x6f, 0x6d, 0x2e,
|
|
3414
|
+
0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x42,
|
|
3415
|
+
0x72, 0x61, 0x6e, 0x64, 0x52, 0x05, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x12, 0x41, 0x0a, 0x05, 0x6d,
|
|
3416
|
+
0x6f, 0x64, 0x65, 0x6c, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x63, 0x6f, 0x6d,
|
|
3417
|
+
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f,
|
|
3418
|
+
0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x61, 0x74, 0x61, 0x6c,
|
|
3419
|
+
0x6f, 0x67, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x52, 0x05, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x12, 0x38,
|
|
3420
|
+
0x0a, 0x02, 0x6f, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x63, 0x6f, 0x6d,
|
|
3421
|
+
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f,
|
|
3422
|
+
0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x61, 0x74, 0x61, 0x6c,
|
|
3423
|
+
0x6f, 0x67, 0x4f, 0x73, 0x52, 0x02, 0x6f, 0x73, 0x12, 0x3e, 0x0a, 0x02, 0x73, 0x77, 0x18, 0x04,
|
|
3424
|
+
0x20, 0x03, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
3425
|
+
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e,
|
|
3426
|
+
0x64, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x53, 0x6f, 0x66, 0x74,
|
|
3427
|
+
0x77, 0x61, 0x72, 0x65, 0x52, 0x02, 0x73, 0x77, 0x12, 0x47, 0x0a, 0x07, 0x6d, 0x6f, 0x6e, 0x69,
|
|
3428
|
+
0x74, 0x6f, 0x72, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x63, 0x6f, 0x6d, 0x2e,
|
|
3547
3429
|
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75,
|
|
3548
3430
|
0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f,
|
|
3549
|
-
0x67,
|
|
3550
|
-
|
|
3551
|
-
|
|
3552
|
-
|
|
3431
|
+
0x67, 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x52, 0x07, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f,
|
|
3432
|
+
0x72, 0x22, 0xf1, 0x01, 0x0a, 0x0a, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x50, 0x61, 0x74, 0x68,
|
|
3433
|
+
0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
3434
|
+
0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x09, 0x73, 0x6f, 0x75,
|
|
3435
|
+
0x72, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x08,
|
|
3436
|
+
0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b, 0x73,
|
|
3437
|
+
0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
|
|
3438
|
+
0x48, 0x01, 0x52, 0x0a, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x88, 0x01,
|
|
3439
|
+
0x01, 0x12, 0x24, 0x0a, 0x0b, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x5f, 0x74, 0x79, 0x70, 0x65,
|
|
3440
|
+
0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x0a, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79,
|
|
3441
|
+
0x54, 0x79, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x65, 0x6e, 0x74, 0x69, 0x74,
|
|
3442
|
+
0x79, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x48, 0x03, 0x52, 0x08, 0x65, 0x6e,
|
|
3443
|
+
0x74, 0x69, 0x74, 0x79, 0x49, 0x64, 0x88, 0x01, 0x01, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x73, 0x6f,
|
|
3444
|
+
0x75, 0x72, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x73, 0x6f, 0x75, 0x72,
|
|
3445
|
+
0x63, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x65, 0x6e, 0x74, 0x69,
|
|
3446
|
+
0x74, 0x79, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x65, 0x6e, 0x74, 0x69,
|
|
3447
|
+
0x74, 0x79, 0x5f, 0x69, 0x64, 0x22, 0x50, 0x0a, 0x06, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x12,
|
|
3448
|
+
0x3c, 0x0a, 0x05, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24,
|
|
3449
|
+
0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
3450
|
+
0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x41,
|
|
3451
|
+
0x73, 0x73, 0x65, 0x74, 0x48, 0x00, 0x52, 0x05, 0x61, 0x73, 0x73, 0x65, 0x74, 0x42, 0x08, 0x0a,
|
|
3452
|
+
0x06, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x22, 0x88, 0x06, 0x0a, 0x05, 0x41, 0x73, 0x73, 0x65,
|
|
3453
|
+
0x74, 0x12, 0x39, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x29, 0x2e,
|
|
3454
|
+
0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64,
|
|
3455
|
+
0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x6e,
|
|
3456
|
+
0x74, 0x69, 0x74, 0x79, 0x50, 0x61, 0x74, 0x68, 0x52, 0x02, 0x69, 0x64, 0x12, 0x3b, 0x0a, 0x0b,
|
|
3457
|
+
0x6c, 0x61, 0x73, 0x74, 0x5f, 0x73, 0x79, 0x6e, 0x63, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
|
|
3458
|
+
0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
3459
|
+
0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x6c,
|
|
3460
|
+
0x61, 0x73, 0x74, 0x53, 0x79, 0x6e, 0x63, 0x65, 0x64, 0x12, 0x39, 0x0a, 0x0a, 0x66, 0x69, 0x72,
|
|
3461
|
+
0x73, 0x74, 0x5f, 0x73, 0x65, 0x65, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e,
|
|
3462
|
+
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
|
|
3463
|
+
0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x66, 0x69, 0x72, 0x73, 0x74,
|
|
3464
|
+
0x53, 0x65, 0x65, 0x6e, 0x12, 0x3d, 0x0a, 0x0c, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x75, 0x70, 0x64,
|
|
3465
|
+
0x61, 0x74, 0x65, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f,
|
|
3466
|
+
0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d,
|
|
3467
|
+
0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x55, 0x70, 0x64, 0x61,
|
|
3468
|
+
0x74, 0x65, 0x64, 0x12, 0x3f, 0x0a, 0x0d, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x65, 0x6e, 0x72, 0x69,
|
|
3469
|
+
0x63, 0x68, 0x65, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f,
|
|
3470
|
+
0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d,
|
|
3471
|
+
0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0c, 0x6c, 0x61, 0x73, 0x74, 0x45, 0x6e, 0x72, 0x69,
|
|
3472
|
+
0x63, 0x68, 0x65, 0x64, 0x12, 0x3d, 0x0a, 0x04, 0x63, 0x6f, 0x72, 0x65, 0x18, 0x06, 0x20, 0x01,
|
|
3473
|
+
0x28, 0x0b, 0x32, 0x29, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
3553
3474
|
0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e,
|
|
3554
|
-
0x76, 0x31, 0x2e, 0x43,
|
|
3555
|
-
|
|
3556
|
-
|
|
3557
|
-
|
|
3558
|
-
|
|
3559
|
-
|
|
3560
|
-
|
|
3561
|
-
|
|
3562
|
-
|
|
3563
|
-
|
|
3564
|
-
|
|
3565
|
-
|
|
3566
|
-
|
|
3567
|
-
|
|
3568
|
-
|
|
3569
|
-
|
|
3570
|
-
|
|
3571
|
-
|
|
3572
|
-
|
|
3573
|
-
|
|
3574
|
-
|
|
3575
|
-
|
|
3576
|
-
|
|
3577
|
-
|
|
3578
|
-
|
|
3579
|
-
|
|
3580
|
-
|
|
3581
|
-
|
|
3582
|
-
|
|
3583
|
-
|
|
3584
|
-
|
|
3585
|
-
|
|
3586
|
-
|
|
3587
|
-
0x0a,
|
|
3588
|
-
|
|
3589
|
-
|
|
3590
|
-
|
|
3591
|
-
|
|
3592
|
-
|
|
3593
|
-
|
|
3594
|
-
|
|
3595
|
-
|
|
3596
|
-
|
|
3597
|
-
|
|
3598
|
-
|
|
3599
|
-
|
|
3600
|
-
|
|
3601
|
-
|
|
3602
|
-
|
|
3603
|
-
|
|
3604
|
-
|
|
3605
|
-
|
|
3606
|
-
|
|
3607
|
-
|
|
3608
|
-
|
|
3609
|
-
|
|
3610
|
-
|
|
3611
|
-
|
|
3612
|
-
|
|
3613
|
-
|
|
3614
|
-
|
|
3615
|
-
|
|
3616
|
-
0x20, 0x0a, 0x09,
|
|
3617
|
-
0x28, 0x03, 0x48,
|
|
3618
|
-
0x01, 0x12, 0x20, 0x0a, 0x09,
|
|
3475
|
+
0x76, 0x31, 0x2e, 0x43, 0x6f, 0x72, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x52, 0x04, 0x63,
|
|
3476
|
+
0x6f, 0x72, 0x65, 0x12, 0x40, 0x0a, 0x02, 0x68, 0x77, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32,
|
|
3477
|
+
0x2b, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
3478
|
+
0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e,
|
|
3479
|
+
0x48, 0x61, 0x72, 0x64, 0x77, 0x61, 0x72, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x02,
|
|
3480
|
+
0x68, 0x77, 0x88, 0x01, 0x01, 0x12, 0x47, 0x0a, 0x02, 0x6f, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28,
|
|
3481
|
+
0x0b, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
3482
|
+
0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76,
|
|
3483
|
+
0x31, 0x2e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x79, 0x73, 0x74, 0x65,
|
|
3484
|
+
0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x01, 0x52, 0x02, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x64,
|
|
3485
|
+
0x0a, 0x12, 0x73, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x5f, 0x69, 0x6e, 0x76, 0x65, 0x6e,
|
|
3486
|
+
0x74, 0x6f, 0x72, 0x79, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x63, 0x6f, 0x6d,
|
|
3487
|
+
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f,
|
|
3488
|
+
0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x6f, 0x66, 0x74, 0x77,
|
|
3489
|
+
0x61, 0x72, 0x65, 0x49, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x48, 0x02, 0x52, 0x11,
|
|
3490
|
+
0x73, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x49, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72,
|
|
3491
|
+
0x79, 0x88, 0x01, 0x01, 0x12, 0x61, 0x0a, 0x11, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x5f,
|
|
3492
|
+
0x69, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32,
|
|
3493
|
+
0x2f, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
3494
|
+
0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e,
|
|
3495
|
+
0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x49, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79,
|
|
3496
|
+
0x48, 0x03, 0x52, 0x10, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x49, 0x6e, 0x76, 0x65, 0x6e,
|
|
3497
|
+
0x74, 0x6f, 0x72, 0x79, 0x88, 0x01, 0x01, 0x42, 0x05, 0x0a, 0x03, 0x5f, 0x68, 0x77, 0x42, 0x05,
|
|
3498
|
+
0x0a, 0x03, 0x5f, 0x6f, 0x73, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x73, 0x6f, 0x66, 0x74, 0x77, 0x61,
|
|
3499
|
+
0x72, 0x65, 0x5f, 0x69, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x42, 0x14, 0x0a, 0x12,
|
|
3500
|
+
0x5f, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x5f, 0x69, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f,
|
|
3501
|
+
0x72, 0x79, 0x22, 0x69, 0x0a, 0x09, 0x41, 0x73, 0x73, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12,
|
|
3502
|
+
0x17, 0x0a, 0x07, 0x6c, 0x73, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
|
|
3503
|
+
0x52, 0x06, 0x6c, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x13, 0x0a, 0x05, 0x6c, 0x73, 0x5f, 0x69,
|
|
3504
|
+
0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x6c, 0x73, 0x49, 0x64, 0x12, 0x20, 0x0a,
|
|
3505
|
+
0x09, 0x66, 0x69, 0x6e, 0x67, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
|
|
3506
|
+
0x48, 0x00, 0x52, 0x08, 0x66, 0x69, 0x6e, 0x67, 0x54, 0x79, 0x70, 0x65, 0x88, 0x01, 0x01, 0x42,
|
|
3507
|
+
0x0c, 0x0a, 0x0a, 0x5f, 0x66, 0x69, 0x6e, 0x67, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x22, 0xe3, 0x02,
|
|
3508
|
+
0x0a, 0x0a, 0x43, 0x6f, 0x72, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x12, 0x3c, 0x0a, 0x04,
|
|
3509
|
+
0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x63, 0x6f, 0x6d,
|
|
3510
|
+
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f,
|
|
3511
|
+
0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74,
|
|
3512
|
+
0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61,
|
|
3513
|
+
0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1b,
|
|
3514
|
+
0x0a, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00,
|
|
3515
|
+
0x52, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x22, 0x0a, 0x0a, 0x69,
|
|
3516
|
+
0x70, 0x5f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48,
|
|
3517
|
+
0x01, 0x52, 0x09, 0x69, 0x70, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x88, 0x01, 0x01, 0x12,
|
|
3518
|
+
0x1b, 0x0a, 0x06, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x48,
|
|
3519
|
+
0x02, 0x52, 0x06, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x15, 0x0a, 0x03,
|
|
3520
|
+
0x6d, 0x61, 0x63, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x48, 0x03, 0x52, 0x03, 0x6d, 0x61, 0x63,
|
|
3521
|
+
0x88, 0x01, 0x01, 0x12, 0x22, 0x0a, 0x0a, 0x6d, 0x61, 0x63, 0x5f, 0x76, 0x65, 0x6e, 0x64, 0x6f,
|
|
3522
|
+
0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x48, 0x04, 0x52, 0x09, 0x6d, 0x61, 0x63, 0x56, 0x65,
|
|
3523
|
+
0x6e, 0x64, 0x6f, 0x72, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x73, 0x65, 0x6e, 0x73, 0x6f,
|
|
3524
|
+
0x72, 0x5f, 0x69, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x48, 0x05, 0x52, 0x08, 0x73, 0x65,
|
|
3525
|
+
0x6e, 0x73, 0x6f, 0x72, 0x49, 0x64, 0x88, 0x01, 0x01, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x64, 0x6f,
|
|
3526
|
+
0x6d, 0x61, 0x69, 0x6e, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x69, 0x70, 0x5f, 0x61, 0x64, 0x64, 0x72,
|
|
3527
|
+
0x65, 0x73, 0x73, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x42, 0x06,
|
|
3528
|
+
0x0a, 0x04, 0x5f, 0x6d, 0x61, 0x63, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x6d, 0x61, 0x63, 0x5f, 0x76,
|
|
3529
|
+
0x65, 0x6e, 0x64, 0x6f, 0x72, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x73, 0x65, 0x6e, 0x73, 0x6f, 0x72,
|
|
3530
|
+
0x5f, 0x69, 0x64, 0x22, 0xf0, 0x04, 0x0a, 0x0c, 0x48, 0x61, 0x72, 0x64, 0x77, 0x61, 0x72, 0x65,
|
|
3531
|
+
0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1c, 0x0a, 0x07, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x69, 0x64, 0x18,
|
|
3532
|
+
0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x00, 0x52, 0x06, 0x74, 0x79, 0x70, 0x65, 0x49, 0x64, 0x88,
|
|
3533
|
+
0x01, 0x01, 0x12, 0x1c, 0x0a, 0x07, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20,
|
|
3534
|
+
0x01, 0x28, 0x03, 0x48, 0x01, 0x52, 0x06, 0x6d, 0x61, 0x6b, 0x65, 0x49, 0x64, 0x88, 0x01, 0x01,
|
|
3535
|
+
0x12, 0x1e, 0x0a, 0x08, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01,
|
|
3536
|
+
0x28, 0x03, 0x48, 0x02, 0x52, 0x07, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x49, 0x64, 0x88, 0x01, 0x01,
|
|
3537
|
+
0x12, 0x20, 0x0a, 0x09, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20,
|
|
3538
|
+
0x01, 0x28, 0x03, 0x48, 0x03, 0x52, 0x08, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x49, 0x64, 0x88,
|
|
3539
|
+
0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x69, 0x73, 0x5f, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x18,
|
|
3540
|
+
0x06, 0x20, 0x01, 0x28, 0x08, 0x48, 0x04, 0x52, 0x08, 0x69, 0x73, 0x46, 0x61, 0x6d, 0x69, 0x6c,
|
|
3541
|
+
0x79, 0x88, 0x01, 0x01, 0x12, 0x1b, 0x0a, 0x06, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x18, 0x07,
|
|
3542
|
+
0x20, 0x01, 0x28, 0x09, 0x48, 0x05, 0x52, 0x06, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x88, 0x01,
|
|
3543
|
+
0x01, 0x12, 0x20, 0x0a, 0x09, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0a,
|
|
3619
3544
|
0x20, 0x01, 0x28, 0x09, 0x48, 0x06, 0x52, 0x08, 0x74, 0x79, 0x70, 0x65, 0x4e, 0x61, 0x6d, 0x65,
|
|
3620
|
-
0x88, 0x01, 0x01, 0x12, 0x1e, 0x0a, 0x08, 0x63, 0x61, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18,
|
|
3621
|
-
0x08, 0x20, 0x01, 0x28, 0x09, 0x48, 0x07, 0x52, 0x07, 0x63, 0x61, 0x74, 0x4e, 0x61, 0x6d, 0x65,
|
|
3622
3545
|
0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65,
|
|
3623
|
-
0x18,
|
|
3624
|
-
0x6d, 0x65, 0x88, 0x01, 0x01, 0x12,
|
|
3625
|
-
|
|
3626
|
-
|
|
3627
|
-
|
|
3628
|
-
0x0a,
|
|
3629
|
-
|
|
3630
|
-
|
|
3631
|
-
|
|
3632
|
-
|
|
3633
|
-
|
|
3634
|
-
|
|
3635
|
-
|
|
3636
|
-
|
|
3637
|
-
|
|
3638
|
-
|
|
3639
|
-
|
|
3640
|
-
|
|
3641
|
-
|
|
3642
|
-
|
|
3643
|
-
|
|
3644
|
-
|
|
3645
|
-
|
|
3646
|
-
|
|
3647
|
-
|
|
3648
|
-
|
|
3649
|
-
|
|
3650
|
-
|
|
3651
|
-
|
|
3652
|
-
|
|
3653
|
-
|
|
3654
|
-
|
|
3655
|
-
|
|
3656
|
-
|
|
3657
|
-
|
|
3658
|
-
|
|
3659
|
-
|
|
3660
|
-
|
|
3661
|
-
|
|
3662
|
-
|
|
3663
|
-
|
|
3664
|
-
|
|
3665
|
-
|
|
3666
|
-
|
|
3667
|
-
|
|
3668
|
-
|
|
3669
|
-
|
|
3670
|
-
|
|
3671
|
-
|
|
3672
|
-
|
|
3673
|
-
|
|
3674
|
-
|
|
3675
|
-
|
|
3676
|
-
|
|
3677
|
-
|
|
3678
|
-
|
|
3679
|
-
|
|
3680
|
-
|
|
3681
|
-
|
|
3682
|
-
|
|
3683
|
-
|
|
3684
|
-
|
|
3685
|
-
|
|
3686
|
-
|
|
3687
|
-
|
|
3688
|
-
|
|
3689
|
-
|
|
3690
|
-
|
|
3691
|
-
|
|
3692
|
-
|
|
3693
|
-
|
|
3694
|
-
|
|
3695
|
-
|
|
3696
|
-
|
|
3697
|
-
|
|
3698
|
-
|
|
3699
|
-
|
|
3700
|
-
|
|
3701
|
-
|
|
3702
|
-
|
|
3703
|
-
|
|
3704
|
-
|
|
3705
|
-
|
|
3706
|
-
|
|
3707
|
-
|
|
3708
|
-
|
|
3709
|
-
|
|
3710
|
-
|
|
3711
|
-
|
|
3712
|
-
|
|
3713
|
-
|
|
3714
|
-
|
|
3715
|
-
|
|
3716
|
-
|
|
3717
|
-
|
|
3718
|
-
|
|
3719
|
-
|
|
3720
|
-
|
|
3721
|
-
|
|
3722
|
-
|
|
3723
|
-
|
|
3724
|
-
|
|
3725
|
-
|
|
3726
|
-
|
|
3727
|
-
|
|
3728
|
-
|
|
3729
|
-
|
|
3730
|
-
|
|
3731
|
-
0x65,
|
|
3732
|
-
|
|
3733
|
-
|
|
3734
|
-
0x70,
|
|
3735
|
-
|
|
3736
|
-
|
|
3737
|
-
|
|
3738
|
-
|
|
3739
|
-
|
|
3740
|
-
|
|
3741
|
-
|
|
3742
|
-
|
|
3743
|
-
0x01, 0x28, 0x09,
|
|
3744
|
-
|
|
3745
|
-
|
|
3746
|
-
|
|
3747
|
-
|
|
3748
|
-
|
|
3749
|
-
|
|
3750
|
-
|
|
3751
|
-
|
|
3752
|
-
|
|
3753
|
-
|
|
3754
|
-
|
|
3755
|
-
|
|
3756
|
-
|
|
3757
|
-
|
|
3758
|
-
|
|
3759
|
-
|
|
3760
|
-
|
|
3761
|
-
|
|
3762
|
-
|
|
3763
|
-
|
|
3764
|
-
|
|
3765
|
-
|
|
3766
|
-
|
|
3767
|
-
|
|
3768
|
-
|
|
3769
|
-
|
|
3770
|
-
|
|
3771
|
-
|
|
3772
|
-
|
|
3773
|
-
|
|
3774
|
-
|
|
3775
|
-
|
|
3776
|
-
|
|
3777
|
-
|
|
3778
|
-
|
|
3779
|
-
|
|
3780
|
-
|
|
3781
|
-
|
|
3782
|
-
|
|
3783
|
-
|
|
3784
|
-
|
|
3785
|
-
|
|
3786
|
-
|
|
3787
|
-
|
|
3546
|
+
0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x48, 0x07, 0x52, 0x08, 0x6d, 0x61, 0x6b, 0x65, 0x4e, 0x61,
|
|
3547
|
+
0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x22, 0x0a, 0x0a, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x6e,
|
|
3548
|
+
0x61, 0x6d, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x48, 0x08, 0x52, 0x09, 0x6d, 0x6f, 0x64,
|
|
3549
|
+
0x65, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b, 0x66, 0x61, 0x6d,
|
|
3550
|
+
0x69, 0x6c, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x48, 0x09,
|
|
3551
|
+
0x52, 0x0a, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12,
|
|
3552
|
+
0x15, 0x0a, 0x03, 0x63, 0x70, 0x65, 0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0a, 0x52, 0x03,
|
|
3553
|
+
0x63, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x17, 0x0a, 0x04, 0x72, 0x61, 0x6e, 0x6b, 0x18, 0x14,
|
|
3554
|
+
0x20, 0x01, 0x28, 0x05, 0x48, 0x0b, 0x52, 0x04, 0x72, 0x61, 0x6e, 0x6b, 0x88, 0x01, 0x01, 0x12,
|
|
3555
|
+
0x45, 0x0a, 0x03, 0x72, 0x61, 0x77, 0x18, 0x18, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x63,
|
|
3556
|
+
0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70,
|
|
3557
|
+
0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x61, 0x77,
|
|
3558
|
+
0x48, 0x61, 0x72, 0x64, 0x77, 0x61, 0x72, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x0c, 0x52, 0x03,
|
|
3559
|
+
0x72, 0x61, 0x77, 0x88, 0x01, 0x01, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f,
|
|
3560
|
+
0x69, 0x64, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x69, 0x64, 0x42, 0x0b,
|
|
3561
|
+
0x0a, 0x09, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x69, 0x64, 0x42, 0x0c, 0x0a, 0x0a, 0x5f,
|
|
3562
|
+
0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x5f, 0x69, 0x64, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x69, 0x73,
|
|
3563
|
+
0x5f, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x73, 0x65, 0x72, 0x69,
|
|
3564
|
+
0x61, 0x6c, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65,
|
|
3565
|
+
0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x0d,
|
|
3566
|
+
0x0a, 0x0b, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x0e, 0x0a,
|
|
3567
|
+
0x0c, 0x5f, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x06, 0x0a,
|
|
3568
|
+
0x04, 0x5f, 0x63, 0x70, 0x65, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x72, 0x61, 0x6e, 0x6b, 0x42, 0x06,
|
|
3569
|
+
0x0a, 0x04, 0x5f, 0x72, 0x61, 0x77, 0x22, 0xe6, 0x01, 0x0a, 0x0f, 0x52, 0x61, 0x77, 0x48, 0x61,
|
|
3570
|
+
0x72, 0x64, 0x77, 0x61, 0x72, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x27, 0x0a, 0x0c, 0x61, 0x72,
|
|
3571
|
+
0x63, 0x68, 0x69, 0x74, 0x65, 0x63, 0x74, 0x75, 0x72, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
|
|
3572
|
+
0x48, 0x00, 0x52, 0x0c, 0x61, 0x72, 0x63, 0x68, 0x69, 0x74, 0x65, 0x63, 0x74, 0x75, 0x72, 0x65,
|
|
3573
|
+
0x88, 0x01, 0x01, 0x12, 0x19, 0x0a, 0x05, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01,
|
|
3574
|
+
0x28, 0x09, 0x48, 0x01, 0x52, 0x05, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x27,
|
|
3575
|
+
0x0a, 0x0c, 0x6d, 0x61, 0x6e, 0x75, 0x66, 0x61, 0x63, 0x74, 0x75, 0x72, 0x65, 0x72, 0x18, 0x03,
|
|
3576
|
+
0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x0c, 0x6d, 0x61, 0x6e, 0x75, 0x66, 0x61, 0x63, 0x74,
|
|
3577
|
+
0x75, 0x72, 0x65, 0x72, 0x88, 0x01, 0x01, 0x12, 0x28, 0x0a, 0x0d, 0x73, 0x65, 0x72, 0x69, 0x61,
|
|
3578
|
+
0x6c, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x03,
|
|
3579
|
+
0x52, 0x0c, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x88, 0x01,
|
|
3580
|
+
0x01, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x61, 0x72, 0x63, 0x68, 0x69, 0x74, 0x65, 0x63, 0x74, 0x75,
|
|
3581
|
+
0x72, 0x65, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x42, 0x0f, 0x0a, 0x0d,
|
|
3582
|
+
0x5f, 0x6d, 0x61, 0x6e, 0x75, 0x66, 0x61, 0x63, 0x74, 0x75, 0x72, 0x65, 0x72, 0x42, 0x10, 0x0a,
|
|
3583
|
+
0x0e, 0x5f, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x22,
|
|
3584
|
+
0xc9, 0x03, 0x0a, 0x13, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x79, 0x73,
|
|
3585
|
+
0x74, 0x65, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x13, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20,
|
|
3586
|
+
0x01, 0x28, 0x03, 0x48, 0x01, 0x52, 0x02, 0x69, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1c, 0x0a, 0x07,
|
|
3587
|
+
0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x48, 0x02, 0x52,
|
|
3588
|
+
0x06, 0x6d, 0x61, 0x6b, 0x65, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x17, 0x0a, 0x04, 0x6e, 0x61,
|
|
3589
|
+
0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x48, 0x03, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65,
|
|
3590
|
+
0x88, 0x01, 0x01, 0x12, 0x1d, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03,
|
|
3591
|
+
0x20, 0x01, 0x28, 0x09, 0x48, 0x04, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x88,
|
|
3592
|
+
0x01, 0x01, 0x12, 0x19, 0x0a, 0x05, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28,
|
|
3593
|
+
0x09, 0x48, 0x05, 0x52, 0x05, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x88, 0x01, 0x01, 0x12, 0x22, 0x0a,
|
|
3594
|
+
0x0a, 0x66, 0x77, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28,
|
|
3595
|
+
0x09, 0x48, 0x06, 0x52, 0x09, 0x66, 0x77, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x88, 0x01,
|
|
3596
|
+
0x01, 0x12, 0x15, 0x0a, 0x03, 0x63, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x48, 0x07,
|
|
3597
|
+
0x52, 0x03, 0x63, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x1a, 0x0a, 0x06, 0x66, 0x77, 0x5f, 0x63,
|
|
3598
|
+
0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x48, 0x08, 0x52, 0x05, 0x66, 0x77, 0x43, 0x70,
|
|
3599
|
+
0x65, 0x88, 0x01, 0x01, 0x12, 0x17, 0x0a, 0x04, 0x72, 0x61, 0x6e, 0x6b, 0x18, 0x08, 0x20, 0x01,
|
|
3600
|
+
0x28, 0x05, 0x48, 0x09, 0x52, 0x04, 0x72, 0x61, 0x6e, 0x6b, 0x88, 0x01, 0x01, 0x12, 0x58, 0x0a,
|
|
3601
|
+
0x07, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x73, 0x18, 0x20, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3c,
|
|
3602
|
+
0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
3603
|
+
0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x57,
|
|
3604
|
+
0x69, 0x6e, 0x64, 0x6f, 0x77, 0x73, 0x52, 0x61, 0x77, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69,
|
|
3605
|
+
0x6e, 0x67, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x07,
|
|
3606
|
+
0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x73, 0x42, 0x05, 0x0a, 0x03, 0x72, 0x61, 0x77, 0x42, 0x05,
|
|
3607
|
+
0x0a, 0x03, 0x5f, 0x69, 0x64, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x69,
|
|
3608
|
+
0x64, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x76,
|
|
3609
|
+
0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x62, 0x75, 0x69, 0x6c, 0x64,
|
|
3610
|
+
0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x66, 0x77, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x42,
|
|
3611
|
+
0x06, 0x0a, 0x04, 0x5f, 0x63, 0x70, 0x65, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x66, 0x77, 0x5f, 0x63,
|
|
3612
|
+
0x70, 0x65, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x72, 0x61, 0x6e, 0x6b, 0x22, 0xd4, 0x04, 0x0a, 0x1d,
|
|
3613
|
+
0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x73, 0x52, 0x61, 0x77, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74,
|
|
3614
|
+
0x69, 0x6e, 0x67, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1d, 0x0a,
|
|
3615
|
+
0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00,
|
|
3616
|
+
0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c,
|
|
3617
|
+
0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x70, 0x61, 0x63, 0x6b, 0x18, 0x02, 0x20, 0x01,
|
|
3618
|
+
0x28, 0x05, 0x48, 0x01, 0x52, 0x0b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x50, 0x61, 0x63,
|
|
3619
|
+
0x6b, 0x88, 0x01, 0x01, 0x12, 0x19, 0x0a, 0x05, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x18, 0x03, 0x20,
|
|
3620
|
+
0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x05, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x88, 0x01, 0x01, 0x12,
|
|
3621
|
+
0x26, 0x0a, 0x0c, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18,
|
|
3622
|
+
0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x03, 0x52, 0x0b, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
|
|
3623
|
+
0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x62, 0x75, 0x69, 0x6c, 0x64,
|
|
3624
|
+
0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x48, 0x04, 0x52,
|
|
3625
|
+
0x0b, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x88, 0x01, 0x01, 0x12,
|
|
3626
|
+
0x26, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18,
|
|
3627
|
+
0x06, 0x20, 0x01, 0x28, 0x05, 0x48, 0x05, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
|
|
3628
|
+
0x54, 0x79, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x35, 0x0a, 0x14, 0x69, 0x73, 0x5f, 0x64, 0x6f,
|
|
3629
|
+
0x6d, 0x61, 0x69, 0x6e, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x6c, 0x65, 0x72, 0x18,
|
|
3630
|
+
0x07, 0x20, 0x01, 0x28, 0x08, 0x48, 0x06, 0x52, 0x12, 0x69, 0x73, 0x44, 0x6f, 0x6d, 0x61, 0x69,
|
|
3631
|
+
0x6e, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x6c, 0x65, 0x72, 0x88, 0x01, 0x01, 0x12, 0x29,
|
|
3632
|
+
0x0a, 0x0e, 0x70, 0x61, 0x72, 0x74, 0x5f, 0x6f, 0x66, 0x5f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e,
|
|
3633
|
+
0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x48, 0x07, 0x52, 0x0c, 0x70, 0x61, 0x72, 0x74, 0x4f, 0x66,
|
|
3634
|
+
0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x30, 0x0a, 0x12, 0x69, 0x73, 0x5f,
|
|
3635
|
+
0x61, 0x7a, 0x75, 0x72, 0x65, 0x5f, 0x61, 0x64, 0x5f, 0x6a, 0x6f, 0x69, 0x6e, 0x65, 0x64, 0x18,
|
|
3636
|
+
0x09, 0x20, 0x01, 0x28, 0x08, 0x48, 0x08, 0x52, 0x0f, 0x69, 0x73, 0x41, 0x7a, 0x75, 0x72, 0x65,
|
|
3637
|
+
0x41, 0x64, 0x4a, 0x6f, 0x69, 0x6e, 0x65, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1c, 0x0a, 0x07, 0x6f,
|
|
3638
|
+
0x73, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x48, 0x09, 0x52, 0x06,
|
|
3639
|
+
0x6f, 0x73, 0x43, 0x6f, 0x64, 0x65, 0x88, 0x01, 0x01, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x76, 0x65,
|
|
3640
|
+
0x72, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63,
|
|
3641
|
+
0x65, 0x5f, 0x70, 0x61, 0x63, 0x6b, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x62, 0x75, 0x69, 0x6c, 0x64,
|
|
3642
|
+
0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6e, 0x61, 0x6d,
|
|
3643
|
+
0x65, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x5f, 0x6e, 0x75, 0x6d, 0x62,
|
|
3644
|
+
0x65, 0x72, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x74,
|
|
3645
|
+
0x79, 0x70, 0x65, 0x42, 0x17, 0x0a, 0x15, 0x5f, 0x69, 0x73, 0x5f, 0x64, 0x6f, 0x6d, 0x61, 0x69,
|
|
3646
|
+
0x6e, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x6c, 0x65, 0x72, 0x42, 0x11, 0x0a, 0x0f,
|
|
3647
|
+
0x5f, 0x70, 0x61, 0x72, 0x74, 0x5f, 0x6f, 0x66, 0x5f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x42,
|
|
3648
|
+
0x15, 0x0a, 0x13, 0x5f, 0x69, 0x73, 0x5f, 0x61, 0x7a, 0x75, 0x72, 0x65, 0x5f, 0x61, 0x64, 0x5f,
|
|
3649
|
+
0x6a, 0x6f, 0x69, 0x6e, 0x65, 0x64, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x6f, 0x73, 0x5f, 0x63, 0x6f,
|
|
3650
|
+
0x64, 0x65, 0x22, 0x8e, 0x01, 0x0a, 0x10, 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x49, 0x6e,
|
|
3651
|
+
0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x12, 0x38, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73,
|
|
3652
|
+
0x74, 0x61, 0x6d, 0x70, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f,
|
|
3653
|
+
0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d,
|
|
3654
|
+
0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d,
|
|
3655
|
+
0x70, 0x12, 0x40, 0x0a, 0x07, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x03,
|
|
3656
|
+
0x28, 0x0b, 0x32, 0x26, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
3657
|
+
0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e,
|
|
3658
|
+
0x76, 0x31, 0x2e, 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x52, 0x07, 0x6d, 0x6f, 0x6e, 0x69,
|
|
3659
|
+
0x74, 0x6f, 0x72, 0x22, 0xe9, 0x02, 0x0a, 0x07, 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x12,
|
|
3660
|
+
0x13, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x01, 0x52, 0x02, 0x69,
|
|
3661
|
+
0x64, 0x88, 0x01, 0x01, 0x12, 0x1c, 0x0a, 0x07, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x69, 0x64, 0x18,
|
|
3662
|
+
0x02, 0x20, 0x01, 0x28, 0x03, 0x48, 0x02, 0x52, 0x06, 0x6d, 0x61, 0x6b, 0x65, 0x49, 0x64, 0x88,
|
|
3663
|
+
0x01, 0x01, 0x12, 0x1b, 0x0a, 0x09, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18,
|
|
3664
|
+
0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6d, 0x61, 0x6b, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12,
|
|
3665
|
+
0x1d, 0x0a, 0x0a, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20,
|
|
3666
|
+
0x01, 0x28, 0x09, 0x52, 0x09, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x28,
|
|
3667
|
+
0x0a, 0x0d, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18,
|
|
3668
|
+
0x05, 0x20, 0x01, 0x28, 0x09, 0x48, 0x03, 0x52, 0x0c, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e,
|
|
3669
|
+
0x75, 0x6d, 0x62, 0x65, 0x72, 0x88, 0x01, 0x01, 0x12, 0x47, 0x0a, 0x11, 0x6d, 0x61, 0x6e, 0x75,
|
|
3670
|
+
0x66, 0x61, 0x63, 0x74, 0x75, 0x72, 0x65, 0x72, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x06, 0x20,
|
|
3671
|
+
0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
|
|
3672
|
+
0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52,
|
|
3673
|
+
0x10, 0x6d, 0x61, 0x6e, 0x75, 0x66, 0x61, 0x63, 0x74, 0x75, 0x72, 0x65, 0x72, 0x44, 0x61, 0x74,
|
|
3674
|
+
0x65, 0x12, 0x50, 0x0a, 0x07, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x73, 0x18, 0x14, 0x20, 0x01,
|
|
3675
|
+
0x28, 0x0b, 0x32, 0x34, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
3676
|
+
0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e,
|
|
3677
|
+
0x76, 0x31, 0x2e, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x73, 0x52, 0x61, 0x77, 0x4d, 0x6f, 0x6e,
|
|
3678
|
+
0x69, 0x74, 0x6f, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x07, 0x77, 0x69, 0x6e, 0x64,
|
|
3679
|
+
0x6f, 0x77, 0x73, 0x42, 0x05, 0x0a, 0x03, 0x72, 0x61, 0x77, 0x42, 0x05, 0x0a, 0x03, 0x5f, 0x69,
|
|
3680
|
+
0x64, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x69, 0x64, 0x42, 0x10, 0x0a,
|
|
3681
|
+
0x0e, 0x5f, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x22,
|
|
3682
|
+
0xf8, 0x03, 0x0a, 0x15, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x73, 0x52, 0x61, 0x77, 0x4d, 0x6f,
|
|
3683
|
+
0x6e, 0x69, 0x74, 0x6f, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x6f, 0x64,
|
|
3684
|
+
0x65, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x12,
|
|
3685
|
+
0x27, 0x0a, 0x0d, 0x70, 0x6e, 0x70, 0x5f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x69, 0x64,
|
|
3686
|
+
0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x0b, 0x70, 0x6e, 0x70, 0x44, 0x65, 0x76,
|
|
3687
|
+
0x69, 0x63, 0x65, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x28, 0x0a, 0x0d, 0x73, 0x65, 0x72, 0x69,
|
|
3688
|
+
0x61, 0x6c, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x48,
|
|
3689
|
+
0x01, 0x52, 0x0c, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x88,
|
|
3690
|
+
0x01, 0x01, 0x12, 0x22, 0x0a, 0x0a, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x5f, 0x68, 0x65, 0x78,
|
|
3691
|
+
0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x09, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c,
|
|
3692
|
+
0x48, 0x65, 0x78, 0x88, 0x01, 0x01, 0x12, 0x30, 0x0a, 0x11, 0x76, 0x65, 0x73, 0x61, 0x5f, 0x6d,
|
|
3693
|
+
0x61, 0x6e, 0x75, 0x66, 0x61, 0x63, 0x74, 0x75, 0x72, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28,
|
|
3694
|
+
0x09, 0x48, 0x03, 0x52, 0x10, 0x76, 0x65, 0x73, 0x61, 0x4d, 0x61, 0x6e, 0x75, 0x66, 0x61, 0x63,
|
|
3695
|
+
0x74, 0x75, 0x72, 0x65, 0x72, 0x88, 0x01, 0x01, 0x12, 0x2e, 0x0a, 0x10, 0x6b, 0x65, 0x79, 0x5f,
|
|
3696
|
+
0x6d, 0x61, 0x6e, 0x75, 0x66, 0x61, 0x63, 0x74, 0x75, 0x72, 0x65, 0x72, 0x18, 0x06, 0x20, 0x01,
|
|
3697
|
+
0x28, 0x09, 0x48, 0x04, 0x52, 0x0f, 0x6b, 0x65, 0x79, 0x4d, 0x61, 0x6e, 0x75, 0x66, 0x61, 0x63,
|
|
3698
|
+
0x74, 0x75, 0x72, 0x65, 0x72, 0x88, 0x01, 0x01, 0x12, 0x4c, 0x0a, 0x11, 0x6d, 0x61, 0x6e, 0x75,
|
|
3699
|
+
0x66, 0x61, 0x63, 0x74, 0x75, 0x72, 0x65, 0x72, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x07, 0x20,
|
|
3700
|
+
0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
|
|
3701
|
+
0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x48,
|
|
3702
|
+
0x05, 0x52, 0x10, 0x6d, 0x61, 0x6e, 0x75, 0x66, 0x61, 0x63, 0x74, 0x75, 0x72, 0x65, 0x72, 0x44,
|
|
3703
|
+
0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65,
|
|
3704
|
+
0x5f, 0x69, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x48, 0x06, 0x52, 0x08, 0x64, 0x65, 0x76,
|
|
3705
|
+
0x69, 0x63, 0x65, 0x49, 0x64, 0x88, 0x01, 0x01, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x70, 0x6e, 0x70,
|
|
3706
|
+
0x5f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x73,
|
|
3707
|
+
0x65, 0x72, 0x69, 0x61, 0x6c, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x42, 0x0d, 0x0a, 0x0b,
|
|
3708
|
+
0x5f, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x5f, 0x68, 0x65, 0x78, 0x42, 0x14, 0x0a, 0x12, 0x5f,
|
|
3709
|
+
0x76, 0x65, 0x73, 0x61, 0x5f, 0x6d, 0x61, 0x6e, 0x75, 0x66, 0x61, 0x63, 0x74, 0x75, 0x72, 0x65,
|
|
3710
|
+
0x72, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x6b, 0x65, 0x79, 0x5f, 0x6d, 0x61, 0x6e, 0x75, 0x66, 0x61,
|
|
3711
|
+
0x63, 0x74, 0x75, 0x72, 0x65, 0x72, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x6d, 0x61, 0x6e, 0x75, 0x66,
|
|
3712
|
+
0x61, 0x63, 0x74, 0x75, 0x72, 0x65, 0x72, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0c, 0x0a, 0x0a,
|
|
3713
|
+
0x5f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x22, 0x92, 0x01, 0x0a, 0x11, 0x53,
|
|
3714
|
+
0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x49, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79,
|
|
3715
|
+
0x12, 0x38, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x01, 0x20,
|
|
3716
|
+
0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
|
|
3717
|
+
0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52,
|
|
3718
|
+
0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x12, 0x43, 0x0a, 0x08, 0x73, 0x6f,
|
|
3719
|
+
0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x63,
|
|
3720
|
+
0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70,
|
|
3721
|
+
0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x6f, 0x66,
|
|
3722
|
+
0x74, 0x77, 0x61, 0x72, 0x65, 0x52, 0x08, 0x73, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x22,
|
|
3723
|
+
0xd3, 0x06, 0x0a, 0x08, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x12, 0x17, 0x0a, 0x04,
|
|
3724
|
+
0x72, 0x61, 0x6e, 0x6b, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x48, 0x00, 0x52, 0x04, 0x72, 0x61,
|
|
3725
|
+
0x6e, 0x6b, 0x88, 0x01, 0x01, 0x12, 0x1c, 0x0a, 0x07, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x69, 0x64,
|
|
3726
|
+
0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x48, 0x01, 0x52, 0x06, 0x74, 0x79, 0x70, 0x65, 0x49, 0x64,
|
|
3727
|
+
0x88, 0x01, 0x01, 0x12, 0x1a, 0x0a, 0x06, 0x63, 0x61, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20,
|
|
3728
|
+
0x01, 0x28, 0x03, 0x48, 0x02, 0x52, 0x05, 0x63, 0x61, 0x74, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12,
|
|
3729
|
+
0x1c, 0x0a, 0x07, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03,
|
|
3730
|
+
0x48, 0x03, 0x52, 0x06, 0x6d, 0x61, 0x6b, 0x65, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x18, 0x0a,
|
|
3731
|
+
0x05, 0x73, 0x77, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x48, 0x04, 0x52, 0x04,
|
|
3732
|
+
0x73, 0x77, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x65, 0x6e,
|
|
3733
|
+
0x74, 0x5f, 0x69, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x48, 0x05, 0x52, 0x08, 0x70, 0x61,
|
|
3734
|
+
0x72, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x74, 0x79, 0x70,
|
|
3735
|
+
0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x48, 0x06, 0x52, 0x08,
|
|
3736
|
+
0x74, 0x79, 0x70, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x1e, 0x0a, 0x08, 0x63,
|
|
3737
|
+
0x61, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x48, 0x07, 0x52,
|
|
3738
|
+
0x07, 0x63, 0x61, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x6d,
|
|
3739
|
+
0x61, 0x6b, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x48, 0x08,
|
|
3740
|
+
0x52, 0x08, 0x6d, 0x61, 0x6b, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x17, 0x0a,
|
|
3741
|
+
0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x48, 0x09, 0x52, 0x04, 0x6e,
|
|
3742
|
+
0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x1d, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
|
|
3743
|
+
0x6e, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0a, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69,
|
|
3744
|
+
0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x22, 0x0a, 0x0a, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x5f,
|
|
3745
|
+
0x76, 0x65, 0x72, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0b, 0x52, 0x09, 0x6d, 0x61, 0x72,
|
|
3746
|
+
0x6b, 0x65, 0x74, 0x56, 0x65, 0x72, 0x88, 0x01, 0x01, 0x12, 0x1d, 0x0a, 0x07, 0x65, 0x64, 0x69,
|
|
3747
|
+
0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0c, 0x52, 0x07, 0x65, 0x64,
|
|
3748
|
+
0x69, 0x74, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x19, 0x0a, 0x05, 0x62, 0x75, 0x69, 0x6c,
|
|
3749
|
+
0x64, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0d, 0x52, 0x05, 0x62, 0x75, 0x69, 0x6c, 0x64,
|
|
3750
|
+
0x88, 0x01, 0x01, 0x12, 0x17, 0x0a, 0x04, 0x61, 0x72, 0x63, 0x68, 0x18, 0x14, 0x20, 0x01, 0x28,
|
|
3751
|
+
0x09, 0x48, 0x0e, 0x52, 0x04, 0x61, 0x72, 0x63, 0x68, 0x88, 0x01, 0x01, 0x12, 0x17, 0x0a, 0x04,
|
|
3752
|
+
0x6c, 0x61, 0x6e, 0x67, 0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0f, 0x52, 0x04, 0x6c, 0x61,
|
|
3753
|
+
0x6e, 0x67, 0x88, 0x01, 0x01, 0x12, 0x15, 0x0a, 0x03, 0x63, 0x70, 0x65, 0x18, 0x0f, 0x20, 0x01,
|
|
3754
|
+
0x28, 0x09, 0x48, 0x10, 0x52, 0x03, 0x63, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x3c, 0x0a, 0x03,
|
|
3755
|
+
0x72, 0x61, 0x77, 0x18, 0x11, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x63, 0x6f, 0x6d, 0x2e,
|
|
3756
|
+
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75,
|
|
3757
|
+
0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x61, 0x77, 0x53, 0x6f, 0x66,
|
|
3758
|
+
0x74, 0x77, 0x61, 0x72, 0x65, 0x52, 0x03, 0x72, 0x61, 0x77, 0x12, 0x1e, 0x0a, 0x08, 0x72, 0x61,
|
|
3759
|
+
0x77, 0x5f, 0x68, 0x61, 0x73, 0x68, 0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x48, 0x11, 0x52, 0x07,
|
|
3760
|
+
0x72, 0x61, 0x77, 0x48, 0x61, 0x73, 0x68, 0x88, 0x01, 0x01, 0x12, 0x1e, 0x0a, 0x08, 0x6e, 0x72,
|
|
3761
|
+
0x65, 0x5f, 0x68, 0x61, 0x73, 0x68, 0x18, 0x13, 0x20, 0x01, 0x28, 0x09, 0x48, 0x12, 0x52, 0x07,
|
|
3762
|
+
0x6e, 0x72, 0x65, 0x48, 0x61, 0x73, 0x68, 0x88, 0x01, 0x01, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x72,
|
|
3763
|
+
0x61, 0x6e, 0x6b, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x69, 0x64, 0x42,
|
|
3764
|
+
0x09, 0x0a, 0x07, 0x5f, 0x63, 0x61, 0x74, 0x5f, 0x69, 0x64, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x6d,
|
|
3765
|
+
0x61, 0x6b, 0x65, 0x5f, 0x69, 0x64, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x73, 0x77, 0x5f, 0x69, 0x64,
|
|
3766
|
+
0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x42, 0x0c,
|
|
3767
|
+
0x0a, 0x0a, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x0b, 0x0a, 0x09,
|
|
3768
|
+
0x5f, 0x63, 0x61, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x6d, 0x61,
|
|
3769
|
+
0x6b, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x6e, 0x61, 0x6d, 0x65,
|
|
3770
|
+
0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x0d, 0x0a, 0x0b,
|
|
3771
|
+
0x5f, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x5f, 0x76, 0x65, 0x72, 0x42, 0x0a, 0x0a, 0x08, 0x5f,
|
|
3772
|
+
0x65, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x62, 0x75, 0x69, 0x6c,
|
|
3773
|
+
0x64, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x61, 0x72, 0x63, 0x68, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x6c,
|
|
3774
|
+
0x61, 0x6e, 0x67, 0x42, 0x06, 0x0a, 0x04, 0x5f, 0x63, 0x70, 0x65, 0x42, 0x0b, 0x0a, 0x09, 0x5f,
|
|
3775
|
+
0x72, 0x61, 0x77, 0x5f, 0x68, 0x61, 0x73, 0x68, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x6e, 0x72, 0x65,
|
|
3776
|
+
0x5f, 0x68, 0x61, 0x73, 0x68, 0x22, 0xb9, 0x03, 0x0a, 0x0b, 0x52, 0x61, 0x77, 0x53, 0x6f, 0x66,
|
|
3777
|
+
0x74, 0x77, 0x61, 0x72, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20,
|
|
3778
|
+
0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x06, 0x76, 0x65, 0x6e,
|
|
3779
|
+
0x64, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x06, 0x76, 0x65, 0x6e,
|
|
3780
|
+
0x64, 0x6f, 0x72, 0x88, 0x01, 0x01, 0x12, 0x1d, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
|
|
3781
|
+
0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69,
|
|
3782
|
+
0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x17, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x04, 0x20,
|
|
3783
|
+
0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x88, 0x01, 0x01, 0x12, 0x1e,
|
|
3784
|
+
0x0a, 0x08, 0x65, 0x78, 0x65, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09,
|
|
3785
|
+
0x48, 0x03, 0x52, 0x07, 0x65, 0x78, 0x65, 0x50, 0x61, 0x74, 0x68, 0x88, 0x01, 0x01, 0x12, 0x17,
|
|
3786
|
+
0x0a, 0x04, 0x61, 0x72, 0x63, 0x68, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x48, 0x04, 0x52, 0x04,
|
|
3787
|
+
0x61, 0x72, 0x63, 0x68, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x69, 0x6e, 0x73, 0x74, 0x61,
|
|
3788
|
+
0x6c, 0x6c, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x48, 0x05, 0x52,
|
|
3789
|
+
0x0b, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12,
|
|
3790
|
+
0x24, 0x0a, 0x0b, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x08,
|
|
3791
|
+
0x20, 0x01, 0x28, 0x09, 0x48, 0x06, 0x52, 0x0a, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79,
|
|
3792
|
+
0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x18, 0x0a, 0x05, 0x73, 0x77, 0x5f, 0x69, 0x64, 0x18, 0x09,
|
|
3793
|
+
0x20, 0x01, 0x28, 0x09, 0x48, 0x07, 0x52, 0x04, 0x73, 0x77, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12,
|
|
3794
|
+
0x2b, 0x0a, 0x0f, 0x69, 0x73, 0x5f, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x75, 0x73,
|
|
3795
|
+
0x65, 0x72, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x08, 0x48, 0x08, 0x52, 0x0d, 0x69, 0x73, 0x43, 0x75,
|
|
3796
|
+
0x72, 0x72, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x88, 0x01, 0x01, 0x42, 0x09, 0x0a, 0x07,
|
|
3797
|
+
0x5f, 0x76, 0x65, 0x6e, 0x64, 0x6f, 0x72, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x76, 0x65, 0x72, 0x73,
|
|
3798
|
+
0x69, 0x6f, 0x6e, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x42, 0x0b, 0x0a, 0x09,
|
|
3799
|
+
0x5f, 0x65, 0x78, 0x65, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x61, 0x72,
|
|
3800
|
+
0x63, 0x68, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x5f, 0x64,
|
|
3801
|
+
0x61, 0x74, 0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x74,
|
|
3802
|
+
0x79, 0x70, 0x65, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x73, 0x77, 0x5f, 0x69, 0x64, 0x42, 0x12, 0x0a,
|
|
3803
|
+
0x10, 0x5f, 0x69, 0x73, 0x5f, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x75, 0x73, 0x65,
|
|
3804
|
+
0x72, 0x22, 0xba, 0x0d, 0x0a, 0x0c, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x42, 0x72, 0x61,
|
|
3805
|
+
0x6e, 0x64, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02,
|
|
3806
|
+
0x69, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18,
|
|
3807
|
+
0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6d, 0x61, 0x6b, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12,
|
|
3808
|
+
0x20, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x12, 0x20, 0x01,
|
|
3809
|
+
0x28, 0x03, 0x48, 0x00, 0x52, 0x08, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x88, 0x01,
|
|
3810
|
+
0x01, 0x12, 0x2d, 0x0a, 0x10, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65,
|
|
3811
|
+
0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x48, 0x01, 0x52, 0x0e, 0x6c,
|
|
3812
|
+
0x61, 0x73, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x88, 0x01, 0x01,
|
|
3813
|
+
0x12, 0x26, 0x0a, 0x0c, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x5f, 0x63, 0x6f, 0x64, 0x65,
|
|
3814
|
+
0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x0b, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72,
|
|
3815
|
+
0x79, 0x43, 0x6f, 0x64, 0x65, 0x88, 0x01, 0x01, 0x12, 0x29, 0x0a, 0x0e, 0x6c, 0x6f, 0x67, 0x6f,
|
|
3816
|
+
0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09,
|
|
3817
|
+
0x48, 0x03, 0x52, 0x0c, 0x6c, 0x6f, 0x67, 0x6f, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x55, 0x72, 0x6c,
|
|
3818
|
+
0x88, 0x01, 0x01, 0x12, 0x2d, 0x0a, 0x10, 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x5f, 0x69, 0x6d,
|
|
3819
|
+
0x61, 0x67, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x48, 0x04, 0x52,
|
|
3820
|
+
0x0e, 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x55, 0x72, 0x6c, 0x88,
|
|
3821
|
+
0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x77, 0x69, 0x6b, 0x69, 0x70, 0x65, 0x64, 0x69, 0x61, 0x5f,
|
|
3822
|
+
0x69, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x48, 0x05, 0x52, 0x0b, 0x77, 0x69, 0x6b, 0x69,
|
|
3823
|
+
0x70, 0x65, 0x64, 0x69, 0x61, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x33, 0x0a, 0x13, 0x77, 0x69,
|
|
3824
|
+
0x6b, 0x69, 0x70, 0x65, 0x64, 0x69, 0x61, 0x5f, 0x6c, 0x61, 0x6e, 0x67, 0x5f, 0x63, 0x6f, 0x64,
|
|
3825
|
+
0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x48, 0x06, 0x52, 0x11, 0x77, 0x69, 0x6b, 0x69, 0x70,
|
|
3826
|
+
0x65, 0x64, 0x69, 0x61, 0x4c, 0x61, 0x6e, 0x67, 0x43, 0x6f, 0x64, 0x65, 0x88, 0x01, 0x01, 0x12,
|
|
3827
|
+
0x24, 0x0a, 0x0b, 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x0b,
|
|
3828
|
+
0x20, 0x01, 0x28, 0x09, 0x48, 0x07, 0x52, 0x0a, 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x55,
|
|
3829
|
+
0x72, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74,
|
|
3830
|
+
0x5f, 0x75, 0x72, 0x6c, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x48, 0x08, 0x52, 0x0a, 0x73, 0x75,
|
|
3831
|
+
0x70, 0x70, 0x6f, 0x72, 0x74, 0x55, 0x72, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x28, 0x0a, 0x0d, 0x73,
|
|
3832
|
+
0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x0d, 0x20, 0x01,
|
|
3833
|
+
0x28, 0x09, 0x48, 0x09, 0x52, 0x0c, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x50, 0x68, 0x6f,
|
|
3834
|
+
0x6e, 0x65, 0x88, 0x01, 0x01, 0x12, 0x2e, 0x0a, 0x10, 0x66, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f,
|
|
3835
|
+
0x6b, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x48,
|
|
3836
|
+
0x0a, 0x52, 0x0f, 0x66, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75,
|
|
3837
|
+
0x6e, 0x74, 0x88, 0x01, 0x01, 0x12, 0x2c, 0x0a, 0x0f, 0x74, 0x77, 0x69, 0x74, 0x74, 0x65, 0x72,
|
|
3838
|
+
0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0b,
|
|
3839
|
+
0x52, 0x0e, 0x74, 0x77, 0x69, 0x74, 0x74, 0x65, 0x72, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
|
|
3840
|
+
0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x77, 0x61, 0x72, 0x72, 0x61, 0x6e, 0x74, 0x79, 0x5f,
|
|
3841
|
+
0x75, 0x72, 0x6c, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0c, 0x52, 0x0b, 0x77, 0x61, 0x72,
|
|
3842
|
+
0x72, 0x61, 0x6e, 0x74, 0x79, 0x55, 0x72, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x33, 0x0a, 0x13, 0x77,
|
|
3843
|
+
0x61, 0x72, 0x72, 0x61, 0x6e, 0x74, 0x79, 0x5f, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x5f, 0x75,
|
|
3844
|
+
0x72, 0x6c, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0d, 0x52, 0x11, 0x77, 0x61, 0x72, 0x72,
|
|
3845
|
+
0x61, 0x6e, 0x74, 0x79, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x55, 0x72, 0x6c, 0x88, 0x01, 0x01,
|
|
3846
|
+
0x12, 0x28, 0x0a, 0x0d, 0x63, 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x74, 0x79, 0x5f, 0x75, 0x72,
|
|
3847
|
+
0x6c, 0x18, 0x14, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0e, 0x52, 0x0c, 0x63, 0x6f, 0x6d, 0x6d, 0x75,
|
|
3848
|
+
0x6e, 0x69, 0x74, 0x79, 0x55, 0x72, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x2e, 0x0a, 0x10, 0x6c, 0x69,
|
|
3849
|
+
0x6e, 0x6b, 0x65, 0x64, 0x69, 0x6e, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x15,
|
|
3850
|
+
0x20, 0x01, 0x28, 0x09, 0x48, 0x0f, 0x52, 0x0f, 0x6c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x69, 0x6e,
|
|
3851
|
+
0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x88, 0x01, 0x01, 0x12, 0x30, 0x0a, 0x11, 0x69, 0x6e,
|
|
3852
|
+
0x73, 0x74, 0x61, 0x67, 0x72, 0x61, 0x6d, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18,
|
|
3853
|
+
0x16, 0x20, 0x01, 0x28, 0x09, 0x48, 0x10, 0x52, 0x10, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x67, 0x72,
|
|
3854
|
+
0x61, 0x6d, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x88, 0x01, 0x01, 0x12, 0x2c, 0x0a, 0x0f,
|
|
3855
|
+
0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18,
|
|
3856
|
+
0x17, 0x20, 0x01, 0x28, 0x09, 0x48, 0x11, 0x52, 0x0e, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65,
|
|
3857
|
+
0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x88, 0x01, 0x01, 0x12, 0x30, 0x0a, 0x11, 0x70, 0x69,
|
|
3858
|
+
0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18,
|
|
3859
|
+
0x18, 0x20, 0x01, 0x28, 0x09, 0x48, 0x12, 0x52, 0x10, 0x70, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65,
|
|
3860
|
+
0x73, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x88, 0x01, 0x01, 0x12, 0x2a, 0x0a, 0x0e,
|
|
3861
|
+
0x63, 0x6c, 0x61, 0x73, 0x73, 0x5f, 0x68, 0x61, 0x72, 0x64, 0x77, 0x61, 0x72, 0x65, 0x18, 0x19,
|
|
3862
|
+
0x20, 0x01, 0x28, 0x08, 0x48, 0x13, 0x52, 0x0d, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x48, 0x61, 0x72,
|
|
3863
|
+
0x64, 0x77, 0x61, 0x72, 0x65, 0x88, 0x01, 0x01, 0x12, 0x2a, 0x0a, 0x0e, 0x63, 0x6c, 0x61, 0x73,
|
|
3864
|
+
0x73, 0x5f, 0x73, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x08,
|
|
3865
|
+
0x48, 0x14, 0x52, 0x0d, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72,
|
|
3866
|
+
0x65, 0x88, 0x01, 0x01, 0x12, 0x2a, 0x0a, 0x0e, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x5f, 0x63, 0x6f,
|
|
3867
|
+
0x6e, 0x73, 0x75, 0x6d, 0x65, 0x72, 0x18, 0x1b, 0x20, 0x01, 0x28, 0x08, 0x48, 0x15, 0x52, 0x0d,
|
|
3868
|
+
0x63, 0x6c, 0x61, 0x73, 0x73, 0x43, 0x6f, 0x6e, 0x73, 0x75, 0x6d, 0x65, 0x72, 0x88, 0x01, 0x01,
|
|
3869
|
+
0x12, 0x2e, 0x0a, 0x10, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x5f, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x70,
|
|
3870
|
+
0x72, 0x69, 0x73, 0x65, 0x18, 0x1c, 0x20, 0x01, 0x28, 0x08, 0x48, 0x16, 0x52, 0x0f, 0x63, 0x6c,
|
|
3871
|
+
0x61, 0x73, 0x73, 0x45, 0x6e, 0x74, 0x65, 0x72, 0x70, 0x72, 0x69, 0x73, 0x65, 0x88, 0x01, 0x01,
|
|
3872
|
+
0x12, 0x2e, 0x0a, 0x10, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x5f, 0x69, 0x6e, 0x64, 0x75, 0x73, 0x74,
|
|
3873
|
+
0x72, 0x69, 0x61, 0x6c, 0x18, 0x1d, 0x20, 0x01, 0x28, 0x08, 0x48, 0x17, 0x52, 0x0f, 0x63, 0x6c,
|
|
3874
|
+
0x61, 0x73, 0x73, 0x49, 0x6e, 0x64, 0x75, 0x73, 0x74, 0x72, 0x69, 0x61, 0x6c, 0x88, 0x01, 0x01,
|
|
3875
|
+
0x12, 0x2e, 0x0a, 0x10, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x5f, 0x69, 0x6e, 0x64, 0x69, 0x76, 0x69,
|
|
3876
|
+
0x64, 0x75, 0x61, 0x6c, 0x18, 0x1e, 0x20, 0x01, 0x28, 0x08, 0x48, 0x18, 0x52, 0x0f, 0x63, 0x6c,
|
|
3877
|
+
0x61, 0x73, 0x73, 0x49, 0x6e, 0x64, 0x69, 0x76, 0x69, 0x64, 0x75, 0x61, 0x6c, 0x88, 0x01, 0x01,
|
|
3878
|
+
0x12, 0x24, 0x0a, 0x0b, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x18,
|
|
3879
|
+
0x13, 0x20, 0x01, 0x28, 0x05, 0x48, 0x19, 0x52, 0x0a, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x53, 0x63,
|
|
3880
|
+
0x6f, 0x72, 0x65, 0x88, 0x01, 0x01, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x70, 0x61, 0x72, 0x65, 0x6e,
|
|
3881
|
+
0x74, 0x5f, 0x69, 0x64, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x75, 0x70,
|
|
3882
|
+
0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x63, 0x6f,
|
|
3883
|
+
0x75, 0x6e, 0x74, 0x72, 0x79, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x6c,
|
|
3884
|
+
0x6f, 0x67, 0x6f, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x42, 0x13, 0x0a,
|
|
3885
|
+
0x11, 0x5f, 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x75,
|
|
3886
|
+
0x72, 0x6c, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x77, 0x69, 0x6b, 0x69, 0x70, 0x65, 0x64, 0x69, 0x61,
|
|
3887
|
+
0x5f, 0x69, 0x64, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x77, 0x69, 0x6b, 0x69, 0x70, 0x65, 0x64, 0x69,
|
|
3888
|
+
0x61, 0x5f, 0x6c, 0x61, 0x6e, 0x67, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f,
|
|
3889
|
+
0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x42, 0x0e, 0x0a, 0x0c, 0x5f,
|
|
3890
|
+
0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x75, 0x72, 0x6c, 0x42, 0x10, 0x0a, 0x0e, 0x5f,
|
|
3891
|
+
0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x42, 0x13, 0x0a,
|
|
3892
|
+
0x11, 0x5f, 0x66, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75,
|
|
3893
|
+
0x6e, 0x74, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x74, 0x77, 0x69, 0x74, 0x74, 0x65, 0x72, 0x5f, 0x61,
|
|
3894
|
+
0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x77, 0x61, 0x72, 0x72, 0x61,
|
|
3895
|
+
0x6e, 0x74, 0x79, 0x5f, 0x75, 0x72, 0x6c, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x77, 0x61, 0x72, 0x72,
|
|
3896
|
+
0x61, 0x6e, 0x74, 0x79, 0x5f, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x5f, 0x75, 0x72, 0x6c, 0x42,
|
|
3897
|
+
0x10, 0x0a, 0x0e, 0x5f, 0x63, 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x74, 0x79, 0x5f, 0x75, 0x72,
|
|
3898
|
+
0x6c, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x69, 0x6e, 0x5f, 0x61,
|
|
3899
|
+
0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x69, 0x6e, 0x73, 0x74, 0x61,
|
|
3900
|
+
0x67, 0x72, 0x61, 0x6d, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x12, 0x0a, 0x10,
|
|
3901
|
+
0x5f, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
|
|
3902
|
+
0x42, 0x14, 0x0a, 0x12, 0x5f, 0x70, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x5f, 0x61,
|
|
3903
|
+
0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x63, 0x6c, 0x61, 0x73, 0x73,
|
|
3904
|
+
0x5f, 0x68, 0x61, 0x72, 0x64, 0x77, 0x61, 0x72, 0x65, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x63, 0x6c,
|
|
3905
|
+
0x61, 0x73, 0x73, 0x5f, 0x73, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x42, 0x11, 0x0a, 0x0f,
|
|
3906
|
+
0x5f, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x75, 0x6d, 0x65, 0x72, 0x42,
|
|
3907
|
+
0x13, 0x0a, 0x11, 0x5f, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x5f, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x70,
|
|
3908
|
+
0x72, 0x69, 0x73, 0x65, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x5f, 0x69,
|
|
3909
|
+
0x6e, 0x64, 0x75, 0x73, 0x74, 0x72, 0x69, 0x61, 0x6c, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x63, 0x6c,
|
|
3910
|
+
0x61, 0x73, 0x73, 0x5f, 0x69, 0x6e, 0x64, 0x69, 0x76, 0x69, 0x64, 0x75, 0x61, 0x6c, 0x42, 0x0e,
|
|
3911
|
+
0x0a, 0x0c, 0x5f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x22, 0x95,
|
|
3912
|
+
0x0a, 0x0a, 0x0c, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x12,
|
|
3913
|
+
0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12,
|
|
3914
|
+
0x17, 0x0a, 0x07, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03,
|
|
3915
|
+
0x52, 0x06, 0x6d, 0x61, 0x6b, 0x65, 0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x65, 0x76, 0x69,
|
|
3916
|
+
0x63, 0x65, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b,
|
|
3917
|
+
0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x12, 0x29, 0x0a, 0x0e, 0x64,
|
|
3918
|
+
0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20,
|
|
3919
|
+
0x01, 0x28, 0x03, 0x48, 0x00, 0x52, 0x0c, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x54, 0x79, 0x70,
|
|
3920
|
+
0x65, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x2a, 0x0a, 0x11, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65,
|
|
3921
|
+
0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x06, 0x20, 0x03, 0x28,
|
|
3922
|
+
0x09, 0x52, 0x0f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x43, 0x6f,
|
|
3923
|
+
0x64, 0x65, 0x12, 0x20, 0x0a, 0x09, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x5f, 0x69, 0x64, 0x18,
|
|
3924
|
+
0x0a, 0x20, 0x01, 0x28, 0x03, 0x48, 0x01, 0x52, 0x08, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x49,
|
|
3925
|
+
0x64, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x69, 0x73, 0x5f, 0x66, 0x61, 0x6d, 0x69, 0x6c,
|
|
3926
|
+
0x79, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x08, 0x48, 0x02, 0x52, 0x08, 0x69, 0x73, 0x46, 0x61, 0x6d,
|
|
3927
|
+
0x69, 0x6c, 0x79, 0x88, 0x01, 0x01, 0x12, 0x22, 0x0a, 0x0a, 0x6d, 0x61, 0x6e, 0x75, 0x61, 0x6c,
|
|
3928
|
+
0x5f, 0x75, 0x72, 0x6c, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x48, 0x03, 0x52, 0x09, 0x6d, 0x61,
|
|
3929
|
+
0x6e, 0x75, 0x61, 0x6c, 0x55, 0x72, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x1c, 0x0a, 0x07, 0x66, 0x61,
|
|
3930
|
+
0x71, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x48, 0x04, 0x52, 0x06, 0x66,
|
|
3931
|
+
0x61, 0x71, 0x55, 0x72, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x72, 0x65, 0x6c, 0x65,
|
|
3932
|
+
0x61, 0x73, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x03, 0x48, 0x05,
|
|
3933
|
+
0x52, 0x0b, 0x72, 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01,
|
|
3934
|
+
0x12, 0x20, 0x0a, 0x09, 0x64, 0x69, 0x73, 0x63, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x0f, 0x20,
|
|
3935
|
+
0x01, 0x28, 0x03, 0x48, 0x06, 0x52, 0x08, 0x64, 0x69, 0x73, 0x63, 0x44, 0x61, 0x74, 0x65, 0x88,
|
|
3936
|
+
0x01, 0x01, 0x12, 0x1e, 0x0a, 0x08, 0x65, 0x6f, 0x73, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x1a,
|
|
3937
|
+
0x20, 0x01, 0x28, 0x03, 0x48, 0x07, 0x52, 0x07, 0x65, 0x6f, 0x73, 0x44, 0x61, 0x74, 0x65, 0x88,
|
|
3938
|
+
0x01, 0x01, 0x12, 0x34, 0x0a, 0x13, 0x6c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x6c, 0x65, 0x5f, 0x63,
|
|
3939
|
+
0x6f, 0x6e, 0x66, 0x69, 0x64, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x1d, 0x20, 0x01, 0x28, 0x09, 0x48,
|
|
3940
|
+
0x08, 0x52, 0x12, 0x6c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69,
|
|
3941
|
+
0x64, 0x65, 0x6e, 0x63, 0x65, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b, 0x70, 0x72, 0x69, 0x63,
|
|
3942
|
+
0x65, 0x5f, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x18, 0x18, 0x20, 0x01, 0x28, 0x09, 0x48, 0x09, 0x52,
|
|
3943
|
+
0x0a, 0x70, 0x72, 0x69, 0x63, 0x65, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x88, 0x01, 0x01, 0x12, 0x28,
|
|
3944
|
+
0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x18,
|
|
3945
|
+
0x19, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0a, 0x52, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
|
|
3946
|
+
0x43, 0x6c, 0x61, 0x73, 0x73, 0x88, 0x01, 0x01, 0x12, 0x2b, 0x0a, 0x0f, 0x73, 0x68, 0x5f, 0x69,
|
|
3947
|
+
0x66, 0x74, 0x74, 0x74, 0x5f, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x18, 0x11, 0x20, 0x01, 0x28,
|
|
3948
|
+
0x09, 0x48, 0x0b, 0x52, 0x0d, 0x73, 0x68, 0x49, 0x66, 0x74, 0x74, 0x74, 0x48, 0x61, 0x6e, 0x64,
|
|
3949
|
+
0x6c, 0x65, 0x88, 0x01, 0x01, 0x12, 0x2d, 0x0a, 0x13, 0x73, 0x68, 0x5f, 0x67, 0x6f, 0x6f, 0x67,
|
|
3950
|
+
0x6c, 0x65, 0x5f, 0x61, 0x73, 0x73, 0x5f, 0x6c, 0x61, 0x6e, 0x67, 0x73, 0x18, 0x12, 0x20, 0x03,
|
|
3951
|
+
0x28, 0x09, 0x52, 0x10, 0x73, 0x68, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x73, 0x73, 0x4c,
|
|
3952
|
+
0x61, 0x6e, 0x67, 0x73, 0x12, 0x24, 0x0a, 0x0e, 0x73, 0x68, 0x5f, 0x61, 0x6c, 0x65, 0x78, 0x61,
|
|
3953
|
+
0x5f, 0x6c, 0x61, 0x6e, 0x67, 0x73, 0x18, 0x13, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x73, 0x68,
|
|
3954
|
+
0x41, 0x6c, 0x65, 0x78, 0x61, 0x4c, 0x61, 0x6e, 0x67, 0x73, 0x12, 0x29, 0x0a, 0x0e, 0x73, 0x68,
|
|
3955
|
+
0x5f, 0x68, 0x61, 0x73, 0x73, 0x5f, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x18, 0x14, 0x20, 0x01,
|
|
3956
|
+
0x28, 0x09, 0x48, 0x0c, 0x52, 0x0c, 0x73, 0x68, 0x48, 0x61, 0x73, 0x73, 0x48, 0x61, 0x6e, 0x64,
|
|
3957
|
+
0x6c, 0x65, 0x88, 0x01, 0x01, 0x12, 0x2e, 0x0a, 0x11, 0x73, 0x68, 0x5f, 0x61, 0x70, 0x70, 0x6c,
|
|
3958
|
+
0x65, 0x5f, 0x68, 0x6f, 0x6d, 0x65, 0x5f, 0x6b, 0x69, 0x74, 0x18, 0x15, 0x20, 0x01, 0x28, 0x08,
|
|
3959
|
+
0x48, 0x0d, 0x52, 0x0e, 0x73, 0x68, 0x41, 0x70, 0x70, 0x6c, 0x65, 0x48, 0x6f, 0x6d, 0x65, 0x4b,
|
|
3960
|
+
0x69, 0x74, 0x88, 0x01, 0x01, 0x12, 0x30, 0x0a, 0x12, 0x73, 0x68, 0x5f, 0x6f, 0x70, 0x65, 0x6e,
|
|
3961
|
+
0x5f, 0x68, 0x61, 0x62, 0x5f, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x18, 0x16, 0x20, 0x01, 0x28,
|
|
3962
|
+
0x09, 0x48, 0x0e, 0x52, 0x0f, 0x73, 0x68, 0x4f, 0x70, 0x65, 0x6e, 0x48, 0x61, 0x62, 0x48, 0x61,
|
|
3963
|
+
0x6e, 0x64, 0x6c, 0x65, 0x88, 0x01, 0x01, 0x12, 0x1e, 0x0a, 0x08, 0x6e, 0x69, 0x73, 0x74, 0x5f,
|
|
3964
|
+
0x63, 0x70, 0x65, 0x18, 0x1c, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0f, 0x52, 0x07, 0x6e, 0x69, 0x73,
|
|
3965
|
+
0x74, 0x43, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x23, 0x0a, 0x0a, 0x70, 0x6f, 0x70, 0x75, 0x6c,
|
|
3966
|
+
0x61, 0x72, 0x69, 0x74, 0x79, 0x18, 0x17, 0x20, 0x01, 0x28, 0x05, 0x48, 0x10, 0x52, 0x0a, 0x70,
|
|
3967
|
+
0x6f, 0x70, 0x75, 0x6c, 0x61, 0x72, 0x69, 0x74, 0x79, 0x88, 0x01, 0x01, 0x12, 0x2d, 0x0a, 0x10,
|
|
3968
|
+
0x6c, 0x61, 0x73, 0x74, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65,
|
|
3969
|
+
0x18, 0x10, 0x20, 0x01, 0x28, 0x03, 0x48, 0x11, 0x52, 0x0e, 0x6c, 0x61, 0x73, 0x74, 0x55, 0x70,
|
|
3970
|
+
0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b, 0x6d,
|
|
3971
|
+
0x61, 0x74, 0x63, 0x68, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x18, 0x1b, 0x20, 0x01, 0x28, 0x05,
|
|
3972
|
+
0x48, 0x12, 0x52, 0x0a, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x53, 0x63, 0x6f, 0x72, 0x65, 0x88, 0x01,
|
|
3973
|
+
0x01, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x74, 0x79, 0x70,
|
|
3974
|
+
0x65, 0x5f, 0x69, 0x64, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x5f,
|
|
3975
|
+
0x69, 0x64, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x69, 0x73, 0x5f, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79,
|
|
3976
|
+
0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x6d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x42,
|
|
3977
|
+
0x0a, 0x0a, 0x08, 0x5f, 0x66, 0x61, 0x71, 0x5f, 0x75, 0x72, 0x6c, 0x42, 0x0f, 0x0a, 0x0d, 0x5f,
|
|
3978
|
+
0x72, 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0c, 0x0a, 0x0a,
|
|
3979
|
+
0x5f, 0x64, 0x69, 0x73, 0x63, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x65,
|
|
3980
|
+
0x6f, 0x73, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x6c, 0x69, 0x66, 0x65,
|
|
3981
|
+
0x63, 0x79, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x64, 0x65, 0x6e, 0x63, 0x65, 0x42,
|
|
3982
|
+
0x0e, 0x0a, 0x0c, 0x5f, 0x70, 0x72, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x42,
|
|
3983
|
+
0x10, 0x0a, 0x0e, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x6c, 0x61, 0x73,
|
|
3984
|
+
0x73, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x73, 0x68, 0x5f, 0x69, 0x66, 0x74, 0x74, 0x74, 0x5f, 0x68,
|
|
3985
|
+
0x61, 0x6e, 0x64, 0x6c, 0x65, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x73, 0x68, 0x5f, 0x68, 0x61, 0x73,
|
|
3986
|
+
0x73, 0x5f, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x73, 0x68, 0x5f,
|
|
3987
|
+
0x61, 0x70, 0x70, 0x6c, 0x65, 0x5f, 0x68, 0x6f, 0x6d, 0x65, 0x5f, 0x6b, 0x69, 0x74, 0x42, 0x15,
|
|
3988
|
+
0x0a, 0x13, 0x5f, 0x73, 0x68, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x5f, 0x68, 0x61, 0x62, 0x5f, 0x68,
|
|
3989
|
+
0x61, 0x6e, 0x64, 0x6c, 0x65, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x6e, 0x69, 0x73, 0x74, 0x5f, 0x63,
|
|
3990
|
+
0x70, 0x65, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x72, 0x69, 0x74,
|
|
3991
|
+
0x79, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74,
|
|
3992
|
+
0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x6d, 0x61, 0x74, 0x63, 0x68,
|
|
3993
|
+
0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x22, 0xd4, 0x0a, 0x0a, 0x09, 0x43, 0x61, 0x74, 0x61, 0x6c,
|
|
3994
|
+
0x6f, 0x67, 0x4f, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
|
|
3995
|
+
0x52, 0x02, 0x69, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x6f, 0x73, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18,
|
|
3996
|
+
0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6f, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x22, 0x0a,
|
|
3997
|
+
0x0a, 0x6f, 0x73, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28,
|
|
3998
|
+
0x09, 0x48, 0x00, 0x52, 0x09, 0x6f, 0x73, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x88, 0x01,
|
|
3999
|
+
0x01, 0x12, 0x1e, 0x0a, 0x08, 0x6f, 0x73, 0x5f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x18, 0x0c, 0x20,
|
|
4000
|
+
0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x07, 0x6f, 0x73, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x88, 0x01,
|
|
4001
|
+
0x01, 0x12, 0x2b, 0x0a, 0x0f, 0x6f, 0x73, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f,
|
|
4002
|
+
0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x0d, 0x6f, 0x73,
|
|
4003
|
+
0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x24,
|
|
4004
|
+
0x0a, 0x0b, 0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x06, 0x20,
|
|
4005
|
+
0x01, 0x28, 0x03, 0x48, 0x03, 0x52, 0x0a, 0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x49,
|
|
4006
|
+
0x64, 0x88, 0x01, 0x01, 0x12, 0x1c, 0x0a, 0x07, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x69, 0x64, 0x18,
|
|
4007
|
+
0x07, 0x20, 0x01, 0x28, 0x03, 0x48, 0x04, 0x52, 0x06, 0x6d, 0x61, 0x6b, 0x65, 0x49, 0x64, 0x88,
|
|
4008
|
+
0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18,
|
|
4009
|
+
0x08, 0x20, 0x01, 0x28, 0x03, 0x48, 0x05, 0x52, 0x08, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x49,
|
|
4010
|
+
0x64, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x72, 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x5f,
|
|
4011
|
+
0x64, 0x61, 0x74, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x48, 0x06, 0x52, 0x0b, 0x72, 0x65,
|
|
4012
|
+
0x6c, 0x65, 0x61, 0x73, 0x65, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x1e, 0x0a, 0x08,
|
|
4013
|
+
0x65, 0x6f, 0x6c, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x48, 0x07,
|
|
4014
|
+
0x52, 0x07, 0x65, 0x6f, 0x6c, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x1e, 0x0a, 0x08,
|
|
4015
|
+
0x65, 0x6f, 0x73, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x16, 0x20, 0x01, 0x28, 0x03, 0x48, 0x08,
|
|
4016
|
+
0x52, 0x07, 0x65, 0x6f, 0x73, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09,
|
|
4017
|
+
0x65, 0x6f, 0x73, 0x78, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x19, 0x20, 0x01, 0x28, 0x03, 0x48,
|
|
4018
|
+
0x09, 0x52, 0x08, 0x65, 0x6f, 0x73, 0x78, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x34,
|
|
4019
|
+
0x0a, 0x13, 0x6c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69,
|
|
4020
|
+
0x64, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0a, 0x52, 0x12, 0x6c,
|
|
4021
|
+
0x69, 0x66, 0x65, 0x63, 0x79, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x64, 0x65, 0x6e, 0x63,
|
|
4022
|
+
0x65, 0x88, 0x01, 0x01, 0x12, 0x29, 0x0a, 0x0e, 0x6c, 0x6f, 0x67, 0x6f, 0x5f, 0x69, 0x6d, 0x61,
|
|
4023
|
+
0x67, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0b, 0x52, 0x0c,
|
|
4024
|
+
0x6c, 0x6f, 0x67, 0x6f, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x55, 0x72, 0x6c, 0x88, 0x01, 0x01, 0x12,
|
|
4025
|
+
0x2d, 0x0a, 0x10, 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f,
|
|
4026
|
+
0x75, 0x72, 0x6c, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0c, 0x52, 0x0e, 0x62, 0x61, 0x6e,
|
|
4027
|
+
0x6e, 0x65, 0x72, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x55, 0x72, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x26,
|
|
4028
|
+
0x0a, 0x0c, 0x77, 0x69, 0x6b, 0x69, 0x70, 0x65, 0x64, 0x69, 0x61, 0x5f, 0x69, 0x64, 0x18, 0x0f,
|
|
4029
|
+
0x20, 0x01, 0x28, 0x09, 0x48, 0x0d, 0x52, 0x0b, 0x77, 0x69, 0x6b, 0x69, 0x70, 0x65, 0x64, 0x69,
|
|
4030
|
+
0x61, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x33, 0x0a, 0x13, 0x77, 0x69, 0x6b, 0x69, 0x70, 0x65,
|
|
4031
|
+
0x64, 0x69, 0x61, 0x5f, 0x6c, 0x61, 0x6e, 0x67, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x10, 0x20,
|
|
4032
|
+
0x01, 0x28, 0x09, 0x48, 0x0e, 0x52, 0x11, 0x77, 0x69, 0x6b, 0x69, 0x70, 0x65, 0x64, 0x69, 0x61,
|
|
4033
|
+
0x4c, 0x61, 0x6e, 0x67, 0x43, 0x6f, 0x64, 0x65, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b, 0x77,
|
|
4034
|
+
0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09,
|
|
4035
|
+
0x48, 0x0f, 0x52, 0x0a, 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x55, 0x72, 0x6c, 0x88, 0x01,
|
|
4036
|
+
0x01, 0x12, 0x24, 0x0a, 0x0b, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x75, 0x72, 0x6c,
|
|
4037
|
+
0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x48, 0x10, 0x52, 0x0a, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72,
|
|
4038
|
+
0x74, 0x55, 0x72, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x28, 0x0a, 0x0d, 0x73, 0x75, 0x70, 0x70, 0x6f,
|
|
4039
|
+
0x72, 0x74, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x09, 0x48, 0x11,
|
|
4040
|
+
0x52, 0x0c, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x88, 0x01,
|
|
4041
|
+
0x01, 0x12, 0x2e, 0x0a, 0x10, 0x66, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x5f, 0x61, 0x63,
|
|
4042
|
+
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x14, 0x20, 0x01, 0x28, 0x09, 0x48, 0x12, 0x52, 0x0f, 0x66,
|
|
4043
|
+
0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x88, 0x01,
|
|
4044
|
+
0x01, 0x12, 0x2c, 0x0a, 0x0f, 0x74, 0x77, 0x69, 0x74, 0x74, 0x65, 0x72, 0x5f, 0x61, 0x63, 0x63,
|
|
4045
|
+
0x6f, 0x75, 0x6e, 0x74, 0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x48, 0x13, 0x52, 0x0e, 0x74, 0x77,
|
|
4046
|
+
0x69, 0x74, 0x74, 0x65, 0x72, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x88, 0x01, 0x01, 0x12,
|
|
4047
|
+
0x1e, 0x0a, 0x08, 0x6e, 0x69, 0x73, 0x74, 0x5f, 0x63, 0x70, 0x65, 0x18, 0x17, 0x20, 0x01, 0x28,
|
|
4048
|
+
0x09, 0x48, 0x14, 0x52, 0x07, 0x6e, 0x69, 0x73, 0x74, 0x43, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12,
|
|
4049
|
+
0x2d, 0x0a, 0x10, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74,
|
|
4050
|
+
0x69, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x48, 0x15, 0x52, 0x0e, 0x6c, 0x61, 0x73,
|
|
4051
|
+
0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x24,
|
|
4052
|
+
0x0a, 0x0b, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x18, 0x18, 0x20,
|
|
4053
|
+
0x01, 0x28, 0x05, 0x48, 0x16, 0x52, 0x0a, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x53, 0x63, 0x6f, 0x72,
|
|
4054
|
+
0x65, 0x88, 0x01, 0x01, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x6f, 0x73, 0x5f, 0x76, 0x65, 0x72, 0x73,
|
|
4055
|
+
0x69, 0x6f, 0x6e, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x6f, 0x73, 0x5f, 0x62, 0x75, 0x69, 0x6c, 0x64,
|
|
4056
|
+
0x42, 0x12, 0x0a, 0x10, 0x5f, 0x6f, 0x73, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f,
|
|
4057
|
+
0x6e, 0x61, 0x6d, 0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64,
|
|
4058
|
+
0x65, 0x5f, 0x69, 0x64, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x69, 0x64,
|
|
4059
|
+
0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x42, 0x0f,
|
|
4060
|
+
0x0a, 0x0d, 0x5f, 0x72, 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42,
|
|
4061
|
+
0x0b, 0x0a, 0x09, 0x5f, 0x65, 0x6f, 0x6c, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0b, 0x0a, 0x09,
|
|
4062
|
+
0x5f, 0x65, 0x6f, 0x73, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x65, 0x6f,
|
|
4063
|
+
0x73, 0x78, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x6c, 0x69, 0x66, 0x65,
|
|
4064
|
+
0x63, 0x79, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x64, 0x65, 0x6e, 0x63, 0x65, 0x42,
|
|
3788
4065
|
0x11, 0x0a, 0x0f, 0x5f, 0x6c, 0x6f, 0x67, 0x6f, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x75,
|
|
3789
4066
|
0x72, 0x6c, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x5f, 0x69, 0x6d,
|
|
3790
4067
|
0x61, 0x67, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x77, 0x69, 0x6b, 0x69,
|
|
@@ -3795,440 +4072,267 @@ var file_outbound_proto_rawDesc = []byte{
|
|
|
3795
4072
|
0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x70, 0x68, 0x6f,
|
|
3796
4073
|
0x6e, 0x65, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x66, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x5f,
|
|
3797
4074
|
0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x74, 0x77, 0x69, 0x74,
|
|
3798
|
-
0x74, 0x65, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42,
|
|
3799
|
-
|
|
3800
|
-
|
|
3801
|
-
|
|
3802
|
-
|
|
3803
|
-
|
|
3804
|
-
|
|
3805
|
-
|
|
3806
|
-
|
|
3807
|
-
|
|
3808
|
-
|
|
3809
|
-
|
|
3810
|
-
|
|
3811
|
-
|
|
3812
|
-
|
|
3813
|
-
|
|
3814
|
-
|
|
3815
|
-
0x75,
|
|
3816
|
-
|
|
3817
|
-
|
|
3818
|
-
|
|
3819
|
-
|
|
3820
|
-
|
|
3821
|
-
|
|
3822
|
-
|
|
3823
|
-
|
|
3824
|
-
|
|
3825
|
-
|
|
3826
|
-
|
|
3827
|
-
|
|
3828
|
-
|
|
3829
|
-
|
|
3830
|
-
|
|
3831
|
-
0x69, 0x73, 0x46, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x88, 0x01, 0x01, 0x12, 0x22, 0x0a, 0x0a, 0x6d,
|
|
3832
|
-
0x61, 0x6e, 0x75, 0x61, 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x48,
|
|
3833
|
-
0x03, 0x52, 0x09, 0x6d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x55, 0x72, 0x6c, 0x88, 0x01, 0x01, 0x12,
|
|
3834
|
-
0x1c, 0x0a, 0x07, 0x66, 0x61, 0x71, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09,
|
|
3835
|
-
0x48, 0x04, 0x52, 0x06, 0x66, 0x61, 0x71, 0x55, 0x72, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a,
|
|
3836
|
-
0x0c, 0x72, 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x0e, 0x20,
|
|
3837
|
-
0x01, 0x28, 0x03, 0x48, 0x05, 0x52, 0x0b, 0x72, 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x44, 0x61,
|
|
3838
|
-
0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x64, 0x69, 0x73, 0x63, 0x5f, 0x64, 0x61,
|
|
3839
|
-
0x74, 0x65, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x03, 0x48, 0x06, 0x52, 0x08, 0x64, 0x69, 0x73, 0x63,
|
|
4075
|
+
0x74, 0x65, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x0b, 0x0a, 0x09, 0x5f,
|
|
4076
|
+
0x6e, 0x69, 0x73, 0x74, 0x5f, 0x63, 0x70, 0x65, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x6c, 0x61, 0x73,
|
|
4077
|
+
0x74, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x42, 0x0e, 0x0a,
|
|
4078
|
+
0x0c, 0x5f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x22, 0xe1, 0x08,
|
|
4079
|
+
0x0a, 0x0f, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72,
|
|
4080
|
+
0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69,
|
|
4081
|
+
0x64, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x77, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01,
|
|
4082
|
+
0x28, 0x09, 0x52, 0x06, 0x73, 0x77, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x22, 0x0a, 0x0a, 0x73, 0x77,
|
|
4083
|
+
0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00,
|
|
4084
|
+
0x52, 0x09, 0x73, 0x77, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x27,
|
|
4085
|
+
0x0a, 0x0d, 0x73, 0x77, 0x5f, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x5f, 0x76, 0x65, 0x72, 0x18,
|
|
4086
|
+
0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x0b, 0x73, 0x77, 0x4d, 0x61, 0x72, 0x6b, 0x65,
|
|
4087
|
+
0x74, 0x56, 0x65, 0x72, 0x88, 0x01, 0x01, 0x12, 0x22, 0x0a, 0x0a, 0x73, 0x77, 0x5f, 0x65, 0x64,
|
|
4088
|
+
0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x09, 0x73,
|
|
4089
|
+
0x77, 0x45, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x1c, 0x0a, 0x07, 0x73,
|
|
4090
|
+
0x77, 0x5f, 0x6c, 0x61, 0x6e, 0x67, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x48, 0x03, 0x52, 0x06,
|
|
4091
|
+
0x73, 0x77, 0x4c, 0x61, 0x6e, 0x67, 0x88, 0x01, 0x01, 0x12, 0x1e, 0x0a, 0x08, 0x73, 0x77, 0x5f,
|
|
4092
|
+
0x62, 0x75, 0x69, 0x6c, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x48, 0x04, 0x52, 0x07, 0x73,
|
|
4093
|
+
0x77, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1c, 0x0a, 0x07, 0x6d, 0x61, 0x6b,
|
|
4094
|
+
0x65, 0x5f, 0x69, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x48, 0x05, 0x52, 0x06, 0x6d, 0x61,
|
|
4095
|
+
0x6b, 0x65, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x65, 0x6e,
|
|
4096
|
+
0x74, 0x5f, 0x69, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x48, 0x06, 0x52, 0x08, 0x70, 0x61,
|
|
4097
|
+
0x72, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x6c, 0x61, 0x74,
|
|
4098
|
+
0x65, 0x73, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x48, 0x07, 0x52, 0x08,
|
|
4099
|
+
0x6c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1c, 0x0a, 0x07, 0x73,
|
|
4100
|
+
0x77, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x48, 0x08, 0x52, 0x06,
|
|
4101
|
+
0x73, 0x77, 0x54, 0x79, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b, 0x73, 0x77, 0x5f,
|
|
4102
|
+
0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x48, 0x09,
|
|
4103
|
+
0x52, 0x0a, 0x73, 0x77, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x88, 0x01, 0x01, 0x12,
|
|
4104
|
+
0x26, 0x0a, 0x0c, 0x72, 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18,
|
|
4105
|
+
0x0d, 0x20, 0x01, 0x28, 0x03, 0x48, 0x0a, 0x52, 0x0b, 0x72, 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65,
|
|
4106
|
+
0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x1e, 0x0a, 0x08, 0x65, 0x6f, 0x6c, 0x5f, 0x64,
|
|
4107
|
+
0x61, 0x74, 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x03, 0x48, 0x0b, 0x52, 0x07, 0x65, 0x6f, 0x6c,
|
|
3840
4108
|
0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x1e, 0x0a, 0x08, 0x65, 0x6f, 0x73, 0x5f, 0x64,
|
|
3841
|
-
0x61, 0x74, 0x65, 0x18,
|
|
3842
|
-
0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12,
|
|
3843
|
-
|
|
3844
|
-
|
|
3845
|
-
|
|
3846
|
-
|
|
3847
|
-
|
|
3848
|
-
|
|
3849
|
-
|
|
3850
|
-
|
|
3851
|
-
|
|
3852
|
-
|
|
3853
|
-
|
|
3854
|
-
|
|
3855
|
-
|
|
3856
|
-
0x65, 0x41, 0x73, 0x73, 0x4c, 0x61, 0x6e, 0x67, 0x73, 0x12, 0x24, 0x0a, 0x0e, 0x73, 0x68, 0x5f,
|
|
3857
|
-
0x61, 0x6c, 0x65, 0x78, 0x61, 0x5f, 0x6c, 0x61, 0x6e, 0x67, 0x73, 0x18, 0x13, 0x20, 0x03, 0x28,
|
|
3858
|
-
0x09, 0x52, 0x0c, 0x73, 0x68, 0x41, 0x6c, 0x65, 0x78, 0x61, 0x4c, 0x61, 0x6e, 0x67, 0x73, 0x12,
|
|
3859
|
-
0x29, 0x0a, 0x0e, 0x73, 0x68, 0x5f, 0x68, 0x61, 0x73, 0x73, 0x5f, 0x68, 0x61, 0x6e, 0x64, 0x6c,
|
|
3860
|
-
0x65, 0x18, 0x14, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0c, 0x52, 0x0c, 0x73, 0x68, 0x48, 0x61, 0x73,
|
|
3861
|
-
0x73, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x88, 0x01, 0x01, 0x12, 0x2e, 0x0a, 0x11, 0x73, 0x68,
|
|
3862
|
-
0x5f, 0x61, 0x70, 0x70, 0x6c, 0x65, 0x5f, 0x68, 0x6f, 0x6d, 0x65, 0x5f, 0x6b, 0x69, 0x74, 0x18,
|
|
3863
|
-
0x15, 0x20, 0x01, 0x28, 0x08, 0x48, 0x0d, 0x52, 0x0e, 0x73, 0x68, 0x41, 0x70, 0x70, 0x6c, 0x65,
|
|
3864
|
-
0x48, 0x6f, 0x6d, 0x65, 0x4b, 0x69, 0x74, 0x88, 0x01, 0x01, 0x12, 0x30, 0x0a, 0x12, 0x73, 0x68,
|
|
3865
|
-
0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x5f, 0x68, 0x61, 0x62, 0x5f, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65,
|
|
3866
|
-
0x18, 0x16, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0e, 0x52, 0x0f, 0x73, 0x68, 0x4f, 0x70, 0x65, 0x6e,
|
|
3867
|
-
0x48, 0x61, 0x62, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x88, 0x01, 0x01, 0x12, 0x1e, 0x0a, 0x08,
|
|
3868
|
-
0x6e, 0x69, 0x73, 0x74, 0x5f, 0x63, 0x70, 0x65, 0x18, 0x1c, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0f,
|
|
3869
|
-
0x52, 0x07, 0x6e, 0x69, 0x73, 0x74, 0x43, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x23, 0x0a, 0x0a,
|
|
3870
|
-
0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x72, 0x69, 0x74, 0x79, 0x18, 0x17, 0x20, 0x01, 0x28, 0x05,
|
|
3871
|
-
0x48, 0x10, 0x52, 0x0a, 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x72, 0x69, 0x74, 0x79, 0x88, 0x01,
|
|
4109
|
+
0x61, 0x74, 0x65, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x03, 0x48, 0x0c, 0x52, 0x07, 0x65, 0x6f, 0x73,
|
|
4110
|
+
0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x65, 0x6f, 0x73, 0x78, 0x5f,
|
|
4111
|
+
0x64, 0x61, 0x74, 0x65, 0x18, 0x10, 0x20, 0x01, 0x28, 0x03, 0x48, 0x0d, 0x52, 0x08, 0x65, 0x6f,
|
|
4112
|
+
0x73, 0x78, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x34, 0x0a, 0x13, 0x6c, 0x69, 0x66,
|
|
4113
|
+
0x65, 0x63, 0x79, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x64, 0x65, 0x6e, 0x63, 0x65,
|
|
4114
|
+
0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0e, 0x52, 0x12, 0x6c, 0x69, 0x66, 0x65, 0x63, 0x79,
|
|
4115
|
+
0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x64, 0x65, 0x6e, 0x63, 0x65, 0x88, 0x01, 0x01, 0x12,
|
|
4116
|
+
0x24, 0x0a, 0x0b, 0x66, 0x6c, 0x61, 0x67, 0x5f, 0x6c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x18, 0x12,
|
|
4117
|
+
0x20, 0x01, 0x28, 0x08, 0x48, 0x0f, 0x52, 0x0a, 0x66, 0x6c, 0x61, 0x67, 0x4c, 0x61, 0x74, 0x65,
|
|
4118
|
+
0x73, 0x74, 0x88, 0x01, 0x01, 0x12, 0x2c, 0x0a, 0x0f, 0x66, 0x6c, 0x61, 0x67, 0x5f, 0x77, 0x69,
|
|
4119
|
+
0x64, 0x65, 0x73, 0x70, 0x72, 0x65, 0x61, 0x64, 0x18, 0x13, 0x20, 0x01, 0x28, 0x08, 0x48, 0x10,
|
|
4120
|
+
0x52, 0x0e, 0x66, 0x6c, 0x61, 0x67, 0x57, 0x69, 0x64, 0x65, 0x73, 0x70, 0x72, 0x65, 0x61, 0x64,
|
|
4121
|
+
0x88, 0x01, 0x01, 0x12, 0x2c, 0x0a, 0x0f, 0x66, 0x6c, 0x61, 0x67, 0x5f, 0x64, 0x65, 0x70, 0x72,
|
|
4122
|
+
0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x18, 0x14, 0x20, 0x01, 0x28, 0x08, 0x48, 0x11, 0x52, 0x0e,
|
|
4123
|
+
0x66, 0x6c, 0x61, 0x67, 0x44, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x88, 0x01,
|
|
3872
4124
|
0x01, 0x12, 0x2d, 0x0a, 0x10, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65,
|
|
3873
|
-
0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18,
|
|
4125
|
+
0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x15, 0x20, 0x01, 0x28, 0x03, 0x48, 0x12, 0x52, 0x0e, 0x6c,
|
|
3874
4126
|
0x61, 0x73, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x88, 0x01, 0x01,
|
|
3875
4127
|
0x12, 0x24, 0x0a, 0x0b, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x18,
|
|
3876
|
-
|
|
3877
|
-
0x6f, 0x72, 0x65, 0x88, 0x01, 0x01, 0x42,
|
|
3878
|
-
|
|
3879
|
-
|
|
3880
|
-
|
|
3881
|
-
|
|
3882
|
-
|
|
3883
|
-
|
|
3884
|
-
|
|
3885
|
-
|
|
3886
|
-
|
|
3887
|
-
0x6c, 0x61, 0x73, 0x73, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
|
|
3888
|
-
0x5f, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x73, 0x68, 0x5f, 0x69, 0x66,
|
|
3889
|
-
0x74, 0x74, 0x74, 0x5f, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x73,
|
|
3890
|
-
0x68, 0x5f, 0x68, 0x61, 0x73, 0x73, 0x5f, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x42, 0x14, 0x0a,
|
|
3891
|
-
0x12, 0x5f, 0x73, 0x68, 0x5f, 0x61, 0x70, 0x70, 0x6c, 0x65, 0x5f, 0x68, 0x6f, 0x6d, 0x65, 0x5f,
|
|
3892
|
-
0x6b, 0x69, 0x74, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x73, 0x68, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x5f,
|
|
3893
|
-
0x68, 0x61, 0x62, 0x5f, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x6e,
|
|
3894
|
-
0x69, 0x73, 0x74, 0x5f, 0x63, 0x70, 0x65, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x70, 0x6f, 0x70, 0x75,
|
|
3895
|
-
0x6c, 0x61, 0x72, 0x69, 0x74, 0x79, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x6c, 0x61, 0x73, 0x74, 0x5f,
|
|
3896
|
-
0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f,
|
|
3897
|
-
0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x22, 0xd4, 0x0a, 0x0a, 0x09,
|
|
3898
|
-
0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x4f, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18,
|
|
3899
|
-
0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x6f, 0x73, 0x5f,
|
|
3900
|
-
0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6f, 0x73, 0x4e, 0x61,
|
|
3901
|
-
0x6d, 0x65, 0x12, 0x22, 0x0a, 0x0a, 0x6f, 0x73, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
|
|
3902
|
-
0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x09, 0x6f, 0x73, 0x56, 0x65, 0x72, 0x73,
|
|
3903
|
-
0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x1e, 0x0a, 0x08, 0x6f, 0x73, 0x5f, 0x62, 0x75, 0x69,
|
|
3904
|
-
0x6c, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x07, 0x6f, 0x73, 0x42, 0x75,
|
|
3905
|
-
0x69, 0x6c, 0x64, 0x88, 0x01, 0x01, 0x12, 0x2b, 0x0a, 0x0f, 0x6f, 0x73, 0x5f, 0x76, 0x65, 0x72,
|
|
3906
|
-
0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x48,
|
|
3907
|
-
0x02, 0x52, 0x0d, 0x6f, 0x73, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x4e, 0x61, 0x6d, 0x65,
|
|
3908
|
-
0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b, 0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x5f,
|
|
3909
|
-
0x69, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x48, 0x03, 0x52, 0x0a, 0x6f, 0x76, 0x65, 0x72,
|
|
3910
|
-
0x72, 0x69, 0x64, 0x65, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1c, 0x0a, 0x07, 0x6d, 0x61, 0x6b,
|
|
3911
|
-
0x65, 0x5f, 0x69, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x48, 0x04, 0x52, 0x06, 0x6d, 0x61,
|
|
3912
|
-
0x6b, 0x65, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x65, 0x6e,
|
|
3913
|
-
0x74, 0x5f, 0x69, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x48, 0x05, 0x52, 0x08, 0x70, 0x61,
|
|
3914
|
-
0x72, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x72, 0x65, 0x6c,
|
|
3915
|
-
0x65, 0x61, 0x73, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x48,
|
|
3916
|
-
0x06, 0x52, 0x0b, 0x72, 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01,
|
|
3917
|
-
0x01, 0x12, 0x1e, 0x0a, 0x08, 0x65, 0x6f, 0x6c, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x0a, 0x20,
|
|
3918
|
-
0x01, 0x28, 0x03, 0x48, 0x07, 0x52, 0x07, 0x65, 0x6f, 0x6c, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01,
|
|
3919
|
-
0x01, 0x12, 0x1e, 0x0a, 0x08, 0x65, 0x6f, 0x73, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x16, 0x20,
|
|
3920
|
-
0x01, 0x28, 0x03, 0x48, 0x08, 0x52, 0x07, 0x65, 0x6f, 0x73, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01,
|
|
3921
|
-
0x01, 0x12, 0x20, 0x0a, 0x09, 0x65, 0x6f, 0x73, 0x78, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x19,
|
|
3922
|
-
0x20, 0x01, 0x28, 0x03, 0x48, 0x09, 0x52, 0x08, 0x65, 0x6f, 0x73, 0x78, 0x44, 0x61, 0x74, 0x65,
|
|
3923
|
-
0x88, 0x01, 0x01, 0x12, 0x34, 0x0a, 0x13, 0x6c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x6c, 0x65, 0x5f,
|
|
3924
|
-
0x63, 0x6f, 0x6e, 0x66, 0x69, 0x64, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x09,
|
|
3925
|
-
0x48, 0x0a, 0x52, 0x12, 0x6c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x66,
|
|
3926
|
-
0x69, 0x64, 0x65, 0x6e, 0x63, 0x65, 0x88, 0x01, 0x01, 0x12, 0x29, 0x0a, 0x0e, 0x6c, 0x6f, 0x67,
|
|
3927
|
-
0x6f, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x0d, 0x20, 0x01, 0x28,
|
|
3928
|
-
0x09, 0x48, 0x0b, 0x52, 0x0c, 0x6c, 0x6f, 0x67, 0x6f, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x55, 0x72,
|
|
3929
|
-
0x6c, 0x88, 0x01, 0x01, 0x12, 0x2d, 0x0a, 0x10, 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x5f, 0x69,
|
|
3930
|
-
0x6d, 0x61, 0x67, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0c,
|
|
3931
|
-
0x52, 0x0e, 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x55, 0x72, 0x6c,
|
|
3932
|
-
0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x77, 0x69, 0x6b, 0x69, 0x70, 0x65, 0x64, 0x69, 0x61,
|
|
3933
|
-
0x5f, 0x69, 0x64, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0d, 0x52, 0x0b, 0x77, 0x69, 0x6b,
|
|
3934
|
-
0x69, 0x70, 0x65, 0x64, 0x69, 0x61, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x33, 0x0a, 0x13, 0x77,
|
|
3935
|
-
0x69, 0x6b, 0x69, 0x70, 0x65, 0x64, 0x69, 0x61, 0x5f, 0x6c, 0x61, 0x6e, 0x67, 0x5f, 0x63, 0x6f,
|
|
3936
|
-
0x64, 0x65, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0e, 0x52, 0x11, 0x77, 0x69, 0x6b, 0x69,
|
|
3937
|
-
0x70, 0x65, 0x64, 0x69, 0x61, 0x4c, 0x61, 0x6e, 0x67, 0x43, 0x6f, 0x64, 0x65, 0x88, 0x01, 0x01,
|
|
3938
|
-
0x12, 0x24, 0x0a, 0x0b, 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x18,
|
|
3939
|
-
0x11, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0f, 0x52, 0x0a, 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65,
|
|
3940
|
-
0x55, 0x72, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72,
|
|
3941
|
-
0x74, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x48, 0x10, 0x52, 0x0a, 0x73,
|
|
3942
|
-
0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x55, 0x72, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x28, 0x0a, 0x0d,
|
|
3943
|
-
0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x13, 0x20,
|
|
3944
|
-
0x01, 0x28, 0x09, 0x48, 0x11, 0x52, 0x0c, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x50, 0x68,
|
|
3945
|
-
0x6f, 0x6e, 0x65, 0x88, 0x01, 0x01, 0x12, 0x2e, 0x0a, 0x10, 0x66, 0x61, 0x63, 0x65, 0x62, 0x6f,
|
|
3946
|
-
0x6f, 0x6b, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x14, 0x20, 0x01, 0x28, 0x09,
|
|
3947
|
-
0x48, 0x12, 0x52, 0x0f, 0x66, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x41, 0x63, 0x63, 0x6f,
|
|
3948
|
-
0x75, 0x6e, 0x74, 0x88, 0x01, 0x01, 0x12, 0x2c, 0x0a, 0x0f, 0x74, 0x77, 0x69, 0x74, 0x74, 0x65,
|
|
3949
|
-
0x72, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x48,
|
|
3950
|
-
0x13, 0x52, 0x0e, 0x74, 0x77, 0x69, 0x74, 0x74, 0x65, 0x72, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
|
|
3951
|
-
0x74, 0x88, 0x01, 0x01, 0x12, 0x1e, 0x0a, 0x08, 0x6e, 0x69, 0x73, 0x74, 0x5f, 0x63, 0x70, 0x65,
|
|
3952
|
-
0x18, 0x17, 0x20, 0x01, 0x28, 0x09, 0x48, 0x14, 0x52, 0x07, 0x6e, 0x69, 0x73, 0x74, 0x43, 0x70,
|
|
3953
|
-
0x65, 0x88, 0x01, 0x01, 0x12, 0x2d, 0x0a, 0x10, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x75, 0x70, 0x64,
|
|
3954
|
-
0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x48, 0x15,
|
|
3955
|
-
0x52, 0x0e, 0x6c, 0x61, 0x73, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65,
|
|
3956
|
-
0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x73, 0x63, 0x6f,
|
|
3957
|
-
0x72, 0x65, 0x18, 0x18, 0x20, 0x01, 0x28, 0x05, 0x48, 0x16, 0x52, 0x0a, 0x6d, 0x61, 0x74, 0x63,
|
|
3958
|
-
0x68, 0x53, 0x63, 0x6f, 0x72, 0x65, 0x88, 0x01, 0x01, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x6f, 0x73,
|
|
3959
|
-
0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x6f, 0x73, 0x5f,
|
|
3960
|
-
0x62, 0x75, 0x69, 0x6c, 0x64, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x6f, 0x73, 0x5f, 0x76, 0x65, 0x72,
|
|
3961
|
-
0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x6f, 0x76,
|
|
3962
|
-
0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x5f, 0x69, 0x64, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x6d, 0x61,
|
|
3963
|
-
0x6b, 0x65, 0x5f, 0x69, 0x64, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74,
|
|
3964
|
-
0x5f, 0x69, 0x64, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x72, 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x5f,
|
|
4128
|
+
0x64, 0x20, 0x01, 0x28, 0x05, 0x48, 0x13, 0x52, 0x0a, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x53, 0x63,
|
|
4129
|
+
0x6f, 0x72, 0x65, 0x88, 0x01, 0x01, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x73, 0x77, 0x5f, 0x76, 0x65,
|
|
4130
|
+
0x72, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x73, 0x77, 0x5f, 0x6d, 0x61, 0x72,
|
|
4131
|
+
0x6b, 0x65, 0x74, 0x5f, 0x76, 0x65, 0x72, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x73, 0x77, 0x5f, 0x65,
|
|
4132
|
+
0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x73, 0x77, 0x5f, 0x6c, 0x61,
|
|
4133
|
+
0x6e, 0x67, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x73, 0x77, 0x5f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x42,
|
|
4134
|
+
0x0a, 0x0a, 0x08, 0x5f, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x69, 0x64, 0x42, 0x0c, 0x0a, 0x0a, 0x5f,
|
|
4135
|
+
0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x6c, 0x61,
|
|
4136
|
+
0x74, 0x65, 0x73, 0x74, 0x5f, 0x69, 0x64, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x73, 0x77, 0x5f, 0x74,
|
|
4137
|
+
0x79, 0x70, 0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x73, 0x77, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67,
|
|
4138
|
+
0x6f, 0x72, 0x79, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x72, 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x5f,
|
|
3965
4139
|
0x64, 0x61, 0x74, 0x65, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x65, 0x6f, 0x6c, 0x5f, 0x64, 0x61, 0x74,
|
|
3966
4140
|
0x65, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x65, 0x6f, 0x73, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0c,
|
|
3967
4141
|
0x0a, 0x0a, 0x5f, 0x65, 0x6f, 0x73, 0x78, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x16, 0x0a, 0x14,
|
|
3968
4142
|
0x5f, 0x6c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x64,
|
|
3969
|
-
0x65, 0x6e, 0x63, 0x65, 0x42,
|
|
3970
|
-
|
|
3971
|
-
0x65,
|
|
3972
|
-
|
|
3973
|
-
|
|
3974
|
-
|
|
3975
|
-
0x65,
|
|
3976
|
-
|
|
3977
|
-
|
|
3978
|
-
|
|
3979
|
-
|
|
3980
|
-
|
|
3981
|
-
|
|
3982
|
-
|
|
3983
|
-
|
|
3984
|
-
|
|
3985
|
-
|
|
3986
|
-
|
|
3987
|
-
|
|
3988
|
-
0x01, 0x28, 0x09, 0x48,
|
|
3989
|
-
|
|
3990
|
-
|
|
3991
|
-
|
|
3992
|
-
|
|
3993
|
-
|
|
3994
|
-
|
|
3995
|
-
|
|
3996
|
-
|
|
3997
|
-
|
|
3998
|
-
|
|
3999
|
-
|
|
4000
|
-
|
|
4001
|
-
|
|
4002
|
-
|
|
4003
|
-
|
|
4004
|
-
|
|
4005
|
-
|
|
4006
|
-
|
|
4007
|
-
|
|
4008
|
-
|
|
4009
|
-
|
|
4010
|
-
|
|
4011
|
-
|
|
4012
|
-
|
|
4013
|
-
|
|
4014
|
-
|
|
4015
|
-
|
|
4016
|
-
|
|
4017
|
-
|
|
4018
|
-
|
|
4019
|
-
|
|
4020
|
-
|
|
4021
|
-
|
|
4022
|
-
|
|
4023
|
-
|
|
4024
|
-
|
|
4025
|
-
|
|
4026
|
-
|
|
4027
|
-
|
|
4028
|
-
|
|
4029
|
-
|
|
4030
|
-
|
|
4031
|
-
|
|
4032
|
-
|
|
4033
|
-
|
|
4034
|
-
|
|
4035
|
-
|
|
4036
|
-
|
|
4037
|
-
|
|
4038
|
-
|
|
4039
|
-
|
|
4040
|
-
|
|
4041
|
-
|
|
4042
|
-
|
|
4043
|
-
|
|
4044
|
-
|
|
4045
|
-
|
|
4046
|
-
|
|
4047
|
-
|
|
4048
|
-
0x61, 0x67,
|
|
4049
|
-
|
|
4050
|
-
|
|
4051
|
-
|
|
4052
|
-
|
|
4053
|
-
|
|
4054
|
-
|
|
4055
|
-
|
|
4056
|
-
|
|
4057
|
-
|
|
4058
|
-
|
|
4059
|
-
|
|
4060
|
-
|
|
4061
|
-
0x20,
|
|
4062
|
-
|
|
4063
|
-
|
|
4064
|
-
|
|
4065
|
-
|
|
4066
|
-
|
|
4067
|
-
|
|
4068
|
-
|
|
4069
|
-
|
|
4070
|
-
|
|
4071
|
-
|
|
4072
|
-
|
|
4073
|
-
|
|
4074
|
-
|
|
4075
|
-
|
|
4076
|
-
|
|
4077
|
-
|
|
4078
|
-
|
|
4079
|
-
|
|
4080
|
-
|
|
4081
|
-
0x5f,
|
|
4082
|
-
|
|
4083
|
-
|
|
4084
|
-
|
|
4085
|
-
|
|
4086
|
-
|
|
4087
|
-
|
|
4088
|
-
|
|
4089
|
-
|
|
4090
|
-
|
|
4091
|
-
|
|
4092
|
-
|
|
4093
|
-
|
|
4094
|
-
|
|
4095
|
-
|
|
4096
|
-
|
|
4097
|
-
|
|
4098
|
-
|
|
4099
|
-
|
|
4100
|
-
|
|
4101
|
-
|
|
4102
|
-
|
|
4103
|
-
|
|
4104
|
-
|
|
4105
|
-
|
|
4106
|
-
|
|
4107
|
-
|
|
4108
|
-
|
|
4109
|
-
|
|
4110
|
-
|
|
4111
|
-
|
|
4112
|
-
|
|
4113
|
-
0x72,
|
|
4114
|
-
|
|
4115
|
-
|
|
4116
|
-
|
|
4117
|
-
|
|
4118
|
-
|
|
4119
|
-
|
|
4120
|
-
|
|
4121
|
-
0x79,
|
|
4122
|
-
0x5f,
|
|
4123
|
-
|
|
4124
|
-
|
|
4125
|
-
0x61,
|
|
4126
|
-
|
|
4127
|
-
|
|
4128
|
-
|
|
4129
|
-
|
|
4130
|
-
|
|
4131
|
-
|
|
4132
|
-
|
|
4133
|
-
|
|
4134
|
-
|
|
4135
|
-
|
|
4136
|
-
|
|
4137
|
-
|
|
4138
|
-
|
|
4139
|
-
|
|
4140
|
-
|
|
4141
|
-
|
|
4142
|
-
|
|
4143
|
-
|
|
4144
|
-
|
|
4145
|
-
|
|
4146
|
-
0x72, 0x61, 0x18, 0x28, 0x20, 0x01, 0x28, 0x08, 0x48, 0x24, 0x52, 0x0d, 0x66, 0x65, 0x61, 0x74,
|
|
4147
|
-
0x75, 0x72, 0x65, 0x43, 0x61, 0x6d, 0x65, 0x72, 0x61, 0x88, 0x01, 0x01, 0x12, 0x2e, 0x0a, 0x10,
|
|
4148
|
-
0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x73, 0x70, 0x65, 0x61, 0x6b, 0x65, 0x72, 0x73,
|
|
4149
|
-
0x18, 0x29, 0x20, 0x01, 0x28, 0x08, 0x48, 0x25, 0x52, 0x0f, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72,
|
|
4150
|
-
0x65, 0x53, 0x70, 0x65, 0x61, 0x6b, 0x65, 0x72, 0x73, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c,
|
|
4151
|
-
0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x68, 0x64, 0x6d, 0x69, 0x18, 0x2a, 0x20, 0x01,
|
|
4152
|
-
0x28, 0x08, 0x48, 0x26, 0x52, 0x0b, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x48, 0x64, 0x6d,
|
|
4153
|
-
0x69, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f,
|
|
4154
|
-
0x65, 0x74, 0x68, 0x18, 0x2b, 0x20, 0x01, 0x28, 0x08, 0x48, 0x27, 0x52, 0x0a, 0x66, 0x65, 0x61,
|
|
4155
|
-
0x74, 0x75, 0x72, 0x65, 0x45, 0x74, 0x68, 0x88, 0x01, 0x01, 0x12, 0x2e, 0x0a, 0x10, 0x66, 0x65,
|
|
4156
|
-
0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x70, 0x6f, 0x72, 0x74, 0x72, 0x61, 0x69, 0x74, 0x18, 0x2c,
|
|
4157
|
-
0x20, 0x01, 0x28, 0x08, 0x48, 0x28, 0x52, 0x0f, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x50,
|
|
4158
|
-
0x6f, 0x72, 0x74, 0x72, 0x61, 0x69, 0x74, 0x88, 0x01, 0x01, 0x12, 0x2a, 0x0a, 0x0e, 0x66, 0x65,
|
|
4159
|
-
0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x63, 0x75, 0x72, 0x76, 0x65, 0x64, 0x18, 0x2d, 0x20, 0x01,
|
|
4160
|
-
0x28, 0x08, 0x48, 0x29, 0x52, 0x0d, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x43, 0x75, 0x72,
|
|
4161
|
-
0x76, 0x65, 0x64, 0x88, 0x01, 0x01, 0x12, 0x2d, 0x0a, 0x10, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x75,
|
|
4162
|
-
0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x2e, 0x20, 0x01, 0x28, 0x03,
|
|
4163
|
-
0x48, 0x2a, 0x52, 0x0e, 0x6c, 0x61, 0x73, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69,
|
|
4164
|
-
0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x73,
|
|
4165
|
-
0x63, 0x6f, 0x72, 0x65, 0x18, 0x64, 0x20, 0x01, 0x28, 0x05, 0x48, 0x2b, 0x52, 0x0a, 0x6d, 0x61,
|
|
4166
|
-
0x74, 0x63, 0x68, 0x53, 0x63, 0x6f, 0x72, 0x65, 0x88, 0x01, 0x01, 0x42, 0x0c, 0x0a, 0x0a, 0x5f,
|
|
4167
|
-
0x76, 0x65, 0x6e, 0x64, 0x6f, 0x72, 0x5f, 0x69, 0x64, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x6d, 0x61,
|
|
4168
|
-
0x6b, 0x65, 0x5f, 0x69, 0x64, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79,
|
|
4169
|
-
0x5f, 0x69, 0x64, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x69, 0x73, 0x5f, 0x66, 0x61, 0x6d, 0x69, 0x6c,
|
|
4170
|
-
0x79, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x6f, 0x66, 0x66, 0x69, 0x63, 0x69, 0x61, 0x6c, 0x5f, 0x70,
|
|
4171
|
-
0x61, 0x67, 0x65, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x5f,
|
|
4172
|
-
0x70, 0x61, 0x67, 0x65, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x5f, 0x69, 0x6e,
|
|
4173
|
-
0x63, 0x68, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x72, 0x65, 0x73, 0x6f, 0x6c,
|
|
4174
|
-
0x75, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x61, 0x73, 0x70, 0x65, 0x63, 0x74,
|
|
4175
|
-
0x5f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x72, 0x65, 0x73, 0x70, 0x6f,
|
|
4176
|
-
0x6e, 0x73, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x6d, 0x73, 0x42, 0x0a, 0x0a, 0x08, 0x5f,
|
|
4177
|
-
0x68, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x64, 0x69, 0x73, 0x70,
|
|
4178
|
-
0x6c, 0x61, 0x79, 0x5f, 0x74, 0x65, 0x63, 0x68, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x72, 0x65, 0x66,
|
|
4179
|
-
0x72, 0x65, 0x73, 0x68, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x70, 0x61,
|
|
4180
|
-
0x6e, 0x65, 0x6c, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x5f, 0x63,
|
|
4181
|
-
0x6d, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x77, 0x69, 0x64, 0x74, 0x68, 0x5f, 0x63, 0x6d, 0x42, 0x0e,
|
|
4182
|
-
0x0a, 0x0c, 0x5f, 0x64, 0x69, 0x61, 0x67, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x63, 0x6d, 0x42, 0x0f,
|
|
4183
|
-
0x0a, 0x0d, 0x5f, 0x75, 0x73, 0x62, 0x5f, 0x75, 0x70, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x42,
|
|
4184
|
-
0x12, 0x0a, 0x10, 0x5f, 0x6e, 0x72, 0x5f, 0x75, 0x73, 0x62, 0x5f, 0x75, 0x70, 0x73, 0x74, 0x72,
|
|
4185
|
-
0x65, 0x61, 0x6d, 0x42, 0x1b, 0x0a, 0x19, 0x5f, 0x6e, 0x72, 0x5f, 0x75, 0x73, 0x62, 0x5f, 0x74,
|
|
4186
|
-
0x79, 0x70, 0x65, 0x5f, 0x61, 0x5f, 0x64, 0x6f, 0x77, 0x6e, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d,
|
|
4187
|
-
0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x6e, 0x72, 0x5f, 0x68, 0x64, 0x6d, 0x69, 0x42, 0x09, 0x0a, 0x07,
|
|
4188
|
-
0x5f, 0x6e, 0x72, 0x5f, 0x76, 0x67, 0x61, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x6e, 0x72, 0x5f, 0x64,
|
|
4189
|
-
0x76, 0x69, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x68, 0x64, 0x6d, 0x69, 0x5f, 0x76, 0x65, 0x72, 0x73,
|
|
4190
|
-
0x69, 0x6f, 0x6e, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x6e, 0x72, 0x5f, 0x64, 0x69, 0x73, 0x70, 0x6c,
|
|
4191
|
-
0x61, 0x79, 0x5f, 0x70, 0x6f, 0x72, 0x74, 0x73, 0x42, 0x17, 0x0a, 0x15, 0x5f, 0x64, 0x69, 0x73,
|
|
4192
|
-
0x70, 0x6c, 0x61, 0x79, 0x5f, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
|
|
4193
|
-
0x6e, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x65, 0x6e, 0x65, 0x72, 0x67, 0x79, 0x5f, 0x63, 0x6c, 0x61,
|
|
4194
|
-
0x73, 0x73, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x73, 0x64, 0x72, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x31,
|
|
4195
|
-
0x30, 0x30, 0x30, 0x5f, 0x75, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67,
|
|
4196
|
-
0x65, 0x5f, 0x77, 0x61, 0x74, 0x74, 0x5f, 0x75, 0x73, 0x61, 0x67, 0x65, 0x42, 0x11, 0x0a, 0x0f,
|
|
4197
|
-
0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x77, 0x61, 0x74, 0x74, 0x5f, 0x75, 0x73, 0x61, 0x67, 0x65, 0x42,
|
|
4198
|
-
0x15, 0x0a, 0x13, 0x5f, 0x77, 0x61, 0x74, 0x74, 0x5f, 0x75, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x73,
|
|
4199
|
-
0x74, 0x61, 0x6e, 0x64, 0x62, 0x79, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x77, 0x61, 0x74, 0x74, 0x5f,
|
|
4200
|
-
0x70, 0x6f, 0x77, 0x65, 0x72, 0x5f, 0x73, 0x61, 0x76, 0x65, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x61,
|
|
4201
|
-
0x63, 0x5f, 0x76, 0x6f, 0x6c, 0x74, 0x61, 0x67, 0x65, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x61, 0x63,
|
|
4202
|
-
0x5f, 0x66, 0x72, 0x65, 0x71, 0x5f, 0x68, 0x7a, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x63, 0x75, 0x72,
|
|
4203
|
-
0x72, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x66, 0x65, 0x61, 0x74, 0x75,
|
|
4204
|
-
0x72, 0x65, 0x5f, 0x61, 0x69, 0x6f, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x66, 0x65, 0x61, 0x74, 0x75,
|
|
4205
|
-
0x72, 0x65, 0x5f, 0x63, 0x61, 0x6d, 0x65, 0x72, 0x61, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x66, 0x65,
|
|
4206
|
-
0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x73, 0x70, 0x65, 0x61, 0x6b, 0x65, 0x72, 0x73, 0x42, 0x0f,
|
|
4207
|
-
0x0a, 0x0d, 0x5f, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x68, 0x64, 0x6d, 0x69, 0x42,
|
|
4208
|
-
0x0e, 0x0a, 0x0c, 0x5f, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x65, 0x74, 0x68, 0x42,
|
|
4209
|
-
0x13, 0x0a, 0x11, 0x5f, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x70, 0x6f, 0x72, 0x74,
|
|
4210
|
-
0x72, 0x61, 0x69, 0x74, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65,
|
|
4211
|
-
0x5f, 0x63, 0x75, 0x72, 0x76, 0x65, 0x64, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x6c, 0x61, 0x73, 0x74,
|
|
4212
|
-
0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x42, 0x0e, 0x0a, 0x0c,
|
|
4213
|
-
0x5f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x32, 0x84, 0x02, 0x0a,
|
|
4214
|
-
0x17, 0x44, 0x61, 0x74, 0x61, 0x43, 0x6f, 0x72, 0x65, 0x4f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e,
|
|
4215
|
-
0x64, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x70, 0x0a, 0x09, 0x47, 0x65, 0x74, 0x45,
|
|
4216
|
-
0x6e, 0x74, 0x69, 0x74, 0x79, 0x12, 0x2f, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
4143
|
+
0x65, 0x6e, 0x63, 0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x66, 0x6c, 0x61, 0x67, 0x5f, 0x6c, 0x61,
|
|
4144
|
+
0x74, 0x65, 0x73, 0x74, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x66, 0x6c, 0x61, 0x67, 0x5f, 0x77, 0x69,
|
|
4145
|
+
0x64, 0x65, 0x73, 0x70, 0x72, 0x65, 0x61, 0x64, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x66, 0x6c, 0x61,
|
|
4146
|
+
0x67, 0x5f, 0x64, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x42, 0x13, 0x0a, 0x11,
|
|
4147
|
+
0x5f, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d,
|
|
4148
|
+
0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x73, 0x63, 0x6f, 0x72,
|
|
4149
|
+
0x65, 0x22, 0x83, 0x14, 0x0a, 0x0e, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x4d, 0x6f, 0x6e,
|
|
4150
|
+
0x69, 0x74, 0x6f, 0x72, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
|
|
4151
|
+
0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x18, 0x03, 0x20,
|
|
4152
|
+
0x01, 0x28, 0x09, 0x52, 0x05, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x12, 0x20, 0x0a, 0x09, 0x76, 0x65,
|
|
4153
|
+
0x6e, 0x64, 0x6f, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52,
|
|
4154
|
+
0x08, 0x76, 0x65, 0x6e, 0x64, 0x6f, 0x72, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1c, 0x0a, 0x07,
|
|
4155
|
+
0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x48, 0x01, 0x52,
|
|
4156
|
+
0x06, 0x6d, 0x61, 0x6b, 0x65, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x66, 0x61,
|
|
4157
|
+
0x6d, 0x69, 0x6c, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x48, 0x02, 0x52,
|
|
4158
|
+
0x08, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09,
|
|
4159
|
+
0x69, 0x73, 0x5f, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x48,
|
|
4160
|
+
0x03, 0x52, 0x08, 0x69, 0x73, 0x46, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x88, 0x01, 0x01, 0x12, 0x28,
|
|
4161
|
+
0x0a, 0x0d, 0x6f, 0x66, 0x66, 0x69, 0x63, 0x69, 0x61, 0x6c, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x18,
|
|
4162
|
+
0x08, 0x20, 0x01, 0x28, 0x09, 0x48, 0x04, 0x52, 0x0c, 0x6f, 0x66, 0x66, 0x69, 0x63, 0x69, 0x61,
|
|
4163
|
+
0x6c, 0x50, 0x61, 0x67, 0x65, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x73, 0x75, 0x70, 0x70,
|
|
4164
|
+
0x6f, 0x72, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x48, 0x05,
|
|
4165
|
+
0x52, 0x0b, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x50, 0x61, 0x67, 0x65, 0x88, 0x01, 0x01,
|
|
4166
|
+
0x12, 0x20, 0x0a, 0x09, 0x73, 0x69, 0x7a, 0x65, 0x5f, 0x69, 0x6e, 0x63, 0x68, 0x18, 0x0a, 0x20,
|
|
4167
|
+
0x01, 0x28, 0x01, 0x48, 0x06, 0x52, 0x08, 0x73, 0x69, 0x7a, 0x65, 0x49, 0x6e, 0x63, 0x68, 0x88,
|
|
4168
|
+
0x01, 0x01, 0x12, 0x2a, 0x0a, 0x0e, 0x6d, 0x61, 0x78, 0x5f, 0x72, 0x65, 0x73, 0x6f, 0x6c, 0x75,
|
|
4169
|
+
0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x48, 0x07, 0x52, 0x0d, 0x6d, 0x61,
|
|
4170
|
+
0x78, 0x52, 0x65, 0x73, 0x6f, 0x6c, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x26,
|
|
4171
|
+
0x0a, 0x0c, 0x61, 0x73, 0x70, 0x65, 0x63, 0x74, 0x5f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x18, 0x0c,
|
|
4172
|
+
0x20, 0x01, 0x28, 0x09, 0x48, 0x08, 0x52, 0x0b, 0x61, 0x73, 0x70, 0x65, 0x63, 0x74, 0x52, 0x61,
|
|
4173
|
+
0x74, 0x69, 0x6f, 0x88, 0x01, 0x01, 0x12, 0x2d, 0x0a, 0x10, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
4174
|
+
0x73, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x6d, 0x73, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x01,
|
|
4175
|
+
0x48, 0x09, 0x52, 0x0e, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x54, 0x69, 0x6d, 0x65,
|
|
4176
|
+
0x4d, 0x73, 0x88, 0x01, 0x01, 0x12, 0x1c, 0x0a, 0x07, 0x68, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65,
|
|
4177
|
+
0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0a, 0x52, 0x06, 0x68, 0x64, 0x54, 0x79, 0x70, 0x65,
|
|
4178
|
+
0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x74,
|
|
4179
|
+
0x65, 0x63, 0x68, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0b, 0x52, 0x0b, 0x64, 0x69, 0x73,
|
|
4180
|
+
0x70, 0x6c, 0x61, 0x79, 0x54, 0x65, 0x63, 0x68, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x72,
|
|
4181
|
+
0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x18, 0x10, 0x20, 0x01, 0x28,
|
|
4182
|
+
0x05, 0x48, 0x0c, 0x52, 0x0b, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x52, 0x61, 0x74, 0x65,
|
|
4183
|
+
0x88, 0x01, 0x01, 0x12, 0x19, 0x0a, 0x05, 0x70, 0x61, 0x6e, 0x65, 0x6c, 0x18, 0x11, 0x20, 0x01,
|
|
4184
|
+
0x28, 0x09, 0x48, 0x0d, 0x52, 0x05, 0x70, 0x61, 0x6e, 0x65, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x20,
|
|
4185
|
+
0x0a, 0x09, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x5f, 0x63, 0x6d, 0x18, 0x12, 0x20, 0x01, 0x28,
|
|
4186
|
+
0x01, 0x48, 0x0e, 0x52, 0x08, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x43, 0x6d, 0x88, 0x01, 0x01,
|
|
4187
|
+
0x12, 0x1e, 0x0a, 0x08, 0x77, 0x69, 0x64, 0x74, 0x68, 0x5f, 0x63, 0x6d, 0x18, 0x13, 0x20, 0x01,
|
|
4188
|
+
0x28, 0x01, 0x48, 0x0f, 0x52, 0x07, 0x77, 0x69, 0x64, 0x74, 0x68, 0x43, 0x6d, 0x88, 0x01, 0x01,
|
|
4189
|
+
0x12, 0x24, 0x0a, 0x0b, 0x64, 0x69, 0x61, 0x67, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x63, 0x6d, 0x18,
|
|
4190
|
+
0x14, 0x20, 0x01, 0x28, 0x01, 0x48, 0x10, 0x52, 0x0a, 0x64, 0x69, 0x61, 0x67, 0x6f, 0x6e, 0x61,
|
|
4191
|
+
0x6c, 0x43, 0x6d, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x75, 0x73, 0x62, 0x5f, 0x75, 0x70,
|
|
4192
|
+
0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x48, 0x11, 0x52, 0x0b,
|
|
4193
|
+
0x75, 0x73, 0x62, 0x55, 0x70, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x88, 0x01, 0x01, 0x12, 0x2b,
|
|
4194
|
+
0x0a, 0x0f, 0x6e, 0x72, 0x5f, 0x75, 0x73, 0x62, 0x5f, 0x75, 0x70, 0x73, 0x74, 0x72, 0x65, 0x61,
|
|
4195
|
+
0x6d, 0x18, 0x16, 0x20, 0x01, 0x28, 0x05, 0x48, 0x12, 0x52, 0x0d, 0x6e, 0x72, 0x55, 0x73, 0x62,
|
|
4196
|
+
0x55, 0x70, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x88, 0x01, 0x01, 0x12, 0x3b, 0x0a, 0x18, 0x6e,
|
|
4197
|
+
0x72, 0x5f, 0x75, 0x73, 0x62, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x61, 0x5f, 0x64, 0x6f, 0x77,
|
|
4198
|
+
0x6e, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x18, 0x17, 0x20, 0x01, 0x28, 0x05, 0x48, 0x13, 0x52,
|
|
4199
|
+
0x14, 0x6e, 0x72, 0x55, 0x73, 0x62, 0x54, 0x79, 0x70, 0x65, 0x41, 0x44, 0x6f, 0x77, 0x6e, 0x73,
|
|
4200
|
+
0x74, 0x72, 0x65, 0x61, 0x6d, 0x88, 0x01, 0x01, 0x12, 0x1c, 0x0a, 0x07, 0x6e, 0x72, 0x5f, 0x68,
|
|
4201
|
+
0x64, 0x6d, 0x69, 0x18, 0x18, 0x20, 0x01, 0x28, 0x05, 0x48, 0x14, 0x52, 0x06, 0x6e, 0x72, 0x48,
|
|
4202
|
+
0x64, 0x6d, 0x69, 0x88, 0x01, 0x01, 0x12, 0x1a, 0x0a, 0x06, 0x6e, 0x72, 0x5f, 0x76, 0x67, 0x61,
|
|
4203
|
+
0x18, 0x19, 0x20, 0x01, 0x28, 0x05, 0x48, 0x15, 0x52, 0x05, 0x6e, 0x72, 0x56, 0x67, 0x61, 0x88,
|
|
4204
|
+
0x01, 0x01, 0x12, 0x1a, 0x0a, 0x06, 0x6e, 0x72, 0x5f, 0x64, 0x76, 0x69, 0x18, 0x1a, 0x20, 0x01,
|
|
4205
|
+
0x28, 0x05, 0x48, 0x16, 0x52, 0x05, 0x6e, 0x72, 0x44, 0x76, 0x69, 0x88, 0x01, 0x01, 0x12, 0x26,
|
|
4206
|
+
0x0a, 0x0c, 0x68, 0x64, 0x6d, 0x69, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x1b,
|
|
4207
|
+
0x20, 0x01, 0x28, 0x01, 0x48, 0x17, 0x52, 0x0b, 0x68, 0x64, 0x6d, 0x69, 0x56, 0x65, 0x72, 0x73,
|
|
4208
|
+
0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x2d, 0x0a, 0x10, 0x6e, 0x72, 0x5f, 0x64, 0x69, 0x73,
|
|
4209
|
+
0x70, 0x6c, 0x61, 0x79, 0x5f, 0x70, 0x6f, 0x72, 0x74, 0x73, 0x18, 0x1c, 0x20, 0x01, 0x28, 0x05,
|
|
4210
|
+
0x48, 0x18, 0x52, 0x0e, 0x6e, 0x72, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x50, 0x6f, 0x72,
|
|
4211
|
+
0x74, 0x73, 0x88, 0x01, 0x01, 0x12, 0x35, 0x0a, 0x14, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79,
|
|
4212
|
+
0x5f, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x1d, 0x20,
|
|
4213
|
+
0x01, 0x28, 0x01, 0x48, 0x19, 0x52, 0x12, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x50, 0x6f,
|
|
4214
|
+
0x72, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c,
|
|
4215
|
+
0x65, 0x6e, 0x65, 0x72, 0x67, 0x79, 0x5f, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x18, 0x1e, 0x20, 0x01,
|
|
4216
|
+
0x28, 0x09, 0x48, 0x1a, 0x52, 0x0b, 0x65, 0x6e, 0x65, 0x72, 0x67, 0x79, 0x43, 0x6c, 0x61, 0x73,
|
|
4217
|
+
0x73, 0x88, 0x01, 0x01, 0x12, 0x28, 0x0a, 0x0e, 0x73, 0x64, 0x72, 0x5f, 0x70, 0x65, 0x72, 0x5f,
|
|
4218
|
+
0x31, 0x30, 0x30, 0x30, 0x5f, 0x75, 0x18, 0x1f, 0x20, 0x01, 0x28, 0x05, 0x48, 0x1b, 0x52, 0x0b,
|
|
4219
|
+
0x73, 0x64, 0x72, 0x50, 0x65, 0x72, 0x31, 0x30, 0x30, 0x30, 0x55, 0x88, 0x01, 0x01, 0x12, 0x31,
|
|
4220
|
+
0x0a, 0x12, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x77, 0x61, 0x74, 0x74, 0x5f, 0x75,
|
|
4221
|
+
0x73, 0x61, 0x67, 0x65, 0x18, 0x20, 0x20, 0x01, 0x28, 0x01, 0x48, 0x1c, 0x52, 0x10, 0x61, 0x76,
|
|
4222
|
+
0x65, 0x72, 0x61, 0x67, 0x65, 0x57, 0x61, 0x74, 0x74, 0x55, 0x73, 0x61, 0x67, 0x65, 0x88, 0x01,
|
|
4223
|
+
0x01, 0x12, 0x29, 0x0a, 0x0e, 0x6d, 0x61, 0x78, 0x5f, 0x77, 0x61, 0x74, 0x74, 0x5f, 0x75, 0x73,
|
|
4224
|
+
0x61, 0x67, 0x65, 0x18, 0x21, 0x20, 0x01, 0x28, 0x01, 0x48, 0x1d, 0x52, 0x0c, 0x6d, 0x61, 0x78,
|
|
4225
|
+
0x57, 0x61, 0x74, 0x74, 0x55, 0x73, 0x61, 0x67, 0x65, 0x88, 0x01, 0x01, 0x12, 0x31, 0x0a, 0x12,
|
|
4226
|
+
0x77, 0x61, 0x74, 0x74, 0x5f, 0x75, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x6e, 0x64,
|
|
4227
|
+
0x62, 0x79, 0x18, 0x22, 0x20, 0x01, 0x28, 0x01, 0x48, 0x1e, 0x52, 0x10, 0x77, 0x61, 0x74, 0x74,
|
|
4228
|
+
0x55, 0x73, 0x61, 0x67, 0x65, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x62, 0x79, 0x88, 0x01, 0x01, 0x12,
|
|
4229
|
+
0x2b, 0x0a, 0x0f, 0x77, 0x61, 0x74, 0x74, 0x5f, 0x70, 0x6f, 0x77, 0x65, 0x72, 0x5f, 0x73, 0x61,
|
|
4230
|
+
0x76, 0x65, 0x18, 0x23, 0x20, 0x01, 0x28, 0x01, 0x48, 0x1f, 0x52, 0x0d, 0x77, 0x61, 0x74, 0x74,
|
|
4231
|
+
0x50, 0x6f, 0x77, 0x65, 0x72, 0x53, 0x61, 0x76, 0x65, 0x88, 0x01, 0x01, 0x12, 0x22, 0x0a, 0x0a,
|
|
4232
|
+
0x61, 0x63, 0x5f, 0x76, 0x6f, 0x6c, 0x74, 0x61, 0x67, 0x65, 0x18, 0x24, 0x20, 0x01, 0x28, 0x09,
|
|
4233
|
+
0x48, 0x20, 0x52, 0x09, 0x61, 0x63, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x67, 0x65, 0x88, 0x01, 0x01,
|
|
4234
|
+
0x12, 0x21, 0x0a, 0x0a, 0x61, 0x63, 0x5f, 0x66, 0x72, 0x65, 0x71, 0x5f, 0x68, 0x7a, 0x18, 0x25,
|
|
4235
|
+
0x20, 0x01, 0x28, 0x09, 0x48, 0x21, 0x52, 0x08, 0x61, 0x63, 0x46, 0x72, 0x65, 0x71, 0x48, 0x7a,
|
|
4236
|
+
0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x61,
|
|
4237
|
+
0x18, 0x26, 0x20, 0x01, 0x28, 0x01, 0x48, 0x22, 0x52, 0x08, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e,
|
|
4238
|
+
0x74, 0x41, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65,
|
|
4239
|
+
0x5f, 0x61, 0x69, 0x6f, 0x18, 0x27, 0x20, 0x01, 0x28, 0x08, 0x48, 0x23, 0x52, 0x0a, 0x66, 0x65,
|
|
4240
|
+
0x61, 0x74, 0x75, 0x72, 0x65, 0x41, 0x69, 0x6f, 0x88, 0x01, 0x01, 0x12, 0x2a, 0x0a, 0x0e, 0x66,
|
|
4241
|
+
0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x63, 0x61, 0x6d, 0x65, 0x72, 0x61, 0x18, 0x28, 0x20,
|
|
4242
|
+
0x01, 0x28, 0x08, 0x48, 0x24, 0x52, 0x0d, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x43, 0x61,
|
|
4243
|
+
0x6d, 0x65, 0x72, 0x61, 0x88, 0x01, 0x01, 0x12, 0x2e, 0x0a, 0x10, 0x66, 0x65, 0x61, 0x74, 0x75,
|
|
4244
|
+
0x72, 0x65, 0x5f, 0x73, 0x70, 0x65, 0x61, 0x6b, 0x65, 0x72, 0x73, 0x18, 0x29, 0x20, 0x01, 0x28,
|
|
4245
|
+
0x08, 0x48, 0x25, 0x52, 0x0f, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x53, 0x70, 0x65, 0x61,
|
|
4246
|
+
0x6b, 0x65, 0x72, 0x73, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x66, 0x65, 0x61, 0x74, 0x75,
|
|
4247
|
+
0x72, 0x65, 0x5f, 0x68, 0x64, 0x6d, 0x69, 0x18, 0x2a, 0x20, 0x01, 0x28, 0x08, 0x48, 0x26, 0x52,
|
|
4248
|
+
0x0b, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x48, 0x64, 0x6d, 0x69, 0x88, 0x01, 0x01, 0x12,
|
|
4249
|
+
0x24, 0x0a, 0x0b, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x65, 0x74, 0x68, 0x18, 0x2b,
|
|
4250
|
+
0x20, 0x01, 0x28, 0x08, 0x48, 0x27, 0x52, 0x0a, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x45,
|
|
4251
|
+
0x74, 0x68, 0x88, 0x01, 0x01, 0x12, 0x2e, 0x0a, 0x10, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65,
|
|
4252
|
+
0x5f, 0x70, 0x6f, 0x72, 0x74, 0x72, 0x61, 0x69, 0x74, 0x18, 0x2c, 0x20, 0x01, 0x28, 0x08, 0x48,
|
|
4253
|
+
0x28, 0x52, 0x0f, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x50, 0x6f, 0x72, 0x74, 0x72, 0x61,
|
|
4254
|
+
0x69, 0x74, 0x88, 0x01, 0x01, 0x12, 0x2a, 0x0a, 0x0e, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65,
|
|
4255
|
+
0x5f, 0x63, 0x75, 0x72, 0x76, 0x65, 0x64, 0x18, 0x2d, 0x20, 0x01, 0x28, 0x08, 0x48, 0x29, 0x52,
|
|
4256
|
+
0x0d, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x43, 0x75, 0x72, 0x76, 0x65, 0x64, 0x88, 0x01,
|
|
4257
|
+
0x01, 0x12, 0x2d, 0x0a, 0x10, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65,
|
|
4258
|
+
0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x2e, 0x20, 0x01, 0x28, 0x03, 0x48, 0x2a, 0x52, 0x0e, 0x6c,
|
|
4259
|
+
0x61, 0x73, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x88, 0x01, 0x01,
|
|
4260
|
+
0x12, 0x24, 0x0a, 0x0b, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x18,
|
|
4261
|
+
0x64, 0x20, 0x01, 0x28, 0x05, 0x48, 0x2b, 0x52, 0x0a, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x53, 0x63,
|
|
4262
|
+
0x6f, 0x72, 0x65, 0x88, 0x01, 0x01, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x76, 0x65, 0x6e, 0x64, 0x6f,
|
|
4263
|
+
0x72, 0x5f, 0x69, 0x64, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x69, 0x64,
|
|
4264
|
+
0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x5f, 0x69, 0x64, 0x42, 0x0c,
|
|
4265
|
+
0x0a, 0x0a, 0x5f, 0x69, 0x73, 0x5f, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x42, 0x10, 0x0a, 0x0e,
|
|
4266
|
+
0x5f, 0x6f, 0x66, 0x66, 0x69, 0x63, 0x69, 0x61, 0x6c, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x42, 0x0f,
|
|
4267
|
+
0x0a, 0x0d, 0x5f, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x42,
|
|
4268
|
+
0x0c, 0x0a, 0x0a, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x5f, 0x69, 0x6e, 0x63, 0x68, 0x42, 0x11, 0x0a,
|
|
4269
|
+
0x0f, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x72, 0x65, 0x73, 0x6f, 0x6c, 0x75, 0x74, 0x69, 0x6f, 0x6e,
|
|
4270
|
+
0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x61, 0x73, 0x70, 0x65, 0x63, 0x74, 0x5f, 0x72, 0x61, 0x74, 0x69,
|
|
4271
|
+
0x6f, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x74,
|
|
4272
|
+
0x69, 0x6d, 0x65, 0x5f, 0x6d, 0x73, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x68, 0x64, 0x5f, 0x74, 0x79,
|
|
4273
|
+
0x70, 0x65, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x74,
|
|
4274
|
+
0x65, 0x63, 0x68, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x5f,
|
|
4275
|
+
0x72, 0x61, 0x74, 0x65, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x70, 0x61, 0x6e, 0x65, 0x6c, 0x42, 0x0c,
|
|
4276
|
+
0x0a, 0x0a, 0x5f, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x5f, 0x63, 0x6d, 0x42, 0x0b, 0x0a, 0x09,
|
|
4277
|
+
0x5f, 0x77, 0x69, 0x64, 0x74, 0x68, 0x5f, 0x63, 0x6d, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x64, 0x69,
|
|
4278
|
+
0x61, 0x67, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x63, 0x6d, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x75, 0x73,
|
|
4279
|
+
0x62, 0x5f, 0x75, 0x70, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x6e,
|
|
4280
|
+
0x72, 0x5f, 0x75, 0x73, 0x62, 0x5f, 0x75, 0x70, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x42, 0x1b,
|
|
4281
|
+
0x0a, 0x19, 0x5f, 0x6e, 0x72, 0x5f, 0x75, 0x73, 0x62, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x61,
|
|
4282
|
+
0x5f, 0x64, 0x6f, 0x77, 0x6e, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x42, 0x0a, 0x0a, 0x08, 0x5f,
|
|
4283
|
+
0x6e, 0x72, 0x5f, 0x68, 0x64, 0x6d, 0x69, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x6e, 0x72, 0x5f, 0x76,
|
|
4284
|
+
0x67, 0x61, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x6e, 0x72, 0x5f, 0x64, 0x76, 0x69, 0x42, 0x0f, 0x0a,
|
|
4285
|
+
0x0d, 0x5f, 0x68, 0x64, 0x6d, 0x69, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x13,
|
|
4286
|
+
0x0a, 0x11, 0x5f, 0x6e, 0x72, 0x5f, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x70, 0x6f,
|
|
4287
|
+
0x72, 0x74, 0x73, 0x42, 0x17, 0x0a, 0x15, 0x5f, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f,
|
|
4288
|
+
0x70, 0x6f, 0x72, 0x74, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x0f, 0x0a, 0x0d,
|
|
4289
|
+
0x5f, 0x65, 0x6e, 0x65, 0x72, 0x67, 0x79, 0x5f, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x42, 0x11, 0x0a,
|
|
4290
|
+
0x0f, 0x5f, 0x73, 0x64, 0x72, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x31, 0x30, 0x30, 0x30, 0x5f, 0x75,
|
|
4291
|
+
0x42, 0x15, 0x0a, 0x13, 0x5f, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x77, 0x61, 0x74,
|
|
4292
|
+
0x74, 0x5f, 0x75, 0x73, 0x61, 0x67, 0x65, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x6d, 0x61, 0x78, 0x5f,
|
|
4293
|
+
0x77, 0x61, 0x74, 0x74, 0x5f, 0x75, 0x73, 0x61, 0x67, 0x65, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x77,
|
|
4294
|
+
0x61, 0x74, 0x74, 0x5f, 0x75, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x6e, 0x64, 0x62,
|
|
4295
|
+
0x79, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x77, 0x61, 0x74, 0x74, 0x5f, 0x70, 0x6f, 0x77, 0x65, 0x72,
|
|
4296
|
+
0x5f, 0x73, 0x61, 0x76, 0x65, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x61, 0x63, 0x5f, 0x76, 0x6f, 0x6c,
|
|
4297
|
+
0x74, 0x61, 0x67, 0x65, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x61, 0x63, 0x5f, 0x66, 0x72, 0x65, 0x71,
|
|
4298
|
+
0x5f, 0x68, 0x7a, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x5f,
|
|
4299
|
+
0x61, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x61, 0x69,
|
|
4300
|
+
0x6f, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x63, 0x61,
|
|
4301
|
+
0x6d, 0x65, 0x72, 0x61, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65,
|
|
4302
|
+
0x5f, 0x73, 0x70, 0x65, 0x61, 0x6b, 0x65, 0x72, 0x73, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x66, 0x65,
|
|
4303
|
+
0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x68, 0x64, 0x6d, 0x69, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x66,
|
|
4304
|
+
0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x65, 0x74, 0x68, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x66,
|
|
4305
|
+
0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x70, 0x6f, 0x72, 0x74, 0x72, 0x61, 0x69, 0x74, 0x42,
|
|
4306
|
+
0x11, 0x0a, 0x0f, 0x5f, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x63, 0x75, 0x72, 0x76,
|
|
4307
|
+
0x65, 0x64, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x75, 0x70, 0x64, 0x61,
|
|
4308
|
+
0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x6d, 0x61, 0x74, 0x63,
|
|
4309
|
+
0x68, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x32, 0x82, 0x03, 0x0a, 0x17, 0x44, 0x61, 0x74, 0x61,
|
|
4310
|
+
0x43, 0x6f, 0x72, 0x65, 0x4f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x53, 0x65, 0x72, 0x76,
|
|
4311
|
+
0x69, 0x63, 0x65, 0x12, 0x70, 0x0a, 0x09, 0x47, 0x65, 0x74, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79,
|
|
4312
|
+
0x12, 0x2f, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
4313
|
+
0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31,
|
|
4314
|
+
0x2e, 0x47, 0x65, 0x74, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
4315
|
+
0x74, 0x1a, 0x30, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
4316
|
+
0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76,
|
|
4317
|
+
0x31, 0x2e, 0x47, 0x65, 0x74, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
|
4318
|
+
0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x77, 0x0a, 0x0c, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74,
|
|
4319
|
+
0x69, 0x74, 0x69, 0x65, 0x73, 0x12, 0x30, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
4217
4320
|
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75,
|
|
4218
|
-
0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e,
|
|
4219
|
-
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
|
|
4220
|
-
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62,
|
|
4221
|
-
0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e,
|
|
4222
|
-
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
|
|
4223
|
-
|
|
4224
|
-
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
4225
|
-
0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e,
|
|
4226
|
-
|
|
4227
|
-
|
|
4228
|
-
|
|
4229
|
-
|
|
4230
|
-
|
|
4231
|
-
|
|
4321
|
+
0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79,
|
|
4322
|
+
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61,
|
|
4323
|
+
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62,
|
|
4324
|
+
0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74, 0x69,
|
|
4325
|
+
0x74, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x7c,
|
|
4326
|
+
0x0a, 0x0d, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x4c, 0x6f, 0x6f, 0x6b, 0x75, 0x70, 0x12,
|
|
4327
|
+
0x33, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
4328
|
+
0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e,
|
|
4329
|
+
0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x4c, 0x6f, 0x6f, 0x6b, 0x75, 0x70, 0x52, 0x65, 0x71,
|
|
4330
|
+
0x75, 0x65, 0x73, 0x74, 0x1a, 0x34, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
4331
|
+
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e,
|
|
4332
|
+
0x64, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x4c, 0x6f, 0x6f, 0x6b,
|
|
4333
|
+
0x75, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x12, 0x50, 0x01,
|
|
4334
|
+
0x5a, 0x0e, 0x2e, 0x2f, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2d, 0x67, 0x6f,
|
|
4335
|
+
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
4232
4336
|
}
|
|
4233
4337
|
|
|
4234
4338
|
var (
|
|
@@ -4243,82 +4347,81 @@ func file_outbound_proto_rawDescGZIP() []byte {
|
|
|
4243
4347
|
return file_outbound_proto_rawDescData
|
|
4244
4348
|
}
|
|
4245
4349
|
|
|
4246
|
-
var file_outbound_proto_msgTypes = make([]protoimpl.MessageInfo,
|
|
4350
|
+
var file_outbound_proto_msgTypes = make([]protoimpl.MessageInfo, 26)
|
|
4247
4351
|
var file_outbound_proto_goTypes = []interface{}{
|
|
4248
4352
|
(*GetEntityRequest)(nil), // 0: com.lansweeper.dp.outbound.v1.GetEntityRequest
|
|
4249
4353
|
(*GetEntityResponse)(nil), // 1: com.lansweeper.dp.outbound.v1.GetEntityResponse
|
|
4250
4354
|
(*ListEntityRequest)(nil), // 2: com.lansweeper.dp.outbound.v1.ListEntityRequest
|
|
4251
4355
|
(*ListEntityResponse)(nil), // 3: com.lansweeper.dp.outbound.v1.ListEntityResponse
|
|
4252
|
-
(*
|
|
4253
|
-
(*
|
|
4254
|
-
(*
|
|
4255
|
-
(*
|
|
4256
|
-
(*
|
|
4257
|
-
(*
|
|
4258
|
-
(*
|
|
4259
|
-
(*
|
|
4260
|
-
(*
|
|
4261
|
-
(*
|
|
4262
|
-
(*
|
|
4263
|
-
(*
|
|
4264
|
-
(*
|
|
4265
|
-
(*
|
|
4266
|
-
(*
|
|
4267
|
-
(*
|
|
4268
|
-
(*
|
|
4269
|
-
(*
|
|
4270
|
-
(*
|
|
4271
|
-
(*
|
|
4272
|
-
(*
|
|
4356
|
+
(*CatalogLookupRequest)(nil), // 4: com.lansweeper.dp.outbound.v1.CatalogLookupRequest
|
|
4357
|
+
(*CatalogLookupResponse)(nil), // 5: com.lansweeper.dp.outbound.v1.CatalogLookupResponse
|
|
4358
|
+
(*EntityPath)(nil), // 6: com.lansweeper.dp.outbound.v1.EntityPath
|
|
4359
|
+
(*Entity)(nil), // 7: com.lansweeper.dp.outbound.v1.Entity
|
|
4360
|
+
(*Asset)(nil), // 8: com.lansweeper.dp.outbound.v1.Asset
|
|
4361
|
+
(*AssetType)(nil), // 9: com.lansweeper.dp.outbound.v1.AssetType
|
|
4362
|
+
(*CoreFields)(nil), // 10: com.lansweeper.dp.outbound.v1.CoreFields
|
|
4363
|
+
(*HardwareInfo)(nil), // 11: com.lansweeper.dp.outbound.v1.HardwareInfo
|
|
4364
|
+
(*RawHardwareInfo)(nil), // 12: com.lansweeper.dp.outbound.v1.RawHardwareInfo
|
|
4365
|
+
(*OperatingSystemInfo)(nil), // 13: com.lansweeper.dp.outbound.v1.OperatingSystemInfo
|
|
4366
|
+
(*WindowsRawOperatingSystemInfo)(nil), // 14: com.lansweeper.dp.outbound.v1.WindowsRawOperatingSystemInfo
|
|
4367
|
+
(*MonitorInventory)(nil), // 15: com.lansweeper.dp.outbound.v1.MonitorInventory
|
|
4368
|
+
(*Monitor)(nil), // 16: com.lansweeper.dp.outbound.v1.Monitor
|
|
4369
|
+
(*WindowsRawMonitorInfo)(nil), // 17: com.lansweeper.dp.outbound.v1.WindowsRawMonitorInfo
|
|
4370
|
+
(*SoftwareInventory)(nil), // 18: com.lansweeper.dp.outbound.v1.SoftwareInventory
|
|
4371
|
+
(*Software)(nil), // 19: com.lansweeper.dp.outbound.v1.Software
|
|
4372
|
+
(*RawSoftware)(nil), // 20: com.lansweeper.dp.outbound.v1.RawSoftware
|
|
4373
|
+
(*CatalogBrand)(nil), // 21: com.lansweeper.dp.outbound.v1.CatalogBrand
|
|
4374
|
+
(*CatalogModel)(nil), // 22: com.lansweeper.dp.outbound.v1.CatalogModel
|
|
4375
|
+
(*CatalogOs)(nil), // 23: com.lansweeper.dp.outbound.v1.CatalogOs
|
|
4376
|
+
(*CatalogSoftware)(nil), // 24: com.lansweeper.dp.outbound.v1.CatalogSoftware
|
|
4377
|
+
(*CatalogMonitor)(nil), // 25: com.lansweeper.dp.outbound.v1.CatalogMonitor
|
|
4378
|
+
(*timestamppb.Timestamp)(nil), // 26: google.protobuf.Timestamp
|
|
4273
4379
|
}
|
|
4274
4380
|
var file_outbound_proto_depIdxs = []int32{
|
|
4275
|
-
|
|
4276
|
-
|
|
4277
|
-
|
|
4278
|
-
|
|
4279
|
-
|
|
4280
|
-
|
|
4281
|
-
|
|
4282
|
-
|
|
4283
|
-
|
|
4284
|
-
24, // 9: com.lansweeper.dp.outbound.v1.
|
|
4285
|
-
|
|
4286
|
-
|
|
4287
|
-
|
|
4288
|
-
|
|
4289
|
-
|
|
4290
|
-
|
|
4291
|
-
|
|
4292
|
-
|
|
4293
|
-
|
|
4294
|
-
|
|
4295
|
-
|
|
4296
|
-
|
|
4297
|
-
|
|
4298
|
-
|
|
4299
|
-
|
|
4300
|
-
|
|
4301
|
-
|
|
4302
|
-
|
|
4303
|
-
|
|
4304
|
-
|
|
4305
|
-
|
|
4306
|
-
|
|
4307
|
-
|
|
4308
|
-
|
|
4309
|
-
|
|
4310
|
-
|
|
4311
|
-
|
|
4312
|
-
|
|
4313
|
-
|
|
4314
|
-
|
|
4315
|
-
|
|
4316
|
-
|
|
4317
|
-
|
|
4318
|
-
|
|
4319
|
-
38, // [38:38] is the sub-list for extension type_name
|
|
4320
|
-
38, // [38:38] is the sub-list for extension extendee
|
|
4321
|
-
0, // [0:38] is the sub-list for field type_name
|
|
4381
|
+
6, // 0: com.lansweeper.dp.outbound.v1.GetEntityRequest.entity_path:type_name -> com.lansweeper.dp.outbound.v1.EntityPath
|
|
4382
|
+
7, // 1: com.lansweeper.dp.outbound.v1.GetEntityResponse.entity:type_name -> com.lansweeper.dp.outbound.v1.Entity
|
|
4383
|
+
7, // 2: com.lansweeper.dp.outbound.v1.GetEntityResponse.related:type_name -> com.lansweeper.dp.outbound.v1.Entity
|
|
4384
|
+
6, // 3: com.lansweeper.dp.outbound.v1.ListEntityRequest.filter:type_name -> com.lansweeper.dp.outbound.v1.EntityPath
|
|
4385
|
+
7, // 4: com.lansweeper.dp.outbound.v1.ListEntityResponse.entity:type_name -> com.lansweeper.dp.outbound.v1.Entity
|
|
4386
|
+
7, // 5: com.lansweeper.dp.outbound.v1.ListEntityResponse.related:type_name -> com.lansweeper.dp.outbound.v1.Entity
|
|
4387
|
+
21, // 6: com.lansweeper.dp.outbound.v1.CatalogLookupResponse.brand:type_name -> com.lansweeper.dp.outbound.v1.CatalogBrand
|
|
4388
|
+
22, // 7: com.lansweeper.dp.outbound.v1.CatalogLookupResponse.model:type_name -> com.lansweeper.dp.outbound.v1.CatalogModel
|
|
4389
|
+
23, // 8: com.lansweeper.dp.outbound.v1.CatalogLookupResponse.os:type_name -> com.lansweeper.dp.outbound.v1.CatalogOs
|
|
4390
|
+
24, // 9: com.lansweeper.dp.outbound.v1.CatalogLookupResponse.sw:type_name -> com.lansweeper.dp.outbound.v1.CatalogSoftware
|
|
4391
|
+
25, // 10: com.lansweeper.dp.outbound.v1.CatalogLookupResponse.monitor:type_name -> com.lansweeper.dp.outbound.v1.CatalogMonitor
|
|
4392
|
+
8, // 11: com.lansweeper.dp.outbound.v1.Entity.asset:type_name -> com.lansweeper.dp.outbound.v1.Asset
|
|
4393
|
+
6, // 12: com.lansweeper.dp.outbound.v1.Asset.id:type_name -> com.lansweeper.dp.outbound.v1.EntityPath
|
|
4394
|
+
26, // 13: com.lansweeper.dp.outbound.v1.Asset.last_synced:type_name -> google.protobuf.Timestamp
|
|
4395
|
+
26, // 14: com.lansweeper.dp.outbound.v1.Asset.first_seen:type_name -> google.protobuf.Timestamp
|
|
4396
|
+
26, // 15: com.lansweeper.dp.outbound.v1.Asset.last_updated:type_name -> google.protobuf.Timestamp
|
|
4397
|
+
26, // 16: com.lansweeper.dp.outbound.v1.Asset.last_enriched:type_name -> google.protobuf.Timestamp
|
|
4398
|
+
10, // 17: com.lansweeper.dp.outbound.v1.Asset.core:type_name -> com.lansweeper.dp.outbound.v1.CoreFields
|
|
4399
|
+
11, // 18: com.lansweeper.dp.outbound.v1.Asset.hw:type_name -> com.lansweeper.dp.outbound.v1.HardwareInfo
|
|
4400
|
+
13, // 19: com.lansweeper.dp.outbound.v1.Asset.os:type_name -> com.lansweeper.dp.outbound.v1.OperatingSystemInfo
|
|
4401
|
+
18, // 20: com.lansweeper.dp.outbound.v1.Asset.software_inventory:type_name -> com.lansweeper.dp.outbound.v1.SoftwareInventory
|
|
4402
|
+
15, // 21: com.lansweeper.dp.outbound.v1.Asset.monitor_inventory:type_name -> com.lansweeper.dp.outbound.v1.MonitorInventory
|
|
4403
|
+
9, // 22: com.lansweeper.dp.outbound.v1.CoreFields.type:type_name -> com.lansweeper.dp.outbound.v1.AssetType
|
|
4404
|
+
12, // 23: com.lansweeper.dp.outbound.v1.HardwareInfo.raw:type_name -> com.lansweeper.dp.outbound.v1.RawHardwareInfo
|
|
4405
|
+
14, // 24: com.lansweeper.dp.outbound.v1.OperatingSystemInfo.windows:type_name -> com.lansweeper.dp.outbound.v1.WindowsRawOperatingSystemInfo
|
|
4406
|
+
26, // 25: com.lansweeper.dp.outbound.v1.MonitorInventory.timestamp:type_name -> google.protobuf.Timestamp
|
|
4407
|
+
16, // 26: com.lansweeper.dp.outbound.v1.MonitorInventory.monitor:type_name -> com.lansweeper.dp.outbound.v1.Monitor
|
|
4408
|
+
26, // 27: com.lansweeper.dp.outbound.v1.Monitor.manufacturer_date:type_name -> google.protobuf.Timestamp
|
|
4409
|
+
17, // 28: com.lansweeper.dp.outbound.v1.Monitor.windows:type_name -> com.lansweeper.dp.outbound.v1.WindowsRawMonitorInfo
|
|
4410
|
+
26, // 29: com.lansweeper.dp.outbound.v1.WindowsRawMonitorInfo.manufacturer_date:type_name -> google.protobuf.Timestamp
|
|
4411
|
+
26, // 30: com.lansweeper.dp.outbound.v1.SoftwareInventory.timestamp:type_name -> google.protobuf.Timestamp
|
|
4412
|
+
19, // 31: com.lansweeper.dp.outbound.v1.SoftwareInventory.software:type_name -> com.lansweeper.dp.outbound.v1.Software
|
|
4413
|
+
20, // 32: com.lansweeper.dp.outbound.v1.Software.raw:type_name -> com.lansweeper.dp.outbound.v1.RawSoftware
|
|
4414
|
+
0, // 33: com.lansweeper.dp.outbound.v1.DataCoreOutboundService.GetEntity:input_type -> com.lansweeper.dp.outbound.v1.GetEntityRequest
|
|
4415
|
+
2, // 34: com.lansweeper.dp.outbound.v1.DataCoreOutboundService.ListEntities:input_type -> com.lansweeper.dp.outbound.v1.ListEntityRequest
|
|
4416
|
+
4, // 35: com.lansweeper.dp.outbound.v1.DataCoreOutboundService.CatalogLookup:input_type -> com.lansweeper.dp.outbound.v1.CatalogLookupRequest
|
|
4417
|
+
1, // 36: com.lansweeper.dp.outbound.v1.DataCoreOutboundService.GetEntity:output_type -> com.lansweeper.dp.outbound.v1.GetEntityResponse
|
|
4418
|
+
3, // 37: com.lansweeper.dp.outbound.v1.DataCoreOutboundService.ListEntities:output_type -> com.lansweeper.dp.outbound.v1.ListEntityResponse
|
|
4419
|
+
5, // 38: com.lansweeper.dp.outbound.v1.DataCoreOutboundService.CatalogLookup:output_type -> com.lansweeper.dp.outbound.v1.CatalogLookupResponse
|
|
4420
|
+
36, // [36:39] is the sub-list for method output_type
|
|
4421
|
+
33, // [33:36] is the sub-list for method input_type
|
|
4422
|
+
33, // [33:33] is the sub-list for extension type_name
|
|
4423
|
+
33, // [33:33] is the sub-list for extension extendee
|
|
4424
|
+
0, // [0:33] is the sub-list for field type_name
|
|
4322
4425
|
}
|
|
4323
4426
|
|
|
4324
4427
|
func init() { file_outbound_proto_init() }
|
|
@@ -4376,7 +4479,7 @@ func file_outbound_proto_init() {
|
|
|
4376
4479
|
}
|
|
4377
4480
|
}
|
|
4378
4481
|
file_outbound_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
|
|
4379
|
-
switch v := v.(*
|
|
4482
|
+
switch v := v.(*CatalogLookupRequest); i {
|
|
4380
4483
|
case 0:
|
|
4381
4484
|
return &v.state
|
|
4382
4485
|
case 1:
|
|
@@ -4388,7 +4491,7 @@ func file_outbound_proto_init() {
|
|
|
4388
4491
|
}
|
|
4389
4492
|
}
|
|
4390
4493
|
file_outbound_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
|
|
4391
|
-
switch v := v.(*
|
|
4494
|
+
switch v := v.(*CatalogLookupResponse); i {
|
|
4392
4495
|
case 0:
|
|
4393
4496
|
return &v.state
|
|
4394
4497
|
case 1:
|
|
@@ -4400,7 +4503,7 @@ func file_outbound_proto_init() {
|
|
|
4400
4503
|
}
|
|
4401
4504
|
}
|
|
4402
4505
|
file_outbound_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
|
|
4403
|
-
switch v := v.(*
|
|
4506
|
+
switch v := v.(*EntityPath); i {
|
|
4404
4507
|
case 0:
|
|
4405
4508
|
return &v.state
|
|
4406
4509
|
case 1:
|
|
@@ -4412,7 +4515,7 @@ func file_outbound_proto_init() {
|
|
|
4412
4515
|
}
|
|
4413
4516
|
}
|
|
4414
4517
|
file_outbound_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
|
|
4415
|
-
switch v := v.(*
|
|
4518
|
+
switch v := v.(*Entity); i {
|
|
4416
4519
|
case 0:
|
|
4417
4520
|
return &v.state
|
|
4418
4521
|
case 1:
|
|
@@ -4424,7 +4527,7 @@ func file_outbound_proto_init() {
|
|
|
4424
4527
|
}
|
|
4425
4528
|
}
|
|
4426
4529
|
file_outbound_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
|
|
4427
|
-
switch v := v.(*
|
|
4530
|
+
switch v := v.(*Asset); i {
|
|
4428
4531
|
case 0:
|
|
4429
4532
|
return &v.state
|
|
4430
4533
|
case 1:
|
|
@@ -4436,7 +4539,7 @@ func file_outbound_proto_init() {
|
|
|
4436
4539
|
}
|
|
4437
4540
|
}
|
|
4438
4541
|
file_outbound_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
|
|
4439
|
-
switch v := v.(*
|
|
4542
|
+
switch v := v.(*AssetType); i {
|
|
4440
4543
|
case 0:
|
|
4441
4544
|
return &v.state
|
|
4442
4545
|
case 1:
|
|
@@ -4448,7 +4551,7 @@ func file_outbound_proto_init() {
|
|
|
4448
4551
|
}
|
|
4449
4552
|
}
|
|
4450
4553
|
file_outbound_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
|
|
4451
|
-
switch v := v.(*
|
|
4554
|
+
switch v := v.(*CoreFields); i {
|
|
4452
4555
|
case 0:
|
|
4453
4556
|
return &v.state
|
|
4454
4557
|
case 1:
|
|
@@ -4460,7 +4563,7 @@ func file_outbound_proto_init() {
|
|
|
4460
4563
|
}
|
|
4461
4564
|
}
|
|
4462
4565
|
file_outbound_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
|
|
4463
|
-
switch v := v.(*
|
|
4566
|
+
switch v := v.(*HardwareInfo); i {
|
|
4464
4567
|
case 0:
|
|
4465
4568
|
return &v.state
|
|
4466
4569
|
case 1:
|
|
@@ -4472,7 +4575,7 @@ func file_outbound_proto_init() {
|
|
|
4472
4575
|
}
|
|
4473
4576
|
}
|
|
4474
4577
|
file_outbound_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
|
|
4475
|
-
switch v := v.(*
|
|
4578
|
+
switch v := v.(*RawHardwareInfo); i {
|
|
4476
4579
|
case 0:
|
|
4477
4580
|
return &v.state
|
|
4478
4581
|
case 1:
|
|
@@ -4484,7 +4587,7 @@ func file_outbound_proto_init() {
|
|
|
4484
4587
|
}
|
|
4485
4588
|
}
|
|
4486
4589
|
file_outbound_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
|
|
4487
|
-
switch v := v.(*
|
|
4590
|
+
switch v := v.(*OperatingSystemInfo); i {
|
|
4488
4591
|
case 0:
|
|
4489
4592
|
return &v.state
|
|
4490
4593
|
case 1:
|
|
@@ -4496,7 +4599,7 @@ func file_outbound_proto_init() {
|
|
|
4496
4599
|
}
|
|
4497
4600
|
}
|
|
4498
4601
|
file_outbound_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
|
|
4499
|
-
switch v := v.(*
|
|
4602
|
+
switch v := v.(*WindowsRawOperatingSystemInfo); i {
|
|
4500
4603
|
case 0:
|
|
4501
4604
|
return &v.state
|
|
4502
4605
|
case 1:
|
|
@@ -4508,7 +4611,7 @@ func file_outbound_proto_init() {
|
|
|
4508
4611
|
}
|
|
4509
4612
|
}
|
|
4510
4613
|
file_outbound_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
|
|
4511
|
-
switch v := v.(*
|
|
4614
|
+
switch v := v.(*MonitorInventory); i {
|
|
4512
4615
|
case 0:
|
|
4513
4616
|
return &v.state
|
|
4514
4617
|
case 1:
|
|
@@ -4520,7 +4623,7 @@ func file_outbound_proto_init() {
|
|
|
4520
4623
|
}
|
|
4521
4624
|
}
|
|
4522
4625
|
file_outbound_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
|
|
4523
|
-
switch v := v.(*
|
|
4626
|
+
switch v := v.(*Monitor); i {
|
|
4524
4627
|
case 0:
|
|
4525
4628
|
return &v.state
|
|
4526
4629
|
case 1:
|
|
@@ -4532,7 +4635,7 @@ func file_outbound_proto_init() {
|
|
|
4532
4635
|
}
|
|
4533
4636
|
}
|
|
4534
4637
|
file_outbound_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
|
|
4535
|
-
switch v := v.(*
|
|
4638
|
+
switch v := v.(*WindowsRawMonitorInfo); i {
|
|
4536
4639
|
case 0:
|
|
4537
4640
|
return &v.state
|
|
4538
4641
|
case 1:
|
|
@@ -4544,7 +4647,7 @@ func file_outbound_proto_init() {
|
|
|
4544
4647
|
}
|
|
4545
4648
|
}
|
|
4546
4649
|
file_outbound_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
|
|
4547
|
-
switch v := v.(*
|
|
4650
|
+
switch v := v.(*SoftwareInventory); i {
|
|
4548
4651
|
case 0:
|
|
4549
4652
|
return &v.state
|
|
4550
4653
|
case 1:
|
|
@@ -4556,7 +4659,7 @@ func file_outbound_proto_init() {
|
|
|
4556
4659
|
}
|
|
4557
4660
|
}
|
|
4558
4661
|
file_outbound_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
|
|
4559
|
-
switch v := v.(*
|
|
4662
|
+
switch v := v.(*Software); i {
|
|
4560
4663
|
case 0:
|
|
4561
4664
|
return &v.state
|
|
4562
4665
|
case 1:
|
|
@@ -4568,7 +4671,7 @@ func file_outbound_proto_init() {
|
|
|
4568
4671
|
}
|
|
4569
4672
|
}
|
|
4570
4673
|
file_outbound_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
|
|
4571
|
-
switch v := v.(*
|
|
4674
|
+
switch v := v.(*RawSoftware); i {
|
|
4572
4675
|
case 0:
|
|
4573
4676
|
return &v.state
|
|
4574
4677
|
case 1:
|
|
@@ -4580,7 +4683,7 @@ func file_outbound_proto_init() {
|
|
|
4580
4683
|
}
|
|
4581
4684
|
}
|
|
4582
4685
|
file_outbound_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
|
|
4583
|
-
switch v := v.(*
|
|
4686
|
+
switch v := v.(*CatalogBrand); i {
|
|
4584
4687
|
case 0:
|
|
4585
4688
|
return &v.state
|
|
4586
4689
|
case 1:
|
|
@@ -4592,7 +4695,7 @@ func file_outbound_proto_init() {
|
|
|
4592
4695
|
}
|
|
4593
4696
|
}
|
|
4594
4697
|
file_outbound_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
|
|
4595
|
-
switch v := v.(*
|
|
4698
|
+
switch v := v.(*CatalogModel); i {
|
|
4596
4699
|
case 0:
|
|
4597
4700
|
return &v.state
|
|
4598
4701
|
case 1:
|
|
@@ -4604,6 +4707,30 @@ func file_outbound_proto_init() {
|
|
|
4604
4707
|
}
|
|
4605
4708
|
}
|
|
4606
4709
|
file_outbound_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
|
|
4710
|
+
switch v := v.(*CatalogOs); i {
|
|
4711
|
+
case 0:
|
|
4712
|
+
return &v.state
|
|
4713
|
+
case 1:
|
|
4714
|
+
return &v.sizeCache
|
|
4715
|
+
case 2:
|
|
4716
|
+
return &v.unknownFields
|
|
4717
|
+
default:
|
|
4718
|
+
return nil
|
|
4719
|
+
}
|
|
4720
|
+
}
|
|
4721
|
+
file_outbound_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
|
|
4722
|
+
switch v := v.(*CatalogSoftware); i {
|
|
4723
|
+
case 0:
|
|
4724
|
+
return &v.state
|
|
4725
|
+
case 1:
|
|
4726
|
+
return &v.sizeCache
|
|
4727
|
+
case 2:
|
|
4728
|
+
return &v.unknownFields
|
|
4729
|
+
default:
|
|
4730
|
+
return nil
|
|
4731
|
+
}
|
|
4732
|
+
}
|
|
4733
|
+
file_outbound_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
|
|
4607
4734
|
switch v := v.(*CatalogMonitor); i {
|
|
4608
4735
|
case 0:
|
|
4609
4736
|
return &v.state
|
|
@@ -4618,36 +4745,37 @@ func file_outbound_proto_init() {
|
|
|
4618
4745
|
}
|
|
4619
4746
|
file_outbound_proto_msgTypes[1].OneofWrappers = []interface{}{}
|
|
4620
4747
|
file_outbound_proto_msgTypes[4].OneofWrappers = []interface{}{}
|
|
4621
|
-
file_outbound_proto_msgTypes[
|
|
4748
|
+
file_outbound_proto_msgTypes[6].OneofWrappers = []interface{}{}
|
|
4749
|
+
file_outbound_proto_msgTypes[7].OneofWrappers = []interface{}{
|
|
4622
4750
|
(*Entity_Asset)(nil),
|
|
4623
4751
|
}
|
|
4624
|
-
file_outbound_proto_msgTypes[6].OneofWrappers = []interface{}{}
|
|
4625
|
-
file_outbound_proto_msgTypes[7].OneofWrappers = []interface{}{}
|
|
4626
4752
|
file_outbound_proto_msgTypes[8].OneofWrappers = []interface{}{}
|
|
4627
4753
|
file_outbound_proto_msgTypes[9].OneofWrappers = []interface{}{}
|
|
4628
4754
|
file_outbound_proto_msgTypes[10].OneofWrappers = []interface{}{}
|
|
4629
|
-
file_outbound_proto_msgTypes[11].OneofWrappers = []interface{}{
|
|
4755
|
+
file_outbound_proto_msgTypes[11].OneofWrappers = []interface{}{}
|
|
4756
|
+
file_outbound_proto_msgTypes[12].OneofWrappers = []interface{}{}
|
|
4757
|
+
file_outbound_proto_msgTypes[13].OneofWrappers = []interface{}{
|
|
4630
4758
|
(*OperatingSystemInfo_Windows)(nil),
|
|
4631
4759
|
}
|
|
4632
|
-
file_outbound_proto_msgTypes[
|
|
4633
|
-
file_outbound_proto_msgTypes[
|
|
4760
|
+
file_outbound_proto_msgTypes[14].OneofWrappers = []interface{}{}
|
|
4761
|
+
file_outbound_proto_msgTypes[16].OneofWrappers = []interface{}{
|
|
4634
4762
|
(*Monitor_Windows)(nil),
|
|
4635
4763
|
}
|
|
4636
|
-
file_outbound_proto_msgTypes[15].OneofWrappers = []interface{}{}
|
|
4637
4764
|
file_outbound_proto_msgTypes[17].OneofWrappers = []interface{}{}
|
|
4638
|
-
file_outbound_proto_msgTypes[18].OneofWrappers = []interface{}{}
|
|
4639
4765
|
file_outbound_proto_msgTypes[19].OneofWrappers = []interface{}{}
|
|
4640
4766
|
file_outbound_proto_msgTypes[20].OneofWrappers = []interface{}{}
|
|
4641
4767
|
file_outbound_proto_msgTypes[21].OneofWrappers = []interface{}{}
|
|
4642
4768
|
file_outbound_proto_msgTypes[22].OneofWrappers = []interface{}{}
|
|
4643
4769
|
file_outbound_proto_msgTypes[23].OneofWrappers = []interface{}{}
|
|
4770
|
+
file_outbound_proto_msgTypes[24].OneofWrappers = []interface{}{}
|
|
4771
|
+
file_outbound_proto_msgTypes[25].OneofWrappers = []interface{}{}
|
|
4644
4772
|
type x struct{}
|
|
4645
4773
|
out := protoimpl.TypeBuilder{
|
|
4646
4774
|
File: protoimpl.DescBuilder{
|
|
4647
4775
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
4648
4776
|
RawDescriptor: file_outbound_proto_rawDesc,
|
|
4649
4777
|
NumEnums: 0,
|
|
4650
|
-
NumMessages:
|
|
4778
|
+
NumMessages: 26,
|
|
4651
4779
|
NumExtensions: 0,
|
|
4652
4780
|
NumServices: 1,
|
|
4653
4781
|
},
|